package com.kym.jdbc; import com.kym.jdbc.annotations.DBF; import java.io.Serializable; import java.util.Date; /** * build by yaop at 2018/12/23 20:56 * * @author zuypeng */ public class BasicEntity implements Serializable { @DBF(comment = "ID") public long id; @DBF(comment = "租户ID") public long orgId; @DBF(comment = "创建时间") public Date createAt; @DBF(comment = "更新时间") public Date updateAt; }