xiangpei
2025-02-25 c2c9e3b1039c0a5223801759475112c6da9a3a3d
business/src/main/java/com/ycl/domain/entity/ProjectInfo.java
@@ -4,6 +4,7 @@
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.system.domain.base.AbsEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
@@ -33,9 +34,21 @@
    /** 建设内容 */
    private String content;
    @TableField("construction_nature")
    /** 建设性质 */
    private String constructionNature;
    @TableField("project_type")
    /** 项目类型(0房屋建筑,1城市基础设施,2交通运输,3水利,4能源,5非煤矿山,6其他) */
    /** 项目类型 */
    private String projectType;
    @TableField("project_sub_type")
    /** 项目子类型 */
    private String projectSubType;
    @TableField("attract_investment")
    /** 是否招商引资项目:0 不是  1 是 */
    private String attractInvestment;
    @TableField("project_status")
    /** 项目状态  (0未开工,1已开工,2已竣工,3暂停) */
@@ -49,9 +62,9 @@
    /** 投资类别(0企业投资,1政府投资,2外商投资,3境外投资) */
    private String investType;
//    @TableField("project_phase")
//    /** 项目阶段(0储备规划阶段,  1项目前期阶段,  2实施阶段,  3竣工投用阶段) */
//    private String projectPhase;
    @TableField("project_phase")
    /** 项目阶段(1储备规划阶段,  2项目前期阶段,  3实施阶段,  4竣工投用阶段) */
    private String projectPhase;
    @TableField("tag")
    /** 标签 */
@@ -60,6 +73,14 @@
    @TableField("competent_department")
    /** 主管部门(对应审批部门id) */
    private String competentDepartment;
    @TableField("competent_department_person")
    /** 主管部门联系人 */
    private String competentDepartmentPerson;
    @TableField("competent_department_phone")
    /** 主管部门联系方式 */
    private String competentDepartmentPhone;
    @TableField("area")
    /** 行政区域 */
@@ -97,17 +118,17 @@
    /** 计划竣工时间 */
    private Date planCompleteTime;
    @TableField("win_unit")
    /** 中标单位 */
    private String winUnit;
    @TableField("win_amount")
    /** 中标金额 */
    private String winAmount;
    @TableField("win_time")
    /** 中标时间 */
    private Date winTime;
//    @TableField("win_unit")
//    /** 中标单位 */
//    private String winUnit;
//
//    @TableField("win_amount")
//    /** 中标金额 */
//    private String winAmount;
//
//    @TableField("win_time")
//    /** 中标时间 */
//    private Date winTime;
    @TableField("project_address")
    /** 详细地址 */
@@ -151,4 +172,16 @@
    @TableField("remark")
    /** 审核信息 */
    private String remark;
    @TableField("industry_competent_department")
    /** 行业主管部门 */
    private Long industryCompetentDepartment;
    @TableField("industry_competent_department_person")
    /** 行业主管部门联系人 */
    private String industryCompetentDepartmentPerson;
    @TableField("department_person_phone")
    /** 行业主管部门联系方式 */
    private String departmentPersonPhone;
}