刘光辉
1 天以前 bb638871a7fb692d80f1b7a758f991dc0879002c
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
package jnpf.onlinedev.model;
 
 
import io.swagger.v3.oas.annotations.media.Schema;
import jnpf.base.Pagination;
import lombok.Data;
 
import java.util.Map;
 
/**
 *
 * @version V3.1.0
 * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
 * @author JNPF开发平台组
 * @date 2021/3/16
 */
@Data
@Schema(description="查询条件模型")
public class PaginationModel extends Pagination {
    @Schema(description = "查询条件json")
    private String queryJson;
    @Schema(description = "菜单id")
    private String menuId;
    @Schema(description = "关联字段")
    private String relationField;
    @Schema(description = "字段对象")
    private String columnOptions;
    @Schema(description = "数据类型")
    private String dataType;
    @Schema(description = "高级查询条件json")
    private String superQueryJson;
    @Schema(description = "异步查询父id")
    private String parentId;
 
    @Schema(description = "关联表单查询类型:0-简易查询(单行,多行,数字,下拉补全),1-全部字段")
    private Integer queryType = 1;
 
    @Schema(description = "页签查询")
    private String extraQueryJson;
 
    @Schema(description = "应用编码")
    private String systemCode;
    @Schema(description = "流程模板id")
    private String flowId;
    @Schema(description = "onlineUtils代码打开")
    private Boolean onlineUtilsOpen = false;
    @Schema(description = "数据视图页面参数")
    private Map<String, Object> interfacePageParam;
}