|
|
@@ -0,0 +1,297 @@
|
|
|
+package com.goafanti.user.bo;
|
|
|
+
|
|
|
+import javax.validation.constraints.Max;
|
|
|
+import javax.validation.constraints.Min;
|
|
|
+import javax.validation.constraints.Pattern;
|
|
|
+import javax.validation.constraints.Size;
|
|
|
+
|
|
|
+import com.goafanti.common.constant.ErrorConstants;
|
|
|
+
|
|
|
+public class InputOrgPro {
|
|
|
+ @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String iid;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String pid;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 6, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String identityType;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 45, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String companyName;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 12, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String locationProvince;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 12, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String locationCity;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 12, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String locationArea;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 12, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ @Pattern(regexp = "^([1-9])\\d{11}$", message = "{" + ErrorConstants.PARAM_PATTERN_ERROR + "}")
|
|
|
+ private String unitSize;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 1000, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String companyIntroduction;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 45, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String homeUnit;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String logoUrl;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 1000, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String publicityPictureUrl;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 45, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String qualification;
|
|
|
+
|
|
|
+ @Max(value = 99999999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer turnover;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 45, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String collegeAttribute;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 12, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String collegeEstablishTime;
|
|
|
+
|
|
|
+ @Max(value = 99999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer academician;
|
|
|
+
|
|
|
+ @Max(value = 99999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer doctoralTutor;
|
|
|
+
|
|
|
+ @Max(value = 99999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer masterTutor;
|
|
|
+
|
|
|
+ @Max(value = 99999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer otherExpert;
|
|
|
+
|
|
|
+ @Max(value = 99999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer nationalLab;
|
|
|
+
|
|
|
+ @Max(value = 99999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer educationLab;
|
|
|
+
|
|
|
+ @Max(value = 99999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer enterpriseCenter;
|
|
|
+
|
|
|
+ @Max(value = 99999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer otherCenter;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 12, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String institutionEstablishTime;
|
|
|
+
|
|
|
+ public String getIid() {
|
|
|
+ return iid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIid(String iid) {
|
|
|
+ this.iid = iid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPid() {
|
|
|
+ return pid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPid(String pid) {
|
|
|
+ this.pid = pid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIdentityType() {
|
|
|
+ return identityType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIdentityType(String identityType) {
|
|
|
+ this.identityType = identityType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCompanyName() {
|
|
|
+ return companyName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCompanyName(String companyName) {
|
|
|
+ this.companyName = companyName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLocationProvince() {
|
|
|
+ return locationProvince;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLocationProvince(String locationProvince) {
|
|
|
+ this.locationProvince = locationProvince;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLocationCity() {
|
|
|
+ return locationCity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLocationCity(String locationCity) {
|
|
|
+ this.locationCity = locationCity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLocationArea() {
|
|
|
+ return locationArea;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLocationArea(String locationArea) {
|
|
|
+ this.locationArea = locationArea;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUnitSize() {
|
|
|
+ return unitSize;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUnitSize(String unitSize) {
|
|
|
+ this.unitSize = unitSize;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCompanyIntroduction() {
|
|
|
+ return companyIntroduction;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCompanyIntroduction(String companyIntroduction) {
|
|
|
+ this.companyIntroduction = companyIntroduction;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getHomeUnit() {
|
|
|
+ return homeUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHomeUnit(String homeUnit) {
|
|
|
+ this.homeUnit = homeUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLogoUrl() {
|
|
|
+ return logoUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLogoUrl(String logoUrl) {
|
|
|
+ this.logoUrl = logoUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPublicityPictureUrl() {
|
|
|
+ return publicityPictureUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPublicityPictureUrl(String publicityPictureUrl) {
|
|
|
+ this.publicityPictureUrl = publicityPictureUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getQualification() {
|
|
|
+ return qualification;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQualification(String qualification) {
|
|
|
+ this.qualification = qualification;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTurnover() {
|
|
|
+ return turnover;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTurnover(Integer turnover) {
|
|
|
+ this.turnover = turnover;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCollegeAttribute() {
|
|
|
+ return collegeAttribute;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCollegeAttribute(String collegeAttribute) {
|
|
|
+ this.collegeAttribute = collegeAttribute;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCollegeEstablishTime() {
|
|
|
+ return collegeEstablishTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCollegeEstablishTime(String collegeEstablishTime) {
|
|
|
+ this.collegeEstablishTime = collegeEstablishTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getAcademician() {
|
|
|
+ return academician;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAcademician(Integer academician) {
|
|
|
+ this.academician = academician;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getDoctoralTutor() {
|
|
|
+ return doctoralTutor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDoctoralTutor(Integer doctoralTutor) {
|
|
|
+ this.doctoralTutor = doctoralTutor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMasterTutor() {
|
|
|
+ return masterTutor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMasterTutor(Integer masterTutor) {
|
|
|
+ this.masterTutor = masterTutor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOtherExpert() {
|
|
|
+ return otherExpert;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOtherExpert(Integer otherExpert) {
|
|
|
+ this.otherExpert = otherExpert;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getNationalLab() {
|
|
|
+ return nationalLab;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNationalLab(Integer nationalLab) {
|
|
|
+ this.nationalLab = nationalLab;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getEducationLab() {
|
|
|
+ return educationLab;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEducationLab(Integer educationLab) {
|
|
|
+ this.educationLab = educationLab;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getEnterpriseCenter() {
|
|
|
+ return enterpriseCenter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEnterpriseCenter(Integer enterpriseCenter) {
|
|
|
+ this.enterpriseCenter = enterpriseCenter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOtherCenter() {
|
|
|
+ return otherCenter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOtherCenter(Integer otherCenter) {
|
|
|
+ this.otherCenter = otherCenter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getInstitutionEstablishTime() {
|
|
|
+ return institutionEstablishTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInstitutionEstablishTime(String institutionEstablishTime) {
|
|
|
+ this.institutionEstablishTime = institutionEstablishTime;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|