KuaishouItemCollectSamples.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481
  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. private static final long serialVersionUID = 1L;
  13. /**
  14. * $column.columnComment
  15. */
  16. private Long id;
  17. /**
  18. * 商品ID
  19. */
  20. @Excel(name = "商品ID")
  21. private Long itemId;
  22. /**
  23. * 商品标题
  24. */
  25. @Excel(name = "商品标题")
  26. private String itemTitle;
  27. /**
  28. * 商品单价-分
  29. */
  30. @Excel(name = "商品单价-分")
  31. private Long itemPrice;
  32. /**
  33. * 商品图片链接
  34. */
  35. @Excel(name = "商品图片链接")
  36. private String itemImgUrl;
  37. /**
  38. * 商品备注
  39. */
  40. @Excel(name = "商品备注")
  41. private String itemDesc;
  42. /**
  43. * 佣金比例
  44. */
  45. @Excel(name = "佣金比例")
  46. private Long commissionRate;
  47. /**
  48. * 服务费
  49. */
  50. @Excel(name = "服务费")
  51. private Long regimentalPromotion;
  52. /**
  53. * 领样数量
  54. */
  55. @Excel(name = "领样数量")
  56. private Integer sampleCount;
  57. /**
  58. * 领样规则
  59. */
  60. @Excel(name = "领样规则")
  61. private String sampleRequirement;
  62. /**
  63. * 商品创建人ID
  64. */
  65. @Excel(name = "商品创建人ID")
  66. private Long itemCreateId;
  67. /**
  68. * 商品创建人姓名
  69. */
  70. @Excel(name = "商品创建人姓名")
  71. private String itemCreateName;
  72. /**
  73. * 领样人ID
  74. */
  75. @Excel(name = "领样人ID")
  76. private Long collectSampleId;
  77. /**
  78. * 领样人姓名
  79. */
  80. @Excel(name = "领样人姓名")
  81. private String collectSampleName;
  82. /**
  83. * 手卡信息
  84. */
  85. @Excel(name = "手卡信息")
  86. private String partnerRecommendText;
  87. /**
  88. * 达人id
  89. */
  90. @Excel(name = "达人id")
  91. private Long promoterId;
  92. /**
  93. * 达人昵称
  94. */
  95. @Excel(name = "达人昵称")
  96. private String promoterNickName;
  97. /**
  98. * 达人手机号
  99. */
  100. @Excel(name = "达人手机号")
  101. private String promoterPhone;
  102. /**
  103. * 达人收获地址
  104. */
  105. @Excel(name = "达人收获地址")
  106. private String promoterAddress;
  107. private String promoterUrl;
  108. private String consignee;
  109. /**
  110. * 快递单号
  111. */
  112. @Excel(name = "快递单号")
  113. private String courierNumber;
  114. /**
  115. * 作业地址
  116. */
  117. @Excel(name = "作业地址")
  118. private String taskFileUrl;
  119. /**
  120. * 1-待审核 2-领样申请审核拒绝 3-领样审核通过-待录入订单号 4-已发货 5-已签收待上传作业 6-作业上传成功待招商审核 7-审核通过
  121. */
  122. @Excel(name = "1-待审核 2-领样申请审核拒绝 3-领样审核通过-待录入订单号 4-已发货 5-已签收待上传作业 6-作业上传成功待招商审核 7-审核通过")
  123. private Integer collectSampleStatus;
  124. /**
  125. * 状态备注
  126. */
  127. @Excel(name = "状态备注")
  128. private String collectSampleDesc;
  129. @Transient
  130. private String companyCode;
  131. @Transient
  132. private Long userId;
  133. @Transient
  134. private String userName;
  135. @Transient
  136. private Long validAmount;
  137. @Transient
  138. private Long validOrderNum;
  139. @Transient
  140. private Long promoterOrderNum;
  141. private Integer sampleVoucherStatus;
  142. private String sampleVoucher;
  143. public static long getSerialVersionUID() {
  144. return serialVersionUID;
  145. }
  146. public Long getId() {
  147. return id;
  148. }
  149. public void setId(Long id) {
  150. this.id = id;
  151. }
  152. public Long getItemId() {
  153. return itemId;
  154. }
  155. public void setItemId(Long itemId) {
  156. this.itemId = itemId;
  157. }
  158. public String getItemTitle() {
  159. return itemTitle;
  160. }
  161. public void setItemTitle(String itemTitle) {
  162. this.itemTitle = itemTitle;
  163. }
  164. public Long getItemPrice() {
  165. return itemPrice;
  166. }
  167. public void setItemPrice(Long itemPrice) {
  168. this.itemPrice = itemPrice;
  169. }
  170. public String getItemImgUrl() {
  171. return itemImgUrl;
  172. }
  173. public void setItemImgUrl(String itemImgUrl) {
  174. this.itemImgUrl = itemImgUrl;
  175. }
  176. public String getItemDesc() {
  177. return itemDesc;
  178. }
  179. public void setItemDesc(String itemDesc) {
  180. this.itemDesc = itemDesc;
  181. }
  182. public Long getCommissionRate() {
  183. return commissionRate;
  184. }
  185. public void setCommissionRate(Long commissionRate) {
  186. this.commissionRate = commissionRate;
  187. }
  188. public Long getRegimentalPromotion() {
  189. return regimentalPromotion;
  190. }
  191. public void setRegimentalPromotion(Long regimentalPromotion) {
  192. this.regimentalPromotion = regimentalPromotion;
  193. }
  194. public Integer getSampleCount() {
  195. return sampleCount;
  196. }
  197. public void setSampleCount(Integer sampleCount) {
  198. this.sampleCount = sampleCount;
  199. }
  200. public String getSampleRequirement() {
  201. return sampleRequirement;
  202. }
  203. public void setSampleRequirement(String sampleRequirement) {
  204. this.sampleRequirement = sampleRequirement;
  205. }
  206. public Long getItemCreateId() {
  207. return itemCreateId;
  208. }
  209. public void setItemCreateId(Long itemCreateId) {
  210. this.itemCreateId = itemCreateId;
  211. }
  212. public String getItemCreateName() {
  213. return itemCreateName;
  214. }
  215. public void setItemCreateName(String itemCreateName) {
  216. this.itemCreateName = itemCreateName;
  217. }
  218. public Long getCollectSampleId() {
  219. return collectSampleId;
  220. }
  221. public void setCollectSampleId(Long collectSampleId) {
  222. this.collectSampleId = collectSampleId;
  223. }
  224. public String getCollectSampleName() {
  225. return collectSampleName;
  226. }
  227. public void setCollectSampleName(String collectSampleName) {
  228. this.collectSampleName = collectSampleName;
  229. }
  230. public String getPartnerRecommendText() {
  231. return partnerRecommendText;
  232. }
  233. public void setPartnerRecommendText(String partnerRecommendText) {
  234. this.partnerRecommendText = partnerRecommendText;
  235. }
  236. public Long getPromoterId() {
  237. return promoterId;
  238. }
  239. public void setPromoterId(Long promoterId) {
  240. this.promoterId = promoterId;
  241. }
  242. public String getPromoterNickName() {
  243. return promoterNickName;
  244. }
  245. public void setPromoterNickName(String promoterNickName) {
  246. this.promoterNickName = promoterNickName;
  247. }
  248. public String getPromoterPhone() {
  249. return promoterPhone;
  250. }
  251. public void setPromoterPhone(String promoterPhone) {
  252. this.promoterPhone = promoterPhone;
  253. }
  254. public String getPromoterAddress() {
  255. return promoterAddress;
  256. }
  257. public void setPromoterAddress(String promoterAddress) {
  258. this.promoterAddress = promoterAddress;
  259. }
  260. public String getPromoterUrl() {
  261. return promoterUrl;
  262. }
  263. public void setPromoterUrl(String promoterUrl) {
  264. this.promoterUrl = promoterUrl;
  265. }
  266. public String getConsignee() {
  267. return consignee;
  268. }
  269. public void setConsignee(String consignee) {
  270. this.consignee = consignee;
  271. }
  272. public String getCourierNumber() {
  273. return courierNumber;
  274. }
  275. public void setCourierNumber(String courierNumber) {
  276. this.courierNumber = courierNumber;
  277. }
  278. public String getTaskFileUrl() {
  279. return taskFileUrl;
  280. }
  281. public void setTaskFileUrl(String taskFileUrl) {
  282. this.taskFileUrl = taskFileUrl;
  283. }
  284. public Integer getCollectSampleStatus() {
  285. return collectSampleStatus;
  286. }
  287. public void setCollectSampleStatus(Integer collectSampleStatus) {
  288. this.collectSampleStatus = collectSampleStatus;
  289. }
  290. public String getCollectSampleDesc() {
  291. return collectSampleDesc;
  292. }
  293. public void setCollectSampleDesc(String collectSampleDesc) {
  294. this.collectSampleDesc = collectSampleDesc;
  295. }
  296. public String getCompanyCode() {
  297. return companyCode;
  298. }
  299. public void setCompanyCode(String companyCode) {
  300. this.companyCode = companyCode;
  301. }
  302. public Long getUserId() {
  303. return userId;
  304. }
  305. public void setUserId(Long userId) {
  306. this.userId = userId;
  307. }
  308. public String getUserName() {
  309. return userName;
  310. }
  311. public void setUserName(String userName) {
  312. this.userName = userName;
  313. }
  314. public Long getValidAmount() {
  315. return validAmount;
  316. }
  317. public void setValidAmount(Long validAmount) {
  318. this.validAmount = validAmount;
  319. }
  320. public Long getValidOrderNum() {
  321. return validOrderNum;
  322. }
  323. public void setValidOrderNum(Long validOrderNum) {
  324. this.validOrderNum = validOrderNum;
  325. }
  326. public Long getPromoterOrderNum() {
  327. return promoterOrderNum;
  328. }
  329. public void setPromoterOrderNum(Long promoterOrderNum) {
  330. this.promoterOrderNum = promoterOrderNum;
  331. }
  332. public Integer getSampleVoucherStatus() {
  333. return sampleVoucherStatus;
  334. }
  335. public void setSampleVoucherStatus(Integer sampleVoucherStatus) {
  336. this.sampleVoucherStatus = sampleVoucherStatus;
  337. }
  338. public String getSampleVoucher() {
  339. return sampleVoucher;
  340. }
  341. public void setSampleVoucher(String sampleVoucher) {
  342. this.sampleVoucher = sampleVoucher;
  343. }
  344. @Override
  345. public String toString() {
  346. return "KuaishouItemCollectSamples{" +
  347. "id=" + id +
  348. ", itemId=" + itemId +
  349. ", itemTitle='" + itemTitle + '\'' +
  350. ", itemPrice=" + itemPrice +
  351. ", itemImgUrl='" + itemImgUrl + '\'' +
  352. ", itemDesc='" + itemDesc + '\'' +
  353. ", commissionRate=" + commissionRate +
  354. ", regimentalPromotion=" + regimentalPromotion +
  355. ", sampleCount=" + sampleCount +
  356. ", sampleRequirement='" + sampleRequirement + '\'' +
  357. ", itemCreateId=" + itemCreateId +
  358. ", itemCreateName='" + itemCreateName + '\'' +
  359. ", collectSampleId=" + collectSampleId +
  360. ", collectSampleName='" + collectSampleName + '\'' +
  361. ", partnerRecommendText='" + partnerRecommendText + '\'' +
  362. ", promoterId=" + promoterId +
  363. ", promoterNickName='" + promoterNickName + '\'' +
  364. ", promoterPhone='" + promoterPhone + '\'' +
  365. ", promoterAddress='" + promoterAddress + '\'' +
  366. ", promoterUrl='" + promoterUrl + '\'' +
  367. ", consignee='" + consignee + '\'' +
  368. ", courierNumber='" + courierNumber + '\'' +
  369. ", taskFileUrl='" + taskFileUrl + '\'' +
  370. ", collectSampleStatus=" + collectSampleStatus +
  371. ", collectSampleDesc='" + collectSampleDesc + '\'' +
  372. ", companyCode='" + companyCode + '\'' +
  373. ", userId=" + userId +
  374. ", userName='" + userName + '\'' +
  375. ", validAmount=" + validAmount +
  376. ", validOrderNum=" + validOrderNum +
  377. ", promoterOrderNum=" + promoterOrderNum +
  378. ", sampleVoucherStatus=" + sampleVoucherStatus +
  379. ", sampleVoucher='" + sampleVoucher + '\'' +
  380. '}';
  381. }
  382. }