GoodsEntity.java 23 KB

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