|
@@ -38,21 +38,13 @@ public class LogOperateDto {
|
|
|
@Accessors(chain = true)
|
|
|
public static class MqttBySn {
|
|
|
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "创建时间-起")
|
|
|
- private LocalDate beginCreateTime;
|
|
|
+ private LocalDateTime beginCreateTime;
|
|
|
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "创建时间-始")
|
|
|
- private LocalDate endCreateTime;
|
|
|
-
|
|
|
- public LocalDateTime getBeginCreateTime() {
|
|
|
- return beginCreateTime == null ? null : beginCreateTime.atTime(0, 0, 0);
|
|
|
- }
|
|
|
-
|
|
|
- public LocalDateTime getEndCreateTime() {
|
|
|
- return endCreateTime == null ? null : endCreateTime.atTime(23, 59, 59);
|
|
|
- }
|
|
|
+ private LocalDateTime endCreateTime;
|
|
|
}
|
|
|
|
|
|
@Data
|