You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gym/JQPageInfo.java

65 lines
1.9 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.utils; // 声明包名为 com.utils
// 定义一个名为 JQPageInfo 的类,用于封装分页信息
public class JQPageInfo {
// 定义一个私有整数类型变量 page用于存储当前页码
private Integer page;
// 定义一个私有整数类型变量 limit用于存储每页显示的记录数
private Integer limit;
// 定义一个私有字符串类型变量 sidx用于存储排序的字段
private String sidx;
// 定义一个私有字符串类型变量 order用于存储排序的顺序升序或降序
private String order;
// 定义一个私有整数类型变量 offset用于存储偏移量
private Integer offset;
// 定义一个公共方法 getPage用于获取当前页码
public Integer getPage() {
return page;
}
// 定义一个公共方法 setPage用于设置当前页码
public void setPage(Integer page) {
this.page = page;
}
// 定义一个公共方法 getLimit用于获取每页显示的记录数
public Integer getLimit() {
return limit;
}
// 定义一个公共方法 setLimit用于设置每页显示的记录数
public void setLimit(Integer limit) {
this.limit = limit;
}
// 定义一个公共方法 getSidx用于获取排序的字段
public String getSidx() {
return sidx;
}
// 定义一个公共方法 setSidx用于设置排序的字段
public void setSidx(String sidx) {
this.sidx = sidx;
}
// 定义一个公共方法 getOrder用于获取排序的顺序
public String getOrder() {
return order;
}
// 定义一个公共方法 setOrder用于设置排序的顺序
public void setOrder(String order) {
this.order = order;
}
// 定义一个公共方法 getOffset用于获取偏移量
public Integer getOffset() {
return offset;
}
// 定义一个公共方法 setOffset用于设置偏移量
public void setOffset(Integer offset) {
this.offset = offset;
}
}