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; } }