ClubUserPo.java 717 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 authUserId;
  19. /**
  20. * 机构id
  21. */
  22. private Integer authId;
  23. /**
  24. * 添加时间
  25. */
  26. private Date addTime;
  27. /**
  28. * 姓名
  29. */
  30. private String name;
  31. /**
  32. * 手机号
  33. */
  34. private String mobile;
  35. /**
  36. * 手机号
  37. */
  38. private String password;
  39. /**
  40. * 状态:0停用,1启用
  41. */
  42. private Integer status;
  43. }