|
@@ -55,7 +55,7 @@ public class EmployeeInfo {
|
|
|
private String educationalBackground;
|
|
|
|
|
|
@ApiModelProperty(value = "声部", required = false)
|
|
|
- private Integer subjectIdList;
|
|
|
+ private String subjectIdList;
|
|
|
|
|
|
@ApiModelProperty(value = "评估结果", required = false)
|
|
|
private String accessmentResult;
|
|
@@ -211,11 +211,11 @@ public class EmployeeInfo {
|
|
|
return this.educationalBackground;
|
|
|
}
|
|
|
|
|
|
- public Integer getSubjectIdList() {
|
|
|
+ public String getSubjectIdList() {
|
|
|
return subjectIdList;
|
|
|
}
|
|
|
|
|
|
- public void setSubjectIdList(Integer subjectIdList) {
|
|
|
+ public void setSubjectIdList(String subjectIdList) {
|
|
|
this.subjectIdList = subjectIdList;
|
|
|
}
|
|
|
|