1
0

GoodsEntity.java 25 KB

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