| | |
| | | package org.jeecg.modules.mdc.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 设备加班管理 |
| | |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty(value = "开始时间") |
| | | private java.util.Date startTime; |
| | | private Date startTime; |
| | | /** |
| | | * 结束时间 |
| | | */ |
| | |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty(value = "结束时间") |
| | | private java.util.Date endTime; |
| | | private Date endTime; |
| | | |
| | | /** |
| | | * 前台传入 判断每个id |
| | | */ |
| | | @TableField(exist = false) |
| | | private String parentId; |
| | | |
| | | /** |
| | | * 前台传入 车间层级:1 部门层级:2 |
| | | */ |
| | | @TableField(exist = false) |
| | | private String typeTree; |
| | | |
| | | /** |
| | | * 部门parentId 关联子集id |
| | | */ |
| | | @TableField(exist = false) |
| | | private List<String> mdcSectionIds; |
| | | |
| | | @TableField(exist = false) |
| | | private String equipmentIds; |
| | | |
| | | } |