Administrator
2025-07-14 17cea8fe652d1566e856e168d528a1af628e2140
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 = "ApiClothesMemberStatureInfoDto", description = "参数")
public class ApiClothesMemberStatureInfoDto {
 
    @NotNull(message = "身材数据不能为空")
    @ApiModelProperty(value = "ID")
    private Long id;
 
}