nickchange
2023-11-09 c036557db88c6297b9a626a892dce35c14ab8ee5
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
30
31
32
33
34
35
36
37
38
39
40
41
package com.dsh.account.model.vo.classDetails.classInsVo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class StuListVo {
 
    @ApiModelProperty(value = "学员id")
    private Integer stuId;
 
    @ApiModelProperty(value = "学员头像")
    private String stuHeadImg;
 
    @ApiModelProperty(value = "学员姓名")
    private String stuName;
 
    @ApiModelProperty(value = "学员年龄")
    private Integer stuAge;
 
    @ApiModelProperty(value = "学员身高")
    private Double stuHeight;
 
    @ApiModelProperty(value = "学员生日")
    private String birthday;
 
    @ApiModelProperty(value = "学员体重")
    private Double stuWeight;
 
    @ApiModelProperty(value = "学员身份证号码")
    private String idCard;
 
    @ApiModelProperty(value = "是否默认(1. 是默认 2. 不是默认 )")
    private Integer isNot;
 
    @ApiModelProperty(value = "学员手机号")
    private String stuPhone;
 
    @ApiModelProperty(value = "性别")
    private Integer sex;
}