leomon
2025-07-09 48b6f19e19502b2f6469bab3e6a266d88a8e9c8b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.oying.modules.system.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author Z
 * 公共查询类
 */
@Data
public class DictQueryCriteria {
 
    @ApiModelProperty(value = "模糊查询")
    private String blurry;
 
    @ApiModelProperty(value = "页码", example = "1")
    private Integer page = 1;
 
    @ApiModelProperty(value = "每页数据量", example = "10")
    private Integer size = 10;
}