gongzuming
2024-08-23 d9fc483d7bf49707a6b35eaa68a20657e02459a9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.mzl.flower.dto.request.flower;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
public class FlowerRecommendRankDTO {
    @ApiModelProperty(value = "id")
    @NotNull(message = "id不能为空")
    private Long id;
 
    @ApiModelProperty(value = "推荐排序")
    @NotNull(message = "排序不能为空")
    private Integer recommendRank;//推荐排序
}