ClubUserPo.java 700 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.caimei.model.po;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.util.Date;
  5. /**
  6. * cm_brand_auth_user
  7. * @author
  8. */
  9. @Data
  10. public class ClubUserPo {
  11. /**
  12. * 机构用户id
  13. */
  14. private Integer id;
  15. /**
  16. * 机构id
  17. */
  18. private Integer authId;
  19. /**
  20. * 邀请码
  21. */
  22. private String invitationCode;
  23. /**
  24. * 状态:1未绑定,2已绑定,3已过期
  25. */
  26. private Integer status;
  27. /**
  28. * 添加时间
  29. */
  30. private Date addTime;
  31. /**
  32. * 更新时间
  33. */
  34. private Date updateTime;
  35. /**
  36. * 邀请码过期时间
  37. */
  38. private Date invitationCodeTime;
  39. }