|
@@ -8,7 +8,6 @@ import lombok.experimental.Accessors;
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
import java.time.LocalDateTime;
|
|
|
-import java.time.LocalTime;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -48,28 +47,22 @@ public class DeviceTempSetDto {
|
|
|
private Integer tempValue;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段1起始时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job1StartTime;
|
|
|
+ private Integer job1StartTime;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段1结束时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job1StartEnd;
|
|
|
+ private Integer job1StartEnd;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段2起始时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job2StartTime;
|
|
|
+ private Integer job2StartTime;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段2结束时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job2StartEnd;
|
|
|
+ private Integer job2StartEnd;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段3起始时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job3StartTime;
|
|
|
+ private Integer job3StartTime;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段3结束时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job3EndTime;
|
|
|
+ private Integer job3EndTime;
|
|
|
}
|
|
|
|
|
|
@Data
|
|
@@ -106,28 +99,22 @@ public class DeviceTempSetDto {
|
|
|
private Integer tempValue;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段1起始时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job1StartTime;
|
|
|
+ private Integer job1StartTime;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段1结束时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job1StartEnd;
|
|
|
+ private Integer job1StartEnd;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段2起始时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job2StartTime;
|
|
|
+ private Integer job2StartTime;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段2结束时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job2StartEnd;
|
|
|
+ private Integer job2StartEnd;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段3起始时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job3StartTime;
|
|
|
+ private Integer job3StartTime;
|
|
|
|
|
|
@ApiModelProperty(value = "工作时段3结束时间")
|
|
|
- @JsonFormat(pattern = "HH:mm:ss")
|
|
|
- private LocalTime job3EndTime;
|
|
|
+ private Integer job3EndTime;
|
|
|
|
|
|
@ApiModelProperty(value = "设置状态")
|
|
|
private String status;
|