GoodsEntity.java 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215
  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. public BigDecimal getCosmThresholdValue() {
  201. return cosmThresholdValue;
  202. }
  203. public void setCosmThresholdValue(BigDecimal cosmThresholdValue) {
  204. this.cosmThresholdValue = cosmThresholdValue;
  205. }
  206. public BigDecimal getLegalUnit1Qty() {
  207. return legalUnit1Qty;
  208. }
  209. public void setLegalUnit1Qty(BigDecimal legalUnit1Qty) {
  210. this.legalUnit1Qty = legalUnit1Qty;
  211. }
  212. public BigDecimal getLegalUnit2Qty() {
  213. return legalUnit2Qty;
  214. }
  215. public void setLegalUnit2Qty(BigDecimal legalUnit2Qty) {
  216. this.legalUnit2Qty = legalUnit2Qty;
  217. }
  218. public BigDecimal getImpConsumTaxRate() {
  219. return impConsumTaxRate;
  220. }
  221. public void setImpConsumTaxRate(BigDecimal impConsumTaxRate) {
  222. this.impConsumTaxRate = impConsumTaxRate;
  223. }
  224. public BigDecimal getValueAddedTaxRate() {
  225. return valueAddedTaxRate;
  226. }
  227. public void setValueAddedTaxRate(BigDecimal valueAddedTaxRate) {
  228. this.valueAddedTaxRate = valueAddedTaxRate;
  229. }
  230. public String getIsSyncGoodsRate() {
  231. return isSyncGoodsRate;
  232. }
  233. public void setIsSyncGoodsRate(String isSyncGoodsRate) {
  234. this.isSyncGoodsRate = isSyncGoodsRate;
  235. }
  236. public String getIsSyncHsCode() {
  237. return isSyncHsCode;
  238. }
  239. public void setIsSyncHsCode(String isSyncHsCode) {
  240. this.isSyncHsCode = isSyncHsCode;
  241. }
  242. public String getHsCode() {
  243. return hsCode;
  244. }
  245. public void setHsCode(String hsCode) {
  246. this.hsCode = hsCode;
  247. }
  248. public String getHsCodeName() {
  249. return hsCodeName;
  250. }
  251. public void setHsCodeName(String hsCodeName) {
  252. this.hsCodeName = hsCodeName;
  253. }
  254. public String getMychemId() {
  255. return mychemId;
  256. }
  257. public void setMychemId(String mychemId) {
  258. this.mychemId = mychemId;
  259. }
  260. private String activity;
  261. // 单价
  262. private BigDecimal retailPrice;
  263. // 优惠金额
  264. private BigDecimal discountedPrice;
  265. // 实际支付价
  266. private BigDecimal actualPaymentAmount;
  267. public BigDecimal getRetailPrice() {
  268. return retailPrice;
  269. }
  270. public void setRetailPrice(BigDecimal retailPrice) {
  271. this.retailPrice = retailPrice;
  272. }
  273. public BigDecimal getDiscountedPrice() {
  274. return discountedPrice;
  275. }
  276. public void setDiscountedPrice(BigDecimal discountedPrice) {
  277. this.discountedPrice = discountedPrice;
  278. }
  279. public BigDecimal getActualPaymentAmount() {
  280. return actualPaymentAmount;
  281. }
  282. public void setActualPaymentAmount(BigDecimal actualPaymentAmount) {
  283. this.actualPaymentAmount = actualPaymentAmount;
  284. }
  285. public Date getLastSaleTime() {
  286. return lastSaleTime;
  287. }
  288. public void setLastSaleTime(Date lastSaleTime) {
  289. this.lastSaleTime = lastSaleTime;
  290. }
  291. public String getOriCntName() {
  292. return oriCntName;
  293. }
  294. public void setOriCntName(String oriCntName) {
  295. this.oriCntName = oriCntName;
  296. }
  297. public BigDecimal getCostPrice() {
  298. return costPrice;
  299. }
  300. public void setCostPrice(BigDecimal costPrice) {
  301. this.costPrice = costPrice;
  302. }
  303. public BigDecimal getDailyPrice() {
  304. return dailyPrice;
  305. }
  306. public void setDailyPrice(BigDecimal dailyPrice) {
  307. this.dailyPrice = dailyPrice;
  308. }
  309. public String getPlu() {
  310. return plu;
  311. }
  312. public void setPlu(String plu) {
  313. this.plu = plu;
  314. }
  315. public String getEnglishName() {
  316. return englishName;
  317. }
  318. public void setEnglishName(String englishName) {
  319. this.englishName = englishName;
  320. }
  321. public String getIsGoodsShareStock() {
  322. return isGoodsShareStock;
  323. }
  324. public void setIsGoodsShareStock(String isGoodsShareStock) {
  325. this.isGoodsShareStock = isGoodsShareStock;
  326. }
  327. public String getIsSupplierGoods() {
  328. return isSupplierGoods;
  329. }
  330. public void setIsSupplierGoods(String isSupplierGoods) {
  331. this.isSupplierGoods = isSupplierGoods;
  332. }
  333. public String getGoodsIsStockShare() {
  334. return goodsIsStockShare;
  335. }
  336. public void setGoodsIsStockShare(String goodsIsStockShare) {
  337. this.goodsIsStockShare = goodsIsStockShare;
  338. }
  339. public String getIsStockShareBySuppler() {
  340. return isStockShareBySuppler;
  341. }
  342. public void setIsStockShareBySuppler(String isStockShareBySuppler) {
  343. this.isStockShareBySuppler = isStockShareBySuppler;
  344. }
  345. public BigDecimal getGrossWeight() {
  346. return grossWeight;
  347. }
  348. public void setGrossWeight(BigDecimal grossWeight) {
  349. this.grossWeight = grossWeight;
  350. }
  351. public BigDecimal getNetWeight() {
  352. return netWeight;
  353. }
  354. public void setNetWeight(BigDecimal netWeight) {
  355. this.netWeight = netWeight;
  356. }
  357. public String getIsStockShare() {
  358. return isStockShare;
  359. }
  360. public void setIsStockShare(String isStockShare) {
  361. this.isStockShare = isStockShare;
  362. }
  363. public String getThirdPartyMerchCode() {
  364. return thirdPartyMerchCode;
  365. }
  366. public void setThirdPartyMerchCode(String thirdPartyMerchCode) {
  367. this.thirdPartyMerchCode = thirdPartyMerchCode;
  368. }
  369. public BigDecimal getStoreRetailPrice() {
  370. return storeRetailPrice;
  371. }
  372. public void setStoreRetailPrice(BigDecimal storeRetailPrice) {
  373. this.storeRetailPrice = storeRetailPrice;
  374. }
  375. public BigDecimal getStoreMarketPrice() {
  376. return storeMarketPrice;
  377. }
  378. public void setStoreMarketPrice(BigDecimal storeMarketPrice) {
  379. this.storeMarketPrice = storeMarketPrice;
  380. }
  381. public String getMerchName() {
  382. return merchName;
  383. }
  384. public void setMerchName(String merchName) {
  385. this.merchName = merchName;
  386. }
  387. public String getMerchSn() {
  388. return merchSn;
  389. }
  390. public void setMerchSn(String merchSn) {
  391. this.merchSn = merchSn;
  392. }
  393. public Integer getStoreId() {
  394. return storeId;
  395. }
  396. public void setStoreId(Integer storeId) {
  397. this.storeId = storeId;
  398. }
  399. public String getProductId() {
  400. return productId;
  401. }
  402. public void setProductId(String productId) {
  403. this.productId = productId;
  404. }
  405. public String getStockNum() {
  406. return stockNum;
  407. }
  408. public void setStockNum(String stockNum) {
  409. this.stockNum = stockNum;
  410. }
  411. public String getStoreName() {
  412. return storeName;
  413. }
  414. public void setStoreName(String storeName) {
  415. this.storeName = storeName;
  416. }
  417. public Integer getSupplierId() {
  418. return supplierId;
  419. }
  420. public void setSupplierId(Integer supplierId) {
  421. this.supplierId = supplierId;
  422. }
  423. public String getVideoUrl() {
  424. return videoUrl;
  425. }
  426. public void setVideoUrl(String videoUrl) {
  427. this.videoUrl = videoUrl;
  428. }
  429. public String getSku() {
  430. return sku;
  431. }
  432. public void setSku(String sku) {
  433. this.sku = sku;
  434. }
  435. public String getGoodsBizType() {
  436. return goodsBizType;
  437. }
  438. public void setGoodsBizType(String goodsBizType) {
  439. this.goodsBizType = goodsBizType;
  440. }
  441. public String getCreaterSn() {
  442. return createrSn;
  443. }
  444. public void setCreaterSn(String createrSn) {
  445. this.createrSn = createrSn;
  446. }
  447. public Date getCreateTime() {
  448. return createTime;
  449. }
  450. public void setCreateTime(Date createTime) {
  451. this.createTime = createTime;
  452. }
  453. public String getModerSn() {
  454. return moderSn;
  455. }
  456. public void setModerSn(String moderSn) {
  457. this.moderSn = moderSn;
  458. }
  459. public Date getModTime() {
  460. return modTime;
  461. }
  462. public void setModTime(Date modTime) {
  463. this.modTime = modTime;
  464. }
  465. public Date getTstm() {
  466. return tstm;
  467. }
  468. public void setTstm(Date tstm) {
  469. this.tstm = tstm;
  470. }
  471. public Long getCreateUserDeptId() {
  472. return createUserDeptId;
  473. }
  474. public void setCreateUserDeptId(Long createUserDeptId) {
  475. this.createUserDeptId = createUserDeptId;
  476. }
  477. public List<GoodsGalleryEntity> getGoodsImgList() {
  478. return goodsImgList;
  479. }
  480. public void setGoodsImgList(List<GoodsGalleryEntity> goodsImgList) {
  481. this.goodsImgList = goodsImgList;
  482. }
  483. public String getBrandName() {
  484. return brandName;
  485. }
  486. public void setBrandName(String brandName) {
  487. this.brandName = brandName;
  488. }
  489. public String getAttributeCategoryName() {
  490. return attributeCategoryName;
  491. }
  492. public void setAttributeCategoryName(String attributeCategoryName) {
  493. this.attributeCategoryName = attributeCategoryName;
  494. }
  495. public String getCategoryName() {
  496. return categoryName;
  497. }
  498. public void setCategoryName(String categoryName) {
  499. this.categoryName = categoryName;
  500. }
  501. /**
  502. * 设置:主键
  503. */
  504. public void setId(Long id) {
  505. this.id = id;
  506. }
  507. /**
  508. * 获取:主键
  509. */
  510. public Long getId() {
  511. return id;
  512. }
  513. /**
  514. * 设置:商品类型Id
  515. */
  516. public void setCategoryId(Integer categoryId) {
  517. this.categoryId = categoryId;
  518. }
  519. /**
  520. * 获取:商品类型Id
  521. */
  522. public Integer getCategoryId() {
  523. return categoryId;
  524. }
  525. /**
  526. * 设置:商品序列号
  527. */
  528. public void setGoodsSn(String goodsSn) {
  529. this.goodsSn = goodsSn;
  530. }
  531. /**
  532. * 获取:商品序列号
  533. */
  534. public String getGoodsSn() {
  535. return goodsSn;
  536. }
  537. /**
  538. * 设置:名称
  539. */
  540. public void setName(String name) {
  541. this.name = name;
  542. }
  543. /**
  544. * 获取:名称
  545. */
  546. public String getName() {
  547. return name;
  548. }
  549. public Integer getFreightId() {
  550. return freightId;
  551. }
  552. public void setFreightId(Integer freightId) {
  553. this.freightId = freightId;
  554. }
  555. /**
  556. * 设置:品牌Id
  557. */
  558. public void setBrandId(Integer brandId) {
  559. this.brandId = brandId;
  560. }
  561. /**
  562. * 获取:品牌Id
  563. */
  564. public Integer getBrandId() {
  565. return brandId;
  566. }
  567. public String getBrand() {
  568. return brand;
  569. }
  570. public void setBrand(String brand) {
  571. this.brand = brand;
  572. }
  573. /**
  574. * 设置:商品序列号
  575. */
  576. public void setGoodsNumber(Integer goodsNumber) {
  577. this.goodsNumber = goodsNumber;
  578. }
  579. /**
  580. * 获取:商品序列号
  581. */
  582. public Integer getGoodsNumber() {
  583. return goodsNumber;
  584. }
  585. /**
  586. * 设置:关键字
  587. */
  588. public void setKeywords(String keywords) {
  589. this.keywords = keywords;
  590. }
  591. /**
  592. * 获取:关键字
  593. */
  594. public String getKeywords() {
  595. return keywords;
  596. }
  597. /**
  598. * 设置:简明介绍
  599. */
  600. public void setGoodsBrief(String goodsBrief) {
  601. this.goodsBrief = goodsBrief;
  602. }
  603. /**
  604. * 获取:简明介绍
  605. */
  606. public String getGoodsBrief() {
  607. return goodsBrief;
  608. }
  609. /**
  610. * 设置:商品描述
  611. */
  612. public void setGoodsDesc(String goodsDesc) {
  613. this.goodsDesc = goodsDesc;
  614. }
  615. /**
  616. * 获取:商品描述
  617. */
  618. public String getGoodsDesc() {
  619. return goodsDesc;
  620. }
  621. /**
  622. * 设置:上架
  623. */
  624. public void setIsOnSale(Integer isOnSale) {
  625. this.isOnSale = isOnSale;
  626. }
  627. /**
  628. * 获取:上架
  629. */
  630. public Integer getIsOnSale() {
  631. return isOnSale;
  632. }
  633. /**
  634. * 设置:添加时间
  635. */
  636. public void setAddTime(Date addTime) {
  637. this.addTime = addTime;
  638. }
  639. /**
  640. * 获取:添加时间
  641. */
  642. public Date getAddTime() {
  643. return addTime;
  644. }
  645. /**
  646. * 设置:排序
  647. */
  648. public void setSortOrder(Integer sortOrder) {
  649. this.sortOrder = sortOrder;
  650. }
  651. /**
  652. * 获取:排序
  653. */
  654. public Integer getSortOrder() {
  655. return sortOrder;
  656. }
  657. /**
  658. * 设置:删除状态
  659. */
  660. public void setIsDelete(Integer isDelete) {
  661. this.isDelete = isDelete;
  662. }
  663. /**
  664. * 获取:删除状态
  665. */
  666. public Integer getIsDelete() {
  667. return isDelete;
  668. }
  669. /**
  670. * 设置:属性类别
  671. */
  672. public void setAttributeCategory(Integer attributeCategory) {
  673. this.attributeCategory = attributeCategory;
  674. }
  675. /**
  676. * 获取:属性类别
  677. */
  678. public Integer getAttributeCategory() {
  679. return attributeCategory;
  680. }
  681. /**
  682. * 设置:专柜价格
  683. */
  684. public void setCounterPrice(BigDecimal counterPrice) {
  685. this.counterPrice = counterPrice;
  686. }
  687. /**
  688. * 获取:专柜价格
  689. */
  690. public BigDecimal getCounterPrice() {
  691. return counterPrice;
  692. }
  693. /**
  694. * 设置:附加价格
  695. */
  696. public void setExtraPrice(BigDecimal extraPrice) {
  697. this.extraPrice = extraPrice;
  698. }
  699. /**
  700. * 获取:附加价格
  701. */
  702. public BigDecimal getExtraPrice() {
  703. return extraPrice;
  704. }
  705. /**
  706. * 设置:是否新商品
  707. */
  708. public void setIsNew(Integer isNew) {
  709. this.isNew = isNew;
  710. }
  711. /**
  712. * 获取:是否新商品
  713. */
  714. public Integer getIsNew() {
  715. return isNew;
  716. }
  717. /**
  718. * 设置:商品单位
  719. */
  720. public void setGoodsUnit(String goodsUnit) {
  721. this.goodsUnit = goodsUnit;
  722. }
  723. /**
  724. * 获取:商品单位
  725. */
  726. public String getGoodsUnit() {
  727. return goodsUnit;
  728. }
  729. /**
  730. * 设置:商品主图
  731. */
  732. public void setPrimaryPicUrl(String primaryPicUrl) {
  733. this.primaryPicUrl = primaryPicUrl;
  734. }
  735. /**
  736. * 获取:商品主图
  737. */
  738. public String getPrimaryPicUrl() {
  739. return primaryPicUrl;
  740. }
  741. /**
  742. * 设置:商品列表图
  743. */
  744. public void setListPicUrl(String listPicUrl) {
  745. this.listPicUrl = listPicUrl;
  746. }
  747. /**
  748. * 获取:商品列表图
  749. */
  750. public String getListPicUrl() {
  751. return listPicUrl;
  752. }
  753. public BigDecimal getGoodsRate() {
  754. return goodsRate;
  755. }
  756. public void setGoodsRate(BigDecimal goodsRate) {
  757. this.goodsRate = goodsRate;
  758. }
  759. // /**
  760. // * 设置:零售价格
  761. // */
  762. // public void setRetailPrice(BigDecimal retailPrice) {
  763. // this.retailPrice = retailPrice;
  764. // }
  765. //
  766. // /**
  767. // * 获取:零售价格
  768. // */
  769. // public BigDecimal getRetailPrice() {
  770. // return retailPrice;
  771. // }
  772. /**
  773. * 设置:销售量
  774. */
  775. public void setSellVolume(Integer sellVolume) {
  776. this.sellVolume = sellVolume;
  777. }
  778. /**
  779. * 获取:销售量
  780. */
  781. public Integer getSellVolume() {
  782. return sellVolume;
  783. }
  784. /**
  785. * 设置:主sku product_id
  786. */
  787. public void setPrimaryProductId(Long primaryProductId) {
  788. this.primaryProductId = primaryProductId;
  789. }
  790. /**
  791. * 获取:主sku product_id
  792. */
  793. public Long getPrimaryProductId() {
  794. return primaryProductId;
  795. }
  796. /**
  797. * 设置:单位价格,单价
  798. */
  799. public void setUnitPrice(BigDecimal unitPrice) {
  800. this.unitPrice = unitPrice;
  801. }
  802. /**
  803. * 获取:单位价格,单价
  804. */
  805. public BigDecimal getUnitPrice() {
  806. return unitPrice;
  807. }
  808. /**
  809. * 设置:推广描述
  810. */
  811. public void setPromotionDesc(String promotionDesc) {
  812. this.promotionDesc = promotionDesc;
  813. }
  814. /**
  815. * 获取:推广描述
  816. */
  817. public String getPromotionDesc() {
  818. return promotionDesc;
  819. }
  820. /**
  821. * 设置:推广标签
  822. */
  823. public void setPromotionTag(String promotionTag) {
  824. this.promotionTag = promotionTag;
  825. }
  826. /**
  827. * 获取:推广标签
  828. */
  829. public String getPromotionTag() {
  830. return promotionTag;
  831. }
  832. /**
  833. * 设置:APP专享价
  834. */
  835. public void setAppExclusivePrice(BigDecimal appExclusivePrice) {
  836. this.appExclusivePrice = appExclusivePrice;
  837. }
  838. /**
  839. * 获取:APP专享价
  840. */
  841. public BigDecimal getAppExclusivePrice() {
  842. return appExclusivePrice;
  843. }
  844. /**
  845. * 设置:是否是APP专属
  846. */
  847. public void setIsAppExclusive(Integer isAppExclusive) {
  848. this.isAppExclusive = isAppExclusive;
  849. }
  850. /**
  851. * 获取:是否是APP专属
  852. */
  853. public Integer getIsAppExclusive() {
  854. return isAppExclusive;
  855. }
  856. /**
  857. * 设置:限购
  858. */
  859. public void setIsLimited(Integer isLimited) {
  860. this.isLimited = isLimited;
  861. }
  862. /**
  863. * 获取:限购
  864. */
  865. public Integer getIsLimited() {
  866. return isLimited;
  867. }
  868. /**
  869. * 设置:热销
  870. */
  871. public void setIsHot(Integer isHot) {
  872. this.isHot = isHot;
  873. }
  874. /**
  875. * 获取:热销
  876. */
  877. public Integer getIsHot() {
  878. return isHot;
  879. }
  880. // public BigDecimal getMarketPrice() {
  881. // return marketPrice;
  882. // }
  883. //
  884. // public void setMarketPrice(BigDecimal marketPrice) {
  885. // this.marketPrice = marketPrice;
  886. // }
  887. public List<GoodsAttributeEntity> getAttributeEntityList() {
  888. return attributeEntityList;
  889. }
  890. public void setAttributeEntityList(List<GoodsAttributeEntity> attributeEntityList) {
  891. this.attributeEntityList = attributeEntityList;
  892. }
  893. public Long getCreateUserId() {
  894. return createUserId;
  895. }
  896. public void setCreateUserId(Long createUserId) {
  897. this.createUserId = createUserId;
  898. }
  899. public Long getUpdateUserId() {
  900. return updateUserId;
  901. }
  902. public void setUpdateUserId(Long updateUserId) {
  903. this.updateUserId = updateUserId;
  904. }
  905. public Date getUpdateTime() {
  906. return updateTime;
  907. }
  908. public void setUpdateTime(Date updateTime) {
  909. this.updateTime = updateTime;
  910. }
  911. public List<ProductEntity> getProductEntityList() {
  912. return productEntityList;
  913. }
  914. public void setProductEntityList(List<ProductEntity> productEntityList) {
  915. this.productEntityList = productEntityList;
  916. }
  917. public Integer getGoodsType() {
  918. return goodsType;
  919. }
  920. public void setGoodsType(Integer goodsType) {
  921. this.goodsType = goodsType;
  922. }
  923. public String getProdBarcode() {
  924. return prodBarcode;
  925. }
  926. public void setProdBarcode(String prodBarcode) {
  927. this.prodBarcode = prodBarcode;
  928. }
  929. public String getUnitCode() {
  930. return unitCode;
  931. }
  932. public void setUnitCode(String unitCode) {
  933. this.unitCode = unitCode;
  934. }
  935. public String getCusGoodsCode() {
  936. return cusGoodsCode;
  937. }
  938. public void setCusGoodsCode(String cusGoodsCode) {
  939. this.cusGoodsCode = cusGoodsCode;
  940. }
  941. public String getCiqProdModel() {
  942. return ciqProdModel;
  943. }
  944. public void setCiqProdModel(String ciqProdModel) {
  945. this.ciqProdModel = ciqProdModel;
  946. }
  947. public String getOriCntCode() {
  948. return oriCntCode;
  949. }
  950. public void setOriCntCode(String oriCntCode) {
  951. this.oriCntCode = oriCntCode;
  952. }
  953. public String getCusDeclEle() {
  954. return cusDeclEle;
  955. }
  956. public void setCusDeclEle(String cusDeclEle) {
  957. this.cusDeclEle = cusDeclEle;
  958. }
  959. public String getCusRecCode() {
  960. return cusRecCode;
  961. }
  962. public void setCusRecCode(String cusRecCode) {
  963. this.cusRecCode = cusRecCode;
  964. }
  965. public String getActivity() {
  966. return activity;
  967. }
  968. public void setActivity(String activity) {
  969. this.activity = activity;
  970. }
  971. }