xiangpei
2025-02-23 c276317fa2e695e65efadbbb3204d14986ded733
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;
@@ -38,8 +39,16 @@
    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暂停) */
@@ -155,4 +164,10 @@
    @TableField("remark")
    /** 审核信息 */
    private String remark;
    @TableField("industry_competent_department")
    private Long industryCompetentDepartment;
    @TableField("industry_competent_department_person")
    private Long industryCompetentDepartmentPerson;
    @TableField("department_person_phone")
    private String departmentPersonPhone;
}