zhanghua
2023-03-02 904f2b3a10d21a557e161cae6e0bad98c062d578
1
2
3
4
5
6
7
8
9
10
11
12
package com.ycl.smoke.remote.dto;
 
import lombok.Data;
 
@Data
public class ResultsPageInfo {
    private Integer Page;
    private Integer PerPage;
    private Integer TotalPage;
    private Integer Total;
    private Integer CurrentTotal;
}