| | |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ycl.system.domain.base.AbsEntity; |
| | | import com.ycl.system.domain.base.AbsEntityOnlyIdAndDeleted; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | |
| | | */ |
| | | @Data |
| | | @TableName("t_project_plan_info") |
| | | public class ProjectPlanInfo extends AbsEntity { |
| | | public class ProjectPlanInfo extends AbsEntityOnlyIdAndDeleted { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | /** 事项名称 */ |
| | | private String title; |
| | | |
| | | @TableField("plan_status") |
| | | /** 状态(未审核:0,已驳回:1,已通过:2) */ |
| | | private Integer planStatus; |
| | | |
| | | @TableField("progress_status") |
| | | /** 状态(0:未完成,1:待审核,2:已驳回,3:已完成) */ |
| | | private Integer progressStatus; |
| | | |
| | | @TableField("start_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | /** 计划开始时间 */ |
| | | private Date startTime; |
| | | |
| | | @TableField("end_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | /** 计划完成时间 */ |
| | | private Date endTime; |
| | | |
| | | /** 创建时间 */ |
| | | @TableField(exist = false) |
| | | private Date gmtCreate; |
| | | |
| | | /** 修改时间 */ |
| | | @TableField(exist = false) |
| | | private Date gmtUpdate; |
| | | |
| | | @TableField(exist = false) |
| | | private Integer deleted; |
| | | } |