GoodsEntity.java 21 KB

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