| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- 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 BigDecimal coin;
- private BigDecimal point;
- private BigDecimal cash;
- private String statusStr;
- /**
- * 确认收货时间
- */
- private Date confirmTime;
- /**
- * 取消原因
- */
- private String cancelReason;
- private String userAddressId;
- private ProductInfo productInfo;
- private OrderAddress orderAddress;
- private List<OrderRepair> orderRepairList;
- private UserInfo userInfo;
- private ProductComment productComment;
- private Integer commentFlag;
- /**
- * 需要条数
- */
- private Integer limitNum;
- 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;
- }
- public BigDecimal getCoin() {
- return coin;
- }
- public void setCoin(BigDecimal coin) {
- this.coin = coin;
- }
- public BigDecimal getPoint() {
- return point;
- }
- public void setPoint(BigDecimal point) {
- this.point = point;
- }
- public BigDecimal getCash() {
- return cash;
- }
- public void setCash(BigDecimal cash) {
- this.cash = cash;
- }
- public ProductInfo getProductInfo() {
- return productInfo;
- }
- public void setProductInfo(ProductInfo productInfo) {
- this.productInfo = productInfo;
- }
- public String getUserAddressId() {
- return userAddressId;
- }
- public void setUserAddressId(String userAddressId) {
- this.userAddressId = userAddressId;
- }
- public OrderAddress getOrderAddress() {
- return orderAddress;
- }
- public void setOrderAddress(OrderAddress orderAddress) {
- this.orderAddress = orderAddress;
- }
- public String getCancelReason() {
- return cancelReason;
- }
- public void setCancelReason(String cancelReason) {
- this.cancelReason = cancelReason;
- }
- public List<OrderRepair> getOrderRepairList() {
- return orderRepairList;
- }
- public void setOrderRepairList(List<OrderRepair> orderRepairList) {
- this.orderRepairList = orderRepairList;
- }
- public UserInfo getUserInfo() {
- return userInfo;
- }
- public void setUserInfo(UserInfo userInfo) {
- this.userInfo = userInfo;
- }
- public Date getConfirmTime() {
- return confirmTime;
- }
- public void setConfirmTime(Date confirmTime) {
- this.confirmTime = confirmTime;
- }
- public Integer getLimitNum() {
- return limitNum;
- }
- public void setLimitNum(Integer limitNum) {
- this.limitNum = limitNum;
- }
- public ProductComment getProductComment() {
- return productComment;
- }
- public void setProductComment(ProductComment productComment) {
- this.productComment = productComment;
- }
- public Integer getCommentFlag() {
- return commentFlag;
- }
- public void setCommentFlag(Integer commentFlag) {
- this.commentFlag = commentFlag;
- }
- public String getStatusStr() {
- return statusStr;
- }
- public void setStatusStr(String statusStr) {
- this.statusStr = statusStr;
- }
- }
|