UserOrder.java 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  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. /**
  38. * 确认收货时间
  39. */
  40. private Date confirmTime;
  41. /**
  42. * 取消原因
  43. */
  44. private String cancelReason;
  45. private String userAddressId;
  46. private ProductInfo productInfo;
  47. private OrderAddress orderAddress;
  48. private List<OrderRepair> orderRepairList;
  49. private UserInfo userInfo;
  50. private String searchKey;
  51. /**
  52. * and,test_name,like,value;or,remark,=,123
  53. */
  54. private String advancedQuery;
  55. /**
  56. * column_name_,desc_;column_name_,asc
  57. */
  58. private String orderByStr;
  59. public Integer getId() {
  60. return this.id;
  61. }
  62. public void setId(Integer id) {
  63. this.id = id;
  64. }
  65. public String getDelFlag() {
  66. return this.delFlag;
  67. }
  68. public void setDelFlag(String delFlag) {
  69. this.delFlag = delFlag;
  70. }
  71. public Date getUpdateTime() {
  72. return this.updateTime;
  73. }
  74. public void setUpdateTime(Date updateTime) {
  75. this.updateTime = updateTime;
  76. }
  77. public String getUpdateUser() {
  78. return this.updateUser;
  79. }
  80. public void setUpdateUser(String updateUser) {
  81. this.updateUser = updateUser;
  82. }
  83. public Date getCreateTime() {
  84. return this.createTime;
  85. }
  86. public void setCreateTime(Date createTime) {
  87. this.createTime = createTime;
  88. }
  89. public String getCreateUser() {
  90. return this.createUser;
  91. }
  92. public void setCreateUser(String createUser) {
  93. this.createUser = createUser;
  94. }
  95. public Integer getUserId() {
  96. return this.userId;
  97. }
  98. public void setUserId(Integer userId) {
  99. this.userId = userId;
  100. }
  101. public String getOrderCode() {
  102. return this.orderCode;
  103. }
  104. public void setOrderCode(String orderCode) {
  105. this.orderCode = orderCode;
  106. }
  107. public Integer getStoreId() {
  108. return this.storeId;
  109. }
  110. public void setStoreId(Integer storeId) {
  111. this.storeId = storeId;
  112. }
  113. public String getProductType() {
  114. return this.productType;
  115. }
  116. public void setProductType(String productType) {
  117. this.productType = productType;
  118. }
  119. public Integer getProductId() {
  120. return this.productId;
  121. }
  122. public void setProductId(Integer productId) {
  123. this.productId = productId;
  124. }
  125. public String getProductName() {
  126. return this.productName;
  127. }
  128. public void setProductName(String productName) {
  129. this.productName = productName;
  130. }
  131. public String getSpecification() {
  132. return this.specification;
  133. }
  134. public void setSpecification(String specification) {
  135. this.specification = specification;
  136. }
  137. public BigDecimal getUnitPrice() {
  138. return this.unitPrice;
  139. }
  140. public void setUnitPrice(BigDecimal unitPrice) {
  141. this.unitPrice = unitPrice;
  142. }
  143. public Integer getQuantity() {
  144. return this.quantity;
  145. }
  146. public void setQuantity(Integer quantity) {
  147. this.quantity = quantity;
  148. }
  149. public Integer getUserCouponId() {
  150. return this.userCouponId;
  151. }
  152. public void setUserCouponId(Integer userCouponId) {
  153. this.userCouponId = userCouponId;
  154. }
  155. public BigDecimal getOffPrice() {
  156. return this.offPrice;
  157. }
  158. public void setOffPrice(BigDecimal offPrice) {
  159. this.offPrice = offPrice;
  160. }
  161. public BigDecimal getTotlePrice() {
  162. return this.totlePrice;
  163. }
  164. public void setTotlePrice(BigDecimal totlePrice) {
  165. this.totlePrice = totlePrice;
  166. }
  167. public BigDecimal getDealPrice() {
  168. return this.dealPrice;
  169. }
  170. public void setDealPrice(BigDecimal dealPrice) {
  171. this.dealPrice = dealPrice;
  172. }
  173. public Integer getPayMode() {
  174. return this.payMode;
  175. }
  176. public void setPayMode(Integer payMode) {
  177. this.payMode = payMode;
  178. }
  179. public Date getPayTime() {
  180. return this.payTime;
  181. }
  182. public void setPayTime(Date payTime) {
  183. this.payTime = payTime;
  184. }
  185. public String getRemark() {
  186. return this.remark;
  187. }
  188. public void setRemark(String remark) {
  189. this.remark = remark;
  190. }
  191. public String getShowFlag() {
  192. return this.showFlag;
  193. }
  194. public void setShowFlag(String showFlag) {
  195. this.showFlag = showFlag;
  196. }
  197. public Integer getStatusFlag() {
  198. return this.statusFlag;
  199. }
  200. public void setStatusFlag(Integer statusFlag) {
  201. this.statusFlag = statusFlag;
  202. }
  203. public BigDecimal getFee() {
  204. return this.fee;
  205. }
  206. public void setFee(BigDecimal fee) {
  207. this.fee = fee;
  208. }
  209. public String getSearchKey() {
  210. return searchKey;
  211. }
  212. public void setSearchKey(String searchKey) {
  213. this.searchKey = searchKey;
  214. }
  215. public String getAdvancedQuery() {
  216. return advancedQuery;
  217. }
  218. public void setAdvancedQuery(String advancedQuery) {
  219. this.advancedQuery = advancedQuery;
  220. }
  221. public String getOrderByStr() {
  222. return orderByStr;
  223. }
  224. public void setOrderByStr(String orderByStr) {
  225. this.orderByStr = orderByStr;
  226. }
  227. public BigDecimal getCoin() {
  228. return coin;
  229. }
  230. public void setCoin(BigDecimal coin) {
  231. this.coin = coin;
  232. }
  233. public BigDecimal getPoint() {
  234. return point;
  235. }
  236. public void setPoint(BigDecimal point) {
  237. this.point = point;
  238. }
  239. public BigDecimal getCash() {
  240. return cash;
  241. }
  242. public void setCash(BigDecimal cash) {
  243. this.cash = cash;
  244. }
  245. public ProductInfo getProductInfo() {
  246. return productInfo;
  247. }
  248. public void setProductInfo(ProductInfo productInfo) {
  249. this.productInfo = productInfo;
  250. }
  251. public String getUserAddressId() {
  252. return userAddressId;
  253. }
  254. public void setUserAddressId(String userAddressId) {
  255. this.userAddressId = userAddressId;
  256. }
  257. public OrderAddress getOrderAddress() {
  258. return orderAddress;
  259. }
  260. public void setOrderAddress(OrderAddress orderAddress) {
  261. this.orderAddress = orderAddress;
  262. }
  263. public String getCancelReason() {
  264. return cancelReason;
  265. }
  266. public void setCancelReason(String cancelReason) {
  267. this.cancelReason = cancelReason;
  268. }
  269. public List<OrderRepair> getOrderRepairList() {
  270. return orderRepairList;
  271. }
  272. public void setOrderRepairList(List<OrderRepair> orderRepairList) {
  273. this.orderRepairList = orderRepairList;
  274. }
  275. public UserInfo getUserInfo() {
  276. return userInfo;
  277. }
  278. public void setUserInfo(UserInfo userInfo) {
  279. this.userInfo = userInfo;
  280. }
  281. public Date getConfirmTime() {
  282. return confirmTime;
  283. }
  284. public void setConfirmTime(Date confirmTime) {
  285. this.confirmTime = confirmTime;
  286. }
  287. }