ProjectsValue.java
2.65 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
package com.project.demo.domain;
import java.util.Date;
/**
* Created by xuwenhao on 2018/7/4.
*/
public class ProjectsValue {
private Integer cillectionPointNum; //采集数量
private String sceneName; //监控设备(场景)名称
private String enviroment; //安装环境
private String presentSituation; //物联网现状
private String planningIntention; //规划意向
private Date plannedImplementationTime; //计划完成时间
private Integer projectId; //项目主表Id;
private String surveyCategory; //勘察类别
public Integer getCillectionPointNum() {
return cillectionPointNum;
}
public void setCillectionPointNum(Integer cillectionPointNum) {
this.cillectionPointNum = cillectionPointNum;
}
public String getEnviroment() {
return enviroment;
}
public void setEnviroment(String enviroment) {
this.enviroment = enviroment;
}
public String getSceneName() {
return sceneName;
}
public void setSceneName(String sceneName) {
this.sceneName = sceneName;
}
public String getPresentSituation() {
return presentSituation;
}
public void setPresentSituation(String presentSituation) {
this.presentSituation = presentSituation;
}
public String getPlanningIntention() {
return planningIntention;
}
public void setPlanningIntention(String planningIntention) {
this.planningIntention = planningIntention;
}
public Date getPlannedImplementationTime() {
return plannedImplementationTime;
}
public void setPlannedImplementationTime(Date plannedImplementationTime) {
this.plannedImplementationTime = plannedImplementationTime;
}
public Integer getProjectId() {
return projectId;
}
public void setProjectId(Integer projectId) {
this.projectId = projectId;
}
public String getSurveyCategory() {
return surveyCategory;
}
public void setSurveyCategory(String surveyCategory) {
this.surveyCategory = surveyCategory;
}
@Override
public String toString() {
return "ProjectsValue{" +
"cillectionPointNum=" + cillectionPointNum +
", sceneName='" + sceneName + '\'' +
", enviroment='" + enviroment + '\'' +
", presentSituation='" + presentSituation + '\'' +
", planningIntention='" + planningIntention + '\'' +
", plannedImplementationTime=" + plannedImplementationTime +
", projectId=" + projectId +
", surveyCategory='" + surveyCategory + '\'' +
'}';
}
}