luohairen
2024-11-25 5ea5997c4af6988d49d4b1b89c186fb7d2c0a0c4
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
package com.ycl.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.time.LocalDateTime;
import com.ycl.system.domain.base.AbsEntity;
import lombok.Data;
 
/**
 * 项目计划表
 *
 * @author lhr
 * @since 2024-11-22
 */
@Data
@TableName("t_plan")
public class Plan 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;
}