zxl
2025-03-11 a962c4f2118253ff5efebfa8d32b7e2337ca4c0d
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
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 lhr
 * @since 2024-11-22
 */
@Data
@TableName("t_progress_plan")
public class ProgressPlan extends AbsEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("project_info_id")
    /** 项目信息表id */
    private Long projectInfoId;
 
    @TableField("report_status")
    /** 上报状态(0:已上报,1:未上报) */
    private Integer reportStatus;
 
    @TableField("month_status")
    /** 月度(0:已上报,1:未上报) */
    private Integer monthStatus;
 
    @TableField("season_status")
    /** 季度(0:已上报,1:未上报) */
    private Integer seasonStatus;
 
    @TableField("year_status")
    /** 年度(0:已上报,1:未上报) */
    private Integer yearStatus;
 
    @TableField("gmt_create_time")
    /** 创建时间 */
    private LocalDateTime gmtCreateTime;
 
    @TableField("gmt_update_time")
    /** 修改时间 */
    private LocalDateTime gmtUpdateTime;
 
 
}