gasWellWatch/src/main/java/com/isu/gaswellwatch/vo/PageQuery.java

25 lines
540 B
Java
Raw Normal View History

2024-11-17 22:07:00 +08:00
package com.isu.gaswellwatch.vo;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.SuperBuilder;
2024-11-26 15:51:47 +08:00
import java.io.Serial;
2024-11-17 22:07:00 +08:00
import java.io.Serializable;
/**
2024-11-26 15:51:47 +08:00
* @author <a href="mailto:scwsl@foxmail.com">王仕龙</a>
2024-11-17 22:07:00 +08:00
* 2024/11/15 21:07
*/
@Getter
@Setter
@SuperBuilder
@NoArgsConstructor
public class PageQuery implements Serializable {
2024-11-26 15:51:47 +08:00
@Serial
private static final long serialVersionUID = 5208411501118143553L;
2024-11-17 22:07:00 +08:00
private Integer currentPage;
private Integer pageSize;
}