GoodsEntity.java 20 KB

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