Administrator
2025-07-09 f29586dbcd6af0077af62efa95105ef2350d794b
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
29
package cc.mrbird.febs.mall.vo.clothes;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "ApiClothesMemberStatureVo", description = "参数")
public class ApiClothesMemberStatureVo {
 
    @ApiModelProperty(value = "ID")
    private Long id;
    @ApiModelProperty(value = "昵称")
    private String name;
    @ApiModelProperty(value = "身高")
    private BigDecimal heightLine;
    @ApiModelProperty(value = "胸围")
    private BigDecimal bustLine;
    @ApiModelProperty(value = "腰围")
    private BigDecimal waistLine;
    @ApiModelProperty(value = "肩宽")
    private BigDecimal wideLine;
    @ApiModelProperty(value = "臀围")
    private BigDecimal hipLine;
    @ApiModelProperty(value = "是否默认 0-否 1-是")
    private Integer state;
}