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