fuliqi
2024-11-27 b11bbeeb3c3a8e260892e45f68cdd137619ef3e5
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
package com.ycl.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.system.domain.base.AbsEntity;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * 投资项目基础信息表
 *
 * @author flq
 * @since 2024-11-27
 */
@Data
@TableName("t_project_investment_info")
public class ProjectInvestmentInfo extends AbsEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("project_id")
    /** 项目id */
    private Long projectId;
 
    @TableField("be_cross_region")
    /** 建设地点是否跨域 */
    private Integer beCrossRegion;
 
    @TableField("construction_location")
    /** 项目建设地点 */
    private String constructionLocation;
 
    @TableField("detailed_address")
    /** 建设详细地址 */
    private String detailedAddress;
 
    @TableField("be_compensation_project")
    /** 是否是补码项目 */
    private Integer beCompensationProject;
 
    @TableField("compensation_reason")
    /** 补码原因 */
    private String compensationReason;
 
    @TableField("planned_start_date")
    /** 计划开工时间 */
    private LocalDateTime plannedStartDate;
 
    @TableField("expected_completion_date")
    /** 拟建成时间 */
    private LocalDateTime expectedCompletionDate;
 
    @TableField("national_industry_classification")
    /** 国标行业分类 */
    private String nationalIndustryClassification;
 
    @TableField("industry_classification")
    /** 所属行业分类 */
    private String industryClassification;
 
    @TableField("project_nature")
    /** 项目建设性质 */
    private String projectNature;
 
    @TableField("project_attribute")
    /** 项目属性 */
    private String projectAttribute;
 
    @TableField("use_earth")
    /** 是否使用土地 */
    private Integer useEarth;
 
    @TableField("content_scale")
    /** 主要建设内容及规模 */
    private String contentScale;
 
    @TableField("code")
    /** 建管平台代码 */
    private String code;
 
    @TableField("gmt_create_time")
    /** 创建时间 */
    private LocalDateTime gmtCreateTime;
 
    @TableField("create_by")
    /** 创建人 */
    private Long createBy;
 
    @TableField("gmt_update_time")
    /** 更新时间 */
    private LocalDateTime gmtUpdateTime;
 
    @TableField("update_by")
    /** 更新人 */
    private Long updateBy;
 
 
}