ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package jnpf.base.model.datainterface;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jnpf.base.Pagination;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class PaginationDataInterfaceSelector extends Pagination implements Serializable {
    /**
     * 1  鉴权、真分页、SQL的增加、修改、删除类型
     * 2  鉴权、SQL的增加、修改、删除类型
     * 3  鉴权、真分页、SQL的查询类型
     */
    @Schema(description = "来源类型")
    private Integer sourceType;
 
    @Schema(description = "类型")
    private String type;
 
    @Schema(description = "分类id")
    private String category;
}