OrderGoodsVo.java 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. package com.kmall.api.entity;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * @author Scott
  7. * @email
  8. * @date 2017-08-15 08:03:40
  9. */
  10. public class OrderGoodsVo implements Serializable {
  11. private static final long serialVersionUID = 1L;
  12. //主键
  13. private Long id;
  14. //订单Id
  15. private Long order_id;
  16. //商品id
  17. private Long goods_id;
  18. //商品名称
  19. private String goods_name;
  20. //商品序列号
  21. private String goods_sn;
  22. //产品Id
  23. private Long product_id;
  24. //商品数量
  25. private Integer number;
  26. //市场价
  27. private BigDecimal market_price;
  28. //零售价格
  29. private BigDecimal retail_price;
  30. //商品规格详情
  31. private String goods_specification_name_value;
  32. //虚拟商品
  33. private Integer is_real;
  34. //商品规格Ids
  35. private String goods_specification_ids;
  36. //图片链接
  37. private String list_pic_url;
  38. private String activity;
  39. private String sku;
  40. private String orderBizType;
  41. private String createrSn;
  42. private Date createTime;
  43. private String moderSn;
  44. private Date modTime;
  45. private Date tstm;
  46. private BigDecimal goodsRate;
  47. private BigDecimal settlePrice;
  48. private String merchSn;
  49. private Integer storeTopicId;
  50. private Integer campTopicId;
  51. private Integer distcountTopicId;
  52. // 优惠金额
  53. private BigDecimal discountedPrice;
  54. // 实际支付价
  55. private BigDecimal actualPaymentAmount;
  56. private BigDecimal taxPrice;
  57. /**
  58. * 计算出的积分抵扣数量
  59. */
  60. private Integer deductionScore;
  61. /**
  62. * 积分抵扣金额
  63. */
  64. private BigDecimal deductionPrice;
  65. /**
  66. * 订单编号
  67. */
  68. private String orderSn;
  69. /**
  70. * 条码
  71. */
  72. private String barcode;
  73. /**
  74. * 商品重量
  75. */
  76. private BigDecimal netWeight;
  77. /**
  78. * 仓库编码
  79. */
  80. private String warehouseSn;
  81. /**
  82. * 货主编码
  83. */
  84. private String consignorSn;
  85. /**
  86. * 仓储系统商品ID
  87. */
  88. private String warehouseSysGoodId;
  89. /**
  90. * 库存类型,默认:ZP(正品)
  91. */
  92. private String inventoryType;
  93. /**
  94. * 残品等级(非残次品可不填)
  95. */
  96. private String defectiveProductsGrade;
  97. public BigDecimal getDiscountedPrice() {
  98. return discountedPrice;
  99. }
  100. public void setDiscountedPrice(BigDecimal discountedPrice) {
  101. this.discountedPrice = discountedPrice;
  102. }
  103. public BigDecimal getActualPaymentAmount() {
  104. return actualPaymentAmount;
  105. }
  106. public void setActualPaymentAmount(BigDecimal actualPaymentAmount) {
  107. this.actualPaymentAmount = actualPaymentAmount;
  108. }
  109. public Integer getCampTopicId() {
  110. return campTopicId;
  111. }
  112. public void setCampTopicId(Integer campTopicId) {
  113. this.campTopicId = campTopicId;
  114. }
  115. public Integer getDistcountTopicId() {
  116. return distcountTopicId;
  117. }
  118. public void setDistcountTopicId(Integer distcountTopicId) {
  119. this.distcountTopicId = distcountTopicId;
  120. }
  121. public Integer getStoreTopicId() {
  122. return storeTopicId;
  123. }
  124. public void setStoreTopicId(Integer storeTopicId) {
  125. this.storeTopicId = storeTopicId;
  126. }
  127. public String getMerchSn() {
  128. return merchSn;
  129. }
  130. public void setMerchSn(String merchSn) {
  131. this.merchSn = merchSn;
  132. }
  133. public BigDecimal getGoodsRate() {
  134. return goodsRate;
  135. }
  136. public void setGoodsRate(BigDecimal goodsRate) {
  137. this.goodsRate = goodsRate;
  138. }
  139. public BigDecimal getSettlePrice() {
  140. return settlePrice;
  141. }
  142. public void setSettlePrice(BigDecimal settlePrice) {
  143. this.settlePrice = settlePrice;
  144. }
  145. public String getSku() {
  146. return sku;
  147. }
  148. public void setSku(String sku) {
  149. this.sku = sku;
  150. }
  151. public String getOrderBizType() {
  152. return orderBizType;
  153. }
  154. public void setOrderBizType(String orderBizType) {
  155. this.orderBizType = orderBizType;
  156. }
  157. public String getCreaterSn() {
  158. return createrSn;
  159. }
  160. public void setCreaterSn(String createrSn) {
  161. this.createrSn = createrSn;
  162. }
  163. public Date getCreateTime() {
  164. return createTime;
  165. }
  166. public void setCreateTime(Date createTime) {
  167. this.createTime = createTime;
  168. }
  169. public String getModerSn() {
  170. return moderSn;
  171. }
  172. public void setModerSn(String moderSn) {
  173. this.moderSn = moderSn;
  174. }
  175. public Date getModTime() {
  176. return modTime;
  177. }
  178. public void setModTime(Date modTime) {
  179. this.modTime = modTime;
  180. }
  181. public Date getTstm() {
  182. return tstm;
  183. }
  184. public void setTstm(Date tstm) {
  185. this.tstm = tstm;
  186. }
  187. public Long getId() {
  188. return id;
  189. }
  190. public void setId(Long id) {
  191. this.id = id;
  192. }
  193. public Long getOrder_id() {
  194. return order_id;
  195. }
  196. public void setOrder_id(Long order_id) {
  197. this.order_id = order_id;
  198. }
  199. public Long getGoods_id() {
  200. return goods_id;
  201. }
  202. public void setGoods_id(Long goods_id) {
  203. this.goods_id = goods_id;
  204. }
  205. public String getGoods_name() {
  206. return goods_name;
  207. }
  208. public void setGoods_name(String goods_name) {
  209. this.goods_name = goods_name;
  210. }
  211. public String getGoods_sn() {
  212. return goods_sn;
  213. }
  214. public void setGoods_sn(String goods_sn) {
  215. this.goods_sn = goods_sn;
  216. }
  217. public Long getProduct_id() {
  218. return product_id;
  219. }
  220. public void setProduct_id(Long product_id) {
  221. this.product_id = product_id;
  222. }
  223. public Integer getNumber() {
  224. return number;
  225. }
  226. public void setNumber(Integer number) {
  227. this.number = number;
  228. }
  229. public BigDecimal getMarket_price() {
  230. return market_price;
  231. }
  232. public void setMarket_price(BigDecimal market_price) {
  233. this.market_price = market_price;
  234. }
  235. public BigDecimal getRetail_price() {
  236. return retail_price;
  237. }
  238. public void setRetail_price(BigDecimal retail_price) {
  239. this.retail_price = retail_price;
  240. }
  241. public String getGoods_specification_name_value() {
  242. return goods_specification_name_value;
  243. }
  244. public void setGoods_specification_name_value(String goods_specification_name_value) {
  245. this.goods_specification_name_value = goods_specification_name_value;
  246. }
  247. public Integer getIs_real() {
  248. return is_real;
  249. }
  250. public void setIs_real(Integer is_real) {
  251. this.is_real = is_real;
  252. }
  253. public String getGoods_specification_ids() {
  254. return goods_specification_ids;
  255. }
  256. public void setGoods_specification_ids(String goods_specification_ids) {
  257. this.goods_specification_ids = goods_specification_ids;
  258. }
  259. public String getList_pic_url() {
  260. return list_pic_url;
  261. }
  262. public void setList_pic_url(String list_pic_url) {
  263. this.list_pic_url = list_pic_url;
  264. }
  265. public String getActivity() {
  266. return activity;
  267. }
  268. public void setActivity(String activity) {
  269. this.activity = activity;
  270. }
  271. public BigDecimal getTaxPrice() {
  272. return taxPrice;
  273. }
  274. public void setTaxPrice(BigDecimal taxPrice) {
  275. this.taxPrice = taxPrice;
  276. }
  277. public Integer getDeductionScore() {
  278. return deductionScore;
  279. }
  280. public void setDeductionScore(Integer deductionScore) {
  281. this.deductionScore = deductionScore;
  282. }
  283. public String getOrderSn() {
  284. return orderSn;
  285. }
  286. public void setOrderSn(String orderSn) {
  287. this.orderSn = orderSn;
  288. }
  289. public String getBarcode() {
  290. return barcode;
  291. }
  292. public void setBarcode(String barcode) {
  293. this.barcode = barcode;
  294. }
  295. public BigDecimal getNetWeight() {
  296. return netWeight;
  297. }
  298. public void setNetWeight(BigDecimal netWeight) {
  299. this.netWeight = netWeight;
  300. }
  301. public String getWarehouseSn() {
  302. return warehouseSn;
  303. }
  304. public void setWarehouseSn(String warehouseSn) {
  305. this.warehouseSn = warehouseSn;
  306. }
  307. public String getConsignorSn() {
  308. return consignorSn;
  309. }
  310. public void setConsignorSn(String consignorSn) {
  311. this.consignorSn = consignorSn;
  312. }
  313. public String getWarehouseSysGoodId() {
  314. return warehouseSysGoodId;
  315. }
  316. public void setWarehouseSysGoodId(String warehouseSysGoodId) {
  317. this.warehouseSysGoodId = warehouseSysGoodId;
  318. }
  319. public String getInventoryType() {
  320. return inventoryType;
  321. }
  322. public void setInventoryType(String inventoryType) {
  323. this.inventoryType = inventoryType;
  324. }
  325. public String getDefectiveProductsGrade() {
  326. return defectiveProductsGrade;
  327. }
  328. public void setDefectiveProductsGrade(String defectiveProductsGrade) {
  329. this.defectiveProductsGrade = defectiveProductsGrade;
  330. }
  331. public BigDecimal getDeductionPrice() {
  332. return deductionPrice;
  333. }
  334. public void setDeductionPrice(BigDecimal deductionPrice) {
  335. this.deductionPrice = deductionPrice;
  336. }
  337. }