jyy
2021-06-19 e522e4d40451b4e46ec79b3d8a3891899196f14f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * @description 订单搜索表
 * @author huarray
 * @date 2019-06-27 18:15
 */
public class ShopOrderSearch extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L;
 
 
    /**
     * 产品名称
     */
    private String  proName;
 
 
    /**
     * 产品分类
     */
    private String  proType;
 
    /**
     * 产品属性
     */
    private String  proAttrs;
 
    /**
     * 产品规格
     */
    private String  proSpecification;
 
    /**
     * 客户名称
     */
    private String  nickName;
 
 
    /**
     * 购买数量
     */
    private Integer  count;
 
 
    /**
     * 支付金额
     */
    private Double  orderMoney;
 
 
    /**
     * 订单编号
     */
    private String  orderNo;
 
 
    /**
     * 订单状态
     */
    private String  orderStatus;
 
    /**
     * 购买日期
     */
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date orderTime;
 
    /**
     * 开始日期
     */
    private String orderBeginTime;
 
    /**
     * 结束日期
     */
    private String orderEndTime;
    private Long companyId;
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
    public String getProName() {
        return proName;
    }
 
    public void setProName(String proName) {
        this.proName = proName;
    }
 
    public String getProType() {
        return proType;
    }
 
    public void setProType(String proType) {
        this.proType = proType;
    }
 
    public String getNickName() {
        return nickName;
    }
 
    public void setNickName(String nickName) {
        this.nickName = nickName;
    }
 
    public Integer getCount() {
        return count;
    }
 
    public void setCount(Integer count) {
        this.count = count;
    }
 
    public Double getOrderMoney() {
        return orderMoney;
    }
 
    public void setOrderMoney(Double orderMoney) {
        this.orderMoney = orderMoney;
    }
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public String getOrderStatus() {
        return orderStatus;
    }
 
    public void setOrderStatus(String orderStatus) {
        this.orderStatus = orderStatus;
    }
 
    public Date getOrderTime() {
        return orderTime;
    }
 
    public void setOrderTime(Date orderTime) {
        this.orderTime = orderTime;
    }
 
    public String getOrderBeginTime() {
        return orderBeginTime;
    }
 
    public void setOrderBeginTime(String orderBeginTime) {
        this.orderBeginTime = orderBeginTime;
    }
 
    public String getOrderEndTime() {
        return orderEndTime;
    }
 
    public void setOrderEndTime(String orderEndTime) {
        this.orderEndTime = orderEndTime;
    }
 
    public String getProSpecification() {
        return proSpecification;
    }
 
    public void setProSpecification(String proSpecification) {
        this.proSpecification = proSpecification;
    }
 
    public String getProAttrs() {
        return proAttrs;
    }
 
    public void setProAttrs(String proAttrs) {
        this.proAttrs = proAttrs;
    }
}