wang-hao-jie
2022-08-25 57dcc73636bb7d8dce89c808eb8cc988a7512264
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
package com.ruoyi.station.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 统计对象 mj_statistic
 * 
 * @author ruoyi
 * @date 2020-09-24
 */
public class MjStatistic extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private String id;
 
    /** 长期授权人数 */
    @Excel(name = "长期授权人数")
    private Integer teamnum;
 
    /** 临时授权人数 */
    @Excel(name = "临时授权人数")
    private Integer ordernum1;
 
    /** 工作票授权人数 */
    @Excel(name = "工作票授权人数")
    private Integer ordernum2;
 
    /** 长期授权开门总次数 */
    @Excel(name = "长期授权开门总次数")
    private Integer teamopen;
 
    /** 临时授权开门总次数 */
    @Excel(name = "临时授权开门总次数")
    private Integer orderopen1;
 
    /** 工作票授权开门总次数 */
    @Excel(name = "工作票授权开门总次数")
    private Integer orderopen2;
 
    /** 备用 */
    @Excel(name = "备用")
    private Integer statu1;
 
    /** 备用 */
    @Excel(name = "备用")
    private Integer statu2;
 
    /** 备用 */
    @Excel(name = "备用")
    private Integer statu3;
 
    /** 备用 */
    @Excel(name = "备用")
    private String statu4;
 
    /** 备用 */
    @Excel(name = "备用")
    private String statu5;
 
    /** 备用 */
    @Excel(name = "备用")
    private String statu6;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setTeamnum(Integer teamnum) 
    {
        this.teamnum = teamnum;
    }
 
    public Integer getTeamnum() 
    {
        return teamnum;
    }
    public void setOrdernum1(Integer ordernum1) 
    {
        this.ordernum1 = ordernum1;
    }
 
    public Integer getOrdernum1() 
    {
        return ordernum1;
    }
    public void setOrdernum2(Integer ordernum2) 
    {
        this.ordernum2 = ordernum2;
    }
 
    public Integer getOrdernum2() 
    {
        return ordernum2;
    }
    public void setTeamopen(Integer teamopen) 
    {
        this.teamopen = teamopen;
    }
 
    public Integer getTeamopen() 
    {
        return teamopen;
    }
    public void setOrderopen1(Integer orderopen1) 
    {
        this.orderopen1 = orderopen1;
    }
 
    public Integer getOrderopen1() 
    {
        return orderopen1;
    }
    public void setOrderopen2(Integer orderopen2) 
    {
        this.orderopen2 = orderopen2;
    }
 
    public Integer getOrderopen2() 
    {
        return orderopen2;
    }
    public void setStatu1(Integer statu1) 
    {
        this.statu1 = statu1;
    }
 
    public Integer getStatu1() 
    {
        return statu1;
    }
    public void setStatu2(Integer statu2) 
    {
        this.statu2 = statu2;
    }
 
    public Integer getStatu2() 
    {
        return statu2;
    }
    public void setStatu3(Integer statu3) 
    {
        this.statu3 = statu3;
    }
 
    public Integer getStatu3() 
    {
        return statu3;
    }
    public void setStatu4(String statu4) 
    {
        this.statu4 = statu4;
    }
 
    public String getStatu4() 
    {
        return statu4;
    }
    public void setStatu5(String statu5) 
    {
        this.statu5 = statu5;
    }
 
    public String getStatu5() 
    {
        return statu5;
    }
    public void setStatu6(String statu6) 
    {
        this.statu6 = statu6;
    }
 
    public String getStatu6() 
    {
        return statu6;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("teamnum", getTeamnum())
            .append("ordernum1", getOrdernum1())
            .append("ordernum2", getOrdernum2())
            .append("teamopen", getTeamopen())
            .append("orderopen1", getOrderopen1())
            .append("orderopen2", getOrderopen2())
            .append("statu1", getStatu1())
            .append("statu2", getStatu2())
            .append("statu3", getStatu3())
            .append("statu4", getStatu4())
            .append("statu5", getStatu5())
            .append("statu6", getStatu6())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .append("createBy", getCreateBy())
            .append("updateBy", getUpdateBy())
            .toString();
    }
}