DailySituation.java
2.64 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
package com.trash.situation.domain;
import com.trash.common.annotation.Excel;
import com.trash.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import java.util.Date;
/**
* 每日普查情况对象 daily_situation
*
* @author trash
* @date 2023-04-19
*/
public class DailySituation extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键id */
private String id;
/** 标题 */
@Excel(name = "标题")
private String title;
/** 操作人 */
@Excel(name = "操作人")
private String operator;
/** 日期 */
private Date date;
/** 天气 */
private String weather;
/** 全市工地,消纳场开停情况 */
private String consumptionSiteSituation;
/** 车辆数 */
private String numberOfVehicles;
public void setId(String id)
{
this.id = id;
}
public String getId()
{
return id;
}
public void setTitle(String title)
{
this.title = title;
}
public String getTitle()
{
return title;
}
public void setOperator(String operator)
{
this.operator = operator;
}
public String getOperator()
{
return operator;
}
public void setDate(Date date)
{
this.date = date;
}
public Date getDate()
{
return date;
}
public void setWeather(String weather)
{
this.weather = weather;
}
public String getWeather()
{
return weather;
}
public void setConsumptionSiteSituation(String consumptionSiteSituation)
{
this.consumptionSiteSituation = consumptionSiteSituation;
}
public String getConsumptionSiteSituation()
{
return consumptionSiteSituation;
}
public void setNumberOfVehicles(String numberOfVehicles)
{
this.numberOfVehicles = numberOfVehicles;
}
public String getNumberOfVehicles()
{
return numberOfVehicles;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("title", getTitle())
.append("operator", getOperator())
.append("date", getDate())
.append("weather", getWeather())
.append("consumptionSiteSituation", getConsumptionSiteSituation())
.append("numberOfVehicles", getNumberOfVehicles())
.append("createTime", getCreateTime())
.append("updateTime", getUpdateTime())
.toString();
}
}