|
|
@@ -74,7 +74,7 @@ public class InputUserIdentity {
|
|
|
|
|
|
private Date paymentDate;
|
|
|
|
|
|
- @Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Max(value = 2, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
@Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
private Integer expert;
|
|
|
|
|
|
@@ -114,8 +114,45 @@ public class InputUserIdentity {
|
|
|
@Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
private Integer authentication;
|
|
|
|
|
|
- String workUnit;
|
|
|
+ @Size(min = 0, max = 64, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String workUnit;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String qualification;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String professionalTitle;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String majorCategory;
|
|
|
+
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Max(value = 3, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer expertAudit;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String graduateSchool;
|
|
|
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Max(value = 3, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer consultantType;
|
|
|
+
|
|
|
+ public Integer getConsultantType() {
|
|
|
+ return consultantType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConsultantType(Integer consultantType) {
|
|
|
+ this.consultantType = consultantType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGraduateSchool() {
|
|
|
+ return graduateSchool;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGraduateSchool(String graduateSchool) {
|
|
|
+ this.graduateSchool = graduateSchool;
|
|
|
+ }
|
|
|
+
|
|
|
public String getWorkUnit() {
|
|
|
return workUnit;
|
|
|
}
|
|
|
@@ -124,6 +161,38 @@ public class InputUserIdentity {
|
|
|
this.workUnit = workUnit;
|
|
|
}
|
|
|
|
|
|
+ public String getQualification() {
|
|
|
+ return qualification;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQualification(String qualification) {
|
|
|
+ this.qualification = qualification;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProfessionalTitle() {
|
|
|
+ return professionalTitle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProfessionalTitle(String professionalTitle) {
|
|
|
+ this.professionalTitle = professionalTitle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMajorCategory() {
|
|
|
+ return majorCategory;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMajorCategory(String majorCategory) {
|
|
|
+ this.majorCategory = majorCategory;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getExpertAudit() {
|
|
|
+ return expertAudit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExpertAudit(Integer expertAudit) {
|
|
|
+ this.expertAudit = expertAudit;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getExpert() {
|
|
|
return expert;
|
|
|
}
|