by-crm/backend/src/main/com/bycrm/dto/PageQuery.java
2026-01-23 17:20:52 +08:00

35 lines
504 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.bycrm.dto;
import lombok.Data;
import java.io.Serializable;
/**
* 分页查询基类
*/
@Data
public class PageQuery implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 当前页
*/
private Long current = 1L;
/**
* 每页大小
*/
private Long size = 10L;
/**
* 排序字段
*/
private String orderBy;
/**
* 排序方式asc/desc
*/
private String orderDirection = "desc";
}