TPipeOldPlanProcessVo.java 4.35 KB
Newer Older
耿迪迪's avatar
耿迪迪 committed
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
package com.zehong.system.domain.vo;

public class TPipeOldPlanProcessVo {

    /** 唯一键*/
    private String uuid;

    /** 燃气企业编码*/
    private String entUuid;

    /** 项目所在县级行政区*/
    private Integer region;

    /**项目名称 */
    private String projectName;

    /** 关联对象类型*/
    private String relationObjectType;

    /** 年度*/
    private String year;

    /** 项目开始日期*/
    private String startTime;

    /** 项目结束日期*/
    private String endTime;

    /** 项目总投资,单位:万元*/
    private String totalInvestment;

    /** 创建时间*/
    private String createTime;

    /** 修改时间*/
    private String updateTime;

    /** 实施主体*/
    private String subjectImplementation;

    /** 联系人*/
    private String concatPerson;

    /** 联系电话*/
    private String concatTel;

    /** 建设内容*/
    private String constructionContent;

    /**实际改造完成时间 */
    private String actualFinishTime;

    /** 当前改造进度*/
    private String reconstructionProgress;

    /** 当前资金拨付进度*/
    private String fundsDisbursementProgress;


    public String getUuid() {
        return uuid;
    }

    public void setUuid(String uuid) {
        this.uuid = uuid;
    }

    public String getEntUuid() {
        return entUuid;
    }

    public void setEntUuid(String entUuid) {
        this.entUuid = entUuid;
    }

    public Integer getRegion() {
        return region;
    }

    public void setRegion(Integer region) {
        this.region = region;
    }

    public String getProjectName() {
        return projectName;
    }

    public void setProjectName(String projectName) {
        this.projectName = projectName;
    }

    public String getRelationObjectType() {
        return relationObjectType;
    }

    public void setRelationObjectType(String relationObjectType) {
        this.relationObjectType = relationObjectType;
    }

    public String getYear() {
        return year;
    }

    public void setYear(String year) {
        this.year = year;
    }

    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 getTotalInvestment() {
        return totalInvestment;
    }

    public void setTotalInvestment(String totalInvestment) {
        this.totalInvestment = totalInvestment;
    }

    public String getCreateTime() {
        return createTime;
    }

    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }

    public String getUpdateTime() {
        return updateTime;
    }

    public void setUpdateTime(String updateTime) {
        this.updateTime = updateTime;
    }

    public String getSubjectImplementation() {
        return subjectImplementation;
    }

    public void setSubjectImplementation(String subjectImplementation) {
        this.subjectImplementation = subjectImplementation;
    }

    public String getConcatPerson() {
        return concatPerson;
    }

    public void setConcatPerson(String concatPerson) {
        this.concatPerson = concatPerson;
    }

    public String getConcatTel() {
        return concatTel;
    }

    public void setConcatTel(String concatTel) {
        this.concatTel = concatTel;
    }

    public String getConstructionContent() {
        return constructionContent;
    }

    public void setConstructionContent(String constructionContent) {
        this.constructionContent = constructionContent;
    }

    public String getActualFinishTime() {
        return actualFinishTime;
    }

    public void setActualFinishTime(String actualFinishTime) {
        this.actualFinishTime = actualFinishTime;
    }

    public String getReconstructionProgress() {
        return reconstructionProgress;
    }

    public void setReconstructionProgress(String reconstructionProgress) {
        this.reconstructionProgress = reconstructionProgress;
    }

    public String getFundsDisbursementProgress() {
        return fundsDisbursementProgress;
    }

    public void setFundsDisbursementProgress(String fundsDisbursementProgress) {
        this.fundsDisbursementProgress = fundsDisbursementProgress;
    }
}