GoodsEntity.java 23 KB

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