Administrator
4 days ago 2a47db19d2b60ca3df93fc0c82ecfb761c0d94d1
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;
}