Administrator
22 hours ago a364bbbe17f281dd52af550886e06afd79034853
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cc.mrbird.febs.ai.res.member;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiCompanyStudyRecordVo", description = "参数")
public class ApiCompanyStudyRecordVo {
 
    @ApiModelProperty(value = "微信名")
    private String nickName;
 
    @ApiModelProperty(value = "用户姓名")
    private String memberName;
 
    @ApiModelProperty(value = "评分")
    private Integer score;
}