| | |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author: LiuS |
| | |
| | | public class EquipmentCalendarVo { |
| | | |
| | | private String equipmentId; |
| | | /** |
| | | * 开始时间 |
| | | */ |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'") |
| | | private LocalDate takeEffectDate; |
| | | /** |
| | | * 结束时间 |
| | | */ |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'") |
| | | private LocalDate invalidDate; |
| | | |
| | | private String monShiftId; |
| | | private List<String> dateList; |
| | | |
| | | private String tueShiftId; |
| | | private String shiftId; |
| | | |
| | | private String wedShiftId; |
| | | |
| | | private String thuShiftId; |
| | | |
| | | private String friShiftId; |
| | | |
| | | private String satShiftId; |
| | | |
| | | private String sunShiftId; |
| | | } |