Administrator
5 days ago f92107718d728a2bfa6e7bb3127007586616d5ee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package cc.mrbird.febs.mall.dto.activity;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "ApiActivityCommentDto", description = "参数")
public class ApiActivityCommentDto {
 
 
    @ApiModelProperty(value = "页码", example = "1")
    private Integer pageNow;
 
    @ApiModelProperty(value = "每页数量", example = "10")
    private Integer pageSize;
 
 
    @NotNull(message = "活动ID不能为空")
    @ApiModelProperty(value = "活动ID", example = "1")
    private Long activityId;
 
    @ApiModelProperty(value = "评价等级", example = "1:好评2:中评3:差评")
    private Integer commentType;
}