Administrator
2025-05-15 5c3e9863d44697dc904812af2dad8393d3a8b6a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}