zjh
2024-05-16 adaaa23c789be3313a0e554fbf7beaa8ab261e68
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.ltkj.tduck.request;
 
import cn.hutool.core.date.DatePattern;
import com.ltkj.tduck.domain.PageRequest;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.time.LocalDateTime;
 
/**
 * @author : smalljop
 * @description : 查询表单
 * @create : 2020-12-10 15:04
 **/
@Data
public class QueryFormRequest {
 
 
    @Data
    public static class List {
        private Integer status;
    }
 
 
    /**
     * 分页查询
     */
    @Data
    public static class Page extends PageRequest {
        private Long folderId;
 
 
        private Integer type;
        private Integer status;
 
        private String name;
 
        /**
         * 是否包含文件夹
         */
        private Boolean folder;
 
        @DateTimeFormat(pattern = DatePattern.NORM_DATETIME_PATTERN)
        private LocalDateTime beginDateTime;
 
        @DateTimeFormat(pattern = DatePattern.NORM_DATETIME_PATTERN)
        private LocalDateTime endDateTime;
    }
 
 
 
 
}