xin
5 days ago 044a57d2133b2363a6f0d3d167b3eaa587c70b91
oying-system/src/main/java/com/oying/modules/pc/store/domain/dto/StoreCategoryQueryCriteria.java
@@ -3,6 +3,9 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
/**
 * @author lzp
 * @date 2025-04-27
@@ -10,17 +13,28 @@
@Data
public class StoreCategoryQueryCriteria {
    @ApiModelProperty(value = "模糊查询")
    private String blurry;
    @ApiModelProperty(value = "ID")
    private Long categoryId;
    @ApiModelProperty(value = "店铺ID")
    private Long storeId;
    @ApiModelProperty(value = "类目层级:1-级类目 2-级类目")
    private Integer level;
    private Boolean recursive;
    @ApiModelProperty(value = "是否启用(0-否 1-是)")
    private Integer active;
    @ApiModelProperty(value = "递归处理")
    private Boolean recursive;
    @ApiModelProperty(value = "页码", example = "1")
    private Integer page = 1;
    @ApiModelProperty(value = "每页数据量", example = "10")
    private Integer size = 10;
}