Pu Zhibing
4 天以前 a91f50ce8ce976743c11de98f9e3ed574bb3f78e
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
package com.ruoyi.dataInterchange.util.haikang.model;
 
public class FindCameraPageRequest {
    private Integer pageNo;
    private Integer pageSize;
    private ExactCondition1 exactCondition;
 
    public Integer getPageNo() {
        return pageNo;
    }
 
    public void setPageNo(Integer pageNo) {
        this.pageNo = pageNo;
    }
 
    public Integer getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }
 
    public ExactCondition1 getExactCondition() {
        return exactCondition;
    }
 
    public void setExactCondition(ExactCondition1 exactCondition) {
        this.exactCondition = exactCondition;
    }
}