puzhibing
2 天以前 21573e8e02dc47202ca3e1f7d4705795a09c1b60
ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/domain/dto/MgtOneClinkSyncingPageDTO.java
@@ -6,6 +6,7 @@
import lombok.Data;
import org.springframework.cglib.core.Local;
import java.time.LocalDate;
import java.time.LocalDateTime;
@Data
@@ -19,10 +20,13 @@
    private String syncingName;
    @ApiModelProperty(value = "操作同步时间范围-开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime syncingStartTime;
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate syncingStartTime;
    @ApiModelProperty(value = "操作同步时间范围-结束时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime syncingEndTime;
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate syncingEndTime;
    private LocalDateTime startTime;
    private LocalDateTime endTime;
}