ProductPo.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. package com.caimei.model.po;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. /**
  7. * cm_brand_auth_product
  8. *
  9. * @author Aslee
  10. * @date 2021/5/17
  11. */
  12. @Data
  13. public class ProductPo {
  14. /**
  15. * 商品Id
  16. */
  17. private Integer productId;
  18. /**
  19. * 授权Id
  20. */
  21. private Integer authId;
  22. /**
  23. * 品牌信息Id
  24. */
  25. private Integer infoId;
  26. /**
  27. * 设备分类id
  28. */
  29. private Integer productTypeId;
  30. /**
  31. * 设备名称
  32. */
  33. private String name;
  34. /**
  35. * sn码
  36. */
  37. private String snCode;
  38. /**
  39. * 商品图片
  40. */
  41. private String image;
  42. /**
  43. * pc添加水印商品图片
  44. */
  45. private String pcImage;
  46. /**
  47. * 小程序添加水印商品图片
  48. */
  49. private String appletsImage;
  50. /**
  51. * 授权牌照
  52. */
  53. private String certificateImage;
  54. /**
  55. * 授权牌照类型:1模板库生成,2自定义上传
  56. */
  57. private Integer certificateImageType;
  58. /**
  59. * pc添加水印授权牌照
  60. */
  61. private String pcCertificateImage;
  62. /**
  63. * 小程序添加水印授权牌照
  64. */
  65. private String appletsCertificateImage;
  66. /**
  67. * 购买渠道
  68. */
  69. private String purchaseWay;
  70. /**
  71. * 发票图片
  72. */
  73. private String invoiceImage;
  74. /**
  75. * 上线状态:0已下线,1已上线,2待上线
  76. */
  77. private Integer status;
  78. /**
  79. * 审核状态:0审核未通过,1审核通过,2待审核
  80. */
  81. private Integer auditStatus;
  82. /**
  83. * 供应商审核状态:0审核未通过,1审核通过,2待审核
  84. */
  85. private Integer shopAuditStatus;
  86. /**
  87. * 创建时间
  88. */
  89. private Date createTime;
  90. /**
  91. * 创建人Id
  92. */
  93. private Integer createBy;
  94. /**
  95. * 创建来源:1供应商添加,2机构用户添加
  96. */
  97. private Integer createSource;
  98. /**
  99. * 管理员审核人id,对应cm_brand_auth_user
  100. */
  101. private Integer auditBy;
  102. /**
  103. * 审核时间
  104. */
  105. private Date auditTime;
  106. /**
  107. * 是否查看过:1是,0否
  108. */
  109. private Integer checkFlag;
  110. /**
  111. * 授权牌Logo
  112. */
  113. private String authImageLogo;
  114. /**
  115. * 认证时间
  116. */
  117. private String authDate;
  118. /**
  119. * 认证时间
  120. */
  121. private Date authDates;
  122. }