LAOP-admin/src/main/java/com/haisen/laop/dto/AppBannerQueryDTO.java
2026-09-18 16:45:38 +08:00

28 lines
591 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.haisen.laop.dto;
import lombok.Data;
import java.io.Serializable;
/**
* 轮播图分页查询 DTO,对应 Web 管理端列表筛选条件。
*
* <p>全部字段可选,GET 参数自动绑定。</p>
*
* @author duhao
*/
@Data
public class AppBannerQueryDTO implements Serializable {
private static final long serialVersionUID = 1L;
/** 状态精确匹配:0隐藏 1显示。 */
private Integer status;
/** 页码,0 起(与 Spring Data 约定一致)。 */
private Integer pageNo;
/** 每页数量。 */
private Integer pageSize;
}