zhizhijie
12 小时以前 91d7eee872986f3aaa6e04edf843dd3a0526ba8f
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
package com.trafficaudit.dataimport.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * 投资项目月度完成情况
 */
@Data
@TableName("investment_monthly")
public class InvestmentMonthly {
    @TableId(type = IdType.AUTO)
    private Long id;
    /** 报表期 2026-07 */
    private String reportPeriod;
    /** 项目主档ID */
    private Long projectId;
    /** 本年计划投资(万元) */
    private Double yearPlan;
    /** 自年初累计完成投资(万元) */
    private Double yearCum;
    /** 其中:本月完成投资(万元) */
    private Double monthDone;
    /** 自开始建设累计完成投资(万元) */
    private Double startCum;
    /** 建设阶段 */
    private String progressStage;
    /** 形象进度 */
    private String progressDesc;
    /** 建筑面积(平方米) */
    private Double buildingArea;
    private LocalDateTime createdAt;
}