GoodsEntity.java 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.ArrayList;
  5. import java.util.Date;
  6. import java.util.List;
  7. /**
  8. * @author Scott
  9. * @email
  10. * @date 2017-08-13 10:41:08
  11. */
  12. public class GoodsEntity implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. //主键
  15. private Long id;
  16. //商品类型Id
  17. private Integer categoryId;
  18. //供应商id
  19. private Integer supplierId;
  20. //商品序列号
  21. private String goodsSn;
  22. //名称
  23. private String name;
  24. //品牌Id
  25. private Integer brandId;
  26. //运费id
  27. private Integer freightId;
  28. //品牌
  29. private String brand;
  30. //商品库存
  31. private Integer goodsNumber;
  32. //关键字
  33. private String keywords;
  34. //简明介绍
  35. private String goodsBrief;
  36. //商品描述
  37. private String goodsDesc;
  38. //添加时间
  39. private Date addTime;
  40. //修改时间
  41. private Date updateTime;
  42. //排序
  43. private Integer sortOrder;
  44. //删除状态
  45. private Integer isDelete;
  46. //属性类别
  47. private Integer attributeCategory;
  48. //库存价格
  49. private BigDecimal counterPrice;
  50. //附加价格
  51. private BigDecimal extraPrice;
  52. //是否新商品
  53. private Integer isNew;
  54. //商品单位
  55. private String goodsUnit;
  56. //商品主图
  57. private String primaryPicUrl;
  58. //商品列表图
  59. private String listPicUrl;
  60. //商品税率
  61. private BigDecimal goodsRate;
  62. //零售价格
  63. // private BigDecimal retailPrice;
  64. //销售量
  65. private Integer sellVolume;
  66. //主sku product_id
  67. private Long primaryProductId;
  68. //单位价格,单价
  69. private BigDecimal unitPrice;
  70. //推广描述
  71. private String promotionDesc;
  72. //推广标签
  73. private String promotionTag;
  74. //APP专享价
  75. private BigDecimal appExclusivePrice;
  76. //是否是APP专属
  77. private Integer isAppExclusive;
  78. //限购
  79. private Integer isLimited;
  80. //上架
  81. private Integer isOnSale;
  82. //热销
  83. private Integer isHot;
  84. //市场价
  85. // private BigDecimal marketPrice;
  86. //零售价格
  87. private BigDecimal storeRetailPrice;
  88. //市场价
  89. private BigDecimal storeMarketPrice;
  90. /**
  91. * 产品条码
  92. */
  93. private String prodBarcode;
  94. /**
  95. * 计量单位代码,参见海关编码
  96. */
  97. private String unitCode;
  98. /**
  99. * 海关商品编码
  100. */
  101. private String cusGoodsCode;
  102. /**
  103. * 国检规格型号
  104. */
  105. private String ciqProdModel;
  106. /**
  107. * 原产国代码,海关编码
  108. */
  109. private String oriCntCode;
  110. /**
  111. * 原产国名称
  112. */
  113. private String oriCntName;
  114. /**
  115. * 海关申报要素,报统一版
  116. */
  117. private String cusDeclEle;
  118. /**
  119. * 海关备案编号,企业自编,用于报园区
  120. */
  121. private String cusRecCode;
  122. private String sku;
  123. private String goodsBizType;
  124. private String createrSn;
  125. private Date createTime;
  126. private String moderSn;
  127. private Date modTime;
  128. private Date tstm;
  129. /**
  130. * 用户ID
  131. */
  132. private Long createUserId;
  133. private Long createUserDeptId;
  134. // 商品规格
  135. // 商品规格编号
  136. /**
  137. * 用户ID
  138. */
  139. private Long updateUserId;
  140. // 商品类型
  141. private Integer goodsType = 0; // 0普通 1 2团购
  142. private List<GoodsAttributeEntity> attributeEntityList = new ArrayList<>();
  143. private List<GoodsGalleryEntity> goodsImgList = new ArrayList<>();
  144. private List<ProductEntity> productEntityList = new ArrayList<>();
  145. /**
  146. * 翻译用字段
  147. */
  148. //属性类别
  149. private String attributeCategoryName;
  150. //视频地址
  151. private String videoUrl;
  152. private String stockNum;
  153. private String storeName;
  154. private String productId;
  155. private Integer storeId;
  156. /**
  157. * 导入翻译数据
  158. */
  159. //商品类型
  160. private String categoryName;
  161. //品牌
  162. private String brandName;
  163. //商户编号
  164. private String merchSn;
  165. private String merchName;
  166. private String thirdPartyMerchCode;
  167. private String isStockShare;
  168. //毛重,kg
  169. private BigDecimal grossWeight;
  170. //净重,kg
  171. private BigDecimal netWeight;
  172. private String isSupplierGoods;
  173. private String goodsIsStockShare;
  174. private String isStockShareBySuppler;
  175. /**
  176. * 商品库存数量变化后是否已共享,0:否,1:是(下单、退款、取消订单触发)
  177. */
  178. private String isGoodsShareStock;
  179. // PLU
  180. private String plu;
  181. // 英文名称
  182. private String englishName;
  183. // 成本价
  184. private BigDecimal costPrice;
  185. // 日常价
  186. private BigDecimal dailyPrice;
  187. // 最后销售时间
  188. private Date lastSaleTime;
  189. // MychemID
  190. private String mychemId;
  191. private String hsCode;
  192. private String hsCodeName;
  193. private String isSyncHsCode;
  194. private String isSyncGoodsRate;
  195. private BigDecimal impConsumTaxRate;
  196. private BigDecimal valueAddedTaxRate;
  197. private BigDecimal cosmThresholdValue;
  198. private BigDecimal legalUnit1Qty;
  199. private BigDecimal legalUnit2Qty;
  200. private Integer toBeRestored;
  201. public BigDecimal getCosmThresholdValue() {
  202. return cosmThresholdValue;
  203. }
  204. public void setCosmThresholdValue(BigDecimal cosmThresholdValue) {
  205. this.cosmThresholdValue = cosmThresholdValue;
  206. }
  207. public BigDecimal getLegalUnit1Qty() {
  208. return legalUnit1Qty;
  209. }
  210. public void setLegalUnit1Qty(BigDecimal legalUnit1Qty) {
  211. this.legalUnit1Qty = legalUnit1Qty;
  212. }
  213. public BigDecimal getLegalUnit2Qty() {
  214. return legalUnit2Qty;
  215. }
  216. public void setLegalUnit2Qty(BigDecimal legalUnit2Qty) {
  217. this.legalUnit2Qty = legalUnit2Qty;
  218. }
  219. public BigDecimal getImpConsumTaxRate() {
  220. return impConsumTaxRate;
  221. }
  222. public void setImpConsumTaxRate(BigDecimal impConsumTaxRate) {
  223. this.impConsumTaxRate = impConsumTaxRate;
  224. }
  225. public BigDecimal getValueAddedTaxRate() {
  226. return valueAddedTaxRate;
  227. }
  228. public void setValueAddedTaxRate(BigDecimal valueAddedTaxRate) {
  229. this.valueAddedTaxRate = valueAddedTaxRate;
  230. }
  231. public String getIsSyncGoodsRate() {
  232. return isSyncGoodsRate;
  233. }
  234. public void setIsSyncGoodsRate(String isSyncGoodsRate) {
  235. this.isSyncGoodsRate = isSyncGoodsRate;
  236. }
  237. public String getIsSyncHsCode() {
  238. return isSyncHsCode;
  239. }
  240. public void setIsSyncHsCode(String isSyncHsCode) {
  241. this.isSyncHsCode = isSyncHsCode;
  242. }
  243. public String getHsCode() {
  244. return hsCode;
  245. }
  246. public void setHsCode(String hsCode) {
  247. this.hsCode = hsCode;
  248. }
  249. public String getHsCodeName() {
  250. return hsCodeName;
  251. }
  252. public void setHsCodeName(String hsCodeName) {
  253. this.hsCodeName = hsCodeName;
  254. }
  255. public String getMychemId() {
  256. return mychemId;
  257. }
  258. public void setMychemId(String mychemId) {
  259. this.mychemId = mychemId;
  260. }
  261. private String activity;
  262. // 单价
  263. private BigDecimal retailPrice;
  264. // 优惠金额
  265. private BigDecimal discountedPrice;
  266. // 实际支付价
  267. private BigDecimal actualPaymentAmount;
  268. public BigDecimal getRetailPrice() {
  269. return retailPrice;
  270. }
  271. public void setRetailPrice(BigDecimal retailPrice) {
  272. this.retailPrice = retailPrice;
  273. }
  274. public BigDecimal getDiscountedPrice() {
  275. return discountedPrice;
  276. }
  277. public void setDiscountedPrice(BigDecimal discountedPrice) {
  278. this.discountedPrice = discountedPrice;
  279. }
  280. public BigDecimal getActualPaymentAmount() {
  281. return actualPaymentAmount;
  282. }
  283. public void setActualPaymentAmount(BigDecimal actualPaymentAmount) {
  284. this.actualPaymentAmount = actualPaymentAmount;
  285. }
  286. public Date getLastSaleTime() {
  287. return lastSaleTime;
  288. }
  289. public void setLastSaleTime(Date lastSaleTime) {
  290. this.lastSaleTime = lastSaleTime;
  291. }
  292. public String getOriCntName() {
  293. return oriCntName;
  294. }
  295. public void setOriCntName(String oriCntName) {
  296. this.oriCntName = oriCntName;
  297. }
  298. public BigDecimal getCostPrice() {
  299. return costPrice;
  300. }
  301. public void setCostPrice(BigDecimal costPrice) {
  302. this.costPrice = costPrice;
  303. }
  304. public BigDecimal getDailyPrice() {
  305. return dailyPrice;
  306. }
  307. public void setDailyPrice(BigDecimal dailyPrice) {
  308. this.dailyPrice = dailyPrice;
  309. }
  310. public String getPlu() {
  311. return plu;
  312. }
  313. public void setPlu(String plu) {
  314. this.plu = plu;
  315. }
  316. public String getEnglishName() {
  317. return englishName;
  318. }
  319. public void setEnglishName(String englishName) {
  320. this.englishName = englishName;
  321. }
  322. public String getIsGoodsShareStock() {
  323. return isGoodsShareStock;
  324. }
  325. public void setIsGoodsShareStock(String isGoodsShareStock) {
  326. this.isGoodsShareStock = isGoodsShareStock;
  327. }
  328. public String getIsSupplierGoods() {
  329. return isSupplierGoods;
  330. }
  331. public void setIsSupplierGoods(String isSupplierGoods) {
  332. this.isSupplierGoods = isSupplierGoods;
  333. }
  334. public String getGoodsIsStockShare() {
  335. return goodsIsStockShare;
  336. }
  337. public void setGoodsIsStockShare(String goodsIsStockShare) {
  338. this.goodsIsStockShare = goodsIsStockShare;
  339. }
  340. public String getIsStockShareBySuppler() {
  341. return isStockShareBySuppler;
  342. }
  343. public void setIsStockShareBySuppler(String isStockShareBySuppler) {
  344. this.isStockShareBySuppler = isStockShareBySuppler;
  345. }
  346. public BigDecimal getGrossWeight() {
  347. return grossWeight;
  348. }
  349. public void setGrossWeight(BigDecimal grossWeight) {
  350. this.grossWeight = grossWeight;
  351. }
  352. public BigDecimal getNetWeight() {
  353. return netWeight;
  354. }
  355. public void setNetWeight(BigDecimal netWeight) {
  356. this.netWeight = netWeight;
  357. }
  358. public String getIsStockShare() {
  359. return isStockShare;
  360. }
  361. public void setIsStockShare(String isStockShare) {
  362. this.isStockShare = isStockShare;
  363. }
  364. public String getThirdPartyMerchCode() {
  365. return thirdPartyMerchCode;
  366. }
  367. public void setThirdPartyMerchCode(String thirdPartyMerchCode) {
  368. this.thirdPartyMerchCode = thirdPartyMerchCode;
  369. }
  370. public BigDecimal getStoreRetailPrice() {
  371. return storeRetailPrice;
  372. }
  373. public void setStoreRetailPrice(BigDecimal storeRetailPrice) {
  374. this.storeRetailPrice = storeRetailPrice;
  375. }
  376. public BigDecimal getStoreMarketPrice() {
  377. return storeMarketPrice;
  378. }
  379. public void setStoreMarketPrice(BigDecimal storeMarketPrice) {
  380. this.storeMarketPrice = storeMarketPrice;
  381. }
  382. public String getMerchName() {
  383. return merchName;
  384. }
  385. public void setMerchName(String merchName) {
  386. this.merchName = merchName;
  387. }
  388. public String getMerchSn() {
  389. return merchSn;
  390. }
  391. public void setMerchSn(String merchSn) {
  392. this.merchSn = merchSn;
  393. }
  394. public Integer getStoreId() {
  395. return storeId;
  396. }
  397. public void setStoreId(Integer storeId) {
  398. this.storeId = storeId;
  399. }
  400. public String getProductId() {
  401. return productId;
  402. }
  403. public void setProductId(String productId) {
  404. this.productId = productId;
  405. }
  406. public String getStockNum() {
  407. return stockNum;
  408. }
  409. public void setStockNum(String stockNum) {
  410. this.stockNum = stockNum;
  411. }
  412. public String getStoreName() {
  413. return storeName;
  414. }
  415. public void setStoreName(String storeName) {
  416. this.storeName = storeName;
  417. }
  418. public Integer getSupplierId() {
  419. return supplierId;
  420. }
  421. public void setSupplierId(Integer supplierId) {
  422. this.supplierId = supplierId;
  423. }
  424. public String getVideoUrl() {
  425. return videoUrl;
  426. }
  427. public void setVideoUrl(String videoUrl) {
  428. this.videoUrl = videoUrl;
  429. }
  430. public String getSku() {
  431. return sku;
  432. }
  433. public void setSku(String sku) {
  434. this.sku = sku;
  435. }
  436. public String getGoodsBizType() {
  437. return goodsBizType;
  438. }
  439. public void setGoodsBizType(String goodsBizType) {
  440. this.goodsBizType = goodsBizType;
  441. }
  442. public String getCreaterSn() {
  443. return createrSn;
  444. }
  445. public void setCreaterSn(String createrSn) {
  446. this.createrSn = createrSn;
  447. }
  448. public Date getCreateTime() {
  449. return createTime;
  450. }
  451. public void setCreateTime(Date createTime) {
  452. this.createTime = createTime;
  453. }
  454. public String getModerSn() {
  455. return moderSn;
  456. }
  457. public void setModerSn(String moderSn) {
  458. this.moderSn = moderSn;
  459. }
  460. public Date getModTime() {
  461. return modTime;
  462. }
  463. public void setModTime(Date modTime) {
  464. this.modTime = modTime;
  465. }
  466. public Date getTstm() {
  467. return tstm;
  468. }
  469. public void setTstm(Date tstm) {
  470. this.tstm = tstm;
  471. }
  472. public Long getCreateUserDeptId() {
  473. return createUserDeptId;
  474. }
  475. public void setCreateUserDeptId(Long createUserDeptId) {
  476. this.createUserDeptId = createUserDeptId;
  477. }
  478. public List<GoodsGalleryEntity> getGoodsImgList() {
  479. return goodsImgList;
  480. }
  481. public void setGoodsImgList(List<GoodsGalleryEntity> goodsImgList) {
  482. this.goodsImgList = goodsImgList;
  483. }
  484. public String getBrandName() {
  485. return brandName;
  486. }
  487. public void setBrandName(String brandName) {
  488. this.brandName = brandName;
  489. }
  490. public String getAttributeCategoryName() {
  491. return attributeCategoryName;
  492. }
  493. public void setAttributeCategoryName(String attributeCategoryName) {
  494. this.attributeCategoryName = attributeCategoryName;
  495. }
  496. public String getCategoryName() {
  497. return categoryName;
  498. }
  499. public void setCategoryName(String categoryName) {
  500. this.categoryName = categoryName;
  501. }
  502. /**
  503. * 设置:主键
  504. */
  505. public void setId(Long id) {
  506. this.id = id;
  507. }
  508. /**
  509. * 获取:主键
  510. */
  511. public Long getId() {
  512. return id;
  513. }
  514. /**
  515. * 设置:商品类型Id
  516. */
  517. public void setCategoryId(Integer categoryId) {
  518. this.categoryId = categoryId;
  519. }
  520. /**
  521. * 获取:商品类型Id
  522. */
  523. public Integer getCategoryId() {
  524. return categoryId;
  525. }
  526. /**
  527. * 设置:商品序列号
  528. */
  529. public void setGoodsSn(String goodsSn) {
  530. this.goodsSn = goodsSn;
  531. }
  532. /**
  533. * 获取:商品序列号
  534. */
  535. public String getGoodsSn() {
  536. return goodsSn;
  537. }
  538. /**
  539. * 设置:名称
  540. */
  541. public void setName(String name) {
  542. this.name = name;
  543. }
  544. /**
  545. * 获取:名称
  546. */
  547. public String getName() {
  548. return name;
  549. }
  550. public Integer getFreightId() {
  551. return freightId;
  552. }
  553. public void setFreightId(Integer freightId) {
  554. this.freightId = freightId;
  555. }
  556. /**
  557. * 设置:品牌Id
  558. */
  559. public void setBrandId(Integer brandId) {
  560. this.brandId = brandId;
  561. }
  562. /**
  563. * 获取:品牌Id
  564. */
  565. public Integer getBrandId() {
  566. return brandId;
  567. }
  568. public String getBrand() {
  569. return brand;
  570. }
  571. public void setBrand(String brand) {
  572. this.brand = brand;
  573. }
  574. /**
  575. * 设置:商品序列号
  576. */
  577. public void setGoodsNumber(Integer goodsNumber) {
  578. this.goodsNumber = goodsNumber;
  579. }
  580. /**
  581. * 获取:商品序列号
  582. */
  583. public Integer getGoodsNumber() {
  584. return goodsNumber;
  585. }
  586. /**
  587. * 设置:关键字
  588. */
  589. public void setKeywords(String keywords) {
  590. this.keywords = keywords;
  591. }
  592. /**
  593. * 获取:关键字
  594. */
  595. public String getKeywords() {
  596. return keywords;
  597. }
  598. /**
  599. * 设置:简明介绍
  600. */
  601. public void setGoodsBrief(String goodsBrief) {
  602. this.goodsBrief = goodsBrief;
  603. }
  604. /**
  605. * 获取:简明介绍
  606. */
  607. public String getGoodsBrief() {
  608. return goodsBrief;
  609. }
  610. /**
  611. * 设置:商品描述
  612. */
  613. public void setGoodsDesc(String goodsDesc) {
  614. this.goodsDesc = goodsDesc;
  615. }
  616. /**
  617. * 获取:商品描述
  618. */
  619. public String getGoodsDesc() {
  620. return goodsDesc;
  621. }
  622. /**
  623. * 设置:上架
  624. */
  625. public void setIsOnSale(Integer isOnSale) {
  626. this.isOnSale = isOnSale;
  627. }
  628. /**
  629. * 获取:上架
  630. */
  631. public Integer getIsOnSale() {
  632. return isOnSale;
  633. }
  634. /**
  635. * 设置:添加时间
  636. */
  637. public void setAddTime(Date addTime) {
  638. this.addTime = addTime;
  639. }
  640. /**
  641. * 获取:添加时间
  642. */
  643. public Date getAddTime() {
  644. return addTime;
  645. }
  646. /**
  647. * 设置:排序
  648. */
  649. public void setSortOrder(Integer sortOrder) {
  650. this.sortOrder = sortOrder;
  651. }
  652. /**
  653. * 获取:排序
  654. */
  655. public Integer getSortOrder() {
  656. return sortOrder;
  657. }
  658. /**
  659. * 设置:删除状态
  660. */
  661. public void setIsDelete(Integer isDelete) {
  662. this.isDelete = isDelete;
  663. }
  664. /**
  665. * 获取:删除状态
  666. */
  667. public Integer getIsDelete() {
  668. return isDelete;
  669. }
  670. /**
  671. * 设置:属性类别
  672. */
  673. public void setAttributeCategory(Integer attributeCategory) {
  674. this.attributeCategory = attributeCategory;
  675. }
  676. /**
  677. * 获取:属性类别
  678. */
  679. public Integer getAttributeCategory() {
  680. return attributeCategory;
  681. }
  682. /**
  683. * 设置:专柜价格
  684. */
  685. public void setCounterPrice(BigDecimal counterPrice) {
  686. this.counterPrice = counterPrice;
  687. }
  688. /**
  689. * 获取:专柜价格
  690. */
  691. public BigDecimal getCounterPrice() {
  692. return counterPrice;
  693. }
  694. /**
  695. * 设置:附加价格
  696. */
  697. public void setExtraPrice(BigDecimal extraPrice) {
  698. this.extraPrice = extraPrice;
  699. }
  700. /**
  701. * 获取:附加价格
  702. */
  703. public BigDecimal getExtraPrice() {
  704. return extraPrice;
  705. }
  706. /**
  707. * 设置:是否新商品
  708. */
  709. public void setIsNew(Integer isNew) {
  710. this.isNew = isNew;
  711. }
  712. /**
  713. * 获取:是否新商品
  714. */
  715. public Integer getIsNew() {
  716. return isNew;
  717. }
  718. /**
  719. * 设置:商品单位
  720. */
  721. public void setGoodsUnit(String goodsUnit) {
  722. this.goodsUnit = goodsUnit;
  723. }
  724. /**
  725. * 获取:商品单位
  726. */
  727. public String getGoodsUnit() {
  728. return goodsUnit;
  729. }
  730. /**
  731. * 设置:商品主图
  732. */
  733. public void setPrimaryPicUrl(String primaryPicUrl) {
  734. this.primaryPicUrl = primaryPicUrl;
  735. }
  736. /**
  737. * 获取:商品主图
  738. */
  739. public String getPrimaryPicUrl() {
  740. return primaryPicUrl;
  741. }
  742. /**
  743. * 设置:商品列表图
  744. */
  745. public void setListPicUrl(String listPicUrl) {
  746. this.listPicUrl = listPicUrl;
  747. }
  748. /**
  749. * 获取:商品列表图
  750. */
  751. public String getListPicUrl() {
  752. return listPicUrl;
  753. }
  754. public BigDecimal getGoodsRate() {
  755. return goodsRate;
  756. }
  757. public void setGoodsRate(BigDecimal goodsRate) {
  758. this.goodsRate = goodsRate;
  759. }
  760. // /**
  761. // * 设置:零售价格
  762. // */
  763. // public void setRetailPrice(BigDecimal retailPrice) {
  764. // this.retailPrice = retailPrice;
  765. // }
  766. //
  767. // /**
  768. // * 获取:零售价格
  769. // */
  770. // public BigDecimal getRetailPrice() {
  771. // return retailPrice;
  772. // }
  773. /**
  774. * 设置:销售量
  775. */
  776. public void setSellVolume(Integer sellVolume) {
  777. this.sellVolume = sellVolume;
  778. }
  779. /**
  780. * 获取:销售量
  781. */
  782. public Integer getSellVolume() {
  783. return sellVolume;
  784. }
  785. /**
  786. * 设置:主sku product_id
  787. */
  788. public void setPrimaryProductId(Long primaryProductId) {
  789. this.primaryProductId = primaryProductId;
  790. }
  791. /**
  792. * 获取:主sku product_id
  793. */
  794. public Long getPrimaryProductId() {
  795. return primaryProductId;
  796. }
  797. /**
  798. * 设置:单位价格,单价
  799. */
  800. public void setUnitPrice(BigDecimal unitPrice) {
  801. this.unitPrice = unitPrice;
  802. }
  803. /**
  804. * 获取:单位价格,单价
  805. */
  806. public BigDecimal getUnitPrice() {
  807. return unitPrice;
  808. }
  809. /**
  810. * 设置:推广描述
  811. */
  812. public void setPromotionDesc(String promotionDesc) {
  813. this.promotionDesc = promotionDesc;
  814. }
  815. /**
  816. * 获取:推广描述
  817. */
  818. public String getPromotionDesc() {
  819. return promotionDesc;
  820. }
  821. /**
  822. * 设置:推广标签
  823. */
  824. public void setPromotionTag(String promotionTag) {
  825. this.promotionTag = promotionTag;
  826. }
  827. /**
  828. * 获取:推广标签
  829. */
  830. public String getPromotionTag() {
  831. return promotionTag;
  832. }
  833. /**
  834. * 设置:APP专享价
  835. */
  836. public void setAppExclusivePrice(BigDecimal appExclusivePrice) {
  837. this.appExclusivePrice = appExclusivePrice;
  838. }
  839. /**
  840. * 获取:APP专享价
  841. */
  842. public BigDecimal getAppExclusivePrice() {
  843. return appExclusivePrice;
  844. }
  845. /**
  846. * 设置:是否是APP专属
  847. */
  848. public void setIsAppExclusive(Integer isAppExclusive) {
  849. this.isAppExclusive = isAppExclusive;
  850. }
  851. /**
  852. * 获取:是否是APP专属
  853. */
  854. public Integer getIsAppExclusive() {
  855. return isAppExclusive;
  856. }
  857. /**
  858. * 设置:限购
  859. */
  860. public void setIsLimited(Integer isLimited) {
  861. this.isLimited = isLimited;
  862. }
  863. /**
  864. * 获取:限购
  865. */
  866. public Integer getIsLimited() {
  867. return isLimited;
  868. }
  869. /**
  870. * 设置:热销
  871. */
  872. public void setIsHot(Integer isHot) {
  873. this.isHot = isHot;
  874. }
  875. /**
  876. * 获取:热销
  877. */
  878. public Integer getIsHot() {
  879. return isHot;
  880. }
  881. // public BigDecimal getMarketPrice() {
  882. // return marketPrice;
  883. // }
  884. //
  885. // public void setMarketPrice(BigDecimal marketPrice) {
  886. // this.marketPrice = marketPrice;
  887. // }
  888. public List<GoodsAttributeEntity> getAttributeEntityList() {
  889. return attributeEntityList;
  890. }
  891. public void setAttributeEntityList(List<GoodsAttributeEntity> attributeEntityList) {
  892. this.attributeEntityList = attributeEntityList;
  893. }
  894. public Long getCreateUserId() {
  895. return createUserId;
  896. }
  897. public void setCreateUserId(Long createUserId) {
  898. this.createUserId = createUserId;
  899. }
  900. public Long getUpdateUserId() {
  901. return updateUserId;
  902. }
  903. public void setUpdateUserId(Long updateUserId) {
  904. this.updateUserId = updateUserId;
  905. }
  906. public Date getUpdateTime() {
  907. return updateTime;
  908. }
  909. public void setUpdateTime(Date updateTime) {
  910. this.updateTime = updateTime;
  911. }
  912. public List<ProductEntity> getProductEntityList() {
  913. return productEntityList;
  914. }
  915. public void setProductEntityList(List<ProductEntity> productEntityList) {
  916. this.productEntityList = productEntityList;
  917. }
  918. public Integer getGoodsType() {
  919. return goodsType;
  920. }
  921. public void setGoodsType(Integer goodsType) {
  922. this.goodsType = goodsType;
  923. }
  924. public String getProdBarcode() {
  925. return prodBarcode;
  926. }
  927. public void setProdBarcode(String prodBarcode) {
  928. this.prodBarcode = prodBarcode;
  929. }
  930. public String getUnitCode() {
  931. return unitCode;
  932. }
  933. public void setUnitCode(String unitCode) {
  934. this.unitCode = unitCode;
  935. }
  936. public String getCusGoodsCode() {
  937. return cusGoodsCode;
  938. }
  939. public void setCusGoodsCode(String cusGoodsCode) {
  940. this.cusGoodsCode = cusGoodsCode;
  941. }
  942. public String getCiqProdModel() {
  943. return ciqProdModel;
  944. }
  945. public void setCiqProdModel(String ciqProdModel) {
  946. this.ciqProdModel = ciqProdModel;
  947. }
  948. public String getOriCntCode() {
  949. return oriCntCode;
  950. }
  951. public void setOriCntCode(String oriCntCode) {
  952. this.oriCntCode = oriCntCode;
  953. }
  954. public String getCusDeclEle() {
  955. return cusDeclEle;
  956. }
  957. public void setCusDeclEle(String cusDeclEle) {
  958. this.cusDeclEle = cusDeclEle;
  959. }
  960. public String getCusRecCode() {
  961. return cusRecCode;
  962. }
  963. public void setCusRecCode(String cusRecCode) {
  964. this.cusRecCode = cusRecCode;
  965. }
  966. public String getActivity() {
  967. return activity;
  968. }
  969. public void setActivity(String activity) {
  970. this.activity = activity;
  971. }
  972. public Integer getToBeRestored() {
  973. return toBeRestored;
  974. }
  975. public void setToBeRestored(Integer toBeRestored) {
  976. this.toBeRestored = toBeRestored;
  977. }
  978. }