UserPo.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package com.caimei.model.po;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import lombok.Data;
  5. /**
  6. * cm_brand_auth_user
  7. * @author
  8. */
  9. @Data
  10. public class UserPo {
  11. /**
  12. * 用户id
  13. */
  14. private Integer authUserId;
  15. /**
  16. * 账号名
  17. */
  18. private String name;
  19. /**
  20. * 手机号
  21. */
  22. private String mobile;
  23. /**
  24. * 密码
  25. */
  26. private String password;
  27. /**
  28. * 联系人
  29. */
  30. private String linkMan;
  31. /**
  32. * 用户身份:1管理员,2供应商
  33. */
  34. private Integer userIdentity;
  35. /**
  36. * 供应商类型:1品牌方,2代理商
  37. */
  38. private Integer shopType;
  39. /**
  40. * 代理商logo
  41. */
  42. private String logo;
  43. /**
  44. * 公众号二维码图片
  45. */
  46. private String qrCodeImage;
  47. /**
  48. * 微信公众号类型:1订阅号,2服务号
  49. */
  50. private Integer wxAccountType;
  51. /**
  52. * 公众号appId
  53. */
  54. private String appId;
  55. /**
  56. * 公众号appSecret
  57. */
  58. private String appSecret;
  59. /**
  60. * 创建时间
  61. */
  62. private Date createTime;
  63. /**
  64. * 创建人用户Id
  65. */
  66. private Integer createBy;
  67. /**
  68. * 状态:0停用,1启用
  69. */
  70. private Integer status;
  71. }