| | |
| | | package zy.cloud.wms.manager.entity; |
| | | |
| | | import com.baomidou.mybatisplus.enums.FieldStrategy; |
| | | import com.baomidou.mybatisplus.mapper.EntityWrapper; |
| | | import com.core.common.Cools; |
| | | import com.core.common.SpringUtils; |
| | |
| | | |
| | | @Data |
| | | @TableName("sys_project_plan") |
| | | |
| | | public class ProjectPlan implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @ApiModelProperty(value= "项目ID") |
| | | @TableId(value = "item_id", type = IdType.INPUT) |
| | | @TableField("item_id") |
| | | |
| | | private Long itemId; |
| | | |
| | | /** |
| | |
| | | * 启动日期 |
| | | */ |
| | | @ApiModelProperty(value= "启动日期") |
| | | @TableField("start_time") |
| | | @TableField(value = "start_time",strategy = FieldStrategy.IGNORED) |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | |
| | | private Date startTime; |
| | | |
| | | /** |
| | | * 实际启动日期 |
| | | */ |
| | | @ApiModelProperty(value= "实际启动日期") |
| | | @TableField("real_start_time") |
| | | @TableField(value = "real_start_time", strategy = FieldStrategy.IGNORED) |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | private Date realStartTime; |
| | | |
| | |
| | | * 结束日期 |
| | | */ |
| | | @ApiModelProperty(value= "结束日期") |
| | | @TableField("end_time") |
| | | @TableField(value = "end_time", strategy = FieldStrategy.IGNORED) |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | private Date endTime; |
| | | |
| | |
| | | * 实际结束日期 |
| | | */ |
| | | @ApiModelProperty(value= "实际结束日期") |
| | | @TableField("real_end_time") |
| | | @TableField(value = "real_end_time", strategy = FieldStrategy.IGNORED) |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | private Date realEndTime; |
| | | |