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;
|
|
|
}
|