UserOrder.java 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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 String searchKey;
  35. /**
  36. * and,test_name,like,value;or,remark,=,123
  37. */
  38. private String advancedQuery;
  39. /**
  40. * column_name_,desc_;column_name_,asc
  41. */
  42. private String orderByStr;
  43. public Integer getId(){
  44. return this.id;
  45. }
  46. public void setId(Integer id){
  47. this.id = id;
  48. }
  49. public String getDelFlag(){
  50. return this.delFlag;
  51. }
  52. public void setDelFlag(String delFlag){
  53. this.delFlag = delFlag;
  54. }
  55. public Date getUpdateTime(){
  56. return this.updateTime;
  57. }
  58. public void setUpdateTime(Date updateTime){
  59. this.updateTime = updateTime;
  60. }
  61. public String getUpdateUser(){
  62. return this.updateUser;
  63. }
  64. public void setUpdateUser(String updateUser){
  65. this.updateUser = updateUser;
  66. }
  67. public Date getCreateTime(){
  68. return this.createTime;
  69. }
  70. public void setCreateTime(Date createTime){
  71. this.createTime = createTime;
  72. }
  73. public String getCreateUser(){
  74. return this.createUser;
  75. }
  76. public void setCreateUser(String createUser){
  77. this.createUser = createUser;
  78. }
  79. public Integer getUserId(){
  80. return this.userId;
  81. }
  82. public void setUserId(Integer userId){
  83. this.userId = userId;
  84. }
  85. public String getOrderCode(){
  86. return this.orderCode;
  87. }
  88. public void setOrderCode(String orderCode){
  89. this.orderCode = orderCode;
  90. }
  91. public Integer getStoreId(){
  92. return this.storeId;
  93. }
  94. public void setStoreId(Integer storeId){
  95. this.storeId = storeId;
  96. }
  97. public String getProductType(){
  98. return this.productType;
  99. }
  100. public void setProductType(String productType){
  101. this.productType = productType;
  102. }
  103. public Integer getProductId(){
  104. return this.productId;
  105. }
  106. public void setProductId(Integer productId){
  107. this.productId = productId;
  108. }
  109. public String getProductName(){
  110. return this.productName;
  111. }
  112. public void setProductName(String productName){
  113. this.productName = productName;
  114. }
  115. public String getSpecification(){
  116. return this.specification;
  117. }
  118. public void setSpecification(String specification){
  119. this.specification = specification;
  120. }
  121. public BigDecimal getUnitPrice(){
  122. return this.unitPrice;
  123. }
  124. public void setUnitPrice(BigDecimal unitPrice){
  125. this.unitPrice = unitPrice;
  126. }
  127. public Integer getQuantity(){
  128. return this.quantity;
  129. }
  130. public void setQuantity(Integer quantity){
  131. this.quantity = quantity;
  132. }
  133. public Integer getUserCouponId(){
  134. return this.userCouponId;
  135. }
  136. public void setUserCouponId(Integer userCouponId){
  137. this.userCouponId = userCouponId;
  138. }
  139. public BigDecimal getOffPrice(){
  140. return this.offPrice;
  141. }
  142. public void setOffPrice(BigDecimal offPrice){
  143. this.offPrice = offPrice;
  144. }
  145. public BigDecimal getTotlePrice(){
  146. return this.totlePrice;
  147. }
  148. public void setTotlePrice(BigDecimal totlePrice){
  149. this.totlePrice = totlePrice;
  150. }
  151. public BigDecimal getDealPrice(){
  152. return this.dealPrice;
  153. }
  154. public void setDealPrice(BigDecimal dealPrice){
  155. this.dealPrice = dealPrice;
  156. }
  157. public Integer getPayMode(){
  158. return this.payMode;
  159. }
  160. public void setPayMode(Integer payMode){
  161. this.payMode = payMode;
  162. }
  163. public Date getPayTime(){
  164. return this.payTime;
  165. }
  166. public void setPayTime(Date payTime){
  167. this.payTime = payTime;
  168. }
  169. public String getRemark(){
  170. return this.remark;
  171. }
  172. public void setRemark(String remark){
  173. this.remark = remark;
  174. }
  175. public String getShowFlag(){
  176. return this.showFlag;
  177. }
  178. public void setShowFlag(String showFlag){
  179. this.showFlag = showFlag;
  180. }
  181. public Integer getStatusFlag(){
  182. return this.statusFlag;
  183. }
  184. public void setStatusFlag(Integer statusFlag){
  185. this.statusFlag = statusFlag;
  186. }
  187. public BigDecimal getFee(){
  188. return this.fee;
  189. }
  190. public void setFee(BigDecimal fee){
  191. this.fee = fee;
  192. }
  193. public String getSearchKey() {
  194. return searchKey;
  195. }
  196. public void setSearchKey(String searchKey) {
  197. this.searchKey = searchKey;
  198. }
  199. public String getAdvancedQuery() {
  200. return advancedQuery;
  201. }
  202. public void setAdvancedQuery(String advancedQuery) {
  203. this.advancedQuery = advancedQuery;
  204. }
  205. public String getOrderByStr() {
  206. return orderByStr;
  207. }
  208. public void setOrderByStr(String orderByStr) {
  209. this.orderByStr = orderByStr;
  210. }
  211. }