| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- package com.izouma.awesomeadmin.model;
- import java.math.BigDecimal;
- import java.util.*;
- import com.fasterxml.jackson.annotation.JsonAutoDetect;
- import com.fasterxml.jackson.annotation.JsonInclude;
- @JsonAutoDetect
- @JsonInclude(JsonInclude.Include.NON_NULL)
- public class UserOrder{
- private Integer id;
- private String delFlag;
- private Date updateTime;
- private String updateUser;
- private Date createTime;
- private String createUser;
- private Integer userId;
- private String orderCode;
- private Integer storeId;
- private String productType;
- private Integer productId;
- private String productName;
- private String specification;
- private BigDecimal unitPrice;
- private Integer quantity;
- private Integer userCouponId;
- private BigDecimal offPrice;
- private BigDecimal totlePrice;
- private BigDecimal dealPrice;
- private Integer payMode;
- private Date payTime;
- private String remark;
- private String showFlag;
- private Integer statusFlag;
- private BigDecimal fee;
- private String searchKey;
- /**
- * and,test_name,like,value;or,remark,=,123
- */
- private String advancedQuery;
- /**
- * column_name_,desc_;column_name_,asc
- */
- private String orderByStr;
- public Integer getId(){
- return this.id;
- }
- public void setId(Integer id){
- this.id = id;
- }
- public String getDelFlag(){
- return this.delFlag;
- }
- public void setDelFlag(String delFlag){
- this.delFlag = delFlag;
- }
- public Date getUpdateTime(){
- return this.updateTime;
- }
- public void setUpdateTime(Date updateTime){
- this.updateTime = updateTime;
- }
- public String getUpdateUser(){
- return this.updateUser;
- }
- public void setUpdateUser(String updateUser){
- this.updateUser = updateUser;
- }
- public Date getCreateTime(){
- return this.createTime;
- }
- public void setCreateTime(Date createTime){
- this.createTime = createTime;
- }
- public String getCreateUser(){
- return this.createUser;
- }
- public void setCreateUser(String createUser){
- this.createUser = createUser;
- }
- public Integer getUserId(){
- return this.userId;
- }
- public void setUserId(Integer userId){
- this.userId = userId;
- }
- public String getOrderCode(){
- return this.orderCode;
- }
- public void setOrderCode(String orderCode){
- this.orderCode = orderCode;
- }
- public Integer getStoreId(){
- return this.storeId;
- }
- public void setStoreId(Integer storeId){
- this.storeId = storeId;
- }
- public String getProductType(){
- return this.productType;
- }
- public void setProductType(String productType){
- this.productType = productType;
- }
- public Integer getProductId(){
- return this.productId;
- }
- public void setProductId(Integer productId){
- this.productId = productId;
- }
- public String getProductName(){
- return this.productName;
- }
- public void setProductName(String productName){
- this.productName = productName;
- }
- public String getSpecification(){
- return this.specification;
- }
- public void setSpecification(String specification){
- this.specification = specification;
- }
- public BigDecimal getUnitPrice(){
- return this.unitPrice;
- }
- public void setUnitPrice(BigDecimal unitPrice){
- this.unitPrice = unitPrice;
- }
- public Integer getQuantity(){
- return this.quantity;
- }
- public void setQuantity(Integer quantity){
- this.quantity = quantity;
- }
- public Integer getUserCouponId(){
- return this.userCouponId;
- }
- public void setUserCouponId(Integer userCouponId){
- this.userCouponId = userCouponId;
- }
- public BigDecimal getOffPrice(){
- return this.offPrice;
- }
- public void setOffPrice(BigDecimal offPrice){
- this.offPrice = offPrice;
- }
- public BigDecimal getTotlePrice(){
- return this.totlePrice;
- }
- public void setTotlePrice(BigDecimal totlePrice){
- this.totlePrice = totlePrice;
- }
- public BigDecimal getDealPrice(){
- return this.dealPrice;
- }
- public void setDealPrice(BigDecimal dealPrice){
- this.dealPrice = dealPrice;
- }
- public Integer getPayMode(){
- return this.payMode;
- }
- public void setPayMode(Integer payMode){
- this.payMode = payMode;
- }
- public Date getPayTime(){
- return this.payTime;
- }
- public void setPayTime(Date payTime){
- this.payTime = payTime;
- }
- public String getRemark(){
- return this.remark;
- }
- public void setRemark(String remark){
- this.remark = remark;
- }
- public String getShowFlag(){
- return this.showFlag;
- }
- public void setShowFlag(String showFlag){
- this.showFlag = showFlag;
- }
- public Integer getStatusFlag(){
- return this.statusFlag;
- }
- public void setStatusFlag(Integer statusFlag){
- this.statusFlag = statusFlag;
- }
- public BigDecimal getFee(){
- return this.fee;
- }
- public void setFee(BigDecimal fee){
- this.fee = fee;
- }
- public String getSearchKey() {
- return searchKey;
- }
- public void setSearchKey(String searchKey) {
- this.searchKey = searchKey;
- }
- public String getAdvancedQuery() {
- return advancedQuery;
- }
- public void setAdvancedQuery(String advancedQuery) {
- this.advancedQuery = advancedQuery;
- }
- public String getOrderByStr() {
- return orderByStr;
- }
- public void setOrderByStr(String orderByStr) {
- this.orderByStr = orderByStr;
- }
- }
|