OrderGoodsEntity.java 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  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. public String getPlu() {
  59. return plu;
  60. }
  61. public void setPlu(String plu) {
  62. this.plu = plu;
  63. }
  64. public Integer getPromId() {
  65. return promId;
  66. }
  67. public void setPromId(Integer promId) {
  68. this.promId = promId;
  69. }
  70. public Integer getIsPromGoods() {
  71. return isPromGoods;
  72. }
  73. public void setIsPromGoods(Integer isPromGoods) {
  74. this.isPromGoods = isPromGoods;
  75. }
  76. public String getGoodsSpecificationNameValue() {
  77. return goodsSpecificationNameValue;
  78. }
  79. public void setGoodsSpecificationNameValue(String goodsSpecificationNameValue) {
  80. this.goodsSpecificationNameValue = goodsSpecificationNameValue;
  81. }
  82. public String getGoodsSpecificationIds() {
  83. return goodsSpecificationIds;
  84. }
  85. public void setGoodsSpecificationIds(String goodsSpecificationIds) {
  86. this.goodsSpecificationIds = goodsSpecificationIds;
  87. }
  88. public String getSku() {
  89. return sku;
  90. }
  91. public void setSku(String sku) {
  92. this.sku = sku;
  93. }
  94. public String getOrderBizType() {
  95. return orderBizType;
  96. }
  97. public void setOrderBizType(String orderBizType) {
  98. this.orderBizType = orderBizType;
  99. }
  100. public String getCreaterSn() {
  101. return createrSn;
  102. }
  103. public void setCreaterSn(String createrSn) {
  104. this.createrSn = createrSn;
  105. }
  106. public Date getCreateTime() {
  107. return createTime;
  108. }
  109. public void setCreateTime(Date createTime) {
  110. this.createTime = createTime;
  111. }
  112. public String getModerSn() {
  113. return moderSn;
  114. }
  115. public void setModerSn(String moderSn) {
  116. this.moderSn = moderSn;
  117. }
  118. public Date getModTime() {
  119. return modTime;
  120. }
  121. public void setModTime(Date modTime) {
  122. this.modTime = modTime;
  123. }
  124. public Date getTstm() {
  125. return tstm;
  126. }
  127. public void setTstm(Date tstm) {
  128. this.tstm = tstm;
  129. }
  130. public BigDecimal getGoodsRate() {
  131. return goodsRate;
  132. }
  133. public void setGoodsRate(BigDecimal goodsRate) {
  134. this.goodsRate = goodsRate;
  135. }
  136. /**
  137. * 设置:主键
  138. */
  139. public void setId(Integer id) {
  140. this.id = id;
  141. }
  142. /**
  143. * 获取:主键
  144. */
  145. public Integer getId() {
  146. return id;
  147. }
  148. /**
  149. * 设置:订单Id
  150. */
  151. public void setOrderId(Integer orderId) {
  152. this.orderId = orderId;
  153. }
  154. /**
  155. * 获取:订单Id
  156. */
  157. public Integer getOrderId() {
  158. return orderId;
  159. }
  160. /**
  161. * 设置:商品id
  162. */
  163. public void setGoodsId(Integer goodsId) {
  164. this.goodsId = goodsId;
  165. }
  166. /**
  167. * 获取:商品id
  168. */
  169. public Integer getGoodsId() {
  170. return goodsId;
  171. }
  172. /**
  173. * 设置:商品名称
  174. */
  175. public void setGoodsName(String goodsName) {
  176. this.goodsName = goodsName;
  177. }
  178. /**
  179. * 获取:商品名称
  180. */
  181. public String getGoodsName() {
  182. return goodsName;
  183. }
  184. /**
  185. * 设置:商品序列号
  186. */
  187. public void setGoodsSn(String goodsSn) {
  188. this.goodsSn = goodsSn;
  189. }
  190. /**
  191. * 获取:商品序列号
  192. */
  193. public String getGoodsSn() {
  194. return goodsSn;
  195. }
  196. /**
  197. * 设置:产品Id
  198. */
  199. public void setProductId(Integer productId) {
  200. this.productId = productId;
  201. }
  202. /**
  203. * 获取:产品Id
  204. */
  205. public Integer getProductId() {
  206. return productId;
  207. }
  208. /**
  209. * 设置:商品数量
  210. */
  211. public void setNumber(Integer number) {
  212. this.number = number;
  213. }
  214. /**
  215. * 获取:商品数量
  216. */
  217. public Integer getNumber() {
  218. return number;
  219. }
  220. /**
  221. * 设置:市场价
  222. */
  223. public void setMarketPrice(BigDecimal marketPrice) {
  224. this.marketPrice = marketPrice;
  225. }
  226. /**
  227. * 获取:市场价
  228. */
  229. public BigDecimal getMarketPrice() {
  230. return marketPrice;
  231. }
  232. /**
  233. * 设置:零售价格
  234. */
  235. public void setRetailPrice(BigDecimal retailPrice) {
  236. this.retailPrice = retailPrice;
  237. }
  238. /**
  239. * 获取:零售价格
  240. */
  241. public BigDecimal getRetailPrice() {
  242. return retailPrice;
  243. }
  244. /**
  245. * 设置:商品规格详情
  246. */
  247. public void setGoodsSpecifitionNameValue(String goodsSpecificationNameValue) {
  248. this.goodsSpecificationNameValue = goodsSpecificationNameValue;
  249. }
  250. /**
  251. * 获取:商品规格详情
  252. */
  253. public String getGoodsSpecifitionNameValue() {
  254. return goodsSpecificationNameValue;
  255. }
  256. /**
  257. * 设置:虚拟商品
  258. */
  259. public void setIsReal(Integer isReal) {
  260. this.isReal = isReal;
  261. }
  262. /**
  263. * 获取:虚拟商品
  264. */
  265. public Integer getIsReal() {
  266. return isReal;
  267. }
  268. /**
  269. * 设置:商品规格Ids
  270. */
  271. public void setGoodsSpecifitionIds(String goodsSpecificationIds) {
  272. this.goodsSpecificationIds = goodsSpecificationIds;
  273. }
  274. /**
  275. * 获取:商品规格Ids
  276. */
  277. public String getGoodsSpecifitionIds() {
  278. return goodsSpecificationIds;
  279. }
  280. /**
  281. * 设置:图片链接
  282. */
  283. public void setListPicUrl(String listPicUrl) {
  284. this.listPicUrl = listPicUrl;
  285. }
  286. /**
  287. * 获取:图片链接
  288. */
  289. public String getListPicUrl() {
  290. return listPicUrl;
  291. }
  292. public String getActivity() {
  293. return activity;
  294. }
  295. public void setActivity(String activity) {
  296. this.activity = activity;
  297. }
  298. public BigDecimal getDiscountedPrice() {
  299. return discountedPrice;
  300. }
  301. public void setDiscountedPrice(BigDecimal discountedPrice) {
  302. this.discountedPrice = discountedPrice;
  303. }
  304. public BigDecimal getActualPaymentAmount() {
  305. return actualPaymentAmount;
  306. }
  307. public void setActualPaymentAmount(BigDecimal actualPaymentAmount) {
  308. this.actualPaymentAmount = actualPaymentAmount;
  309. }
  310. public BigDecimal getTax() {
  311. return tax;
  312. }
  313. public void setTax(BigDecimal tax) {
  314. this.tax = tax;
  315. }
  316. }