BasicEntity.java 458 B

12345678910111213141516171819202122232425
  1. package com.kym.jdbc;
  2. import com.kym.jdbc.annotations.DBF;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * build by yaop at 2018/12/23 20:56
  7. *
  8. * @author zuypeng
  9. */
  10. public class BasicEntity implements Serializable {
  11. @DBF(comment = "ID")
  12. public long id;
  13. @DBF(comment = "租户ID")
  14. public long orgId;
  15. @DBF(comment = "创建时间")
  16. public Date createAt;
  17. @DBF(comment = "更新时间")
  18. public Date updateAt;
  19. }