huliguo
昨天 ef8cf60d8a9c33098e2e7be51bd4f0d6db6c0693
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.ruoyi.system.domain.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.system.api.domain.dto.MgtPageDto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.cglib.core.Local;
 
import java.time.LocalDate;
import java.time.LocalDateTime;
 
@Data
public class MgtOneClinkSyncingPageDTO  {
    @ApiModelProperty("页码")
    private Integer pageNum=0;
 
    @ApiModelProperty("分页大小")
    private Integer pageSize=10;
    @ApiModelProperty(value = "同步标题")
    private String syncingName;
 
    @ApiModelProperty(value = "操作同步时间范围-开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate syncingStartTime;
 
    @ApiModelProperty(value = "操作同步时间范围-结束时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate syncingEndTime;
 
    private LocalDateTime startTime;
    private LocalDateTime endTime;
}