Commit 78278dd8 authored by 华润's avatar 华润

跨省单位开户公积金服务接口

parent 37ccd284
package net.cdkj.gjj.adapter.domain; package net.cdkj.gjj.adapter.domain;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.Objects; import java.util.Objects;
/** /**
* 单位开户信息对象 * 单位开户信息对象
*/ */
@JsonInclude(JsonInclude.Include.NON_NULL)
public class UnitAccountOpeningInformation { public class UnitAccountOpeningInformation {
private String busId; private String busId;
private String uscc;
private String entName;
private String dom;
private String estDate;
private String lerep;
private String cerType;
private String cerNo;
private String operatorName;
private String operatorCerNo;
private String operatorPhone;
private String oplocdistrict;
private String unitNature;
private String economicType;
private String industryphy;
private String unitPayDay;
private String unitDepPro;
private String personalDepPro;
public String getBusId() { public String getBusId() {
return busId; return busId;
} }
...@@ -16,4 +54,164 @@ public class UnitAccountOpeningInformation { ...@@ -16,4 +54,164 @@ public class UnitAccountOpeningInformation {
public void setBusId(String busId) { public void setBusId(String busId) {
this.busId = busId; this.busId = busId;
} }
public String getUscc() {
return uscc;
}
public void setUscc(String uscc) {
this.uscc = uscc;
}
public String getEntName() {
return entName;
}
public void setEntName(String entName) {
this.entName = entName;
}
public String getDom() {
return dom;
}
public void setDom(String dom) {
this.dom = dom;
}
public String getEstDate() {
return estDate;
}
public void setEstDate(String estDate) {
this.estDate = estDate;
}
public String getLerep() {
return lerep;
}
public void setLerep(String lerep) {
this.lerep = lerep;
}
public String getCerType() {
return cerType;
}
public void setCerType(String cerType) {
this.cerType = cerType;
}
public String getCerNo() {
return cerNo;
}
public void setCerNo(String cerNo) {
this.cerNo = cerNo;
}
public String getOperatorName() {
return operatorName;
}
public void setOperatorName(String operatorName) {
this.operatorName = operatorName;
}
public String getOperatorCerNo() {
return operatorCerNo;
}
public void setOperatorCerNo(String operatorCerNo) {
this.operatorCerNo = operatorCerNo;
}
public String getOperatorPhone() {
return operatorPhone;
}
public void setOperatorPhone(String operatorPhone) {
this.operatorPhone = operatorPhone;
}
public String getOplocdistrict() {
return oplocdistrict;
}
public void setOplocdistrict(String oplocdistrict) {
this.oplocdistrict = oplocdistrict;
}
public String getUnitNature() {
return unitNature;
}
public void setUnitNature(String unitNature) {
this.unitNature = unitNature;
}
public String getEconomicType() {
return economicType;
}
public void setEconomicType(String economicType) {
this.economicType = economicType;
}
public String getIndustryphy() {
return industryphy;
}
public void setIndustryphy(String industryphy) {
this.industryphy = industryphy;
}
public String getUnitPayDay() {
return unitPayDay;
}
public void setUnitPayDay(String unitPayDay) {
this.unitPayDay = unitPayDay;
}
public String getUnitDepPro() {
return unitDepPro;
}
public void setUnitDepPro(String unitDepPro) {
this.unitDepPro = unitDepPro;
}
public String getPersonalDepPro() {
return personalDepPro;
}
public void setPersonalDepPro(String personalDepPro) {
this.personalDepPro = personalDepPro;
}
@Override
public String toString() {
return "UnitAccountOpeningInformation{" +
"busId='" + busId + '\'' +
", uscc='" + uscc + '\'' +
", entName='" + entName + '\'' +
", dom='" + dom + '\'' +
", estDate='" + estDate + '\'' +
", lerep='" + lerep + '\'' +
", cerType='" + cerType + '\'' +
", cerNo='" + cerNo + '\'' +
", operatorName='" + operatorName + '\'' +
", operatorCerNo='" + operatorCerNo + '\'' +
", operatorPhone='" + operatorPhone + '\'' +
", oplocdistrict='" + oplocdistrict + '\'' +
", unitNature='" + unitNature + '\'' +
", economicType='" + economicType + '\'' +
", industryphy='" + industryphy + '\'' +
", unitPayDay='" + unitPayDay + '\'' +
", unitDepPro='" + unitDepPro + '\'' +
", personalDepPro='" + personalDepPro + '\'' +
'}';
}
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment