GoodsEntity.java 20 KB

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