ProjectsValue.java 2.65 KB
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 + '\'' +
                '}';
    }
}