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