1
0

GoodsEntity.java 22 KB

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