GoodsEntity.java 22 KB

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