| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- package com.goafanti.user.bo;
- import javax.validation.constraints.Max;
- import javax.validation.constraints.Min;
- 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;
- @Max(value = 99, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private Integer locationProvince;
- @Max(value = 999, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private Integer locationCity;
- @Max(value = 9999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer locationArea;
- @Size(min = 0, max = 12, message = "{" + ErrorConstants.PARAM_SIZE_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 Integer getLocationProvince() {
- return locationProvince;
- }
- public void setLocationProvince(Integer locationProvince) {
- this.locationProvince = locationProvince;
- }
- public Integer getLocationCity() {
- return locationCity;
- }
- public void setLocationCity(Integer locationCity) {
- this.locationCity = locationCity;
- }
- public Integer getLocationArea() {
- return locationArea;
- }
- public void setLocationArea(Integer 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;
- }
- }
|