puzhibing
昨天 4ad32c37e3317fb6cb7cbfb034b53d3220c27db4
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 FindVehiclePageRequest {
    private Integer pageNo;
    private Integer pageSize;
    private ExactCondition 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 ExactCondition getExactCondition() {
        return exactCondition;
    }
 
    public void setExactCondition(ExactCondition exactCondition) {
        this.exactCondition = exactCondition;
    }
}