package cc.mrbird.febs.mall.dto.clothes;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
|
@Data
|
@ApiModel(value = "ApiAllSocialDto", description = "参数")
|
public class ApiAllSocialDto {
|
|
@NotNull(message = "页码不能为空")
|
@ApiModelProperty(value = "页码", example = "1")
|
private Integer pageNow;
|
|
@NotNull(message = "每页数量不能为空")
|
@ApiModelProperty(value = "每页数量", example = "10")
|
private Integer pageSize;
|
|
|
@NotNull(message = "分类不能为空")
|
@ApiModelProperty(value = "分类ID,查询全部传0")
|
private Long categoryId;
|
|
@NotNull(message = "类型不能为空")
|
@ApiModelProperty(value = "类型 1-首页查询 2-社区查询")
|
private Integer type;
|
|
}
|