KuaishouItemCollectSamples.java 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. package com.ruixuan.isc.entity;
  2. import com.ruixuan.common.annotation.Excel;
  3. import com.ruixuan.common.core.domain.BaseEntity;
  4. import org.springframework.data.annotation.Transient;
  5. /**
  6. * 【请填写功能名称】对象 kuaishou_item_collect_samples
  7. *
  8. * @author ruoyi
  9. * @date 2023-02-08
  10. */
  11. public class KuaishouItemCollectSamples extends BaseEntity
  12. {
  13. private static final long serialVersionUID = 1L;
  14. /** $column.columnComment */
  15. private Long id;
  16. /** 商品ID */
  17. @Excel(name = "商品ID")
  18. private Long itemId;
  19. /** 商品标题 */
  20. @Excel(name = "商品标题")
  21. private String itemTitle;
  22. /** 商品单价-分 */
  23. @Excel(name = "商品单价-分")
  24. private Long itemPrice;
  25. /** 商品图片链接 */
  26. @Excel(name = "商品图片链接")
  27. private String itemImgUrl;
  28. /** 商品备注 */
  29. @Excel(name = "商品备注")
  30. private String itemDesc;
  31. /** 佣金比例 */
  32. @Excel(name = "佣金比例")
  33. private Long commissionRate;
  34. /** 服务费 */
  35. @Excel(name = "服务费")
  36. private Long regimentalPromotion;
  37. /** 领样数量 */
  38. @Excel(name = "领样数量")
  39. private Integer sampleCount;
  40. /** 领样规则 */
  41. @Excel(name = "领样规则")
  42. private String sampleRequirement;
  43. /** 商品创建人ID */
  44. @Excel(name = "商品创建人ID")
  45. private Long itemCreateId;
  46. /** 商品创建人姓名 */
  47. @Excel(name = "商品创建人姓名")
  48. private String itemCreateName;
  49. /** 领样人ID */
  50. @Excel(name = "领样人ID")
  51. private Long collectSampleId;
  52. /** 领样人姓名 */
  53. @Excel(name = "领样人姓名")
  54. private String collectSampleName;
  55. /** 手卡信息 */
  56. @Excel(name = "手卡信息")
  57. private String partnerRecommendText;
  58. /** 达人id */
  59. @Excel(name = "达人id")
  60. private Long promoterId;
  61. /** 达人昵称 */
  62. @Excel(name = "达人昵称")
  63. private String promoterNickName;
  64. /** 达人手机号 */
  65. @Excel(name = "达人手机号")
  66. private String promoterPhone;
  67. /** 达人收获地址 */
  68. @Excel(name = "达人收获地址")
  69. private String promoterAddress;
  70. private String promoterUrl;
  71. /** 快递单号 */
  72. @Excel(name = "快递单号")
  73. private String courierNumber;
  74. /** 作业地址 */
  75. @Excel(name = "作业地址")
  76. private String taskFileUrl;
  77. /** 1-待审核 2-领样申请审核拒绝 3-领样审核通过-待录入订单号 4-已发货 5-已签收待上传作业 6-作业上传成功待招商审核 7-审核通过 */
  78. @Excel(name = "1-待审核 2-领样申请审核拒绝 3-领样审核通过-待录入订单号 4-已发货 5-已签收待上传作业 6-作业上传成功待招商审核 7-审核通过")
  79. private Integer collectSampleStatus;
  80. /** 状态备注 */
  81. @Excel(name = "状态备注")
  82. private String collectSampleDesc;
  83. @Transient
  84. private String companyCode;
  85. @Transient
  86. private Long userId;
  87. @Transient
  88. private String userName;
  89. public static long getSerialVersionUID() {
  90. return serialVersionUID;
  91. }
  92. public Long getId() {
  93. return id;
  94. }
  95. public void setId(Long id) {
  96. this.id = id;
  97. }
  98. public Long getItemId() {
  99. return itemId;
  100. }
  101. public void setItemId(Long itemId) {
  102. this.itemId = itemId;
  103. }
  104. public String getItemTitle() {
  105. return itemTitle;
  106. }
  107. public void setItemTitle(String itemTitle) {
  108. this.itemTitle = itemTitle;
  109. }
  110. public Long getItemPrice() {
  111. return itemPrice;
  112. }
  113. public void setItemPrice(Long itemPrice) {
  114. this.itemPrice = itemPrice;
  115. }
  116. public String getItemImgUrl() {
  117. return itemImgUrl;
  118. }
  119. public void setItemImgUrl(String itemImgUrl) {
  120. this.itemImgUrl = itemImgUrl;
  121. }
  122. public String getItemDesc() {
  123. return itemDesc;
  124. }
  125. public void setItemDesc(String itemDesc) {
  126. this.itemDesc = itemDesc;
  127. }
  128. public Long getCommissionRate() {
  129. return commissionRate;
  130. }
  131. public void setCommissionRate(Long commissionRate) {
  132. this.commissionRate = commissionRate;
  133. }
  134. public Long getRegimentalPromotion() {
  135. return regimentalPromotion;
  136. }
  137. public void setRegimentalPromotion(Long regimentalPromotion) {
  138. this.regimentalPromotion = regimentalPromotion;
  139. }
  140. public Integer getSampleCount() {
  141. return sampleCount;
  142. }
  143. public void setSampleCount(Integer sampleCount) {
  144. this.sampleCount = sampleCount;
  145. }
  146. public String getSampleRequirement() {
  147. return sampleRequirement;
  148. }
  149. public void setSampleRequirement(String sampleRequirement) {
  150. this.sampleRequirement = sampleRequirement;
  151. }
  152. public Long getItemCreateId() {
  153. return itemCreateId;
  154. }
  155. public void setItemCreateId(Long itemCreateId) {
  156. this.itemCreateId = itemCreateId;
  157. }
  158. public String getItemCreateName() {
  159. return itemCreateName;
  160. }
  161. public void setItemCreateName(String itemCreateName) {
  162. this.itemCreateName = itemCreateName;
  163. }
  164. public Long getCollectSampleId() {
  165. return collectSampleId;
  166. }
  167. public void setCollectSampleId(Long collectSampleId) {
  168. this.collectSampleId = collectSampleId;
  169. }
  170. public String getCollectSampleName() {
  171. return collectSampleName;
  172. }
  173. public void setCollectSampleName(String collectSampleName) {
  174. this.collectSampleName = collectSampleName;
  175. }
  176. public String getPartnerRecommendText() {
  177. return partnerRecommendText;
  178. }
  179. public void setPartnerRecommendText(String partnerRecommendText) {
  180. this.partnerRecommendText = partnerRecommendText;
  181. }
  182. public Long getPromoterId() {
  183. return promoterId;
  184. }
  185. public void setPromoterId(Long promoterId) {
  186. this.promoterId = promoterId;
  187. }
  188. public String getPromoterNickName() {
  189. return promoterNickName;
  190. }
  191. public void setPromoterNickName(String promoterNickName) {
  192. this.promoterNickName = promoterNickName;
  193. }
  194. public String getPromoterPhone() {
  195. return promoterPhone;
  196. }
  197. public void setPromoterPhone(String promoterPhone) {
  198. this.promoterPhone = promoterPhone;
  199. }
  200. public String getPromoterAddress() {
  201. return promoterAddress;
  202. }
  203. public void setPromoterAddress(String promoterAddress) {
  204. this.promoterAddress = promoterAddress;
  205. }
  206. public String getPromoterUrl() {
  207. return promoterUrl;
  208. }
  209. public void setPromoterUrl(String promoterUrl) {
  210. this.promoterUrl = promoterUrl;
  211. }
  212. public String getCourierNumber() {
  213. return courierNumber;
  214. }
  215. public void setCourierNumber(String courierNumber) {
  216. this.courierNumber = courierNumber;
  217. }
  218. public String getTaskFileUrl() {
  219. return taskFileUrl;
  220. }
  221. public void setTaskFileUrl(String taskFileUrl) {
  222. this.taskFileUrl = taskFileUrl;
  223. }
  224. public Integer getCollectSampleStatus() {
  225. return collectSampleStatus;
  226. }
  227. public void setCollectSampleStatus(Integer collectSampleStatus) {
  228. this.collectSampleStatus = collectSampleStatus;
  229. }
  230. public String getCollectSampleDesc() {
  231. return collectSampleDesc;
  232. }
  233. public void setCollectSampleDesc(String collectSampleDesc) {
  234. this.collectSampleDesc = collectSampleDesc;
  235. }
  236. public String getCompanyCode() {
  237. return companyCode;
  238. }
  239. public void setCompanyCode(String companyCode) {
  240. this.companyCode = companyCode;
  241. }
  242. public Long getUserId() {
  243. return userId;
  244. }
  245. public void setUserId(Long userId) {
  246. this.userId = userId;
  247. }
  248. public String getUserName() {
  249. return userName;
  250. }
  251. public void setUserName(String userName) {
  252. this.userName = userName;
  253. }
  254. @Override
  255. public String toString() {
  256. return "KuaishouItemCollectSamples{" +
  257. "id=" + id +
  258. ", itemId=" + itemId +
  259. ", itemTitle='" + itemTitle + '\'' +
  260. ", itemPrice=" + itemPrice +
  261. ", itemImgUrl='" + itemImgUrl + '\'' +
  262. ", itemDesc='" + itemDesc + '\'' +
  263. ", commissionRate=" + commissionRate +
  264. ", regimentalPromotion=" + regimentalPromotion +
  265. ", sampleCount=" + sampleCount +
  266. ", sampleRequirement='" + sampleRequirement + '\'' +
  267. ", itemCreateId=" + itemCreateId +
  268. ", itemCreateName='" + itemCreateName + '\'' +
  269. ", collectSampleId=" + collectSampleId +
  270. ", collectSampleName='" + collectSampleName + '\'' +
  271. ", partnerRecommendText='" + partnerRecommendText + '\'' +
  272. ", promoterId=" + promoterId +
  273. ", promoterNickName='" + promoterNickName + '\'' +
  274. ", promoterPhone='" + promoterPhone + '\'' +
  275. ", promoterAddress='" + promoterAddress + '\'' +
  276. ", promoterUrl='" + promoterUrl + '\'' +
  277. ", courierNumber='" + courierNumber + '\'' +
  278. ", taskFileUrl='" + taskFileUrl + '\'' +
  279. ", collectSampleStatus=" + collectSampleStatus +
  280. ", collectSampleDesc='" + collectSampleDesc + '\'' +
  281. ", companyCode='" + companyCode + '\'' +
  282. ", userId=" + userId +
  283. ", userName='" + userName + '\'' +
  284. '}';
  285. }
  286. }