GoodsEntity.java 23 KB

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