OrderGoodsEntity.java 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. *
  7. *
  8. * @author Scott
  9. * @email
  10. * @date 2017-08-13 10:41:09
  11. */
  12. public class OrderGoodsEntity implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. //主键
  15. private Integer id;
  16. //订单Id
  17. private Integer orderId;
  18. //商品id
  19. private Integer goodsId;
  20. //商品名称
  21. private String goodsName;
  22. //商品序列号
  23. private String goodsSn;
  24. //产品Id
  25. private Integer productId;
  26. //商品数量
  27. private Integer number;
  28. //市场价
  29. private BigDecimal marketPrice;
  30. //零售价格
  31. private BigDecimal retailPrice;
  32. //商品规格详情
  33. private String goodsSpecificationNameValue;
  34. //虚拟商品
  35. private Integer isReal;
  36. //商品规格Ids
  37. private String goodsSpecificationIds;
  38. //图片链接
  39. private String listPicUrl;
  40. //plu
  41. private String plu;
  42. private String sku;
  43. private String orderBizType;
  44. private String createrSn;
  45. private Date createTime;
  46. private String moderSn;
  47. private Date modTime;
  48. private Date tstm;
  49. private BigDecimal goodsRate;
  50. private Integer isPromGoods;
  51. private Integer promId;
  52. private String activity;
  53. // 优惠金额
  54. private BigDecimal discountedPrice;
  55. // 实际支付价
  56. private BigDecimal actualPaymentAmount;
  57. private BigDecimal tax;
  58. private BigDecimal taxPrice;
  59. public String getPlu() {
  60. return plu;
  61. }
  62. public void setPlu(String plu) {
  63. this.plu = plu;
  64. }
  65. public Integer getPromId() {
  66. return promId;
  67. }
  68. public void setPromId(Integer promId) {
  69. this.promId = promId;
  70. }
  71. public Integer getIsPromGoods() {
  72. return isPromGoods;
  73. }
  74. public void setIsPromGoods(Integer isPromGoods) {
  75. this.isPromGoods = isPromGoods;
  76. }
  77. public String getGoodsSpecificationNameValue() {
  78. return goodsSpecificationNameValue;
  79. }
  80. public void setGoodsSpecificationNameValue(String goodsSpecificationNameValue) {
  81. this.goodsSpecificationNameValue = goodsSpecificationNameValue;
  82. }
  83. public String getGoodsSpecificationIds() {
  84. return goodsSpecificationIds;
  85. }
  86. public void setGoodsSpecificationIds(String goodsSpecificationIds) {
  87. this.goodsSpecificationIds = goodsSpecificationIds;
  88. }
  89. public String getSku() {
  90. return sku;
  91. }
  92. public void setSku(String sku) {
  93. this.sku = sku;
  94. }
  95. public String getOrderBizType() {
  96. return orderBizType;
  97. }
  98. public void setOrderBizType(String orderBizType) {
  99. this.orderBizType = orderBizType;
  100. }
  101. public String getCreaterSn() {
  102. return createrSn;
  103. }
  104. public void setCreaterSn(String createrSn) {
  105. this.createrSn = createrSn;
  106. }
  107. public Date getCreateTime() {
  108. return createTime;
  109. }
  110. public void setCreateTime(Date createTime) {
  111. this.createTime = createTime;
  112. }
  113. public String getModerSn() {
  114. return moderSn;
  115. }
  116. public void setModerSn(String moderSn) {
  117. this.moderSn = moderSn;
  118. }
  119. public Date getModTime() {
  120. return modTime;
  121. }
  122. public void setModTime(Date modTime) {
  123. this.modTime = modTime;
  124. }
  125. public Date getTstm() {
  126. return tstm;
  127. }
  128. public void setTstm(Date tstm) {
  129. this.tstm = tstm;
  130. }
  131. public BigDecimal getGoodsRate() {
  132. return goodsRate;
  133. }
  134. public void setGoodsRate(BigDecimal goodsRate) {
  135. this.goodsRate = goodsRate;
  136. }
  137. /**
  138. * 设置:主键
  139. */
  140. public void setId(Integer id) {
  141. this.id = id;
  142. }
  143. /**
  144. * 获取:主键
  145. */
  146. public Integer getId() {
  147. return id;
  148. }
  149. /**
  150. * 设置:订单Id
  151. */
  152. public void setOrderId(Integer orderId) {
  153. this.orderId = orderId;
  154. }
  155. /**
  156. * 获取:订单Id
  157. */
  158. public Integer getOrderId() {
  159. return orderId;
  160. }
  161. /**
  162. * 设置:商品id
  163. */
  164. public void setGoodsId(Integer goodsId) {
  165. this.goodsId = goodsId;
  166. }
  167. /**
  168. * 获取:商品id
  169. */
  170. public Integer getGoodsId() {
  171. return goodsId;
  172. }
  173. /**
  174. * 设置:商品名称
  175. */
  176. public void setGoodsName(String goodsName) {
  177. this.goodsName = goodsName;
  178. }
  179. /**
  180. * 获取:商品名称
  181. */
  182. public String getGoodsName() {
  183. return goodsName;
  184. }
  185. /**
  186. * 设置:商品序列号
  187. */
  188. public void setGoodsSn(String goodsSn) {
  189. this.goodsSn = goodsSn;
  190. }
  191. /**
  192. * 获取:商品序列号
  193. */
  194. public String getGoodsSn() {
  195. return goodsSn;
  196. }
  197. /**
  198. * 设置:产品Id
  199. */
  200. public void setProductId(Integer productId) {
  201. this.productId = productId;
  202. }
  203. /**
  204. * 获取:产品Id
  205. */
  206. public Integer getProductId() {
  207. return productId;
  208. }
  209. /**
  210. * 设置:商品数量
  211. */
  212. public void setNumber(Integer number) {
  213. this.number = number;
  214. }
  215. /**
  216. * 获取:商品数量
  217. */
  218. public Integer getNumber() {
  219. return number;
  220. }
  221. /**
  222. * 设置:市场价
  223. */
  224. public void setMarketPrice(BigDecimal marketPrice) {
  225. this.marketPrice = marketPrice;
  226. }
  227. /**
  228. * 获取:市场价
  229. */
  230. public BigDecimal getMarketPrice() {
  231. return marketPrice;
  232. }
  233. /**
  234. * 设置:零售价格
  235. */
  236. public void setRetailPrice(BigDecimal retailPrice) {
  237. this.retailPrice = retailPrice;
  238. }
  239. /**
  240. * 获取:零售价格
  241. */
  242. public BigDecimal getRetailPrice() {
  243. return retailPrice;
  244. }
  245. /**
  246. * 设置:商品规格详情
  247. */
  248. public void setGoodsSpecifitionNameValue(String goodsSpecificationNameValue) {
  249. this.goodsSpecificationNameValue = goodsSpecificationNameValue;
  250. }
  251. /**
  252. * 获取:商品规格详情
  253. */
  254. public String getGoodsSpecifitionNameValue() {
  255. return goodsSpecificationNameValue;
  256. }
  257. /**
  258. * 设置:虚拟商品
  259. */
  260. public void setIsReal(Integer isReal) {
  261. this.isReal = isReal;
  262. }
  263. /**
  264. * 获取:虚拟商品
  265. */
  266. public Integer getIsReal() {
  267. return isReal;
  268. }
  269. /**
  270. * 设置:商品规格Ids
  271. */
  272. public void setGoodsSpecifitionIds(String goodsSpecificationIds) {
  273. this.goodsSpecificationIds = goodsSpecificationIds;
  274. }
  275. /**
  276. * 获取:商品规格Ids
  277. */
  278. public String getGoodsSpecifitionIds() {
  279. return goodsSpecificationIds;
  280. }
  281. /**
  282. * 设置:图片链接
  283. */
  284. public void setListPicUrl(String listPicUrl) {
  285. this.listPicUrl = listPicUrl;
  286. }
  287. /**
  288. * 获取:图片链接
  289. */
  290. public String getListPicUrl() {
  291. return listPicUrl;
  292. }
  293. public String getActivity() {
  294. return activity;
  295. }
  296. public void setActivity(String activity) {
  297. this.activity = activity;
  298. }
  299. public BigDecimal getDiscountedPrice() {
  300. return discountedPrice;
  301. }
  302. public void setDiscountedPrice(BigDecimal discountedPrice) {
  303. this.discountedPrice = discountedPrice;
  304. }
  305. public BigDecimal getActualPaymentAmount() {
  306. return actualPaymentAmount;
  307. }
  308. public void setActualPaymentAmount(BigDecimal actualPaymentAmount) {
  309. this.actualPaymentAmount = actualPaymentAmount;
  310. }
  311. public BigDecimal getTax() {
  312. return tax;
  313. }
  314. public void setTax(BigDecimal tax) {
  315. this.tax = tax;
  316. }
  317. public BigDecimal getTaxPrice() {
  318. return taxPrice;
  319. }
  320. public void setTaxPrice(BigDecimal taxPrice) {
  321. this.taxPrice = taxPrice;
  322. }
  323. }