OrderGoodsVo.java 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  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 String orderSn;
  65. /**
  66. * 条码
  67. */
  68. private String barcode;
  69. /**
  70. * 商品重量
  71. */
  72. private BigDecimal netWeight;
  73. /**
  74. * 仓库编码
  75. */
  76. private String warehouseSn;
  77. /**
  78. * 货主编码
  79. */
  80. private String consignorSn;
  81. /**
  82. * 仓储系统商品ID
  83. */
  84. private String warehouseSysGoodId;
  85. /**
  86. * 库存类型,默认:ZP(正品)
  87. */
  88. private String inventoryType;
  89. /**
  90. * 残品等级(非残次品可不填)
  91. */
  92. private String defectiveProductsGrade;
  93. public BigDecimal getDiscountedPrice() {
  94. return discountedPrice;
  95. }
  96. public void setDiscountedPrice(BigDecimal discountedPrice) {
  97. this.discountedPrice = discountedPrice;
  98. }
  99. public BigDecimal getActualPaymentAmount() {
  100. return actualPaymentAmount;
  101. }
  102. public void setActualPaymentAmount(BigDecimal actualPaymentAmount) {
  103. this.actualPaymentAmount = actualPaymentAmount;
  104. }
  105. public Integer getCampTopicId() {
  106. return campTopicId;
  107. }
  108. public void setCampTopicId(Integer campTopicId) {
  109. this.campTopicId = campTopicId;
  110. }
  111. public Integer getDistcountTopicId() {
  112. return distcountTopicId;
  113. }
  114. public void setDistcountTopicId(Integer distcountTopicId) {
  115. this.distcountTopicId = distcountTopicId;
  116. }
  117. public Integer getStoreTopicId() {
  118. return storeTopicId;
  119. }
  120. public void setStoreTopicId(Integer storeTopicId) {
  121. this.storeTopicId = storeTopicId;
  122. }
  123. public String getMerchSn() {
  124. return merchSn;
  125. }
  126. public void setMerchSn(String merchSn) {
  127. this.merchSn = merchSn;
  128. }
  129. public BigDecimal getGoodsRate() {
  130. return goodsRate;
  131. }
  132. public void setGoodsRate(BigDecimal goodsRate) {
  133. this.goodsRate = goodsRate;
  134. }
  135. public BigDecimal getSettlePrice() {
  136. return settlePrice;
  137. }
  138. public void setSettlePrice(BigDecimal settlePrice) {
  139. this.settlePrice = settlePrice;
  140. }
  141. public String getSku() {
  142. return sku;
  143. }
  144. public void setSku(String sku) {
  145. this.sku = sku;
  146. }
  147. public String getOrderBizType() {
  148. return orderBizType;
  149. }
  150. public void setOrderBizType(String orderBizType) {
  151. this.orderBizType = orderBizType;
  152. }
  153. public String getCreaterSn() {
  154. return createrSn;
  155. }
  156. public void setCreaterSn(String createrSn) {
  157. this.createrSn = createrSn;
  158. }
  159. public Date getCreateTime() {
  160. return createTime;
  161. }
  162. public void setCreateTime(Date createTime) {
  163. this.createTime = createTime;
  164. }
  165. public String getModerSn() {
  166. return moderSn;
  167. }
  168. public void setModerSn(String moderSn) {
  169. this.moderSn = moderSn;
  170. }
  171. public Date getModTime() {
  172. return modTime;
  173. }
  174. public void setModTime(Date modTime) {
  175. this.modTime = modTime;
  176. }
  177. public Date getTstm() {
  178. return tstm;
  179. }
  180. public void setTstm(Date tstm) {
  181. this.tstm = tstm;
  182. }
  183. public Long getId() {
  184. return id;
  185. }
  186. public void setId(Long id) {
  187. this.id = id;
  188. }
  189. public Long getOrder_id() {
  190. return order_id;
  191. }
  192. public void setOrder_id(Long order_id) {
  193. this.order_id = order_id;
  194. }
  195. public Long getGoods_id() {
  196. return goods_id;
  197. }
  198. public void setGoods_id(Long goods_id) {
  199. this.goods_id = goods_id;
  200. }
  201. public String getGoods_name() {
  202. return goods_name;
  203. }
  204. public void setGoods_name(String goods_name) {
  205. this.goods_name = goods_name;
  206. }
  207. public String getGoods_sn() {
  208. return goods_sn;
  209. }
  210. public void setGoods_sn(String goods_sn) {
  211. this.goods_sn = goods_sn;
  212. }
  213. public Long getProduct_id() {
  214. return product_id;
  215. }
  216. public void setProduct_id(Long product_id) {
  217. this.product_id = product_id;
  218. }
  219. public Integer getNumber() {
  220. return number;
  221. }
  222. public void setNumber(Integer number) {
  223. this.number = number;
  224. }
  225. public BigDecimal getMarket_price() {
  226. return market_price;
  227. }
  228. public void setMarket_price(BigDecimal market_price) {
  229. this.market_price = market_price;
  230. }
  231. public BigDecimal getRetail_price() {
  232. return retail_price;
  233. }
  234. public void setRetail_price(BigDecimal retail_price) {
  235. this.retail_price = retail_price;
  236. }
  237. public String getGoods_specification_name_value() {
  238. return goods_specification_name_value;
  239. }
  240. public void setGoods_specification_name_value(String goods_specification_name_value) {
  241. this.goods_specification_name_value = goods_specification_name_value;
  242. }
  243. public Integer getIs_real() {
  244. return is_real;
  245. }
  246. public void setIs_real(Integer is_real) {
  247. this.is_real = is_real;
  248. }
  249. public String getGoods_specification_ids() {
  250. return goods_specification_ids;
  251. }
  252. public void setGoods_specification_ids(String goods_specification_ids) {
  253. this.goods_specification_ids = goods_specification_ids;
  254. }
  255. public String getList_pic_url() {
  256. return list_pic_url;
  257. }
  258. public void setList_pic_url(String list_pic_url) {
  259. this.list_pic_url = list_pic_url;
  260. }
  261. public String getActivity() {
  262. return activity;
  263. }
  264. public void setActivity(String activity) {
  265. this.activity = activity;
  266. }
  267. public BigDecimal getTaxPrice() {
  268. return taxPrice;
  269. }
  270. public void setTaxPrice(BigDecimal taxPrice) {
  271. this.taxPrice = taxPrice;
  272. }
  273. public Integer getDeductionScore() {
  274. return deductionScore;
  275. }
  276. public void setDeductionScore(Integer deductionScore) {
  277. this.deductionScore = deductionScore;
  278. }
  279. public String getOrderSn() {
  280. return orderSn;
  281. }
  282. public void setOrderSn(String orderSn) {
  283. this.orderSn = orderSn;
  284. }
  285. public String getBarcode() {
  286. return barcode;
  287. }
  288. public void setBarcode(String barcode) {
  289. this.barcode = barcode;
  290. }
  291. public BigDecimal getNetWeight() {
  292. return netWeight;
  293. }
  294. public void setNetWeight(BigDecimal netWeight) {
  295. this.netWeight = netWeight;
  296. }
  297. public String getWarehouseSn() {
  298. return warehouseSn;
  299. }
  300. public void setWarehouseSn(String warehouseSn) {
  301. this.warehouseSn = warehouseSn;
  302. }
  303. public String getConsignorSn() {
  304. return consignorSn;
  305. }
  306. public void setConsignorSn(String consignorSn) {
  307. this.consignorSn = consignorSn;
  308. }
  309. public String getWarehouseSysGoodId() {
  310. return warehouseSysGoodId;
  311. }
  312. public void setWarehouseSysGoodId(String warehouseSysGoodId) {
  313. this.warehouseSysGoodId = warehouseSysGoodId;
  314. }
  315. public String getInventoryType() {
  316. return inventoryType;
  317. }
  318. public void setInventoryType(String inventoryType) {
  319. this.inventoryType = inventoryType;
  320. }
  321. public String getDefectiveProductsGrade() {
  322. return defectiveProductsGrade;
  323. }
  324. public void setDefectiveProductsGrade(String defectiveProductsGrade) {
  325. this.defectiveProductsGrade = defectiveProductsGrade;
  326. }
  327. }