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
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_policy_compliance")
public class ProjectInvestmentPolicyCompliance extends AbsEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("project_id")
    /** 项目id */
    private Long projectId;
 
    @TableField("policy_compliance_attachment")
    /** 符合产业政策附件 */
    private String policyComplianceAttachment;
 
    @TableField("belongs_to_industry_adjustment_directory")
    /** 是否属于《产业结构调整指导目录》下的项目 */
    private String belongsToIndustryAdjustmentDirectory;
 
    @TableField("belongs_to_allowed_projects")
    /** 是否属于未列入《产业结构调整指导目录》的允许类项目 */
    private String belongsToAllowedProjects;
 
    @TableField("belongs_to_western_encouraged_directory")
    /** 是否属于《西部地区鼓励类产业目录》的项目 */
    private Integer belongsToWesternEncouragedDirectory;
 
    @TableField("not_banned_or_controlled_project")
    /** 是否不属于产业政策禁止投资建设或实行核准、审批管理的项目 */
    private Integer notBannedOrControlledProject;
 
    @TableField("information_is_true")
    /** 填报信息是否真实 */
    private Integer informationIsTrue;
 
    @TableField("special_planning_compliance")
    /** 专项规划复合情况 */
    private String specialPlanningCompliance;
 
    @TableField("energy_consumption")
    /** 项目能耗情况 */
    private String energyConsumption;
 
    @TableField("annual_energy_consumption")
    /** 项目年综合能源消费量(标准煤当量值) */
    private String annualEnergyConsumption;
 
    @TableField("annual_electricity_consumption")
    /** 项目年电力消耗量(标准煤当量值) */
    private String annualElectricityConsumption;
 
    @TableField("energy_check")
    /** 节能审查(1需要,0不需要) */
    private String energyCheck;
 
    @TableField("no_only_check_type")
    /** 不再单独进行节能审查的类型 */
    private String noOnlyCheckType;
 
    @TableField("remarks")
    /** 备注 */
    private String remarks;
 
    @TableField("gmt_create_time")
    /** 创建时间 */
    private LocalDateTime gmtCreateTime;
 
    @TableField("gmt_update_time")
    /** 更新时间 */
    private LocalDateTime gmtUpdateTime;
 
    @TableField("create_by")
    /** 创建人 */
    private Long createBy;
 
    @TableField("update_by")
    /** 更新人 */
    private Long updateBy;
 
 
}