TruckActivate.java
4.37 KB
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
package com.trash.business.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.trash.common.annotation.Excel;
import com.trash.common.core.domain.BaseEntity;
/**
* 车辆激活对象 truck_activate
*
* @author trash
* @date 2023-05-02
*/
public class TruckActivate extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 序号 */
private Long id;
/** 所属工地 */
@Excel(name = "工地名称")
private String construction;
/** 车牌号
*/
@Excel(name = "车牌号")
private String licensePlate;
/** 所属企业 */
@Excel(name = "运输企业")
private String company;
/** 失信时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
private Date time;
/** 状态 0当前 1历史 */
@Excel(name = "激活状态", readConverterExp = "1=未激活,0=已激活")
private Long status;
/** 消纳场 */
@Excel(name = "消纳场")
private String earthsite;
/** 基础数据ID */
private String objectId;
/** 是否手动录入 0手动 1自动 */
private Integer createType;
/** 激活时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "激活时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date activateTime;
private String isAct;
private String startTime;
private String endTime;
private String activateDate;
public String getActivateDate() {
return activateDate;
}
public void setActivateDate(String activateDate) {
this.activateDate = activateDate;
}
public String getStartTime() {
return startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getEndTime() {
return endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getIsAct() {
return isAct;
}
public void setIsAct(String isAct) {
this.isAct = isAct;
}
public void setId(Long id)
{
this.id = id;
}
public Long getId()
{
return id;
}
public void setCompany(String company)
{
this.company = company;
}
public String getCompany()
{
return company;
}
public void setLicensePlate(String licensePlate)
{
this.licensePlate = licensePlate;
}
public String getLicensePlate()
{
return licensePlate;
}
public void setTime(Date time)
{
this.time = time;
}
public Date getTime()
{
return time;
}
public void setConstruction(String construction)
{
this.construction = construction;
}
public String getConstruction()
{
return construction;
}
public void setStatus(Long status)
{
this.status = status;
}
public Long getStatus()
{
return status;
}
public void setEarthsite(String earthsite)
{
this.earthsite = earthsite;
}
public String getEarthsite()
{
return earthsite;
}
public void setObjectId(String objectId)
{
this.objectId = objectId;
}
public String getObjectId()
{
return objectId;
}
public void setCreateType(Integer createType)
{
this.createType = createType;
}
public Integer getCreateType()
{
return createType;
}
public void setActivateTime(Date activateTime)
{
this.activateTime = activateTime;
}
public Date getActivateTime()
{
return activateTime;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("company", getCompany())
.append("licensePlate", getLicensePlate())
.append("time", getTime())
.append("construction", getConstruction())
.append("status", getStatus())
.append("earthsite", getEarthsite())
.append("objectId", getObjectId())
.append("createBy", getCreateBy())
.append("createType", getCreateType())
.append("activateTime", getActivateTime())
.append("createTime", getCreateTime())
.toString();
}
}