| | |
| | | package com.ycl.domain.entity; |
| | | |
| | | 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 lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 项目计划项 |
| | |
| | | private Integer progressStatus; |
| | | |
| | | @TableField("start_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | /** 计划开始时间 */ |
| | | private LocalDateTime startTime; |
| | | private Date startTime; |
| | | |
| | | @TableField("end_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | /** 计划完成时间 */ |
| | | private LocalDateTime endTime; |
| | | private Date endTime; |
| | | |
| | | /** 创建时间 */ |
| | | @TableField(exist = false) |
| | | private Date gmtCreate; |
| | | |
| | | /** 修改时间 */ |
| | | @TableField(exist = false) |
| | | private Date gmtUpdate; |
| | | |
| | | @TableField(exist = false) |
| | | private Integer deleted; |
| | | } |