| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635 |
- package com.goafanti.user.bo;
- import java.math.BigDecimal;
- import java.util.Date;
- import javax.validation.constraints.Max;
- import javax.validation.constraints.Min;
- import javax.validation.constraints.Size;
- import com.goafanti.common.constant.ErrorConstants;
- public class InputOrganizationIdentity {
- @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String id;
- @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String uid;
- @Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer type;
-
- @Size(min = 0, max = 6, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String contacts;
- @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String contactMobile;
- @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String fixedTel;
- @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String qq;
- @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String postalAddress;
- @Size(min = 0, max = 8, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String postcode;
- @Size(min = 0, max = 128, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String identifyName;
- @Max(value = 999999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private BigDecimal registeredCapital;
- @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String licenceNumber;
- @Max(value = 99, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer licenceProvince;
- @Max(value = 999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer licenceCity;
- @Max(value = 9999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer licenceArea;
- @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String licenceScanningUrl;
- @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String orgCode;
- @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String orgCodeUrl;
- @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String bankAccount;
- @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String banks;
- @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String bankBranch;
- @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String bankCardNumber;
- @Max(value = (long) 99.9999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private BigDecimal validationAmount;
- @Max(value = 9, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer identityType;
- @Max(value = 99, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer locationProvince;
- @Max(value = 999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_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 = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String legalPerson;
-
- @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String legalPersonTel;
-
- @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String legalPersonIdCard;
- @Size(min = 0, max = 128, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String legalPersonEmail;
-
- @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String lastYearTaxReportUrl;
- @Max(value = 5, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer auditStatus;
- @Max(value = 9, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer process;
- @Max(value = 3, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer wrongCount;
- private Date paymentDate;
- @Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer listed;
- private Date listedDate;
- @Max(value = 9, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer listedType;
- @Size(min = 0, max = 32, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String stockCode;
- @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String certificateNumber;
- private Date issuingDate;
- @Max(value = 3, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer cogContacts;
- @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String consultant;
- @Max(value = 5, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer level;
- @Max(value = 99, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer industry;
- private String enterpriseScale;
-
- @Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer highTechZone;
-
- @Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
- private Integer authentication;
-
- @Size(min = 0, max = 400, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String businessScope;
-
- @Size(min = 0, max = 16, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String field;
- @Size(min = 0, max = 127, message = "{" + ErrorConstants.EMAIL_SIZE_ERROR + "}")
- private String email;
-
- @Size(min = 0, max = 127, message = "{" + ErrorConstants.EMAIL_SIZE_ERROR + "}")
- private String companyLogoUrl;
-
- @Size(min = 0, max = 1, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String societyTag;
-
- @Size(min = 0, max = 512, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
- private String introduction;
-
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getUid() {
- return uid;
- }
- public void setUid(String uid) {
- this.uid = uid;
- }
-
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public String getContacts() {
- return contacts;
- }
- public void setContacts(String contacts) {
- this.contacts = contacts;
- }
- public String getContactMobile() {
- return contactMobile;
- }
- public void setContactMobile(String contactMobile) {
- this.contactMobile = contactMobile;
- }
- public String getFixedTel() {
- return fixedTel;
- }
- public void setFixedTel(String fixedTel) {
- this.fixedTel = fixedTel;
- }
- public String getQq() {
- return qq;
- }
- public void setQq(String qq) {
- this.qq = qq;
- }
- public String getPostalAddress() {
- return postalAddress;
- }
- public void setPostalAddress(String postalAddress) {
- this.postalAddress = postalAddress;
- }
- public String getPostcode() {
- return postcode;
- }
- public void setPostcode(String postcode) {
- this.postcode = postcode;
- }
- public String getIdentifyName() {
- return identifyName;
- }
- public void setIdentifyName(String identifyName) {
- this.identifyName = identifyName;
- }
- public BigDecimal getRegisteredCapital() {
- return registeredCapital;
- }
- public void setRegisteredCapital(BigDecimal registeredCapital) {
- this.registeredCapital = registeredCapital;
- }
- public String getLicenceNumber() {
- return licenceNumber;
- }
- public void setLicenceNumber(String licenceNumber) {
- this.licenceNumber = licenceNumber;
- }
- public Integer getLicenceProvince() {
- return licenceProvince;
- }
- public void setLicenceProvince(Integer licenceProvince) {
- this.licenceProvince = licenceProvince;
- }
- public Integer getLicenceCity() {
- return licenceCity;
- }
- public void setLicenceCity(Integer licenceCity) {
- this.licenceCity = licenceCity;
- }
- public Integer getLicenceArea() {
- return licenceArea;
- }
- public void setLicenceArea(Integer licenceArea) {
- this.licenceArea = licenceArea;
- }
- public void setLocationProvince(Integer locationProvince) {
- this.locationProvince = locationProvince;
- }
- public void setLocationCity(Integer locationCity) {
- this.locationCity = locationCity;
- }
- public void setLocationArea(Integer locationArea) {
- this.locationArea = locationArea;
- }
- public String getLicenceScanningUrl() {
- return licenceScanningUrl;
- }
- public void setLicenceScanningUrl(String licenceScanningUrl) {
- this.licenceScanningUrl = licenceScanningUrl;
- }
- public String getOrgCode() {
- return orgCode;
- }
- public void setOrgCode(String orgCode) {
- this.orgCode = orgCode;
- }
- public String getOrgCodeUrl() {
- return orgCodeUrl;
- }
- public void setOrgCodeUrl(String orgCodeUrl) {
- this.orgCodeUrl = orgCodeUrl;
- }
- public String getBankAccount() {
- return bankAccount;
- }
- public void setBankAccount(String bankAccount) {
- this.bankAccount = bankAccount;
- }
- public String getBanks() {
- return banks;
- }
- public void setBanks(String banks) {
- this.banks = banks;
- }
- public String getBankBranch() {
- return bankBranch;
- }
- public void setBankBranch(String bankBranch) {
- this.bankBranch = bankBranch;
- }
- public String getBankCardNumber() {
- return bankCardNumber;
- }
- public void setBankCardNumber(String bankCardNumber) {
- this.bankCardNumber = bankCardNumber;
- }
- public BigDecimal getValidationAmount() {
- return validationAmount;
- }
- public void setValidationAmount(BigDecimal validationAmount) {
- this.validationAmount = validationAmount;
- }
- public Integer getIdentityType() {
- return identityType;
- }
- public void setIdentityType(Integer identityType) {
- this.identityType = identityType;
- }
- public String getLegalPerson() {
- return legalPerson;
- }
- public void setLegalPerson(String legalPerson) {
- this.legalPerson = legalPerson;
- }
- public String getLegalPersonTel() {
- return legalPersonTel;
- }
- public void setLegalPersonTel(String legalPersonTel) {
- this.legalPersonTel = legalPersonTel;
- }
- public String getLegalPersonIdCard() {
- return legalPersonIdCard;
- }
- public void setLegalPersonIdCard(String legalPersonIdCard) {
- this.legalPersonIdCard = legalPersonIdCard;
- }
- public String getLegalPersonEmail() {
- return legalPersonEmail;
- }
- public void setLegalPersonEmail(String legalPersonEmail) {
- this.legalPersonEmail = legalPersonEmail;
- }
- public String getLastYearTaxReportUrl() {
- return lastYearTaxReportUrl;
- }
- public void setLastYearTaxReportUrl(String lastYearTaxReportUrl) {
- this.lastYearTaxReportUrl = lastYearTaxReportUrl;
- }
- public Integer getAuditStatus() {
- return auditStatus;
- }
- public void setAuditStatus(Integer auditStatus) {
- this.auditStatus = auditStatus;
- }
- public Integer getProcess() {
- return process;
- }
- public void setProcess(Integer process) {
- this.process = process;
- }
- public Integer getWrongCount() {
- return wrongCount;
- }
- public void setWrongCount(Integer wrongCount) {
- this.wrongCount = wrongCount;
- }
- public Date getPaymentDate() {
- return paymentDate;
- }
- public void setPaymentDate(Date paymentDate) {
- this.paymentDate = paymentDate;
- }
- public Integer getListed() {
- return listed;
- }
- public void setListed(Integer listed) {
- this.listed = listed;
- }
- public Date getListedDate() {
- return listedDate;
- }
- public void setListedDate(Date listedDate) {
- this.listedDate = listedDate;
- }
- public Integer getListedType() {
- return listedType;
- }
- public void setListedType(Integer listedType) {
- this.listedType = listedType;
- }
- public String getStockCode() {
- return stockCode;
- }
- public void setStockCode(String stockCode) {
- this.stockCode = stockCode;
- }
- public String getCertificateNumber() {
- return certificateNumber;
- }
- public void setCertificateNumber(String certificateNumber) {
- this.certificateNumber = certificateNumber;
- }
- public Date getIssuingDate() {
- return issuingDate;
- }
- public void setIssuingDate(Date issuingDate) {
- this.issuingDate = issuingDate;
- }
- public Integer getCogContacts() {
- return cogContacts;
- }
- public void setCogContacts(Integer cogContacts) {
- this.cogContacts = cogContacts;
- }
- public String getConsultant() {
- return consultant;
- }
- public void setConsultant(String consultant) {
- this.consultant = consultant;
- }
- public Integer getLevel() {
- return level;
- }
- public void setLevel(Integer level) {
- this.level = level;
- }
- public Integer getLocationProvince() {
- return locationProvince;
- }
- public Integer getLocationCity() {
- return locationCity;
- }
- public Integer getLocationArea() {
- return locationArea;
- }
- public Integer getIndustry() {
- return industry;
- }
- public void setIndustry(Integer industry) {
- this.industry = industry;
- }
- public String getEnterpriseScale() {
- return enterpriseScale;
- }
- public void setEnterpriseScale(String enterpriseScale) {
- this.enterpriseScale = enterpriseScale;
- }
- public Integer getHighTechZone() {
- return highTechZone;
- }
- public void setHighTechZone(Integer highTechZone) {
- this.highTechZone = highTechZone;
- }
- public Integer getAuthentication() {
- return authentication;
- }
- public void setAuthentication(Integer authentication) {
- this.authentication = authentication;
- }
- public String getBusinessScope() {
- return businessScope;
- }
- public void setBusinessScope(String businessScope) {
- this.businessScope = businessScope;
- }
- public String getField() {
- return field;
- }
- public void setField(String field) {
- this.field = field;
- }
- public String getEmail() {
- return email;
- }
- public void setEmail(String email) {
- this.email = email;
- }
- public String getCompanyLogoUrl() {
- return companyLogoUrl;
- }
- public void setCompanyLogoUrl(String companyLogoUrl) {
- this.companyLogoUrl = companyLogoUrl;
- }
- public String getSocietyTag() {
- return societyTag;
- }
- public void setSocietyTag(String societyTag) {
- this.societyTag = societyTag;
- }
- public String getIntroduction() {
- return introduction;
- }
- public void setIntroduction(String introduction) {
- this.introduction = introduction;
- }
- }
|