package com.oying.modules.pc.category.domain.dto;
|
|
import lombok.Data;
|
import io.swagger.annotations.ApiModelProperty;
|
|
/**
|
* @author lzp
|
* @date 2025-04-30
|
**/
|
@Data
|
public class PlatformCategoryQueryCriteria{
|
|
@ApiModelProperty(value = "是否启用", example = "1")
|
private Integer active = 1;
|
|
@ApiModelProperty(value = "页码", example = "1")
|
private Integer page = 1;
|
|
@ApiModelProperty(value = "每页数据量", example = "10")
|
private Integer size = 10;
|
|
}
|