package cc.mrbird.febs.mall.dto.sale; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import javax.validation.constraints.NotNull; @Data @ApiModel(value = "ApiSaleRecordInfoDto", description = "参数") public class ApiSaleRecordInfoDto { @NotNull(message = "分类不能为空") @ApiModelProperty(value = "分类 1-月排行 2-周", example = "1") private Integer type; }