UserOrder.java 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. package com.izouma.awesomeadmin.model;
  2. import java.math.BigDecimal;
  3. import java.util.*;
  4. import com.fasterxml.jackson.annotation.JsonAutoDetect;
  5. import com.fasterxml.jackson.annotation.JsonInclude;
  6. @JsonAutoDetect
  7. @JsonInclude(JsonInclude.Include.NON_NULL)
  8. public class UserOrder {
  9. private Integer id;
  10. private String delFlag;
  11. private Date updateTime;
  12. private String updateUser;
  13. private Date createTime;
  14. private String createUser;
  15. private Integer userId;
  16. private String orderCode;
  17. private Integer storeId;
  18. private String productType;
  19. private Integer productId;
  20. private String productName;
  21. private String specification;
  22. private BigDecimal unitPrice;
  23. private Integer quantity;
  24. private Integer userCouponId;
  25. private BigDecimal offPrice;
  26. private BigDecimal totlePrice;
  27. private BigDecimal dealPrice;
  28. private Integer payMode;
  29. private Date payTime;
  30. private String remark;
  31. private String showFlag;
  32. private Integer statusFlag;
  33. private BigDecimal fee;
  34. private BigDecimal coin;
  35. private BigDecimal point;
  36. private BigDecimal cash;
  37. private String statusStr;
  38. /**
  39. * 确认收货时间
  40. */
  41. private Date confirmTime;
  42. /**
  43. * 取消原因
  44. */
  45. private String cancelReason;
  46. private String userAddressId;
  47. private ProductInfo productInfo;
  48. private OrderAddress orderAddress;
  49. private List<OrderRepair> orderRepairList;
  50. private UserInfo userInfo;
  51. private ProductComment productComment;
  52. private Integer commentFlag;
  53. /**
  54. * 需要条数
  55. */
  56. private Integer limitNum;
  57. private String searchKey;
  58. /**
  59. * and,test_name,like,value;or,remark,=,123
  60. */
  61. private String advancedQuery;
  62. /**
  63. * column_name_,desc_;column_name_,asc
  64. */
  65. private String orderByStr;
  66. public Integer getId() {
  67. return this.id;
  68. }
  69. public void setId(Integer id) {
  70. this.id = id;
  71. }
  72. public String getDelFlag() {
  73. return this.delFlag;
  74. }
  75. public void setDelFlag(String delFlag) {
  76. this.delFlag = delFlag;
  77. }
  78. public Date getUpdateTime() {
  79. return this.updateTime;
  80. }
  81. public void setUpdateTime(Date updateTime) {
  82. this.updateTime = updateTime;
  83. }
  84. public String getUpdateUser() {
  85. return this.updateUser;
  86. }
  87. public void setUpdateUser(String updateUser) {
  88. this.updateUser = updateUser;
  89. }
  90. public Date getCreateTime() {
  91. return this.createTime;
  92. }
  93. public void setCreateTime(Date createTime) {
  94. this.createTime = createTime;
  95. }
  96. public String getCreateUser() {
  97. return this.createUser;
  98. }
  99. public void setCreateUser(String createUser) {
  100. this.createUser = createUser;
  101. }
  102. public Integer getUserId() {
  103. return this.userId;
  104. }
  105. public void setUserId(Integer userId) {
  106. this.userId = userId;
  107. }
  108. public String getOrderCode() {
  109. return this.orderCode;
  110. }
  111. public void setOrderCode(String orderCode) {
  112. this.orderCode = orderCode;
  113. }
  114. public Integer getStoreId() {
  115. return this.storeId;
  116. }
  117. public void setStoreId(Integer storeId) {
  118. this.storeId = storeId;
  119. }
  120. public String getProductType() {
  121. return this.productType;
  122. }
  123. public void setProductType(String productType) {
  124. this.productType = productType;
  125. }
  126. public Integer getProductId() {
  127. return this.productId;
  128. }
  129. public void setProductId(Integer productId) {
  130. this.productId = productId;
  131. }
  132. public String getProductName() {
  133. return this.productName;
  134. }
  135. public void setProductName(String productName) {
  136. this.productName = productName;
  137. }
  138. public String getSpecification() {
  139. return this.specification;
  140. }
  141. public void setSpecification(String specification) {
  142. this.specification = specification;
  143. }
  144. public BigDecimal getUnitPrice() {
  145. return this.unitPrice;
  146. }
  147. public void setUnitPrice(BigDecimal unitPrice) {
  148. this.unitPrice = unitPrice;
  149. }
  150. public Integer getQuantity() {
  151. return this.quantity;
  152. }
  153. public void setQuantity(Integer quantity) {
  154. this.quantity = quantity;
  155. }
  156. public Integer getUserCouponId() {
  157. return this.userCouponId;
  158. }
  159. public void setUserCouponId(Integer userCouponId) {
  160. this.userCouponId = userCouponId;
  161. }
  162. public BigDecimal getOffPrice() {
  163. return this.offPrice;
  164. }
  165. public void setOffPrice(BigDecimal offPrice) {
  166. this.offPrice = offPrice;
  167. }
  168. public BigDecimal getTotlePrice() {
  169. return this.totlePrice;
  170. }
  171. public void setTotlePrice(BigDecimal totlePrice) {
  172. this.totlePrice = totlePrice;
  173. }
  174. public BigDecimal getDealPrice() {
  175. return this.dealPrice;
  176. }
  177. public void setDealPrice(BigDecimal dealPrice) {
  178. this.dealPrice = dealPrice;
  179. }
  180. public Integer getPayMode() {
  181. return this.payMode;
  182. }
  183. public void setPayMode(Integer payMode) {
  184. this.payMode = payMode;
  185. }
  186. public Date getPayTime() {
  187. return this.payTime;
  188. }
  189. public void setPayTime(Date payTime) {
  190. this.payTime = payTime;
  191. }
  192. public String getRemark() {
  193. return this.remark;
  194. }
  195. public void setRemark(String remark) {
  196. this.remark = remark;
  197. }
  198. public String getShowFlag() {
  199. return this.showFlag;
  200. }
  201. public void setShowFlag(String showFlag) {
  202. this.showFlag = showFlag;
  203. }
  204. public Integer getStatusFlag() {
  205. return this.statusFlag;
  206. }
  207. public void setStatusFlag(Integer statusFlag) {
  208. this.statusFlag = statusFlag;
  209. }
  210. public BigDecimal getFee() {
  211. return this.fee;
  212. }
  213. public void setFee(BigDecimal fee) {
  214. this.fee = fee;
  215. }
  216. public String getSearchKey() {
  217. return searchKey;
  218. }
  219. public void setSearchKey(String searchKey) {
  220. this.searchKey = searchKey;
  221. }
  222. public String getAdvancedQuery() {
  223. return advancedQuery;
  224. }
  225. public void setAdvancedQuery(String advancedQuery) {
  226. this.advancedQuery = advancedQuery;
  227. }
  228. public String getOrderByStr() {
  229. return orderByStr;
  230. }
  231. public void setOrderByStr(String orderByStr) {
  232. this.orderByStr = orderByStr;
  233. }
  234. public BigDecimal getCoin() {
  235. return coin;
  236. }
  237. public void setCoin(BigDecimal coin) {
  238. this.coin = coin;
  239. }
  240. public BigDecimal getPoint() {
  241. return point;
  242. }
  243. public void setPoint(BigDecimal point) {
  244. this.point = point;
  245. }
  246. public BigDecimal getCash() {
  247. return cash;
  248. }
  249. public void setCash(BigDecimal cash) {
  250. this.cash = cash;
  251. }
  252. public ProductInfo getProductInfo() {
  253. return productInfo;
  254. }
  255. public void setProductInfo(ProductInfo productInfo) {
  256. this.productInfo = productInfo;
  257. }
  258. public String getUserAddressId() {
  259. return userAddressId;
  260. }
  261. public void setUserAddressId(String userAddressId) {
  262. this.userAddressId = userAddressId;
  263. }
  264. public OrderAddress getOrderAddress() {
  265. return orderAddress;
  266. }
  267. public void setOrderAddress(OrderAddress orderAddress) {
  268. this.orderAddress = orderAddress;
  269. }
  270. public String getCancelReason() {
  271. return cancelReason;
  272. }
  273. public void setCancelReason(String cancelReason) {
  274. this.cancelReason = cancelReason;
  275. }
  276. public List<OrderRepair> getOrderRepairList() {
  277. return orderRepairList;
  278. }
  279. public void setOrderRepairList(List<OrderRepair> orderRepairList) {
  280. this.orderRepairList = orderRepairList;
  281. }
  282. public UserInfo getUserInfo() {
  283. return userInfo;
  284. }
  285. public void setUserInfo(UserInfo userInfo) {
  286. this.userInfo = userInfo;
  287. }
  288. public Date getConfirmTime() {
  289. return confirmTime;
  290. }
  291. public void setConfirmTime(Date confirmTime) {
  292. this.confirmTime = confirmTime;
  293. }
  294. public Integer getLimitNum() {
  295. return limitNum;
  296. }
  297. public void setLimitNum(Integer limitNum) {
  298. this.limitNum = limitNum;
  299. }
  300. public ProductComment getProductComment() {
  301. return productComment;
  302. }
  303. public void setProductComment(ProductComment productComment) {
  304. this.productComment = productComment;
  305. }
  306. public Integer getCommentFlag() {
  307. return commentFlag;
  308. }
  309. public void setCommentFlag(Integer commentFlag) {
  310. this.commentFlag = commentFlag;
  311. }
  312. public String getStatusStr() {
  313. return statusStr;
  314. }
  315. public void setStatusStr(String statusStr) {
  316. this.statusStr = statusStr;
  317. }
  318. }