diff --git a/erm.frontend/package.json b/erm.frontend/package.json index 3160bf0d..1a4252d4 100644 --- a/erm.frontend/package.json +++ b/erm.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.2", "pinia": "2.2.2", "pinia-undo": "0.2.4", - "platform-core": "8.1.433", + "platform-core": "8.1.434", "quasar": "2.17.0", "svg-path-commander": "2.0.10", "tailwindcss": "3.4.10", diff --git a/gradle.properties b/gradle.properties index 191b5cef..ae0efa05 100644 --- a/gradle.properties +++ b/gradle.properties @@ -38,7 +38,7 @@ application_version=1.0.0 platform_group=io.sc platform_version=8.1.50 platform_plugin_version=8.1.50 -platform_core_frontend_version=8.1.433 +platform_core_frontend_version=8.1.434 ########################################################### # dependencies version diff --git a/io.sc.creditreport.core/build.gradle b/io.sc.creditreport.core/build.gradle new file mode 100644 index 00000000..684f8027 --- /dev/null +++ b/io.sc.creditreport.core/build.gradle @@ -0,0 +1,6 @@ +dependencies { + api( + "org.springframework:spring-core", + "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", + ) +} diff --git a/io.sc.creditreport.core/gradle.properties b/io.sc.creditreport.core/gradle.properties new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/CreditReportParser.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/CreditReportParser.java new file mode 100644 index 00000000..cbd24979 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/CreditReportParser.java @@ -0,0 +1,26 @@ +package io.sc.creditreport.core; + +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.DeserializationFeature; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.SerializationFeature; +import com.fasterxml.jackson.dataformat.xml.XmlMapper; + +public class CreditReportParser { + private static XmlMapper mapper =new XmlMapper(); + static { + mapper.configure(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES,false); + mapper.configure(SerializationFeature.WRAP_ROOT_VALUE,false); + mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); + mapper.enable(MapperFeature.USE_STD_BEAN_NAMING); + } + + public static io.sc.creditreport.core.model.person.Document parsePersonCreditReport(String xml) throws JsonProcessingException { + return mapper.readValue(xml, io.sc.creditreport.core.model.person.Document.class); + } + + public static io.sc.creditreport.core.model.company.Document parseCompanyCreditReport(String xml) throws JsonProcessingException { + return mapper.readValue(xml, io.sc.creditreport.core.model.company.Document.class); + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/company/Document.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/company/Document.java new file mode 100644 index 00000000..4797b4f8 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/company/Document.java @@ -0,0 +1,233 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +@JacksonXmlRootElement(localName ="Document") +public class Document { + //报告头 + @JacksonXmlProperty(localName = "EAA") + private EAA eaa; + + //信用提示信息 + @JacksonXmlProperty(localName = "EBA") + private EBA eba; + + //借贷交易汇总信息 + @JacksonXmlProperty(localName = "EBB") + private EBB ebb; + + //担保交易汇总信息 + @JacksonXmlProperty(localName = "EBC") + private EBC ebc; + + //授信协议汇总信息 + @JacksonXmlProperty(localName = "EBD") + private EBD ebd; + + //相关还款责任汇总信息 + @JacksonXmlProperty(localName = "EBE") + private EBE ebe; + + //基本信息 + @JacksonXmlProperty(localName = "ECA") + private ECA eca; + + //借贷账户信息 + @JacksonXmlProperty(localName = "EDA") + private EDA eda; + + //担保账户信息 + @JacksonXmlProperty(localName = "EDB") + private EDB edb; + + //授信协议信息 + @JacksonXmlProperty(localName = "EDC") + private EDC edc; + + //相关还款责任信息 + @JacksonXmlProperty(localName = "EDD") + private EDD edd; + + //公共事业缴费账户信息 + @JacksonXmlProperty(localName = "EEA") + private EEA eea; + + //欠税信息 + @JacksonXmlProperty(localName = "EFA") + private EFA efa; + + //法院信息 + @JacksonXmlProperty(localName = "EFB") + private EFB efb; + + //行政处罚信息 + @JacksonXmlProperty(localName = "EFC") + private EFC efc; + + //住房公积金参缴信息 + @JacksonXmlProperty(localName = "EFD") + private EFD efd; + + //获得认证/奖励相关信息 + @JacksonXmlProperty(localName = "EFE") + private EFE efe; + + //进出口检验相关信息 + @JacksonXmlProperty(localName = "EFF") + private EFF eff; + + //融资规模控制信息 + @JacksonXmlProperty(localName = "EFG") + private EFG efg; + + //财务信息 + @JacksonXmlProperty(localName = "EGA") + private EGA ega; + + //评级信息 + @JacksonXmlProperty(localName = "EHA") + private EHA eha; + + //声明及异议标注信息 + @JacksonXmlProperty(localName = "EIA") + private EIA eia; + + public EAA getEaa(){ + return this.eaa; + } + public void setEaa(EAA eaa){ + this.eaa =eaa; + } + public EBA getEba(){ + return this.eba; + } + public void setEba(EBA eba){ + this.eba =eba; + } + public EBB getEbb(){ + return this.ebb; + } + public void setEbb(EBB ebb){ + this.ebb =ebb; + } + public EBC getEbc(){ + return this.ebc; + } + public void setEbc(EBC ebc){ + this.ebc =ebc; + } + public EBD getEbd(){ + return this.ebd; + } + public void setEbd(EBD ebd){ + this.ebd =ebd; + } + public EBE getEbe(){ + return this.ebe; + } + public void setEbe(EBE ebe){ + this.ebe =ebe; + } + public ECA getEca(){ + return this.eca; + } + public void setEca(ECA eca){ + this.eca =eca; + } + public EDA getEda(){ + return this.eda; + } + public void setEda(EDA eda){ + this.eda =eda; + } + public EDB getEdb(){ + return this.edb; + } + public void setEdb(EDB edb){ + this.edb =edb; + } + public EDC getEdc(){ + return this.edc; + } + public void setEdc(EDC edc){ + this.edc =edc; + } + public EDD getEdd(){ + return this.edd; + } + public void setEdd(EDD edd){ + this.edd =edd; + } + public EEA getEea(){ + return this.eea; + } + public void setEea(EEA eea){ + this.eea =eea; + } + public EFA getEfa(){ + return this.efa; + } + public void setEfa(EFA efa){ + this.efa =efa; + } + public EFB getEfb(){ + return this.efb; + } + public void setEfb(EFB efb){ + this.efb =efb; + } + public EFC getEfc(){ + return this.efc; + } + public void setEfc(EFC efc){ + this.efc =efc; + } + public EFD getEfd(){ + return this.efd; + } + public void setEfd(EFD efd){ + this.efd =efd; + } + public EFE getEfe(){ + return this.efe; + } + public void setEfe(EFE efe){ + this.efe =efe; + } + public EFF getEff(){ + return this.eff; + } + public void setEff(EFF eff){ + this.eff =eff; + } + public EFG getEfg(){ + return this.efg; + } + public void setEfg(EFG efg){ + this.efg =efg; + } + public EGA getEga(){ + return this.ega; + } + public void setEga(EGA ega){ + this.ega =ega; + } + public EHA getEha(){ + return this.eha; + } + public void setEha(EHA eha){ + this.eha =eha; + } + public EIA getEia(){ + return this.eia; + } + public void setEia(EIA eia){ + this.eia =eia; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/company/EI01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/company/EI01.java new file mode 100644 index 00000000..cf3c2509 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/company/EI01.java @@ -0,0 +1,62 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EI01 { + //对象类型 + @JacksonXmlProperty(localName = "EI010D01") + private String ei010d01; + + //对象标识 + @JacksonXmlProperty(localName = "EI010I01") + private String ei010i01; + + //标注及声明类型 + @JacksonXmlProperty(localName = "EI010D02") + private String ei010d02; + + //标注或声明内容 + @JacksonXmlProperty(localName = "EI010Q01") + private String ei010q01; + + //添加日期 + @JacksonXmlProperty(localName = "EI010R01") + private Date ei010r01; + + public String getEi010d01(){ + return this.ei010d01; + } + public void setEi010d01(String ei010d01){ + this.ei010d01 =ei010d01; + } + public String getEi010i01(){ + return this.ei010i01; + } + public void setEi010i01(String ei010i01){ + this.ei010i01 =ei010i01; + } + public String getEi010d02(){ + return this.ei010d02; + } + public void setEi010d02(String ei010d02){ + this.ei010d02 =ei010d02; + } + public String getEi010q01(){ + return this.ei010q01; + } + public void setEi010q01(String ei010q01){ + this.ei010q01 =ei010q01; + } + public Date getEi010r01(){ + return this.ei010r01; + } + public void setEi010r01(Date ei010r01){ + this.ei010r01 =ei010r01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/company/EIA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/company/EIA.java new file mode 100644 index 00000000..0764e9db --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/company/EIA.java @@ -0,0 +1,23 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EIA { + //声明及异议标注信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EI01") + private List ei01 =new ArrayList<>(); + + public List getEi01(){ + return this.ei01; + } + public void setEi01(List ei01){ + this.ei01 =ei01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/PersonCreditReport.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/PersonCreditReport.java new file mode 100644 index 00000000..09d1b74e --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/PersonCreditReport.java @@ -0,0 +1,273 @@ + +package io.sc.creditreport.core.model; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; +import io.sc.creditreport.core.model.person2.*; + +@JacksonXmlRootElement(localName = "Document") +public class PersonCreditReport { + @JacksonXmlProperty(localName = "PRH") + private PRHType prh; + + @JacksonXmlProperty(localName = "PIM") + private PIMType pim; + + @JacksonXmlProperty(localName = "PMM") + private PMMType pmm; + + @JacksonXmlProperty(localName = "PRM") + private PRMType prm; + + @JacksonXmlProperty(localName = "POM") + private POMType pom; + + @JacksonXmlProperty(localName = "PSM") + private PSMType psm; + + @JacksonXmlProperty(localName = "PCO") + private PCOType pco; + + @JacksonXmlProperty(localName = "PNO") + private PNOType pno; + + @JacksonXmlProperty(localName = "PPO") + private PPOType ppo; + + @JacksonXmlProperty(localName = "PQO") + private PQOType pqo; + + @JacksonXmlProperty(localName = "PCA") + private PCAType pca; + + @JacksonXmlProperty(localName = "PDA") + private PDAType pda; + + @JacksonXmlProperty(localName = "PCR") + private PCRType pcr; + + @JacksonXmlProperty(localName = "PND") + private PNDType pnd; + + @JacksonXmlProperty(localName = "POT") + private POTType pot; + + @JacksonXmlProperty(localName = "PCJ") + private PCJType pcj; + + @JacksonXmlProperty(localName = "PCE") + private PCEType pce; + + @JacksonXmlProperty(localName = "PAP") + private PAPType pap; + + @JacksonXmlProperty(localName = "PHF") + private PHFType phf; + + @JacksonXmlProperty(localName = "PBS") + private PBSType pbs; + + @JacksonXmlProperty(localName = "PPQ") + private PPQType ppq; + + @JacksonXmlProperty(localName = "PAH") + private PAHType pah; + + @JacksonXmlProperty(localName = "POS") + private POSType pos; + + @JacksonXmlProperty(localName = "POQ") + private POQType poq; + + public PRHType getPrh() { + return prh; + } + + public void setPrh(PRHType prh) { + this.prh = prh; + } + + public PIMType getPim() { + return pim; + } + + public void setPim(PIMType pim) { + this.pim = pim; + } + + public PMMType getPmm() { + return pmm; + } + + public void setPmm(PMMType pmm) { + this.pmm = pmm; + } + + public PRMType getPrm() { + return prm; + } + + public void setPrm(PRMType prm) { + this.prm = prm; + } + + public POMType getPom() { + return pom; + } + + public void setPom(POMType pom) { + this.pom = pom; + } + + public PSMType getPsm() { + return psm; + } + + public void setPsm(PSMType psm) { + this.psm = psm; + } + + public PCOType getPco() { + return pco; + } + + public void setPco(PCOType pco) { + this.pco = pco; + } + + public PNOType getPno() { + return pno; + } + + public void setPno(PNOType pno) { + this.pno = pno; + } + + public PPOType getPpo() { + return ppo; + } + + public void setPpo(PPOType ppo) { + this.ppo = ppo; + } + + public PQOType getPqo() { + return pqo; + } + + public void setPqo(PQOType pqo) { + this.pqo = pqo; + } + + public PCAType getPca() { + return pca; + } + + public void setPca(PCAType pca) { + this.pca = pca; + } + + public PDAType getPda() { + return pda; + } + + public void setPda(PDAType pda) { + this.pda = pda; + } + + public PCRType getPcr() { + return pcr; + } + + public void setPcr(PCRType pcr) { + this.pcr = pcr; + } + + public PNDType getPnd() { + return pnd; + } + + public void setPnd(PNDType pnd) { + this.pnd = pnd; + } + + public POTType getPot() { + return pot; + } + + public void setPot(POTType pot) { + this.pot = pot; + } + + public PCJType getPcj() { + return pcj; + } + + public void setPcj(PCJType pcj) { + this.pcj = pcj; + } + + public PCEType getPce() { + return pce; + } + + public void setPce(PCEType pce) { + this.pce = pce; + } + + public PAPType getPap() { + return pap; + } + + public void setPap(PAPType pap) { + this.pap = pap; + } + + public PHFType getPhf() { + return phf; + } + + public void setPhf(PHFType phf) { + this.phf = phf; + } + + public PBSType getPbs() { + return pbs; + } + + public void setPbs(PBSType pbs) { + this.pbs = pbs; + } + + public PPQType getPpq() { + return ppq; + } + + public void setPpq(PPQType ppq) { + this.ppq = ppq; + } + + public PAHType getPah() { + return pah; + } + + public void setPah(PAHType pah) { + this.pah = pah; + } + + public POSType getPos() { + return pos; + } + + public void setPos(POSType pos) { + this.pos = pos; + } + + public POQType getPoq() { + return poq; + } + + public void setPoq(POQType poq) { + this.poq = poq; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/Document.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/Document.java new file mode 100644 index 00000000..4797b4f8 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/Document.java @@ -0,0 +1,233 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +@JacksonXmlRootElement(localName ="Document") +public class Document { + //报告头 + @JacksonXmlProperty(localName = "EAA") + private EAA eaa; + + //信用提示信息 + @JacksonXmlProperty(localName = "EBA") + private EBA eba; + + //借贷交易汇总信息 + @JacksonXmlProperty(localName = "EBB") + private EBB ebb; + + //担保交易汇总信息 + @JacksonXmlProperty(localName = "EBC") + private EBC ebc; + + //授信协议汇总信息 + @JacksonXmlProperty(localName = "EBD") + private EBD ebd; + + //相关还款责任汇总信息 + @JacksonXmlProperty(localName = "EBE") + private EBE ebe; + + //基本信息 + @JacksonXmlProperty(localName = "ECA") + private ECA eca; + + //借贷账户信息 + @JacksonXmlProperty(localName = "EDA") + private EDA eda; + + //担保账户信息 + @JacksonXmlProperty(localName = "EDB") + private EDB edb; + + //授信协议信息 + @JacksonXmlProperty(localName = "EDC") + private EDC edc; + + //相关还款责任信息 + @JacksonXmlProperty(localName = "EDD") + private EDD edd; + + //公共事业缴费账户信息 + @JacksonXmlProperty(localName = "EEA") + private EEA eea; + + //欠税信息 + @JacksonXmlProperty(localName = "EFA") + private EFA efa; + + //法院信息 + @JacksonXmlProperty(localName = "EFB") + private EFB efb; + + //行政处罚信息 + @JacksonXmlProperty(localName = "EFC") + private EFC efc; + + //住房公积金参缴信息 + @JacksonXmlProperty(localName = "EFD") + private EFD efd; + + //获得认证/奖励相关信息 + @JacksonXmlProperty(localName = "EFE") + private EFE efe; + + //进出口检验相关信息 + @JacksonXmlProperty(localName = "EFF") + private EFF eff; + + //融资规模控制信息 + @JacksonXmlProperty(localName = "EFG") + private EFG efg; + + //财务信息 + @JacksonXmlProperty(localName = "EGA") + private EGA ega; + + //评级信息 + @JacksonXmlProperty(localName = "EHA") + private EHA eha; + + //声明及异议标注信息 + @JacksonXmlProperty(localName = "EIA") + private EIA eia; + + public EAA getEaa(){ + return this.eaa; + } + public void setEaa(EAA eaa){ + this.eaa =eaa; + } + public EBA getEba(){ + return this.eba; + } + public void setEba(EBA eba){ + this.eba =eba; + } + public EBB getEbb(){ + return this.ebb; + } + public void setEbb(EBB ebb){ + this.ebb =ebb; + } + public EBC getEbc(){ + return this.ebc; + } + public void setEbc(EBC ebc){ + this.ebc =ebc; + } + public EBD getEbd(){ + return this.ebd; + } + public void setEbd(EBD ebd){ + this.ebd =ebd; + } + public EBE getEbe(){ + return this.ebe; + } + public void setEbe(EBE ebe){ + this.ebe =ebe; + } + public ECA getEca(){ + return this.eca; + } + public void setEca(ECA eca){ + this.eca =eca; + } + public EDA getEda(){ + return this.eda; + } + public void setEda(EDA eda){ + this.eda =eda; + } + public EDB getEdb(){ + return this.edb; + } + public void setEdb(EDB edb){ + this.edb =edb; + } + public EDC getEdc(){ + return this.edc; + } + public void setEdc(EDC edc){ + this.edc =edc; + } + public EDD getEdd(){ + return this.edd; + } + public void setEdd(EDD edd){ + this.edd =edd; + } + public EEA getEea(){ + return this.eea; + } + public void setEea(EEA eea){ + this.eea =eea; + } + public EFA getEfa(){ + return this.efa; + } + public void setEfa(EFA efa){ + this.efa =efa; + } + public EFB getEfb(){ + return this.efb; + } + public void setEfb(EFB efb){ + this.efb =efb; + } + public EFC getEfc(){ + return this.efc; + } + public void setEfc(EFC efc){ + this.efc =efc; + } + public EFD getEfd(){ + return this.efd; + } + public void setEfd(EFD efd){ + this.efd =efd; + } + public EFE getEfe(){ + return this.efe; + } + public void setEfe(EFE efe){ + this.efe =efe; + } + public EFF getEff(){ + return this.eff; + } + public void setEff(EFF eff){ + this.eff =eff; + } + public EFG getEfg(){ + return this.efg; + } + public void setEfg(EFG efg){ + this.efg =efg; + } + public EGA getEga(){ + return this.ega; + } + public void setEga(EGA ega){ + this.ega =ega; + } + public EHA getEha(){ + return this.eha; + } + public void setEha(EHA eha){ + this.eha =eha; + } + public EIA getEia(){ + return this.eia; + } + public void setEia(EIA eia){ + this.eia =eia; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01.java new file mode 100644 index 00000000..ba992095 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01.java @@ -0,0 +1,62 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EA01 { + //报告标识信息段 + @JacksonXmlProperty(localName = "EA01A") + private EA01A ea01a; + + //查询请求信息段 + @JacksonXmlProperty(localName = "EA01B") + private EA01B ea01b; + + //身份标识信息段 + @JacksonXmlProperty(localName = "EA01C") + private EA01C ea01c; + + //异议提示信息段 + @JacksonXmlProperty(localName = "EA01D") + private EA01D ea01d; + + //汇率说明信息段 + @JacksonXmlProperty(localName = "EA01E") + private EA01E ea01e; + + public EA01A getEa01a(){ + return this.ea01a; + } + public void setEa01a(EA01A ea01a){ + this.ea01a =ea01a; + } + public EA01B getEa01b(){ + return this.ea01b; + } + public void setEa01b(EA01B ea01b){ + this.ea01b =ea01b; + } + public EA01C getEa01c(){ + return this.ea01c; + } + public void setEa01c(EA01C ea01c){ + this.ea01c =ea01c; + } + public EA01D getEa01d(){ + return this.ea01d; + } + public void setEa01d(EA01D ea01d){ + this.ea01d =ea01d; + } + public EA01E getEa01e(){ + return this.ea01e; + } + public void setEa01e(EA01E ea01e){ + this.ea01e =ea01e; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01A.java new file mode 100644 index 00000000..7132d85c --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01A.java @@ -0,0 +1,32 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EA01A { + //报告编号 + @JacksonXmlProperty(localName = "EA01AI01") + private String ea01ai01; + + //报告生成时间 + @JacksonXmlProperty(localName = "EA01AR01") + private Date ea01ar01; + + public String getEa01ai01(){ + return this.ea01ai01; + } + public void setEa01ai01(String ea01ai01){ + this.ea01ai01 =ea01ai01; + } + public Date getEa01ar01(){ + return this.ea01ar01; + } + public void setEa01ar01(Date ea01ar01){ + this.ea01ar01 =ea01ar01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01C.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01C.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01CH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01CH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01D.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01D.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01E.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EA01E.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EAA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EAA.java new file mode 100644 index 00000000..9cfa3e47 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EAA.java @@ -0,0 +1,22 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EAA { + //报告头信息单元 + @JacksonXmlProperty(localName = "EA01") + private EA01 ea01; + + public EA01 getEa01(){ + return this.ea01; + } + public void setEa01(EA01 ea01){ + this.ea01 =ea01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB01A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB01A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB01B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB01B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02AH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02AH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02BH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02BH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02C.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02C.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02CH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB02CH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB03.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB03.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB03A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB03A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB03AH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB03AH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB03B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB03B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB03BH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB03BH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB04.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB04.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB05.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB05.java new file mode 100644 index 00000000..540ec969 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB05.java @@ -0,0 +1,32 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EB05 { + //借贷交易相关还款责任汇总信息段 + @JacksonXmlProperty(localName = "EB05A") + private EB05A eb05a; + + //担保交易相关还款责任汇总信息段 + @JacksonXmlProperty(localName = "EB05B") + private EB05B eb05b; + + public EB05A getEb05a(){ + return this.eb05a; + } + public void setEb05a(EB05A eb05a){ + this.eb05a =eb05a; + } + public EB05B getEb05b(){ + return this.eb05b; + } + public void setEb05b(EB05B eb05b){ + this.eb05b =eb05b; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB05A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB05A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB05AH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB05AH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB05B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB05B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB05BH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EB05BH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EBA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EBA.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EBB.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EBB.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EBC.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EBC.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EBD.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EBD.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EBE.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EBE.java new file mode 100644 index 00000000..f9e4be4a --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EBE.java @@ -0,0 +1,22 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EBE { + //相关还款责任汇总信息单元 + @JacksonXmlProperty(localName = "EB05") + private EB05 eb05; + + public EB05 getEb05(){ + return this.eb05; + } + public void setEb05(EB05 eb05){ + this.eb05 =eb05; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC02.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC02.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC020H.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC020H.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC03.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC03.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC030H.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC030H.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC04.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC04.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC05.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC05.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC050H.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EC050H.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ECA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ECA.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01BH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01BH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01C.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01C.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01CH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED01CH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED02.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED02.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED03.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED03.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED04.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED04.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED04A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED04A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED04B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED04B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED05.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED05.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED06.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED06.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED07.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED07.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED08.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED08.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED09.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/ED09.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EDA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EDA.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EDB.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EDB.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EDC.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EDC.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EDD.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EDD.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EE01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EE01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EE01A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EE01A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EE01B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EE01B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EE01BH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EE01BH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EEA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EEA.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF02.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF02.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF03.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF03.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF04.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF04.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF05.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF05.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF05A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF05A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF05B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF05B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF05BH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF05BH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF06.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF06.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF07.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF07.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF08.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF08.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF09.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF09.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF10.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF10.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF11.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF11.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF12.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF12.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF13.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF13.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF14.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EF14.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFA.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFB.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFB.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFC.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFC.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFD.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFD.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFE.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFE.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFF.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFF.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFG.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EFG.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG01A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG01A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG01B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG01B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG02.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG02.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG02A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG02A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG02B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG02B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG03.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG03.java new file mode 100644 index 00000000..78ceec3f --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG03.java @@ -0,0 +1,32 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EG03 { + //基础段 + @JacksonXmlProperty(localName = "EG03A") + private EG03A eg03a; + + //企业利润及利润分配表(2002版)段 + @JacksonXmlProperty(localName = "EG03B") + private EG03B eg03b; + + public EG03A getEg03a(){ + return this.eg03a; + } + public void setEg03a(EG03A eg03a){ + this.eg03a =eg03a; + } + public EG03B getEg03b(){ + return this.eg03b; + } + public void setEg03b(EG03B eg03b){ + this.eg03b =eg03b; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG03A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG03A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG03B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG03B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG04.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG04.java new file mode 100644 index 00000000..18ed3f6a --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG04.java @@ -0,0 +1,32 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EG04 { + //基础段 + @JacksonXmlProperty(localName = "EG04A") + private EG04A eg04a; + + //企业利润及利润分配表(2007版)段 + @JacksonXmlProperty(localName = "EG04B") + private EG04B eg04b; + + public EG04A getEg04a(){ + return this.eg04a; + } + public void setEg04a(EG04A eg04a){ + this.eg04a =eg04a; + } + public EG04B getEg04b(){ + return this.eg04b; + } + public void setEg04b(EG04B eg04b){ + this.eg04b =eg04b; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG04A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG04A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG04B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG04B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG05.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG05.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG05A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG05A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG05B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG05B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG06.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG06.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG06A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG06A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG06B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG06B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG07.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG07.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG07A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG07A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG07B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG07B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG08.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG08.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG08A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG08A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG08B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG08B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG09.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG09.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG09A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG09A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG09B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG09B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG10.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG10.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG10A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG10A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG10B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EG10B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EGA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EGA.java new file mode 100644 index 00000000..403dc8f1 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EGA.java @@ -0,0 +1,122 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EGA { + //企业资产负债表(2002版)信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EG01") + private List eg01 =new ArrayList<>(); + + //企业资产负债表(2007版)信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EG02") + private List eg02 =new ArrayList<>(); + + //企业利润表及利润分配表(2002版)信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EG03") + private List eg03 =new ArrayList<>(); + + //企业利润表及利润分配表(2007版)信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EG04") + private List eg04 =new ArrayList<>(); + + //企业现金流量表(2002版)信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EG05") + private List eg05 =new ArrayList<>(); + + //企业现金流量表(2007版)信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EG06") + private List eg06 =new ArrayList<>(); + + //事业单位资产负债表(1997版)信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EG07") + private List eg07 =new ArrayList<>(); + + //事业单位资产负债表(2013版)信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EG08") + private List eg08 =new ArrayList<>(); + + //事业单位收入支出表(1997版)信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EG09") + private List eg09 =new ArrayList<>(); + + //事业单位收入支出表(2013版)信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EG10") + private List eg10 =new ArrayList<>(); + + public List getEg01(){ + return this.eg01; + } + public void setEg01(List eg01){ + this.eg01 =eg01; + } + public List getEg02(){ + return this.eg02; + } + public void setEg02(List eg02){ + this.eg02 =eg02; + } + public List getEg03(){ + return this.eg03; + } + public void setEg03(List eg03){ + this.eg03 =eg03; + } + public List getEg04(){ + return this.eg04; + } + public void setEg04(List eg04){ + this.eg04 =eg04; + } + public List getEg05(){ + return this.eg05; + } + public void setEg05(List eg05){ + this.eg05 =eg05; + } + public List getEg06(){ + return this.eg06; + } + public void setEg06(List eg06){ + this.eg06 =eg06; + } + public List getEg07(){ + return this.eg07; + } + public void setEg07(List eg07){ + this.eg07 =eg07; + } + public List getEg08(){ + return this.eg08; + } + public void setEg08(List eg08){ + this.eg08 =eg08; + } + public List getEg09(){ + return this.eg09; + } + public void setEg09(List eg09){ + this.eg09 =eg09; + } + public List getEg10(){ + return this.eg10; + } + public void setEg10(List eg10){ + this.eg10 =eg10; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EH01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EH01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EHA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EHA.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EI01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EI01.java new file mode 100644 index 00000000..cf3c2509 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EI01.java @@ -0,0 +1,62 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EI01 { + //对象类型 + @JacksonXmlProperty(localName = "EI010D01") + private String ei010d01; + + //对象标识 + @JacksonXmlProperty(localName = "EI010I01") + private String ei010i01; + + //标注及声明类型 + @JacksonXmlProperty(localName = "EI010D02") + private String ei010d02; + + //标注或声明内容 + @JacksonXmlProperty(localName = "EI010Q01") + private String ei010q01; + + //添加日期 + @JacksonXmlProperty(localName = "EI010R01") + private Date ei010r01; + + public String getEi010d01(){ + return this.ei010d01; + } + public void setEi010d01(String ei010d01){ + this.ei010d01 =ei010d01; + } + public String getEi010i01(){ + return this.ei010i01; + } + public void setEi010i01(String ei010i01){ + this.ei010i01 =ei010i01; + } + public String getEi010d02(){ + return this.ei010d02; + } + public void setEi010d02(String ei010d02){ + this.ei010d02 =ei010d02; + } + public String getEi010q01(){ + return this.ei010q01; + } + public void setEi010q01(String ei010q01){ + this.ei010q01 =ei010q01; + } + public Date getEi010r01(){ + return this.ei010r01; + } + public void setEi010r01(Date ei010r01){ + this.ei010r01 =ei010r01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EIA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EIA.java new file mode 100644 index 00000000..0764e9db --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/company/EIA.java @@ -0,0 +1,23 @@ +package io.sc.creditreport.core.model.company; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class EIA { + //声明及异议标注信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "EI01") + private List ei01 =new ArrayList<>(); + + public List getEi01(){ + return this.ei01; + } + public void setEi01(List ei01){ + this.ei01 =ei01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/Document.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/Document.java new file mode 100644 index 00000000..64453975 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/Document.java @@ -0,0 +1,253 @@ +package io.sc.creditreport.core.model.person; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +@JacksonXmlRootElement(localName ="Document") +public class Document { + //报告头 + @JacksonXmlProperty(localName = "PRH") + private PRH prh; + + //身份信息 + @JacksonXmlProperty(localName = "PIM") + private PIM pim; + + //婚姻信息 + @JacksonXmlProperty(localName = "PMM") + private PMM pmm; + + //居住信息 + @JacksonXmlProperty(localName = "PRM") + private PRM prm; + + //职业信息 + @JacksonXmlProperty(localName = "POM") + private POM pom; + + //评分信息 + @JacksonXmlProperty(localName = "PSM") + private PSM psm; + + //信贷交易信息概要 + @JacksonXmlProperty(localName = "PCO") + private PCO pco; + + //非信贷交易信息概要 + @JacksonXmlProperty(localName = "PNO") + private PNO pno; + + //公共信息概要 + @JacksonXmlProperty(localName = "PPO") + private PPO ppo; + + //查询记录概要 + @JacksonXmlProperty(localName = "PQO") + private PQO pqo; + + //授信协议信息 + @JacksonXmlProperty(localName = "PCA") + private PCA pca; + + //借贷账户信息 + @JacksonXmlProperty(localName = "PDA") + private PDA pda; + + //相关还款责任信息 + @JacksonXmlProperty(localName = "PCR") + private PCR pcr; + + //后付费业务信息 + @JacksonXmlProperty(localName = "PND") + private PND pnd; + + //欠税记录 + @JacksonXmlProperty(localName = "POT") + private POT pot; + + //民事判决记录 + @JacksonXmlProperty(localName = "PCJ") + private PCJ pcj; + + //强制执行记录 + @JacksonXmlProperty(localName = "PCE") + private PCE pce; + + //行政处罚记录 + @JacksonXmlProperty(localName = "PAP") + private PAP pap; + + //住房公积金参缴记录 + @JacksonXmlProperty(localName = "PHF") + private PHF phf; + + //低保救助记录 + @JacksonXmlProperty(localName = "PBS") + private PBS pbs; + + //执业资格记录 + @JacksonXmlProperty(localName = "PPQ") + private PPQ ppq; + + //行政奖励记录 + @JacksonXmlProperty(localName = "PAH") + private PAH pah; + + //其他标注及声明信息 + @JacksonXmlProperty(localName = "POS") + private POS pos; + + //查询记录 + @JacksonXmlProperty(localName = "POQ") + private POQ poq; + + public PRH getPrh(){ + return this.prh; + } + public void setPrh(PRH prh){ + this.prh =prh; + } + public PIM getPim(){ + return this.pim; + } + public void setPim(PIM pim){ + this.pim =pim; + } + public PMM getPmm(){ + return this.pmm; + } + public void setPmm(PMM pmm){ + this.pmm =pmm; + } + public PRM getPrm(){ + return this.prm; + } + public void setPrm(PRM prm){ + this.prm =prm; + } + public POM getPom(){ + return this.pom; + } + public void setPom(POM pom){ + this.pom =pom; + } + public PSM getPsm(){ + return this.psm; + } + public void setPsm(PSM psm){ + this.psm =psm; + } + public PCO getPco(){ + return this.pco; + } + public void setPco(PCO pco){ + this.pco =pco; + } + public PNO getPno(){ + return this.pno; + } + public void setPno(PNO pno){ + this.pno =pno; + } + public PPO getPpo(){ + return this.ppo; + } + public void setPpo(PPO ppo){ + this.ppo =ppo; + } + public PQO getPqo(){ + return this.pqo; + } + public void setPqo(PQO pqo){ + this.pqo =pqo; + } + public PCA getPca(){ + return this.pca; + } + public void setPca(PCA pca){ + this.pca =pca; + } + public PDA getPda(){ + return this.pda; + } + public void setPda(PDA pda){ + this.pda =pda; + } + public PCR getPcr(){ + return this.pcr; + } + public void setPcr(PCR pcr){ + this.pcr =pcr; + } + public PND getPnd(){ + return this.pnd; + } + public void setPnd(PND pnd){ + this.pnd =pnd; + } + public POT getPot(){ + return this.pot; + } + public void setPot(POT pot){ + this.pot =pot; + } + public PCJ getPcj(){ + return this.pcj; + } + public void setPcj(PCJ pcj){ + this.pcj =pcj; + } + public PCE getPce(){ + return this.pce; + } + public void setPce(PCE pce){ + this.pce =pce; + } + public PAP getPap(){ + return this.pap; + } + public void setPap(PAP pap){ + this.pap =pap; + } + public PHF getPhf(){ + return this.phf; + } + public void setPhf(PHF phf){ + this.phf =phf; + } + public PBS getPbs(){ + return this.pbs; + } + public void setPbs(PBS pbs){ + this.pbs =pbs; + } + public PPQ getPpq(){ + return this.ppq; + } + public void setPpq(PPQ ppq){ + this.ppq =ppq; + } + public PAH getPah(){ + return this.pah; + } + public void setPah(PAH pah){ + this.pah =pah; + } + public POS getPos(){ + return this.pos; + } + public void setPos(POS pos){ + this.pos =pos; + } + public POQ getPoq(){ + return this.poq; + } + public void setPoq(POQ poq){ + this.poq =poq; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01C.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01C.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01CH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01CH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01D.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01D.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01E.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PA01E.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PAH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PAH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PAP.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PAP.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB01A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB01A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB01B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB01B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB01BH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB01BH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB02.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB02.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB03.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB03.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB04.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PB04.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PBS.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PBS.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02AH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02AH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02BH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02BH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02C.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02C.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02D.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02D.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02DH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02DH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02E.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02E.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02F.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02F.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02G.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02G.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02H.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02H.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02I.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02I.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02K.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02K.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02KH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC02KH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC03.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC03.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC030H.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC030H.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC04.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC04.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC040H.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC040H.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC05.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC05.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC05A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC05A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC05B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PC05B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PCA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PCA.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PCE.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PCE.java new file mode 100644 index 00000000..74dd7bce --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PCE.java @@ -0,0 +1,23 @@ +package io.sc.creditreport.core.model.person; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class PCE { + //强制执行记录信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF03") + private List pf03 =new ArrayList<>(); + + public List getPf03(){ + return this.pf03; + } + public void setPf03(List pf03){ + this.pf03 =pf03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PCJ.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PCJ.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PCO.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PCO.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PCR.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PCR.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01B.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01B.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01C.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01C.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01D.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01D.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01DH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01DH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01E.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01E.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01EH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01EH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01F.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01F.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01FH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01FH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01G.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01G.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01GH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01GH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01H.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01H.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01HH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01HH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD01ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD02.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD02.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD02A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD02A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD02Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD02Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD02ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD02ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD03.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD03.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD03A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD03A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD03Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD03Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD03ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PD03ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PDA.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PDA.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PE01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PE01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PE01A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PE01A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PE01Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PE01Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PE01ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PE01ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF01A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF01A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF01Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF01Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF01ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF01ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF02.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF02.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF02A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF02A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF02Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF02Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF02ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF02ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF03.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF03.java new file mode 100644 index 00000000..7d514d1d --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF03.java @@ -0,0 +1,32 @@ +package io.sc.creditreport.core.model.person; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class PF03 { + //强制执行记录信息段 + @JacksonXmlProperty(localName = "PF03A") + private PF03A pf03a; + + //标注及声明信息段 + @JacksonXmlProperty(localName = "PF03Z") + private PF03Z pf03z; + + public PF03A getPf03a(){ + return this.pf03a; + } + public void setPf03a(PF03A pf03a){ + this.pf03a =pf03a; + } + public PF03Z getPf03z(){ + return this.pf03z; + } + public void setPf03z(PF03Z pf03z){ + this.pf03z =pf03z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF03A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF03A.java new file mode 100644 index 00000000..4ba5fc2c --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF03A.java @@ -0,0 +1,112 @@ +package io.sc.creditreport.core.model.person; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class PF03A { + //执行法院 + @JacksonXmlProperty(localName = "PF03AQ01") + private String pf03aq01; + + //执行案由 + @JacksonXmlProperty(localName = "PF03AQ02") + private String pf03aq02; + + //立案日期 + @JacksonXmlProperty(localName = "PF03AR01") + private Date pf03ar01; + + //结案方式 + @JacksonXmlProperty(localName = "PF03AD01") + private String pf03ad01; + + //案件状态 + @JacksonXmlProperty(localName = "PF03AQ03") + private String pf03aq03; + + //结案日期 + @JacksonXmlProperty(localName = "PF03AR02") + private Date pf03ar02; + + //申请执行标的 + @JacksonXmlProperty(localName = "PF03AQ04") + private String pf03aq04; + + //申请执行标的金额 + @JacksonXmlProperty(localName = "PF03AJ01") + private String pf03aj01; + + //已执行标的 + @JacksonXmlProperty(localName = "PF03AQ05") + private String pf03aq05; + + //已执行标的金额 + @JacksonXmlProperty(localName = "PF03AJ02") + private String pf03aj02; + + public String getPf03aq01(){ + return this.pf03aq01; + } + public void setPf03aq01(String pf03aq01){ + this.pf03aq01 =pf03aq01; + } + public String getPf03aq02(){ + return this.pf03aq02; + } + public void setPf03aq02(String pf03aq02){ + this.pf03aq02 =pf03aq02; + } + public Date getPf03ar01(){ + return this.pf03ar01; + } + public void setPf03ar01(Date pf03ar01){ + this.pf03ar01 =pf03ar01; + } + public String getPf03ad01(){ + return this.pf03ad01; + } + public void setPf03ad01(String pf03ad01){ + this.pf03ad01 =pf03ad01; + } + public String getPf03aq03(){ + return this.pf03aq03; + } + public void setPf03aq03(String pf03aq03){ + this.pf03aq03 =pf03aq03; + } + public Date getPf03ar02(){ + return this.pf03ar02; + } + public void setPf03ar02(Date pf03ar02){ + this.pf03ar02 =pf03ar02; + } + public String getPf03aq04(){ + return this.pf03aq04; + } + public void setPf03aq04(String pf03aq04){ + this.pf03aq04 =pf03aq04; + } + public String getPf03aj01(){ + return this.pf03aj01; + } + public void setPf03aj01(String pf03aj01){ + this.pf03aj01 =pf03aj01; + } + public String getPf03aq05(){ + return this.pf03aq05; + } + public void setPf03aq05(String pf03aq05){ + this.pf03aq05 =pf03aq05; + } + public String getPf03aj02(){ + return this.pf03aj02; + } + public void setPf03aj02(String pf03aj02){ + this.pf03aj02 =pf03aj02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF03Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF03Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF03ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF03ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF04.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF04.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF04A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF04A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF04Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF04Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF04ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF04ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF05.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF05.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF05A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF05A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF05Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF05Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF05ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF05ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF06.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF06.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF06A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF06A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF06Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF06Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF06ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF06ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF07.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF07.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF07A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF07A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF07Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF07Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF07ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF07ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF08.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF08.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF08A.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF08A.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF08Z.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF08Z.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF08ZH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PF08ZH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PG01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PG01.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PG010H.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PG010H.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PH01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PH01.java new file mode 100644 index 00000000..aee58ded --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PH01.java @@ -0,0 +1,52 @@ +package io.sc.creditreport.core.model.person; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class PH01 { + //查询日期 + @JacksonXmlProperty(localName = "PH010R01") + private Date ph010r01; + + //查询机构类型 + @JacksonXmlProperty(localName = "PH010D01") + private String ph010d01; + + //查询机构 + @JacksonXmlProperty(localName = "PH010Q02") + private String ph010q02; + + //查询原因 + @JacksonXmlProperty(localName = "PH010Q03") + private String ph010q03; + + public Date getPh010r01(){ + return this.ph010r01; + } + public void setPh010r01(Date ph010r01){ + this.ph010r01 =ph010r01; + } + public String getPh010d01(){ + return this.ph010d01; + } + public void setPh010d01(String ph010d01){ + this.ph010d01 =ph010d01; + } + public String getPh010q02(){ + return this.ph010q02; + } + public void setPh010q02(String ph010q02){ + this.ph010q02 =ph010q02; + } + public String getPh010q03(){ + return this.ph010q03; + } + public void setPh010q03(String ph010q03){ + this.ph010q03 =ph010q03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PHF.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PHF.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PIM.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PIM.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PMM.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PMM.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PND.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PND.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PNO.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PNO.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/POM.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/POM.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/POQ.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/POQ.java new file mode 100644 index 00000000..f8d5f2ba --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/POQ.java @@ -0,0 +1,23 @@ +package io.sc.creditreport.core.model.person; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class POQ { + //查询记录信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PH01") + private List ph01 =new ArrayList<>(); + + public List getPh01(){ + return this.ph01; + } + public void setPh01(List ph01){ + this.ph01 =ph01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/POS.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/POS.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/POT.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/POT.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PPO.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PPO.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PPQ.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PPQ.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PQO.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PQO.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PRH.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PRH.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PRM.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PRM.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PSM.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person/PSM.java new file mode 100644 index 00000000..e69de29b diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01AType.java new file mode 100644 index 00000000..a4b022d0 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01AType.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PA01AType { + @JacksonXmlProperty(localName = "PA01AI01") + private String pa01AI01; + @JacksonXmlProperty(localName = "PA01AR01") + private String pa01AR01; + + public String getPa01AI01() { + return pa01AI01; + } + + public void setPa01AI01(String pa01AI01) { + this.pa01AI01 = pa01AI01; + } + + public String getPa01AR01() { + return pa01AR01; + } + + public void setPa01AR01(String pa01AR01) { + this.pa01AR01 = pa01AR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01BType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01BType.java new file mode 100644 index 00000000..162f29e6 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01BType.java @@ -0,0 +1,57 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PA01BType { + @JacksonXmlProperty(localName = "PA01BQ01") + private String pa01BQ01; + @JacksonXmlProperty(localName = "PA01BD01") + private String pa01BD01; + @JacksonXmlProperty(localName = "PA01BI01") + private String pa01BI01; + @JacksonXmlProperty(localName = "PA01BI02") + private String pa01BI02; + @JacksonXmlProperty(localName = "PA01BD02") + private String pa01BD02; + + public String getPa01BQ01() { + return pa01BQ01; + } + + public void setPa01BQ01(String pa01BQ01) { + this.pa01BQ01 = pa01BQ01; + } + + public String getPa01BD01() { + return pa01BD01; + } + + public void setPa01BD01(String pa01BD01) { + this.pa01BD01 = pa01BD01; + } + + public String getPa01BI01() { + return pa01BI01; + } + + public void setPa01BI01(String pa01BI01) { + this.pa01BI01 = pa01BI01; + } + + public String getPa01BI02() { + return pa01BI02; + } + + public void setPa01BI02(String pa01BI02) { + this.pa01BI02 = pa01BI02; + } + + public String getPa01BD02() { + return pa01BD02; + } + + public void setPa01BD02(String pa01BD02) { + this.pa01BD02 = pa01BD02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01CHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01CHType.java new file mode 100644 index 00000000..5afcec70 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01CHType.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PA01CHType { + @JacksonXmlProperty(localName = "PA01CD01") + private String pa01CD01; + @JacksonXmlProperty(localName = "PA01CI01") + private String pa01CI01; + + public String getPa01CD01() { + return pa01CD01; + } + + public void setPa01CD01(String pa01CD01) { + this.pa01CD01 = pa01CD01; + } + + public String getPa01CI01() { + return pa01CI01; + } + + public void setPa01CI01(String pa01CI01) { + this.pa01CI01 = pa01CI01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01CType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01CType.java new file mode 100644 index 00000000..6e3e14f3 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01CType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PA01CType { + @JacksonXmlProperty(localName = "PA01CS01") + private String pa01CS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PA01CH") + private List pa01CH; + + public String getPa01CS01() { + return pa01CS01; + } + + public void setPa01CS01(String pa01CS01) { + this.pa01CS01 = pa01CS01; + } + + public List getPa01CH() { + return pa01CH; + } + + public void setPa01CH(List pa01CH) { + this.pa01CH = pa01CH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01DType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01DType.java new file mode 100644 index 00000000..1154d022 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01DType.java @@ -0,0 +1,47 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PA01DType { + @JacksonXmlProperty(localName = "PA01DQ01") + private String pa01DQ01; + @JacksonXmlProperty(localName = "PA01DQ02") + private String pa01DQ02; + @JacksonXmlProperty(localName = "PA01DR01") + private String pa01DR01; + @JacksonXmlProperty(localName = "PA01DR02") + private String pa01DR02; + + public String getPa01DQ01() { + return pa01DQ01; + } + + public void setPa01DQ01(String pa01DQ01) { + this.pa01DQ01 = pa01DQ01; + } + + public String getPa01DQ02() { + return pa01DQ02; + } + + public void setPa01DQ02(String pa01DQ02) { + this.pa01DQ02 = pa01DQ02; + } + + public String getPa01DR01() { + return pa01DR01; + } + + public void setPa01DR01(String pa01DR01) { + this.pa01DR01 = pa01DR01; + } + + public String getPa01DR02() { + return pa01DR02; + } + + public void setPa01DR02(String pa01DR02) { + this.pa01DR02 = pa01DR02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01EType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01EType.java new file mode 100644 index 00000000..6a6ed430 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01EType.java @@ -0,0 +1,17 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PA01EType { + @JacksonXmlProperty(localName = "PA01ES01") + private String pa01ES01; + + public String getPa01ES01() { + return pa01ES01; + } + + public void setPa01ES01(String pa01ES01) { + this.pa01ES01 = pa01ES01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01Type.java new file mode 100644 index 00000000..ac29e717 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PA01Type.java @@ -0,0 +1,57 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PA01Type { + @JacksonXmlProperty(localName = "PA01A") + private PA01AType pa01A; + @JacksonXmlProperty(localName = "PA01B") + private PA01BType pa01B; + @JacksonXmlProperty(localName = "PA01C") + private PA01CType pa01C; + @JacksonXmlProperty(localName = "PA01D") + private PA01DType pa01D; + @JacksonXmlProperty(localName = "PA01E") + private PA01EType pa01E; + + public PA01AType getPa01A() { + return pa01A; + } + + public void setPa01A(PA01AType pa01A) { + this.pa01A = pa01A; + } + + public PA01BType getPa01B() { + return pa01B; + } + + public void setPa01B(PA01BType pa01B) { + this.pa01B = pa01B; + } + + public PA01CType getPa01C() { + return pa01C; + } + + public void setPa01C(PA01CType pa01C) { + this.pa01C = pa01C; + } + + public PA01DType getPa01D() { + return pa01D; + } + + public void setPa01D(PA01DType pa01D) { + this.pa01D = pa01D; + } + + public PA01EType getPa01E() { + return pa01E; + } + + public void setPa01E(PA01EType pa01E) { + this.pa01E = pa01E; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PAHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PAHType.java new file mode 100644 index 00000000..c18512d9 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PAHType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PAHType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF08") + private List pf08; + + public List getPf08() { + return pf08; + } + + public void setPf08(List pf08) { + this.pf08 = pf08; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PAPType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PAPType.java new file mode 100644 index 00000000..eb30e693 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PAPType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PAPType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF04") + private List pf04; + + public List getPf04() { + return pf04; + } + + public void setPf04(List pf04) { + this.pf04 = pf04; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01AType.java new file mode 100644 index 00000000..0d828b76 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01AType.java @@ -0,0 +1,97 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PB01AType { + @JacksonXmlProperty(localName = "PB01AD01") + private String pb01AD01; + @JacksonXmlProperty(localName = "PB01AR01") + private String pb01AR01; + @JacksonXmlProperty(localName = "PB01AD02") + private String pb01AD02; + @JacksonXmlProperty(localName = "PB01AD03") + private String pb01AD03; + @JacksonXmlProperty(localName = "PB01AD04") + private String pb01AD04; + @JacksonXmlProperty(localName = "PB01AQ01") + private String pb01AQ01; + @JacksonXmlProperty(localName = "PB01AQ02") + private String pb01AQ02; + @JacksonXmlProperty(localName = "PB01AD05") + private String pb01AD05; + @JacksonXmlProperty(localName = "PB01AQ03") + private String pb01AQ03; + + public String getPb01AD01() { + return pb01AD01; + } + + public void setPb01AD01(String pb01AD01) { + this.pb01AD01 = pb01AD01; + } + + public String getPb01AR01() { + return pb01AR01; + } + + public void setPb01AR01(String pb01AR01) { + this.pb01AR01 = pb01AR01; + } + + public String getPb01AD02() { + return pb01AD02; + } + + public void setPb01AD02(String pb01AD02) { + this.pb01AD02 = pb01AD02; + } + + public String getPb01AD03() { + return pb01AD03; + } + + public void setPb01AD03(String pb01AD03) { + this.pb01AD03 = pb01AD03; + } + + public String getPb01AD04() { + return pb01AD04; + } + + public void setPb01AD04(String pb01AD04) { + this.pb01AD04 = pb01AD04; + } + + public String getPb01AQ01() { + return pb01AQ01; + } + + public void setPb01AQ01(String pb01AQ01) { + this.pb01AQ01 = pb01AQ01; + } + + public String getPb01AQ02() { + return pb01AQ02; + } + + public void setPb01AQ02(String pb01AQ02) { + this.pb01AQ02 = pb01AQ02; + } + + public String getPb01AD05() { + return pb01AD05; + } + + public void setPb01AD05(String pb01AD05) { + this.pb01AD05 = pb01AD05; + } + + public String getPb01AQ03() { + return pb01AQ03; + } + + public void setPb01AQ03(String pb01AQ03) { + this.pb01AQ03 = pb01AQ03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01BHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01BHType.java new file mode 100644 index 00000000..19905dbe --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01BHType.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PB01BHType { + @JacksonXmlProperty(localName = "PB01BQ01") + private String pb01BQ01; + @JacksonXmlProperty(localName = "PB01BR01") + private String pb01BR01; + + public String getPb01BQ01() { + return pb01BQ01; + } + + public void setPb01BQ01(String pb01BQ01) { + this.pb01BQ01 = pb01BQ01; + } + + public String getPb01BR01() { + return pb01BR01; + } + + public void setPb01BR01(String pb01BR01) { + this.pb01BR01 = pb01BR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01BType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01BType.java new file mode 100644 index 00000000..92f0d9f2 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01BType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PB01BType { + @JacksonXmlProperty(localName = "PB01BS01") + private String pb01BS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PB01BH") + private List pb01BH; + + public String getPb01BS01() { + return pb01BS01; + } + + public void setPb01BS01(String pb01BS01) { + this.pb01BS01 = pb01BS01; + } + + public List getPb01BH() { + return pb01BH; + } + + public void setPb01BH(List pb01BH) { + this.pb01BH = pb01BH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01Type.java new file mode 100644 index 00000000..6378b738 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB01Type.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PB01Type { + @JacksonXmlProperty(localName = "PB01A") + private PB01AType pb01A; + @JacksonXmlProperty(localName = "PB01B") + private PB01BType pb01B; + + public PB01AType getPb01A() { + return pb01A; + } + + public void setPb01A(PB01AType pb01A) { + this.pb01A = pb01A; + } + + public PB01BType getPb01B() { + return pb01B; + } + + public void setPb01B(PB01BType pb01B) { + this.pb01B = pb01B; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB02Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB02Type.java new file mode 100644 index 00000000..9c70af78 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB02Type.java @@ -0,0 +1,67 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PB02Type { + @JacksonXmlProperty(localName = "PB020D01") + private String pb020D01; + @JacksonXmlProperty(localName = "PB020Q01") + private String pb020Q01; + @JacksonXmlProperty(localName = "PB020D02") + private String pb020D02; + @JacksonXmlProperty(localName = "PB020I01") + private String pb020I01; + @JacksonXmlProperty(localName = "PB020Q02") + private String pb020Q02; + @JacksonXmlProperty(localName = "PB020Q03") + private String pb020Q03; + + public String getPb020D01() { + return pb020D01; + } + + public void setPb020D01(String pb020D01) { + this.pb020D01 = pb020D01; + } + + public String getPb020Q01() { + return pb020Q01; + } + + public void setPb020Q01(String pb020Q01) { + this.pb020Q01 = pb020Q01; + } + + public String getPb020D02() { + return pb020D02; + } + + public void setPb020D02(String pb020D02) { + this.pb020D02 = pb020D02; + } + + public String getPb020I01() { + return pb020I01; + } + + public void setPb020I01(String pb020I01) { + this.pb020I01 = pb020I01; + } + + public String getPb020Q02() { + return pb020Q02; + } + + public void setPb020Q02(String pb020Q02) { + this.pb020Q02 = pb020Q02; + } + + public String getPb020Q03() { + return pb020Q03; + } + + public void setPb020Q03(String pb020Q03) { + this.pb020Q03 = pb020Q03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB03Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB03Type.java new file mode 100644 index 00000000..b0c12207 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB03Type.java @@ -0,0 +1,47 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PB03Type { + @JacksonXmlProperty(localName = "PB030D01") + private String pb030D01; + @JacksonXmlProperty(localName = "PB030Q01") + private String pb030Q01; + @JacksonXmlProperty(localName = "PB030Q02") + private String pb030Q02; + @JacksonXmlProperty(localName = "PB030R01") + private String pb030R01; + + public String getPb030D01() { + return pb030D01; + } + + public void setPb030D01(String pb030D01) { + this.pb030D01 = pb030D01; + } + + public String getPb030Q01() { + return pb030Q01; + } + + public void setPb030Q01(String pb030Q01) { + this.pb030Q01 = pb030Q01; + } + + public String getPb030Q02() { + return pb030Q02; + } + + public void setPb030Q02(String pb030Q02) { + this.pb030Q02 = pb030Q02; + } + + public String getPb030R01() { + return pb030R01; + } + + public void setPb030R01(String pb030R01) { + this.pb030R01 = pb030R01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB04Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB04Type.java new file mode 100644 index 00000000..dc12056f --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PB04Type.java @@ -0,0 +1,117 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PB04Type { + @JacksonXmlProperty(localName = "PB040D01") + private String pb040D01; + @JacksonXmlProperty(localName = "PB040Q01") + private String pb040Q01; + @JacksonXmlProperty(localName = "PB040D02") + private String pb040D02; + @JacksonXmlProperty(localName = "PB040D03") + private String pb040D03; + @JacksonXmlProperty(localName = "PB040Q02") + private String pb040Q02; + @JacksonXmlProperty(localName = "PB040Q03") + private String pb040Q03; + @JacksonXmlProperty(localName = "PB040D04") + private String pb040D04; + @JacksonXmlProperty(localName = "PB040D05") + private String pb040D05; + @JacksonXmlProperty(localName = "PB040D06") + private String pb040D06; + @JacksonXmlProperty(localName = "PB040R01") + private String pb040R01; + @JacksonXmlProperty(localName = "PB040R02") + private String pb040R02; + + public String getPb040D01() { + return pb040D01; + } + + public void setPb040D01(String pb040D01) { + this.pb040D01 = pb040D01; + } + + public String getPb040Q01() { + return pb040Q01; + } + + public void setPb040Q01(String pb040Q01) { + this.pb040Q01 = pb040Q01; + } + + public String getPb040D02() { + return pb040D02; + } + + public void setPb040D02(String pb040D02) { + this.pb040D02 = pb040D02; + } + + public String getPb040D03() { + return pb040D03; + } + + public void setPb040D03(String pb040D03) { + this.pb040D03 = pb040D03; + } + + public String getPb040Q02() { + return pb040Q02; + } + + public void setPb040Q02(String pb040Q02) { + this.pb040Q02 = pb040Q02; + } + + public String getPb040Q03() { + return pb040Q03; + } + + public void setPb040Q03(String pb040Q03) { + this.pb040Q03 = pb040Q03; + } + + public String getPb040D04() { + return pb040D04; + } + + public void setPb040D04(String pb040D04) { + this.pb040D04 = pb040D04; + } + + public String getPb040D05() { + return pb040D05; + } + + public void setPb040D05(String pb040D05) { + this.pb040D05 = pb040D05; + } + + public String getPb040D06() { + return pb040D06; + } + + public void setPb040D06(String pb040D06) { + this.pb040D06 = pb040D06; + } + + public String getPb040R01() { + return pb040R01; + } + + public void setPb040R01(String pb040R01) { + this.pb040R01 = pb040R01; + } + + public String getPb040R02() { + return pb040R02; + } + + public void setPb040R02(String pb040R02) { + this.pb040R02 = pb040R02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PBSType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PBSType.java new file mode 100644 index 00000000..1b558e18 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PBSType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PBSType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF06") + private List pf06; + + public List getPf06() { + return pf06; + } + + public void setPf06(List pf06) { + this.pf06 = pf06; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC010D01Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC010D01Type.java new file mode 100644 index 00000000..cce96724 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC010D01Type.java @@ -0,0 +1,6 @@ + +package io.sc.creditreport.core.model.person2; + +public class PC010D01Type { + +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC01Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC01Type.java new file mode 100644 index 00000000..40f9d5dd --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC01Type.java @@ -0,0 +1,51 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PC01Type { + @JacksonXmlProperty(localName = "PC010Q01") + private String pc010Q01; + @JacksonXmlProperty(localName = "PC010Q02") + private String pc010Q02; + @JacksonXmlProperty(localName = "PC010S01") + private String pc010S01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PC010D01") + private List pc010D01; + + public String getPc010Q01() { + return pc010Q01; + } + + public void setPc010Q01(String pc010Q01) { + this.pc010Q01 = pc010Q01; + } + + public String getPc010Q02() { + return pc010Q02; + } + + public void setPc010Q02(String pc010Q02) { + this.pc010Q02 = pc010Q02; + } + + public String getPc010S01() { + return pc010S01; + } + + public void setPc010S01(String pc010S01) { + this.pc010S01 = pc010S01; + } + + public List getPc010D01() { + return pc010D01; + } + + public void setPc010D01(List pc010D01) { + this.pc010D01 = pc010D01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02AHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02AHType.java new file mode 100644 index 00000000..47d6d8fc --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02AHType.java @@ -0,0 +1,47 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC02AHType { + @JacksonXmlProperty(localName = "PC02AD01") + private String pc02AD01; + @JacksonXmlProperty(localName = "PC02AD02") + private String pc02AD02; + @JacksonXmlProperty(localName = "PC02AS03") + private String pc02AS03; + @JacksonXmlProperty(localName = "PC02AR01") + private String pc02AR01; + + public String getPc02AD01() { + return pc02AD01; + } + + public void setPc02AD01(String pc02AD01) { + this.pc02AD01 = pc02AD01; + } + + public String getPc02AD02() { + return pc02AD02; + } + + public void setPc02AD02(String pc02AD02) { + this.pc02AD02 = pc02AD02; + } + + public String getPc02AS03() { + return pc02AS03; + } + + public void setPc02AS03(String pc02AS03) { + this.pc02AS03 = pc02AS03; + } + + public String getPc02AR01() { + return pc02AR01; + } + + public void setPc02AR01(String pc02AR01) { + this.pc02AR01 = pc02AR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02AType.java new file mode 100644 index 00000000..ec1e1c04 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02AType.java @@ -0,0 +1,41 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PC02AType { + @JacksonXmlProperty(localName = "PC02AS01") + private String pc02AS01; + @JacksonXmlProperty(localName = "PC02AS02") + private String pc02AS02; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PC02AH") + private List pc02AH; + + public String getPc02AS01() { + return pc02AS01; + } + + public void setPc02AS01(String pc02AS01) { + this.pc02AS01 = pc02AS01; + } + + public String getPc02AS02() { + return pc02AS02; + } + + public void setPc02AS02(String pc02AS02) { + this.pc02AS02 = pc02AS02; + } + + public List getPc02AH() { + return pc02AH; + } + + public void setPc02AH(List pc02AH) { + this.pc02AH = pc02AH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02BHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02BHType.java new file mode 100644 index 00000000..32e9f338 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02BHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC02BHType { + @JacksonXmlProperty(localName = "PC02BD01") + private String pc02BD01; + @JacksonXmlProperty(localName = "PC02BS03") + private String pc02BS03; + @JacksonXmlProperty(localName = "PC02BJ02") + private String pc02BJ02; + + public String getPc02BD01() { + return pc02BD01; + } + + public void setPc02BD01(String pc02BD01) { + this.pc02BD01 = pc02BD01; + } + + public String getPc02BS03() { + return pc02BS03; + } + + public void setPc02BS03(String pc02BS03) { + this.pc02BS03 = pc02BS03; + } + + public String getPc02BJ02() { + return pc02BJ02; + } + + public void setPc02BJ02(String pc02BJ02) { + this.pc02BJ02 = pc02BJ02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02BType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02BType.java new file mode 100644 index 00000000..95b59131 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02BType.java @@ -0,0 +1,51 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PC02BType { + @JacksonXmlProperty(localName = "PC02BS01") + private String pc02BS01; + @JacksonXmlProperty(localName = "PC02BJ01") + private String pc02BJ01; + @JacksonXmlProperty(localName = "PC02BS02") + private String pc02BS02; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PC02BH") + private List pc02BH; + + public String getPc02BS01() { + return pc02BS01; + } + + public void setPc02BS01(String pc02BS01) { + this.pc02BS01 = pc02BS01; + } + + public String getPc02BJ01() { + return pc02BJ01; + } + + public void setPc02BJ01(String pc02BJ01) { + this.pc02BJ01 = pc02BJ01; + } + + public String getPc02BS02() { + return pc02BS02; + } + + public void setPc02BS02(String pc02BS02) { + this.pc02BS02 = pc02BS02; + } + + public List getPc02BH() { + return pc02BH; + } + + public void setPc02BH(List pc02BH) { + this.pc02BH = pc02BH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02CType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02CType.java new file mode 100644 index 00000000..832be833 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02CType.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC02CType { + @JacksonXmlProperty(localName = "PC02CS01") + private String pc02CS01; + @JacksonXmlProperty(localName = "PC02CJ01") + private String pc02CJ01; + + public String getPc02CS01() { + return pc02CS01; + } + + public void setPc02CS01(String pc02CS01) { + this.pc02CS01 = pc02CS01; + } + + public String getPc02CJ01() { + return pc02CJ01; + } + + public void setPc02CJ01(String pc02CJ01) { + this.pc02CJ01 = pc02CJ01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02DHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02DHType.java new file mode 100644 index 00000000..290fde2a --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02DHType.java @@ -0,0 +1,57 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC02DHType { + @JacksonXmlProperty(localName = "PC02DD01") + private String pc02DD01; + @JacksonXmlProperty(localName = "PC02DS02") + private String pc02DS02; + @JacksonXmlProperty(localName = "PC02DS03") + private String pc02DS03; + @JacksonXmlProperty(localName = "PC02DJ01") + private String pc02DJ01; + @JacksonXmlProperty(localName = "PC02DS04") + private String pc02DS04; + + public String getPc02DD01() { + return pc02DD01; + } + + public void setPc02DD01(String pc02DD01) { + this.pc02DD01 = pc02DD01; + } + + public String getPc02DS02() { + return pc02DS02; + } + + public void setPc02DS02(String pc02DS02) { + this.pc02DS02 = pc02DS02; + } + + public String getPc02DS03() { + return pc02DS03; + } + + public void setPc02DS03(String pc02DS03) { + this.pc02DS03 = pc02DS03; + } + + public String getPc02DJ01() { + return pc02DJ01; + } + + public void setPc02DJ01(String pc02DJ01) { + this.pc02DJ01 = pc02DJ01; + } + + public String getPc02DS04() { + return pc02DS04; + } + + public void setPc02DS04(String pc02DS04) { + this.pc02DS04 = pc02DS04; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02DType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02DType.java new file mode 100644 index 00000000..35da2e6c --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02DType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PC02DType { + @JacksonXmlProperty(localName = "PC02DS01") + private String pc02DS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PC02DH") + private List pc02DH; + + public String getPc02DS01() { + return pc02DS01; + } + + public void setPc02DS01(String pc02DS01) { + this.pc02DS01 = pc02DS01; + } + + public List getPc02DH() { + return pc02DH; + } + + public void setPc02DH(List pc02DH) { + this.pc02DH = pc02DH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02EType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02EType.java new file mode 100644 index 00000000..74f76eba --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02EType.java @@ -0,0 +1,57 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC02EType { + @JacksonXmlProperty(localName = "PC02ES01") + private String pc02ES01; + @JacksonXmlProperty(localName = "PC02ES02") + private String pc02ES02; + @JacksonXmlProperty(localName = "PC02EJ01") + private String pc02EJ01; + @JacksonXmlProperty(localName = "PC02EJ02") + private String pc02EJ02; + @JacksonXmlProperty(localName = "PC02EJ03") + private String pc02EJ03; + + public String getPc02ES01() { + return pc02ES01; + } + + public void setPc02ES01(String pc02ES01) { + this.pc02ES01 = pc02ES01; + } + + public String getPc02ES02() { + return pc02ES02; + } + + public void setPc02ES02(String pc02ES02) { + this.pc02ES02 = pc02ES02; + } + + public String getPc02EJ01() { + return pc02EJ01; + } + + public void setPc02EJ01(String pc02EJ01) { + this.pc02EJ01 = pc02EJ01; + } + + public String getPc02EJ02() { + return pc02EJ02; + } + + public void setPc02EJ02(String pc02EJ02) { + this.pc02EJ02 = pc02EJ02; + } + + public String getPc02EJ03() { + return pc02EJ03; + } + + public void setPc02EJ03(String pc02EJ03) { + this.pc02EJ03 = pc02EJ03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02FType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02FType.java new file mode 100644 index 00000000..9b52e92e --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02FType.java @@ -0,0 +1,57 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC02FType { + @JacksonXmlProperty(localName = "PC02FS01") + private String pc02FS01; + @JacksonXmlProperty(localName = "PC02FS02") + private String pc02FS02; + @JacksonXmlProperty(localName = "PC02FJ01") + private String pc02FJ01; + @JacksonXmlProperty(localName = "PC02FJ02") + private String pc02FJ02; + @JacksonXmlProperty(localName = "PC02FJ03") + private String pc02FJ03; + + public String getPc02FS01() { + return pc02FS01; + } + + public void setPc02FS01(String pc02FS01) { + this.pc02FS01 = pc02FS01; + } + + public String getPc02FS02() { + return pc02FS02; + } + + public void setPc02FS02(String pc02FS02) { + this.pc02FS02 = pc02FS02; + } + + public String getPc02FJ01() { + return pc02FJ01; + } + + public void setPc02FJ01(String pc02FJ01) { + this.pc02FJ01 = pc02FJ01; + } + + public String getPc02FJ02() { + return pc02FJ02; + } + + public void setPc02FJ02(String pc02FJ02) { + this.pc02FJ02 = pc02FJ02; + } + + public String getPc02FJ03() { + return pc02FJ03; + } + + public void setPc02FJ03(String pc02FJ03) { + this.pc02FJ03 = pc02FJ03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02GType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02GType.java new file mode 100644 index 00000000..4da2e262 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02GType.java @@ -0,0 +1,57 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC02GType { + @JacksonXmlProperty(localName = "PC02GS01") + private String pc02GS01; + @JacksonXmlProperty(localName = "PC02GS02") + private String pc02GS02; + @JacksonXmlProperty(localName = "PC02GJ01") + private String pc02GJ01; + @JacksonXmlProperty(localName = "PC02GJ02") + private String pc02GJ02; + @JacksonXmlProperty(localName = "PC02GJ03") + private String pc02GJ03; + + public String getPc02GS01() { + return pc02GS01; + } + + public void setPc02GS01(String pc02GS01) { + this.pc02GS01 = pc02GS01; + } + + public String getPc02GS02() { + return pc02GS02; + } + + public void setPc02GS02(String pc02GS02) { + this.pc02GS02 = pc02GS02; + } + + public String getPc02GJ01() { + return pc02GJ01; + } + + public void setPc02GJ01(String pc02GJ01) { + this.pc02GJ01 = pc02GJ01; + } + + public String getPc02GJ02() { + return pc02GJ02; + } + + public void setPc02GJ02(String pc02GJ02) { + this.pc02GJ02 = pc02GJ02; + } + + public String getPc02GJ03() { + return pc02GJ03; + } + + public void setPc02GJ03(String pc02GJ03) { + this.pc02GJ03 = pc02GJ03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02HType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02HType.java new file mode 100644 index 00000000..c40b50a6 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02HType.java @@ -0,0 +1,77 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC02HType { + @JacksonXmlProperty(localName = "PC02HS01") + private String pc02HS01; + @JacksonXmlProperty(localName = "PC02HS02") + private String pc02HS02; + @JacksonXmlProperty(localName = "PC02HJ01") + private String pc02HJ01; + @JacksonXmlProperty(localName = "PC02HJ02") + private String pc02HJ02; + @JacksonXmlProperty(localName = "PC02HJ03") + private String pc02HJ03; + @JacksonXmlProperty(localName = "PC02HJ04") + private String pc02HJ04; + @JacksonXmlProperty(localName = "PC02HJ05") + private String pc02HJ05; + + public String getPc02HS01() { + return pc02HS01; + } + + public void setPc02HS01(String pc02HS01) { + this.pc02HS01 = pc02HS01; + } + + public String getPc02HS02() { + return pc02HS02; + } + + public void setPc02HS02(String pc02HS02) { + this.pc02HS02 = pc02HS02; + } + + public String getPc02HJ01() { + return pc02HJ01; + } + + public void setPc02HJ01(String pc02HJ01) { + this.pc02HJ01 = pc02HJ01; + } + + public String getPc02HJ02() { + return pc02HJ02; + } + + public void setPc02HJ02(String pc02HJ02) { + this.pc02HJ02 = pc02HJ02; + } + + public String getPc02HJ03() { + return pc02HJ03; + } + + public void setPc02HJ03(String pc02HJ03) { + this.pc02HJ03 = pc02HJ03; + } + + public String getPc02HJ04() { + return pc02HJ04; + } + + public void setPc02HJ04(String pc02HJ04) { + this.pc02HJ04 = pc02HJ04; + } + + public String getPc02HJ05() { + return pc02HJ05; + } + + public void setPc02HJ05(String pc02HJ05) { + this.pc02HJ05 = pc02HJ05; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02IType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02IType.java new file mode 100644 index 00000000..82a9ee3b --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02IType.java @@ -0,0 +1,77 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC02IType { + @JacksonXmlProperty(localName = "PC02IS01") + private String pc02IS01; + @JacksonXmlProperty(localName = "PC02IS02") + private String pc02IS02; + @JacksonXmlProperty(localName = "PC02IJ01") + private String pc02IJ01; + @JacksonXmlProperty(localName = "PC02IJ02") + private String pc02IJ02; + @JacksonXmlProperty(localName = "PC02IJ03") + private String pc02IJ03; + @JacksonXmlProperty(localName = "PC02IJ04") + private String pc02IJ04; + @JacksonXmlProperty(localName = "PC02IJ05") + private String pc02IJ05; + + public String getPc02IS01() { + return pc02IS01; + } + + public void setPc02IS01(String pc02IS01) { + this.pc02IS01 = pc02IS01; + } + + public String getPc02IS02() { + return pc02IS02; + } + + public void setPc02IS02(String pc02IS02) { + this.pc02IS02 = pc02IS02; + } + + public String getPc02IJ01() { + return pc02IJ01; + } + + public void setPc02IJ01(String pc02IJ01) { + this.pc02IJ01 = pc02IJ01; + } + + public String getPc02IJ02() { + return pc02IJ02; + } + + public void setPc02IJ02(String pc02IJ02) { + this.pc02IJ02 = pc02IJ02; + } + + public String getPc02IJ03() { + return pc02IJ03; + } + + public void setPc02IJ03(String pc02IJ03) { + this.pc02IJ03 = pc02IJ03; + } + + public String getPc02IJ04() { + return pc02IJ04; + } + + public void setPc02IJ04(String pc02IJ04) { + this.pc02IJ04 = pc02IJ04; + } + + public String getPc02IJ05() { + return pc02IJ05; + } + + public void setPc02IJ05(String pc02IJ05) { + this.pc02IJ05 = pc02IJ05; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02KHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02KHType.java new file mode 100644 index 00000000..65f720fa --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02KHType.java @@ -0,0 +1,57 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC02KHType { + @JacksonXmlProperty(localName = "PC02KD01") + private String pc02KD01; + @JacksonXmlProperty(localName = "PC02KD02") + private String pc02KD02; + @JacksonXmlProperty(localName = "PC02KS02") + private String pc02KS02; + @JacksonXmlProperty(localName = "PC02KJ01") + private String pc02KJ01; + @JacksonXmlProperty(localName = "PC02KJ02") + private String pc02KJ02; + + public String getPc02KD01() { + return pc02KD01; + } + + public void setPc02KD01(String pc02KD01) { + this.pc02KD01 = pc02KD01; + } + + public String getPc02KD02() { + return pc02KD02; + } + + public void setPc02KD02(String pc02KD02) { + this.pc02KD02 = pc02KD02; + } + + public String getPc02KS02() { + return pc02KS02; + } + + public void setPc02KS02(String pc02KS02) { + this.pc02KS02 = pc02KS02; + } + + public String getPc02KJ01() { + return pc02KJ01; + } + + public void setPc02KJ01(String pc02KJ01) { + this.pc02KJ01 = pc02KJ01; + } + + public String getPc02KJ02() { + return pc02KJ02; + } + + public void setPc02KJ02(String pc02KJ02) { + this.pc02KJ02 = pc02KJ02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02KType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02KType.java new file mode 100644 index 00000000..6c3d44e3 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02KType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PC02KType { + @JacksonXmlProperty(localName = "PC02KS01") + private String pc02KS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PC02KH") + private List pc02KH; + + public String getPc02KS01() { + return pc02KS01; + } + + public void setPc02KS01(String pc02KS01) { + this.pc02KS01 = pc02KS01; + } + + public List getPc02KH() { + return pc02KH; + } + + public void setPc02KH(List pc02KH) { + this.pc02KH = pc02KH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02Type.java new file mode 100644 index 00000000..0799d043 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC02Type.java @@ -0,0 +1,107 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC02Type { + @JacksonXmlProperty(localName = "PC02A") + private PC02AType pc02A; + @JacksonXmlProperty(localName = "PC02B") + private PC02BType pc02B; + @JacksonXmlProperty(localName = "PC02C") + private PC02CType pc02C; + @JacksonXmlProperty(localName = "PC02D") + private PC02DType pc02D; + @JacksonXmlProperty(localName = "PC02E") + private PC02EType pc02E; + @JacksonXmlProperty(localName = "PC02F") + private PC02FType pc02F; + @JacksonXmlProperty(localName = "PC02G") + private PC02GType pc02G; + @JacksonXmlProperty(localName = "PC02H") + private PC02HType pc02H; + @JacksonXmlProperty(localName = "PC02I") + private PC02IType pc02I; + @JacksonXmlProperty(localName = "PC02K") + private PC02KType pc02K; + + public PC02AType getPc02A() { + return pc02A; + } + + public void setPc02A(PC02AType pc02A) { + this.pc02A = pc02A; + } + + public PC02BType getPc02B() { + return pc02B; + } + + public void setPc02B(PC02BType pc02B) { + this.pc02B = pc02B; + } + + public PC02CType getPc02C() { + return pc02C; + } + + public void setPc02C(PC02CType pc02C) { + this.pc02C = pc02C; + } + + public PC02DType getPc02D() { + return pc02D; + } + + public void setPc02D(PC02DType pc02D) { + this.pc02D = pc02D; + } + + public PC02EType getPc02E() { + return pc02E; + } + + public void setPc02E(PC02EType pc02E) { + this.pc02E = pc02E; + } + + public PC02FType getPc02F() { + return pc02F; + } + + public void setPc02F(PC02FType pc02F) { + this.pc02F = pc02F; + } + + public PC02GType getPc02G() { + return pc02G; + } + + public void setPc02G(PC02GType pc02G) { + this.pc02G = pc02G; + } + + public PC02HType getPc02H() { + return pc02H; + } + + public void setPc02H(PC02HType pc02H) { + this.pc02H = pc02H; + } + + public PC02IType getPc02I() { + return pc02I; + } + + public void setPc02I(PC02IType pc02I) { + this.pc02I = pc02I; + } + + public PC02KType getPc02K() { + return pc02K; + } + + public void setPc02K(PC02KType pc02K) { + this.pc02K = pc02K; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC030HType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC030HType.java new file mode 100644 index 00000000..9b483b2a --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC030HType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC030HType { + @JacksonXmlProperty(localName = "PC030D01") + private String pc030D01; + @JacksonXmlProperty(localName = "PC030S02") + private String pc030S02; + @JacksonXmlProperty(localName = "PC030J01") + private String pc030J01; + + public String getPc030D01() { + return pc030D01; + } + + public void setPc030D01(String pc030D01) { + this.pc030D01 = pc030D01; + } + + public String getPc030S02() { + return pc030S02; + } + + public void setPc030S02(String pc030S02) { + this.pc030S02 = pc030S02; + } + + public String getPc030J01() { + return pc030J01; + } + + public void setPc030J01(String pc030J01) { + this.pc030J01 = pc030J01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC03Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC03Type.java new file mode 100644 index 00000000..1fab49da --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC03Type.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC03Type { + @JacksonXmlProperty(localName = "PC030S01") + private String pc030S01; + @JacksonXmlProperty(localName = "PC030H") + private PC030HType pc030H; + + public String getPc030S01() { + return pc030S01; + } + + public void setPc030S01(String pc030S01) { + this.pc030S01 = pc030S01; + } + + public PC030HType getPc030H() { + return pc030H; + } + + public void setPc030H(PC030HType pc030H) { + this.pc030H = pc030H; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC040HType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC040HType.java new file mode 100644 index 00000000..6c55f745 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC040HType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC040HType { + @JacksonXmlProperty(localName = "PC040D01") + private String pc040D01; + @JacksonXmlProperty(localName = "PC040S02") + private String pc040S02; + @JacksonXmlProperty(localName = "PC040J01") + private String pc040J01; + + public String getPc040D01() { + return pc040D01; + } + + public void setPc040D01(String pc040D01) { + this.pc040D01 = pc040D01; + } + + public String getPc040S02() { + return pc040S02; + } + + public void setPc040S02(String pc040S02) { + this.pc040S02 = pc040S02; + } + + public String getPc040J01() { + return pc040J01; + } + + public void setPc040J01(String pc040J01) { + this.pc040J01 = pc040J01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC04Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC04Type.java new file mode 100644 index 00000000..d6392966 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC04Type.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PC04Type { + @JacksonXmlProperty(localName = "PC040S01") + private String pc040S01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PC040H") + private List pc040H; + + public String getPc040S01() { + return pc040S01; + } + + public void setPc040S01(String pc040S01) { + this.pc040S01 = pc040S01; + } + + public List getPc040H() { + return pc040H; + } + + public void setPc040H(List pc040H) { + this.pc040H = pc040H; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC05AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC05AType.java new file mode 100644 index 00000000..805a602a --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC05AType.java @@ -0,0 +1,47 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC05AType { + @JacksonXmlProperty(localName = "PC05AR01") + private String pc05AR01; + @JacksonXmlProperty(localName = "PC05AD01") + private String pc05AD01; + @JacksonXmlProperty(localName = "PC05AI01") + private String pc05AI01; + @JacksonXmlProperty(localName = "PC05AQ01") + private String pc05AQ01; + + public String getPc05AR01() { + return pc05AR01; + } + + public void setPc05AR01(String pc05AR01) { + this.pc05AR01 = pc05AR01; + } + + public String getPc05AD01() { + return pc05AD01; + } + + public void setPc05AD01(String pc05AD01) { + this.pc05AD01 = pc05AD01; + } + + public String getPc05AI01() { + return pc05AI01; + } + + public void setPc05AI01(String pc05AI01) { + this.pc05AI01 = pc05AI01; + } + + public String getPc05AQ01() { + return pc05AQ01; + } + + public void setPc05AQ01(String pc05AQ01) { + this.pc05AQ01 = pc05AQ01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC05BType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC05BType.java new file mode 100644 index 00000000..a72343d3 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC05BType.java @@ -0,0 +1,87 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC05BType { + @JacksonXmlProperty(localName = "PC05BS01") + private String pc05BS01; + @JacksonXmlProperty(localName = "PC05BS02") + private String pc05BS02; + @JacksonXmlProperty(localName = "PC05BS03") + private String pc05BS03; + @JacksonXmlProperty(localName = "PC05BS04") + private String pc05BS04; + @JacksonXmlProperty(localName = "PC05BS05") + private String pc05BS05; + @JacksonXmlProperty(localName = "PC05BS06") + private String pc05BS06; + @JacksonXmlProperty(localName = "PC05BS07") + private String pc05BS07; + @JacksonXmlProperty(localName = "PC05BS08") + private String pc05BS08; + + public String getPc05BS01() { + return pc05BS01; + } + + public void setPc05BS01(String pc05BS01) { + this.pc05BS01 = pc05BS01; + } + + public String getPc05BS02() { + return pc05BS02; + } + + public void setPc05BS02(String pc05BS02) { + this.pc05BS02 = pc05BS02; + } + + public String getPc05BS03() { + return pc05BS03; + } + + public void setPc05BS03(String pc05BS03) { + this.pc05BS03 = pc05BS03; + } + + public String getPc05BS04() { + return pc05BS04; + } + + public void setPc05BS04(String pc05BS04) { + this.pc05BS04 = pc05BS04; + } + + public String getPc05BS05() { + return pc05BS05; + } + + public void setPc05BS05(String pc05BS05) { + this.pc05BS05 = pc05BS05; + } + + public String getPc05BS06() { + return pc05BS06; + } + + public void setPc05BS06(String pc05BS06) { + this.pc05BS06 = pc05BS06; + } + + public String getPc05BS07() { + return pc05BS07; + } + + public void setPc05BS07(String pc05BS07) { + this.pc05BS07 = pc05BS07; + } + + public String getPc05BS08() { + return pc05BS08; + } + + public void setPc05BS08(String pc05BS08) { + this.pc05BS08 = pc05BS08; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC05Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC05Type.java new file mode 100644 index 00000000..14dd7224 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PC05Type.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PC05Type { + @JacksonXmlProperty(localName = "PC05A") + private PC05AType pc05A; + @JacksonXmlProperty(localName = "PC05B") + private PC05BType pc05B; + + public PC05AType getPc05A() { + return pc05A; + } + + public void setPc05A(PC05AType pc05A) { + this.pc05A = pc05A; + } + + public PC05BType getPc05B() { + return pc05B; + } + + public void setPc05B(PC05BType pc05B) { + this.pc05B = pc05B; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCAType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCAType.java new file mode 100644 index 00000000..978f9089 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCAType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PCAType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PD02") + private List pd02; + + public List getPd02() { + return pd02; + } + + public void setPd02(List pd02) { + this.pd02 = pd02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCEType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCEType.java new file mode 100644 index 00000000..5e2cd4aa --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCEType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PCEType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF03") + private List pf03; + + public List getPf03() { + return pf03; + } + + public void setPf03(List pf03) { + this.pf03 = pf03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCJType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCJType.java new file mode 100644 index 00000000..71d62d2f --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCJType.java @@ -0,0 +1,17 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PCJType { + @JacksonXmlProperty(localName = "PF02") + private PF02Type pf02; + + public PF02Type getPf02() { + return pf02; + } + + public void setPf02(PF02Type pf02) { + this.pf02 = pf02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCOType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCOType.java new file mode 100644 index 00000000..a0478b09 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCOType.java @@ -0,0 +1,17 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PCOType { + @JacksonXmlProperty(localName = "PC02") + private PC02Type pc02; + + public PC02Type getPc02() { + return pc02; + } + + public void setPc02(PC02Type pc02) { + this.pc02 = pc02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCRType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCRType.java new file mode 100644 index 00000000..70b8df75 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PCRType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PCRType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PD03") + private List pd03; + + public List getPd03() { + return pd03; + } + + public void setPd03(List pd03) { + this.pd03 = pd03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01AType.java new file mode 100644 index 00000000..48b1a0dc --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01AType.java @@ -0,0 +1,207 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD01AType { + @JacksonXmlProperty(localName = "PD01AI01") + private String pd01AI01; + @JacksonXmlProperty(localName = "PD01AD01") + private String pd01AD01; + @JacksonXmlProperty(localName = "PD01AD02") + private String pd01AD02; + @JacksonXmlProperty(localName = "PD01AI02") + private String pd01AI02; + @JacksonXmlProperty(localName = "PD01AI03") + private String pd01AI03; + @JacksonXmlProperty(localName = "PD01AI04") + private String pd01AI04; + @JacksonXmlProperty(localName = "PD01AD03") + private String pd01AD03; + @JacksonXmlProperty(localName = "PD01AR01") + private String pd01AR01; + @JacksonXmlProperty(localName = "PD01AD04") + private String pd01AD04; + @JacksonXmlProperty(localName = "PD01AJ01") + private String pd01AJ01; + @JacksonXmlProperty(localName = "PD01AJ02") + private String pd01AJ02; + @JacksonXmlProperty(localName = "PD01AJ03") + private String pd01AJ03; + @JacksonXmlProperty(localName = "PD01AR02") + private String pd01AR02; + @JacksonXmlProperty(localName = "PD01AD05") + private String pd01AD05; + @JacksonXmlProperty(localName = "PD01AD06") + private String pd01AD06; + @JacksonXmlProperty(localName = "PD01AS01") + private String pd01AS01; + @JacksonXmlProperty(localName = "PD01AD07") + private String pd01AD07; + @JacksonXmlProperty(localName = "PD01AD08") + private String pd01AD08; + @JacksonXmlProperty(localName = "PD01AD09") + private String pd01AD09; + @JacksonXmlProperty(localName = "PD01AD10") + private String pd01AD10; + + public String getPd01AI01() { + return pd01AI01; + } + + public void setPd01AI01(String pd01AI01) { + this.pd01AI01 = pd01AI01; + } + + public String getPd01AD01() { + return pd01AD01; + } + + public void setPd01AD01(String pd01AD01) { + this.pd01AD01 = pd01AD01; + } + + public String getPd01AD02() { + return pd01AD02; + } + + public void setPd01AD02(String pd01AD02) { + this.pd01AD02 = pd01AD02; + } + + public String getPd01AI02() { + return pd01AI02; + } + + public void setPd01AI02(String pd01AI02) { + this.pd01AI02 = pd01AI02; + } + + public String getPd01AI03() { + return pd01AI03; + } + + public void setPd01AI03(String pd01AI03) { + this.pd01AI03 = pd01AI03; + } + + public String getPd01AI04() { + return pd01AI04; + } + + public void setPd01AI04(String pd01AI04) { + this.pd01AI04 = pd01AI04; + } + + public String getPd01AD03() { + return pd01AD03; + } + + public void setPd01AD03(String pd01AD03) { + this.pd01AD03 = pd01AD03; + } + + public String getPd01AR01() { + return pd01AR01; + } + + public void setPd01AR01(String pd01AR01) { + this.pd01AR01 = pd01AR01; + } + + public String getPd01AD04() { + return pd01AD04; + } + + public void setPd01AD04(String pd01AD04) { + this.pd01AD04 = pd01AD04; + } + + public String getPd01AJ01() { + return pd01AJ01; + } + + public void setPd01AJ01(String pd01AJ01) { + this.pd01AJ01 = pd01AJ01; + } + + public String getPd01AJ02() { + return pd01AJ02; + } + + public void setPd01AJ02(String pd01AJ02) { + this.pd01AJ02 = pd01AJ02; + } + + public String getPd01AJ03() { + return pd01AJ03; + } + + public void setPd01AJ03(String pd01AJ03) { + this.pd01AJ03 = pd01AJ03; + } + + public String getPd01AR02() { + return pd01AR02; + } + + public void setPd01AR02(String pd01AR02) { + this.pd01AR02 = pd01AR02; + } + + public String getPd01AD05() { + return pd01AD05; + } + + public void setPd01AD05(String pd01AD05) { + this.pd01AD05 = pd01AD05; + } + + public String getPd01AD06() { + return pd01AD06; + } + + public void setPd01AD06(String pd01AD06) { + this.pd01AD06 = pd01AD06; + } + + public String getPd01AS01() { + return pd01AS01; + } + + public void setPd01AS01(String pd01AS01) { + this.pd01AS01 = pd01AS01; + } + + public String getPd01AD07() { + return pd01AD07; + } + + public void setPd01AD07(String pd01AD07) { + this.pd01AD07 = pd01AD07; + } + + public String getPd01AD08() { + return pd01AD08; + } + + public void setPd01AD08(String pd01AD08) { + this.pd01AD08 = pd01AD08; + } + + public String getPd01AD09() { + return pd01AD09; + } + + public void setPd01AD09(String pd01AD09) { + this.pd01AD09 = pd01AD09; + } + + public String getPd01AD10() { + return pd01AD10; + } + + public void setPd01AD10(String pd01AD10) { + this.pd01AD10 = pd01AD10; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01BType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01BType.java new file mode 100644 index 00000000..63a19115 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01BType.java @@ -0,0 +1,97 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD01BType { + @JacksonXmlProperty(localName = "PD01BD01") + private String pd01BD01; + @JacksonXmlProperty(localName = "PD01BR01") + private String pd01BR01; + @JacksonXmlProperty(localName = "PD01BR04") + private String pd01BR04; + @JacksonXmlProperty(localName = "PD01BJ01") + private String pd01BJ01; + @JacksonXmlProperty(localName = "PD01BR02") + private String pd01BR02; + @JacksonXmlProperty(localName = "PD01BJ02") + private String pd01BJ02; + @JacksonXmlProperty(localName = "PD01BD03") + private String pd01BD03; + @JacksonXmlProperty(localName = "PD01BD04") + private String pd01BD04; + @JacksonXmlProperty(localName = "PD01BR03") + private String pd01BR03; + + public String getPd01BD01() { + return pd01BD01; + } + + public void setPd01BD01(String pd01BD01) { + this.pd01BD01 = pd01BD01; + } + + public String getPd01BR01() { + return pd01BR01; + } + + public void setPd01BR01(String pd01BR01) { + this.pd01BR01 = pd01BR01; + } + + public String getPd01BR04() { + return pd01BR04; + } + + public void setPd01BR04(String pd01BR04) { + this.pd01BR04 = pd01BR04; + } + + public String getPd01BJ01() { + return pd01BJ01; + } + + public void setPd01BJ01(String pd01BJ01) { + this.pd01BJ01 = pd01BJ01; + } + + public String getPd01BR02() { + return pd01BR02; + } + + public void setPd01BR02(String pd01BR02) { + this.pd01BR02 = pd01BR02; + } + + public String getPd01BJ02() { + return pd01BJ02; + } + + public void setPd01BJ02(String pd01BJ02) { + this.pd01BJ02 = pd01BJ02; + } + + public String getPd01BD03() { + return pd01BD03; + } + + public void setPd01BD03(String pd01BD03) { + this.pd01BD03 = pd01BD03; + } + + public String getPd01BD04() { + return pd01BD04; + } + + public void setPd01BD04(String pd01BD04) { + this.pd01BD04 = pd01BD04; + } + + public String getPd01BR03() { + return pd01BR03; + } + + public void setPd01BR03(String pd01BR03) { + this.pd01BR03 = pd01BR03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01CType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01CType.java new file mode 100644 index 00000000..037f8b19 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01CType.java @@ -0,0 +1,242 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + +public class PD01CType { + @JacksonXmlProperty(localName = "PD01CR01") + private String pd01CR01; + @JacksonXmlProperty(localName = "PD01CD01") + private String pd01CD01; + @JacksonXmlProperty(localName = "PD01CJ01") + private String pd01CJ01; + @JacksonXmlProperty(localName = "PD01CJ02") + private String pd01CJ02; + @JacksonXmlProperty(localName = "PD01CJ03") + private String pd01CJ03; + @JacksonXmlProperty(localName = "PD01CD02") + private String pd01CD02; + @JacksonXmlProperty(localName = "PD01CS01") + private String pd01CS01; + @JacksonXmlProperty(localName = "PD01CR02") + private String pd01CR02; + @JacksonXmlProperty(localName = "PD01CJ04") + private String pd01CJ04; + @JacksonXmlProperty(localName = "PD01CJ05") + private String pd01CJ05; + @JacksonXmlProperty(localName = "PD01CR03") + private String pd01CR03; + @JacksonXmlProperty(localName = "PD01CS02") + private String pd01CS02; + @JacksonXmlProperty(localName = "PD01CJ06") + private String pd01CJ06; + @JacksonXmlProperty(localName = "PD01CJ07") + private String pd01CJ07; + @JacksonXmlProperty(localName = "PD01CJ08") + private String pd01CJ08; + @JacksonXmlProperty(localName = "PD01CJ09") + private String pd01CJ09; + @JacksonXmlProperty(localName = "PD01CJ10") + private String pd01CJ10; + @JacksonXmlProperty(localName = "PD01CJ11") + private String pd01CJ11; + @JacksonXmlProperty(localName = "PD01CJ12") + private String pd01CJ12; + @JacksonXmlProperty(localName = "PD01CJ13") + private String pd01CJ13; + @JacksonXmlProperty(localName = "PD01CJ14") + private String pd01CJ14; + @JacksonXmlProperty(localName = "PD01CJ15") + private String pd01CJ15; + @JacksonXmlProperty(localName = "PD01CR04") + private String pd01CR04; + + public String getPd01CR01() { + return pd01CR01; + } + + public void setPd01CR01(String pd01CR01) { + this.pd01CR01 = pd01CR01; + } + + public String getPd01CD01() { + return pd01CD01; + } + + public void setPd01CD01(String pd01CD01) { + this.pd01CD01 = pd01CD01; + } + + public String getPd01CJ01() { + return pd01CJ01; + } + + public void setPd01CJ01(String pd01CJ01) { + this.pd01CJ01 = pd01CJ01; + } + + public String getPd01CJ02() { + return pd01CJ02; + } + + public void setPd01CJ02(String pd01CJ02) { + this.pd01CJ02 = pd01CJ02; + } + + public String getPd01CJ03() { + return pd01CJ03; + } + + public void setPd01CJ03(String pd01CJ03) { + this.pd01CJ03 = pd01CJ03; + } + + public String getPd01CD02() { + return pd01CD02; + } + + public void setPd01CD02(String pd01CD02) { + this.pd01CD02 = pd01CD02; + } + + public String getPd01CS01() { + return pd01CS01; + } + + public void setPd01CS01(String pd01CS01) { + this.pd01CS01 = pd01CS01; + } + + public String getPd01CR02() { + return pd01CR02; + } + + public void setPd01CR02(String pd01CR02) { + this.pd01CR02 = pd01CR02; + } + + public String getPd01CJ04() { + return pd01CJ04; + } + + public void setPd01CJ04(String pd01CJ04) { + this.pd01CJ04 = pd01CJ04; + } + + public String getPd01CJ05() { + return pd01CJ05; + } + + public void setPd01CJ05(String pd01CJ05) { + this.pd01CJ05 = pd01CJ05; + } + + public String getPd01CR03() { + return pd01CR03; + } + + public void setPd01CR03(String pd01CR03) { + this.pd01CR03 = pd01CR03; + } + + public String getPd01CS02() { + return pd01CS02; + } + + public void setPd01CS02(String pd01CS02) { + this.pd01CS02 = pd01CS02; + } + + public String getPd01CJ06() { + return pd01CJ06; + } + + public void setPd01CJ06(String pd01CJ06) { + this.pd01CJ06 = pd01CJ06; + } + + public String getPd01CJ07() { + return pd01CJ07; + } + + public void setPd01CJ07(String pd01CJ07) { + this.pd01CJ07 = pd01CJ07; + } + + public String getPd01CJ08() { + return pd01CJ08; + } + + public void setPd01CJ08(String pd01CJ08) { + this.pd01CJ08 = pd01CJ08; + } + + public String getPd01CJ09() { + return pd01CJ09; + } + + public void setPd01CJ09(String pd01CJ09) { + this.pd01CJ09 = pd01CJ09; + } + + public String getPd01CJ10() { + return pd01CJ10; + } + + public void setPd01CJ10(String pd01CJ10) { + this.pd01CJ10 = pd01CJ10; + } + + public String getPd01CJ11() { + return pd01CJ11; + } + + public void setPd01CJ11(String pd01CJ11) { + this.pd01CJ11 = pd01CJ11; + } + + public String getPd01CJ12() { + return pd01CJ12; + } + + public void setPd01CJ12(String pd01CJ12) { + this.pd01CJ12 = pd01CJ12; + } + + public String getPd01CJ13() { + return pd01CJ13; + } + + public void setPd01CJ13(String pd01CJ13) { + this.pd01CJ13 = pd01CJ13; + } + + public String getPd01CJ14() { + return pd01CJ14; + } + + public void setPd01CJ14(String pd01CJ14) { + this.pd01CJ14 = pd01CJ14; + } + + public String getPd01CJ15() { + return pd01CJ15; + } + + public void setPd01CJ15(String pd01CJ15) { + this.pd01CJ15 = pd01CJ15; + } + + public String getPd01CR04() { + return pd01CR04; + } + + public void setPd01CR04(String pd01CR04) { + this.pd01CR04 = pd01CR04; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01DHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01DHType.java new file mode 100644 index 00000000..fa3df4bc --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01DHType.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD01DHType { + @JacksonXmlProperty(localName = "PD01DR03") + private String pd01DR03; + @JacksonXmlProperty(localName = "PD01DD01") + private String pd01DD01; + + public String getPd01DR03() { + return pd01DR03; + } + + public void setPd01DR03(String pd01DR03) { + this.pd01DR03 = pd01DR03; + } + + public String getPd01DD01() { + return pd01DD01; + } + + public void setPd01DD01(String pd01DD01) { + this.pd01DD01 = pd01DD01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01DType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01DType.java new file mode 100644 index 00000000..bef57942 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01DType.java @@ -0,0 +1,41 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PD01DType { + @JacksonXmlProperty(localName = "PD01DR01") + private String pd01DR01; + @JacksonXmlProperty(localName = "PD01DR02") + private String pd01DR02; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PD01DH") + private List pd01DH; + + public String getPd01DR01() { + return pd01DR01; + } + + public void setPd01DR01(String pd01DR01) { + this.pd01DR01 = pd01DR01; + } + + public String getPd01DR02() { + return pd01DR02; + } + + public void setPd01DR02(String pd01DR02) { + this.pd01DR02 = pd01DR02; + } + + public List getPd01DH() { + return pd01DH; + } + + public void setPd01DH(List pd01DH) { + this.pd01DH = pd01DH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01EHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01EHType.java new file mode 100644 index 00000000..4451266b --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01EHType.java @@ -0,0 +1,42 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + +public class PD01EHType { + @JacksonXmlProperty(localName = "PD01ER03") + private String pd01ER03; + @JacksonXmlProperty(localName = "PD01ED01") + private String pd01ED01; + @JacksonXmlProperty(localName = "PD01EJ01") + private String pd01EJ01; + + public String getPd01ER03() { + return pd01ER03; + } + + public void setPd01ER03(String pd01ER03) { + this.pd01ER03 = pd01ER03; + } + + public String getPd01ED01() { + return pd01ED01; + } + + public void setPd01ED01(String pd01ED01) { + this.pd01ED01 = pd01ED01; + } + + public String getPd01EJ01() { + return pd01EJ01; + } + + public void setPd01EJ01(String pd01EJ01) { + this.pd01EJ01 = pd01EJ01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01EType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01EType.java new file mode 100644 index 00000000..8c01a75d --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01EType.java @@ -0,0 +1,51 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PD01EType { + @JacksonXmlProperty(localName = "PD01ER01") + private String pd01ER01; + @JacksonXmlProperty(localName = "PD01ER02") + private String pd01ER02; + @JacksonXmlProperty(localName = "PD01ES01") + private String pd01ES01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PD01EH") + private List pd01EH; + + public String getPd01ER01() { + return pd01ER01; + } + + public void setPd01ER01(String pd01ER01) { + this.pd01ER01 = pd01ER01; + } + + public String getPd01ER02() { + return pd01ER02; + } + + public void setPd01ER02(String pd01ER02) { + this.pd01ER02 = pd01ER02; + } + + public String getPd01ES01() { + return pd01ES01; + } + + public void setPd01ES01(String pd01ES01) { + this.pd01ES01 = pd01ES01; + } + + public List getPd01EH() { + return pd01EH; + } + + public void setPd01EH(List pd01EH) { + this.pd01EH = pd01EH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01FHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01FHType.java new file mode 100644 index 00000000..d12899ac --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01FHType.java @@ -0,0 +1,57 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD01FHType { + @JacksonXmlProperty(localName = "PD01FD01") + private String pd01FD01; + @JacksonXmlProperty(localName = "PD01FR01") + private String pd01FR01; + @JacksonXmlProperty(localName = "PD01FS02") + private String pd01FS02; + @JacksonXmlProperty(localName = "PD01FJ01") + private String pd01FJ01; + @JacksonXmlProperty(localName = "PD01FQ01") + private String pd01FQ01; + + public String getPd01FD01() { + return pd01FD01; + } + + public void setPd01FD01(String pd01FD01) { + this.pd01FD01 = pd01FD01; + } + + public String getPd01FR01() { + return pd01FR01; + } + + public void setPd01FR01(String pd01FR01) { + this.pd01FR01 = pd01FR01; + } + + public String getPd01FS02() { + return pd01FS02; + } + + public void setPd01FS02(String pd01FS02) { + this.pd01FS02 = pd01FS02; + } + + public String getPd01FJ01() { + return pd01FJ01; + } + + public void setPd01FJ01(String pd01FJ01) { + this.pd01FJ01 = pd01FJ01; + } + + public String getPd01FQ01() { + return pd01FQ01; + } + + public void setPd01FQ01(String pd01FQ01) { + this.pd01FQ01 = pd01FQ01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01FType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01FType.java new file mode 100644 index 00000000..23364c2d --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01FType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PD01FType { + @JacksonXmlProperty(localName = "PD01FS01") + private String pd01FS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PD01FH") + private List pd01FH; + + public String getPd01FS01() { + return pd01FS01; + } + + public void setPd01FS01(String pd01FS01) { + this.pd01FS01 = pd01FS01; + } + + public List getPd01FH() { + return pd01FH; + } + + public void setPd01FH(List pd01FH) { + this.pd01FH = pd01FH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01GHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01GHType.java new file mode 100644 index 00000000..ed0dbac5 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01GHType.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD01GHType { + @JacksonXmlProperty(localName = "PD01GR01") + private String pd01GR01; + @JacksonXmlProperty(localName = "PD01GD01") + private String pd01GD01; + + public String getPd01GR01() { + return pd01GR01; + } + + public void setPd01GR01(String pd01GR01) { + this.pd01GR01 = pd01GR01; + } + + public String getPd01GD01() { + return pd01GD01; + } + + public void setPd01GD01(String pd01GD01) { + this.pd01GD01 = pd01GD01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01GType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01GType.java new file mode 100644 index 00000000..651dc0ba --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01GType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PD01GType { + @JacksonXmlProperty(localName = "PD01GS01") + private String pd01GS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PD01GH") + private List pd01GH; + + public String getPd01GS01() { + return pd01GS01; + } + + public void setPd01GS01(String pd01GS01) { + this.pd01GS01 = pd01GS01; + } + + public List getPd01GH() { + return pd01GH; + } + + public void setPd01GH(List pd01GH) { + this.pd01GH = pd01GH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01HHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01HHType.java new file mode 100644 index 00000000..04419c23 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01HHType.java @@ -0,0 +1,47 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD01HHType { + @JacksonXmlProperty(localName = "PD01HJ01") + private String pd01HJ01; + @JacksonXmlProperty(localName = "PD01HR01") + private String pd01HR01; + @JacksonXmlProperty(localName = "PD01HR02") + private String pd01HR02; + @JacksonXmlProperty(localName = "PD01HJ02") + private String pd01HJ02; + + public String getPd01HJ01() { + return pd01HJ01; + } + + public void setPd01HJ01(String pd01HJ01) { + this.pd01HJ01 = pd01HJ01; + } + + public String getPd01HR01() { + return pd01HR01; + } + + public void setPd01HR01(String pd01HR01) { + this.pd01HR01 = pd01HR01; + } + + public String getPd01HR02() { + return pd01HR02; + } + + public void setPd01HR02(String pd01HR02) { + this.pd01HR02 = pd01HR02; + } + + public String getPd01HJ02() { + return pd01HJ02; + } + + public void setPd01HJ02(String pd01HJ02) { + this.pd01HJ02 = pd01HJ02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01HType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01HType.java new file mode 100644 index 00000000..0002a899 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01HType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PD01HType { + @JacksonXmlProperty(localName = "PD01HS01") + private String pd01HS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PD01HH") + private List pd01HH; + + public String getPd01HS01() { + return pd01HS01; + } + + public void setPd01HS01(String pd01HS01) { + this.pd01HS01 = pd01HS01; + } + + public List getPd01HH() { + return pd01HH; + } + + public void setPd01HH(List pd01HH) { + this.pd01HH = pd01HH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01Type.java new file mode 100644 index 00000000..1398c9c0 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01Type.java @@ -0,0 +1,97 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD01Type { + @JacksonXmlProperty(localName = "PD01A") + private PD01AType pd01A; + @JacksonXmlProperty(localName = "PD01B") + private PD01BType pd01B; + @JacksonXmlProperty(localName = "PD01C") + private PD01CType pd01C; + @JacksonXmlProperty(localName = "PD01D") + private PD01DType pd01D; + @JacksonXmlProperty(localName = "PD01E") + private PD01EType pd01E; + @JacksonXmlProperty(localName = "PD01F") + private PD01FType pd01F; + @JacksonXmlProperty(localName = "PD01G") + private PD01GType pd01G; + @JacksonXmlProperty(localName = "PD01H") + private PD01HType pd01H; + @JacksonXmlProperty(localName = "PD01Z") + private PD01ZType pd01Z; + + public PD01AType getPd01A() { + return pd01A; + } + + public void setPd01A(PD01AType pd01A) { + this.pd01A = pd01A; + } + + public PD01BType getPd01B() { + return pd01B; + } + + public void setPd01B(PD01BType pd01B) { + this.pd01B = pd01B; + } + + public PD01CType getPd01C() { + return pd01C; + } + + public void setPd01C(PD01CType pd01C) { + this.pd01C = pd01C; + } + + public PD01DType getPd01D() { + return pd01D; + } + + public void setPd01D(PD01DType pd01D) { + this.pd01D = pd01D; + } + + public PD01EType getPd01E() { + return pd01E; + } + + public void setPd01E(PD01EType pd01E) { + this.pd01E = pd01E; + } + + public PD01FType getPd01F() { + return pd01F; + } + + public void setPd01F(PD01FType pd01F) { + this.pd01F = pd01F; + } + + public PD01GType getPd01G() { + return pd01G; + } + + public void setPd01G(PD01GType pd01G) { + this.pd01G = pd01G; + } + + public PD01HType getPd01H() { + return pd01H; + } + + public void setPd01H(PD01HType pd01H) { + this.pd01H = pd01H; + } + + public PD01ZType getPd01Z() { + return pd01Z; + } + + public void setPd01Z(PD01ZType pd01Z) { + this.pd01Z = pd01Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01ZHType.java new file mode 100644 index 00000000..745b9861 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD01ZHType { + @JacksonXmlProperty(localName = "PD01ZD01") + private String pd01ZD01; + @JacksonXmlProperty(localName = "PD01ZQ01") + private String pd01ZQ01; + @JacksonXmlProperty(localName = "PD01ZR01") + private String pd01ZR01; + + public String getPd01ZD01() { + return pd01ZD01; + } + + public void setPd01ZD01(String pd01ZD01) { + this.pd01ZD01 = pd01ZD01; + } + + public String getPd01ZQ01() { + return pd01ZQ01; + } + + public void setPd01ZQ01(String pd01ZQ01) { + this.pd01ZQ01 = pd01ZQ01; + } + + public String getPd01ZR01() { + return pd01ZR01; + } + + public void setPd01ZR01(String pd01ZR01) { + this.pd01ZR01 = pd01ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01ZType.java new file mode 100644 index 00000000..cb7b8685 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD01ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PD01ZType { + @JacksonXmlProperty(localName = "PD01ZS01") + private String pd01ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PD01ZH") + private List pd01ZH; + + public String getPd01ZS01() { + return pd01ZS01; + } + + public void setPd01ZS01(String pd01ZS01) { + this.pd01ZS01 = pd01ZS01; + } + + public List getPd01ZH() { + return pd01ZH; + } + + public void setPd01ZH(List pd01ZH) { + this.pd01ZH = pd01ZH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02AType.java new file mode 100644 index 00000000..82e3e48a --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02AType.java @@ -0,0 +1,137 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD02AType { + @JacksonXmlProperty(localName = "PD02AI01") + private String pd02AI01; + @JacksonXmlProperty(localName = "PD02AD01") + private String pd02AD01; + @JacksonXmlProperty(localName = "PD02AI02") + private String pd02AI02; + @JacksonXmlProperty(localName = "PD02AI03") + private String pd02AI03; + @JacksonXmlProperty(localName = "PD02AD02") + private String pd02AD02; + @JacksonXmlProperty(localName = "PD02AJ01") + private String pd02AJ01; + @JacksonXmlProperty(localName = "PD02AD03") + private String pd02AD03; + @JacksonXmlProperty(localName = "PD02AR01") + private String pd02AR01; + @JacksonXmlProperty(localName = "PD02AR02") + private String pd02AR02; + @JacksonXmlProperty(localName = "PD02AD04") + private String pd02AD04; + @JacksonXmlProperty(localName = "PD02AJ04") + private String pd02AJ04; + @JacksonXmlProperty(localName = "PD02AJ03") + private String pd02AJ03; + @JacksonXmlProperty(localName = "PD02AI04") + private String pd02AI04; + + public String getPd02AI01() { + return pd02AI01; + } + + public void setPd02AI01(String pd02AI01) { + this.pd02AI01 = pd02AI01; + } + + public String getPd02AD01() { + return pd02AD01; + } + + public void setPd02AD01(String pd02AD01) { + this.pd02AD01 = pd02AD01; + } + + public String getPd02AI02() { + return pd02AI02; + } + + public void setPd02AI02(String pd02AI02) { + this.pd02AI02 = pd02AI02; + } + + public String getPd02AI03() { + return pd02AI03; + } + + public void setPd02AI03(String pd02AI03) { + this.pd02AI03 = pd02AI03; + } + + public String getPd02AD02() { + return pd02AD02; + } + + public void setPd02AD02(String pd02AD02) { + this.pd02AD02 = pd02AD02; + } + + public String getPd02AJ01() { + return pd02AJ01; + } + + public void setPd02AJ01(String pd02AJ01) { + this.pd02AJ01 = pd02AJ01; + } + + public String getPd02AD03() { + return pd02AD03; + } + + public void setPd02AD03(String pd02AD03) { + this.pd02AD03 = pd02AD03; + } + + public String getPd02AR01() { + return pd02AR01; + } + + public void setPd02AR01(String pd02AR01) { + this.pd02AR01 = pd02AR01; + } + + public String getPd02AR02() { + return pd02AR02; + } + + public void setPd02AR02(String pd02AR02) { + this.pd02AR02 = pd02AR02; + } + + public String getPd02AD04() { + return pd02AD04; + } + + public void setPd02AD04(String pd02AD04) { + this.pd02AD04 = pd02AD04; + } + + public String getPd02AJ04() { + return pd02AJ04; + } + + public void setPd02AJ04(String pd02AJ04) { + this.pd02AJ04 = pd02AJ04; + } + + public String getPd02AJ03() { + return pd02AJ03; + } + + public void setPd02AJ03(String pd02AJ03) { + this.pd02AJ03 = pd02AJ03; + } + + public String getPd02AI04() { + return pd02AI04; + } + + public void setPd02AI04(String pd02AI04) { + this.pd02AI04 = pd02AI04; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02Type.java new file mode 100644 index 00000000..c86627aa --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02Type.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD02Type { + @JacksonXmlProperty(localName = "PD02A") + private PD02AType pd02A; + @JacksonXmlProperty(localName = "PD02Z") + private PD02ZType pd02Z; + + public PD02AType getPd02A() { + return pd02A; + } + + public void setPd02A(PD02AType pd02A) { + this.pd02A = pd02A; + } + + public PD02ZType getPd02Z() { + return pd02Z; + } + + public void setPd02Z(PD02ZType pd02Z) { + this.pd02Z = pd02Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02ZHType.java new file mode 100644 index 00000000..7cbb63b6 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD02ZHType { + @JacksonXmlProperty(localName = "PD02ZD01") + private String pd02ZD01; + @JacksonXmlProperty(localName = "PD02ZQ01") + private String pd02ZQ01; + @JacksonXmlProperty(localName = "PD02ZR01") + private String pd02ZR01; + + public String getPd02ZD01() { + return pd02ZD01; + } + + public void setPd02ZD01(String pd02ZD01) { + this.pd02ZD01 = pd02ZD01; + } + + public String getPd02ZQ01() { + return pd02ZQ01; + } + + public void setPd02ZQ01(String pd02ZQ01) { + this.pd02ZQ01 = pd02ZQ01; + } + + public String getPd02ZR01() { + return pd02ZR01; + } + + public void setPd02ZR01(String pd02ZR01) { + this.pd02ZR01 = pd02ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02ZType.java new file mode 100644 index 00000000..3118eac8 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD02ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PD02ZType { + @JacksonXmlProperty(localName = "PD02ZS01") + private String pd02ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PD02ZH") + private List pd02ZH; + + public String getPd02ZS01() { + return pd02ZS01; + } + + public void setPd02ZS01(String pd02ZS01) { + this.pd02ZS01 = pd02ZS01; + } + + public List getPd02ZH() { + return pd02ZH; + } + + public void setPd02ZH(List pd02ZH) { + this.pd02ZH = pd02ZH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03AType.java new file mode 100644 index 00000000..3f0db6e7 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03AType.java @@ -0,0 +1,167 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD03AType { + @JacksonXmlProperty(localName = "PD03AD08") + private String pd03AD08; + @JacksonXmlProperty(localName = "PD03AD01") + private String pd03AD01; + @JacksonXmlProperty(localName = "PD03AQ01") + private String pd03AQ01; + @JacksonXmlProperty(localName = "PD03AD02") + private String pd03AD02; + @JacksonXmlProperty(localName = "PD03AR01") + private String pd03AR01; + @JacksonXmlProperty(localName = "PD03AR02") + private String pd03AR02; + @JacksonXmlProperty(localName = "PD03AD03") + private String pd03AD03; + @JacksonXmlProperty(localName = "PD03AQ02") + private String pd03AQ02; + @JacksonXmlProperty(localName = "PD03AJ01") + private String pd03AJ01; + @JacksonXmlProperty(localName = "PD03AD04") + private String pd03AD04; + @JacksonXmlProperty(localName = "PD03AJ02") + private String pd03AJ02; + @JacksonXmlProperty(localName = "PD03AD05") + private String pd03AD05; + @JacksonXmlProperty(localName = "PD03AD06") + private String pd03AD06; + @JacksonXmlProperty(localName = "PD03AD07") + private String pd03AD07; + @JacksonXmlProperty(localName = "PD03AS01") + private String pd03AS01; + @JacksonXmlProperty(localName = "PD03AR03") + private String pd03AR03; + + public String getPd03AD08() { + return pd03AD08; + } + + public void setPd03AD08(String pd03AD08) { + this.pd03AD08 = pd03AD08; + } + + public String getPd03AD01() { + return pd03AD01; + } + + public void setPd03AD01(String pd03AD01) { + this.pd03AD01 = pd03AD01; + } + + public String getPd03AQ01() { + return pd03AQ01; + } + + public void setPd03AQ01(String pd03AQ01) { + this.pd03AQ01 = pd03AQ01; + } + + public String getPd03AD02() { + return pd03AD02; + } + + public void setPd03AD02(String pd03AD02) { + this.pd03AD02 = pd03AD02; + } + + public String getPd03AR01() { + return pd03AR01; + } + + public void setPd03AR01(String pd03AR01) { + this.pd03AR01 = pd03AR01; + } + + public String getPd03AR02() { + return pd03AR02; + } + + public void setPd03AR02(String pd03AR02) { + this.pd03AR02 = pd03AR02; + } + + public String getPd03AD03() { + return pd03AD03; + } + + public void setPd03AD03(String pd03AD03) { + this.pd03AD03 = pd03AD03; + } + + public String getPd03AQ02() { + return pd03AQ02; + } + + public void setPd03AQ02(String pd03AQ02) { + this.pd03AQ02 = pd03AQ02; + } + + public String getPd03AJ01() { + return pd03AJ01; + } + + public void setPd03AJ01(String pd03AJ01) { + this.pd03AJ01 = pd03AJ01; + } + + public String getPd03AD04() { + return pd03AD04; + } + + public void setPd03AD04(String pd03AD04) { + this.pd03AD04 = pd03AD04; + } + + public String getPd03AJ02() { + return pd03AJ02; + } + + public void setPd03AJ02(String pd03AJ02) { + this.pd03AJ02 = pd03AJ02; + } + + public String getPd03AD05() { + return pd03AD05; + } + + public void setPd03AD05(String pd03AD05) { + this.pd03AD05 = pd03AD05; + } + + public String getPd03AD06() { + return pd03AD06; + } + + public void setPd03AD06(String pd03AD06) { + this.pd03AD06 = pd03AD06; + } + + public String getPd03AD07() { + return pd03AD07; + } + + public void setPd03AD07(String pd03AD07) { + this.pd03AD07 = pd03AD07; + } + + public String getPd03AS01() { + return pd03AS01; + } + + public void setPd03AS01(String pd03AS01) { + this.pd03AS01 = pd03AS01; + } + + public String getPd03AR03() { + return pd03AR03; + } + + public void setPd03AR03(String pd03AR03) { + this.pd03AR03 = pd03AR03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03Type.java new file mode 100644 index 00000000..4dd0fbca --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03Type.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD03Type { + @JacksonXmlProperty(localName = "PD03A") + private PD03AType pd03A; + @JacksonXmlProperty(localName = "PD03Z") + private PD03ZType pd03Z; + + public PD03AType getPd03A() { + return pd03A; + } + + public void setPd03A(PD03AType pd03A) { + this.pd03A = pd03A; + } + + public PD03ZType getPd03Z() { + return pd03Z; + } + + public void setPd03Z(PD03ZType pd03Z) { + this.pd03Z = pd03Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03ZHType.java new file mode 100644 index 00000000..d15fb047 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PD03ZHType { + @JacksonXmlProperty(localName = "PD03ZD01") + private String pd03ZD01; + @JacksonXmlProperty(localName = "PD03ZQ01") + private String pd03ZQ01; + @JacksonXmlProperty(localName = "PD03ZR01") + private String pd03ZR01; + + public String getPd03ZD01() { + return pd03ZD01; + } + + public void setPd03ZD01(String pd03ZD01) { + this.pd03ZD01 = pd03ZD01; + } + + public String getPd03ZQ01() { + return pd03ZQ01; + } + + public void setPd03ZQ01(String pd03ZQ01) { + this.pd03ZQ01 = pd03ZQ01; + } + + public String getPd03ZR01() { + return pd03ZR01; + } + + public void setPd03ZR01(String pd03ZR01) { + this.pd03ZR01 = pd03ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03ZType.java new file mode 100644 index 00000000..404b8a72 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PD03ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PD03ZType { + @JacksonXmlProperty(localName = "PD03ZS01") + private String pd03ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PD03ZH") + private List pd03ZH; + + public String getPd03ZS01() { + return pd03ZS01; + } + + public void setPd03ZS01(String pd03ZS01) { + this.pd03ZS01 = pd03ZS01; + } + + public List getPd03ZH() { + return pd03ZH; + } + + public void setPd03ZH(List pd03ZH) { + this.pd03ZH = pd03ZH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PDAType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PDAType.java new file mode 100644 index 00000000..0e74887c --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PDAType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PDAType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PD01") + private List pd01; + + public List getPd01() { + return pd01; + } + + public void setPd01(List pd01) { + this.pd01 = pd01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01AType.java new file mode 100644 index 00000000..43fadc37 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01AType.java @@ -0,0 +1,87 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PE01AType { + @JacksonXmlProperty(localName = "PE01AD01") + private String pe01AD01; + @JacksonXmlProperty(localName = "PE01AQ01") + private String pe01AQ01; + @JacksonXmlProperty(localName = "PE01AD02") + private String pe01AD02; + @JacksonXmlProperty(localName = "PE01AR01") + private String pe01AR01; + @JacksonXmlProperty(localName = "PE01AD03") + private String pe01AD03; + @JacksonXmlProperty(localName = "PE01AJ01") + private String pe01AJ01; + @JacksonXmlProperty(localName = "PE01AR02") + private String pe01AR02; + @JacksonXmlProperty(localName = "PE01AQ02") + private String pe01AQ02; + + public String getPe01AD01() { + return pe01AD01; + } + + public void setPe01AD01(String pe01AD01) { + this.pe01AD01 = pe01AD01; + } + + public String getPe01AQ01() { + return pe01AQ01; + } + + public void setPe01AQ01(String pe01AQ01) { + this.pe01AQ01 = pe01AQ01; + } + + public String getPe01AD02() { + return pe01AD02; + } + + public void setPe01AD02(String pe01AD02) { + this.pe01AD02 = pe01AD02; + } + + public String getPe01AR01() { + return pe01AR01; + } + + public void setPe01AR01(String pe01AR01) { + this.pe01AR01 = pe01AR01; + } + + public String getPe01AD03() { + return pe01AD03; + } + + public void setPe01AD03(String pe01AD03) { + this.pe01AD03 = pe01AD03; + } + + public String getPe01AJ01() { + return pe01AJ01; + } + + public void setPe01AJ01(String pe01AJ01) { + this.pe01AJ01 = pe01AJ01; + } + + public String getPe01AR02() { + return pe01AR02; + } + + public void setPe01AR02(String pe01AR02) { + this.pe01AR02 = pe01AR02; + } + + public String getPe01AQ02() { + return pe01AQ02; + } + + public void setPe01AQ02(String pe01AQ02) { + this.pe01AQ02 = pe01AQ02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01Type.java new file mode 100644 index 00000000..ba659e85 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01Type.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PE01Type { + @JacksonXmlProperty(localName = "PE01A") + private PE01AType pe01A; + @JacksonXmlProperty(localName = "PE01Z") + private PE01ZType pe01Z; + + public PE01AType getPe01A() { + return pe01A; + } + + public void setPe01A(PE01AType pe01A) { + this.pe01A = pe01A; + } + + public PE01ZType getPe01Z() { + return pe01Z; + } + + public void setPe01Z(PE01ZType pe01Z) { + this.pe01Z = pe01Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01ZHType.java new file mode 100644 index 00000000..a93afb8d --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PE01ZHType { + @JacksonXmlProperty(localName = "PE01ZD01") + private String pe01ZD01; + @JacksonXmlProperty(localName = "PE01ZQ01") + private String pe01ZQ01; + @JacksonXmlProperty(localName = "PE01ZR01") + private String pe01ZR01; + + public String getPe01ZD01() { + return pe01ZD01; + } + + public void setPe01ZD01(String pe01ZD01) { + this.pe01ZD01 = pe01ZD01; + } + + public String getPe01ZQ01() { + return pe01ZQ01; + } + + public void setPe01ZQ01(String pe01ZQ01) { + this.pe01ZQ01 = pe01ZQ01; + } + + public String getPe01ZR01() { + return pe01ZR01; + } + + public void setPe01ZR01(String pe01ZR01) { + this.pe01ZR01 = pe01ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01ZType.java new file mode 100644 index 00000000..f3a5aead --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PE01ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PE01ZType { + @JacksonXmlProperty(localName = "PE01ZS01") + private String pe01ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PE01ZH") + private List pe01ZH; + + public String getPe01ZS01() { + return pe01ZS01; + } + + public void setPe01ZS01(String pe01ZS01) { + this.pe01ZS01 = pe01ZS01; + } + + public List getPe01ZH() { + return pe01ZH; + } + + public void setPe01ZH(List pe01ZH) { + this.pe01ZH = pe01ZH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01AType.java new file mode 100644 index 00000000..47b1d133 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01AType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF01AType { + @JacksonXmlProperty(localName = "PF01AQ01") + private String pf01AQ01; + @JacksonXmlProperty(localName = "PF01AJ01") + private String pf01AJ01; + @JacksonXmlProperty(localName = "PF01AR01") + private String pf01AR01; + + public String getPf01AQ01() { + return pf01AQ01; + } + + public void setPf01AQ01(String pf01AQ01) { + this.pf01AQ01 = pf01AQ01; + } + + public String getPf01AJ01() { + return pf01AJ01; + } + + public void setPf01AJ01(String pf01AJ01) { + this.pf01AJ01 = pf01AJ01; + } + + public String getPf01AR01() { + return pf01AR01; + } + + public void setPf01AR01(String pf01AR01) { + this.pf01AR01 = pf01AR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01Type.java new file mode 100644 index 00000000..c368ec37 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01Type.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF01Type { + @JacksonXmlProperty(localName = "PF01A") + private PF01AType pf01A; + @JacksonXmlProperty(localName = "PF01Z") + private PF01ZType pf01Z; + + public PF01AType getPf01A() { + return pf01A; + } + + public void setPf01A(PF01AType pf01A) { + this.pf01A = pf01A; + } + + public PF01ZType getPf01Z() { + return pf01Z; + } + + public void setPf01Z(PF01ZType pf01Z) { + this.pf01Z = pf01Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01ZHType.java new file mode 100644 index 00000000..907f9345 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF01ZHType { + @JacksonXmlProperty(localName = "PF01ZD01") + private String pf01ZD01; + @JacksonXmlProperty(localName = "PF01ZQ01") + private String pf01ZQ01; + @JacksonXmlProperty(localName = "PF01ZR01") + private String pf01ZR01; + + public String getPf01ZD01() { + return pf01ZD01; + } + + public void setPf01ZD01(String pf01ZD01) { + this.pf01ZD01 = pf01ZD01; + } + + public String getPf01ZQ01() { + return pf01ZQ01; + } + + public void setPf01ZQ01(String pf01ZQ01) { + this.pf01ZQ01 = pf01ZQ01; + } + + public String getPf01ZR01() { + return pf01ZR01; + } + + public void setPf01ZR01(String pf01ZR01) { + this.pf01ZR01 = pf01ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01ZType.java new file mode 100644 index 00000000..816875d9 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF01ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF01ZType { + @JacksonXmlProperty(localName = "PF01ZS01") + private String pf01ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF01ZH") + private List pf01ZH; + + public String getPf01ZS01() { + return pf01ZS01; + } + + public void setPf01ZS01(String pf01ZS01) { + this.pf01ZS01 = pf01ZS01; + } + + public List getPf01ZH() { + return pf01ZH; + } + + public void setPf01ZH(List pf01ZH) { + this.pf01ZH = pf01ZH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02AType.java new file mode 100644 index 00000000..fdebe7d9 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02AType.java @@ -0,0 +1,87 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF02AType { + @JacksonXmlProperty(localName = "PF02AQ01") + private String pf02AQ01; + @JacksonXmlProperty(localName = "PF02AQ02") + private String pf02AQ02; + @JacksonXmlProperty(localName = "PF02AR01") + private String pf02AR01; + @JacksonXmlProperty(localName = "PF02AD01") + private String pf02AD01; + @JacksonXmlProperty(localName = "PF02AQ03") + private String pf02AQ03; + @JacksonXmlProperty(localName = "PF02AR02") + private String pf02AR02; + @JacksonXmlProperty(localName = "PF02AQ04") + private String pf02AQ04; + @JacksonXmlProperty(localName = "PF02AJ01") + private String pf02AJ01; + + public String getPf02AQ01() { + return pf02AQ01; + } + + public void setPf02AQ01(String pf02AQ01) { + this.pf02AQ01 = pf02AQ01; + } + + public String getPf02AQ02() { + return pf02AQ02; + } + + public void setPf02AQ02(String pf02AQ02) { + this.pf02AQ02 = pf02AQ02; + } + + public String getPf02AR01() { + return pf02AR01; + } + + public void setPf02AR01(String pf02AR01) { + this.pf02AR01 = pf02AR01; + } + + public String getPf02AD01() { + return pf02AD01; + } + + public void setPf02AD01(String pf02AD01) { + this.pf02AD01 = pf02AD01; + } + + public String getPf02AQ03() { + return pf02AQ03; + } + + public void setPf02AQ03(String pf02AQ03) { + this.pf02AQ03 = pf02AQ03; + } + + public String getPf02AR02() { + return pf02AR02; + } + + public void setPf02AR02(String pf02AR02) { + this.pf02AR02 = pf02AR02; + } + + public String getPf02AQ04() { + return pf02AQ04; + } + + public void setPf02AQ04(String pf02AQ04) { + this.pf02AQ04 = pf02AQ04; + } + + public String getPf02AJ01() { + return pf02AJ01; + } + + public void setPf02AJ01(String pf02AJ01) { + this.pf02AJ01 = pf02AJ01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02Type.java new file mode 100644 index 00000000..cd5e9658 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02Type.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF02Type { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF02A") + private List pf02A; + @JacksonXmlProperty(localName = "PF02Z") + private PF02ZType pf02Z; + + public List getPf02A() { + return pf02A; + } + + public void setPf02A(List pf02A) { + this.pf02A = pf02A; + } + + public PF02ZType getPf02Z() { + return pf02Z; + } + + public void setPf02Z(PF02ZType pf02Z) { + this.pf02Z = pf02Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02ZHType.java new file mode 100644 index 00000000..212efbc1 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF02ZHType { + @JacksonXmlProperty(localName = "PF02ZD01") + private String pf02ZD01; + @JacksonXmlProperty(localName = "PF02ZQ01") + private String pf02ZQ01; + @JacksonXmlProperty(localName = "PF02ZR01") + private String pf02ZR01; + + public String getPf02ZD01() { + return pf02ZD01; + } + + public void setPf02ZD01(String pf02ZD01) { + this.pf02ZD01 = pf02ZD01; + } + + public String getPf02ZQ01() { + return pf02ZQ01; + } + + public void setPf02ZQ01(String pf02ZQ01) { + this.pf02ZQ01 = pf02ZQ01; + } + + public String getPf02ZR01() { + return pf02ZR01; + } + + public void setPf02ZR01(String pf02ZR01) { + this.pf02ZR01 = pf02ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02ZType.java new file mode 100644 index 00000000..251ef129 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF02ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF02ZType { + @JacksonXmlProperty(localName = "PF02ZS01") + private String pf02ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF02ZH") + private List pf02ZH; + + public String getPf02ZS01() { + return pf02ZS01; + } + + public void setPf02ZS01(String pf02ZS01) { + this.pf02ZS01 = pf02ZS01; + } + + public List getPf02ZH() { + return pf02ZH; + } + + public void setPf02ZH(List pf02ZH) { + this.pf02ZH = pf02ZH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03AType.java new file mode 100644 index 00000000..2bf5f610 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03AType.java @@ -0,0 +1,107 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF03AType { + @JacksonXmlProperty(localName = "PF03AQ01") + private String pf03AQ01; + @JacksonXmlProperty(localName = "PF03AQ02") + private String pf03AQ02; + @JacksonXmlProperty(localName = "PF03AR01") + private String pf03AR01; + @JacksonXmlProperty(localName = "PF03AD01") + private String pf03AD01; + @JacksonXmlProperty(localName = "PF03AQ03") + private String pf03AQ03; + @JacksonXmlProperty(localName = "PF03AR02") + private String pf03AR02; + @JacksonXmlProperty(localName = "PF03AQ04") + private String pf03AQ04; + @JacksonXmlProperty(localName = "PF03AJ01") + private String pf03AJ01; + @JacksonXmlProperty(localName = "PF03AQ05") + private String pf03AQ05; + @JacksonXmlProperty(localName = "PF03AJ02") + private String pf03AJ02; + + public String getPf03AQ01() { + return pf03AQ01; + } + + public void setPf03AQ01(String pf03AQ01) { + this.pf03AQ01 = pf03AQ01; + } + + public String getPf03AQ02() { + return pf03AQ02; + } + + public void setPf03AQ02(String pf03AQ02) { + this.pf03AQ02 = pf03AQ02; + } + + public String getPf03AR01() { + return pf03AR01; + } + + public void setPf03AR01(String pf03AR01) { + this.pf03AR01 = pf03AR01; + } + + public String getPf03AD01() { + return pf03AD01; + } + + public void setPf03AD01(String pf03AD01) { + this.pf03AD01 = pf03AD01; + } + + public String getPf03AQ03() { + return pf03AQ03; + } + + public void setPf03AQ03(String pf03AQ03) { + this.pf03AQ03 = pf03AQ03; + } + + public String getPf03AR02() { + return pf03AR02; + } + + public void setPf03AR02(String pf03AR02) { + this.pf03AR02 = pf03AR02; + } + + public String getPf03AQ04() { + return pf03AQ04; + } + + public void setPf03AQ04(String pf03AQ04) { + this.pf03AQ04 = pf03AQ04; + } + + public String getPf03AJ01() { + return pf03AJ01; + } + + public void setPf03AJ01(String pf03AJ01) { + this.pf03AJ01 = pf03AJ01; + } + + public String getPf03AQ05() { + return pf03AQ05; + } + + public void setPf03AQ05(String pf03AQ05) { + this.pf03AQ05 = pf03AQ05; + } + + public String getPf03AJ02() { + return pf03AJ02; + } + + public void setPf03AJ02(String pf03AJ02) { + this.pf03AJ02 = pf03AJ02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03Type.java new file mode 100644 index 00000000..24c8005c --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03Type.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF03Type { + @JacksonXmlProperty(localName = "PF03A") + private PF03AType pf03A; + @JacksonXmlProperty(localName = "PF03Z") + private PF03ZType pf03Z; + + public PF03AType getPf03A() { + return pf03A; + } + + public void setPf03A(PF03AType pf03A) { + this.pf03A = pf03A; + } + + public PF03ZType getPf03Z() { + return pf03Z; + } + + public void setPf03Z(PF03ZType pf03Z) { + this.pf03Z = pf03Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03ZHType.java new file mode 100644 index 00000000..d867cf40 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF03ZHType { + @JacksonXmlProperty(localName = "PF03ZD01") + private String pf03ZD01; + @JacksonXmlProperty(localName = "PF03ZQ01") + private String pf03ZQ01; + @JacksonXmlProperty(localName = "PF03ZR01") + private String pf03ZR01; + + public String getPf03ZD01() { + return pf03ZD01; + } + + public void setPf03ZD01(String pf03ZD01) { + this.pf03ZD01 = pf03ZD01; + } + + public String getPf03ZQ01() { + return pf03ZQ01; + } + + public void setPf03ZQ01(String pf03ZQ01) { + this.pf03ZQ01 = pf03ZQ01; + } + + public String getPf03ZR01() { + return pf03ZR01; + } + + public void setPf03ZR01(String pf03ZR01) { + this.pf03ZR01 = pf03ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03ZType.java new file mode 100644 index 00000000..6ed9a46b --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF03ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF03ZType { + @JacksonXmlProperty(localName = "PF03ZS01") + private String pf03ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF03ZH") + private List pf03ZH; + + public String getPf03ZS01() { + return pf03ZS01; + } + + public void setPf03ZS01(String pf03ZS01) { + this.pf03ZS01 = pf03ZS01; + } + + public List getPf03ZH() { + return pf03ZH; + } + + public void setPf03ZH(List pf03ZH) { + this.pf03ZH = pf03ZH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04AType.java new file mode 100644 index 00000000..364f8119 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04AType.java @@ -0,0 +1,67 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF04AType { + @JacksonXmlProperty(localName = "PF04AQ01") + private String pf04AQ01; + @JacksonXmlProperty(localName = "PF04AQ02") + private String pf04AQ02; + @JacksonXmlProperty(localName = "PF04AJ01") + private String pf04AJ01; + @JacksonXmlProperty(localName = "PF04AR01") + private String pf04AR01; + @JacksonXmlProperty(localName = "PF04AR02") + private String pf04AR02; + @JacksonXmlProperty(localName = "PF04AQ03") + private String pf04AQ03; + + public String getPf04AQ01() { + return pf04AQ01; + } + + public void setPf04AQ01(String pf04AQ01) { + this.pf04AQ01 = pf04AQ01; + } + + public String getPf04AQ02() { + return pf04AQ02; + } + + public void setPf04AQ02(String pf04AQ02) { + this.pf04AQ02 = pf04AQ02; + } + + public String getPf04AJ01() { + return pf04AJ01; + } + + public void setPf04AJ01(String pf04AJ01) { + this.pf04AJ01 = pf04AJ01; + } + + public String getPf04AR01() { + return pf04AR01; + } + + public void setPf04AR01(String pf04AR01) { + this.pf04AR01 = pf04AR01; + } + + public String getPf04AR02() { + return pf04AR02; + } + + public void setPf04AR02(String pf04AR02) { + this.pf04AR02 = pf04AR02; + } + + public String getPf04AQ03() { + return pf04AQ03; + } + + public void setPf04AQ03(String pf04AQ03) { + this.pf04AQ03 = pf04AQ03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04Type.java new file mode 100644 index 00000000..c2411a57 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04Type.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF04Type { + @JacksonXmlProperty(localName = "PF04A") + private PF04AType pf04A; + @JacksonXmlProperty(localName = "PF04Z") + private PF04ZType pf04Z; + + public PF04AType getPf04A() { + return pf04A; + } + + public void setPf04A(PF04AType pf04A) { + this.pf04A = pf04A; + } + + public PF04ZType getPf04Z() { + return pf04Z; + } + + public void setPf04Z(PF04ZType pf04Z) { + this.pf04Z = pf04Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04ZHType.java new file mode 100644 index 00000000..130a58c2 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF04ZHType { + @JacksonXmlProperty(localName = "PF04ZD01") + private String pf04ZD01; + @JacksonXmlProperty(localName = "PF04ZQ01") + private String pf04ZQ01; + @JacksonXmlProperty(localName = "PF04ZR01") + private String pf04ZR01; + + public String getPf04ZD01() { + return pf04ZD01; + } + + public void setPf04ZD01(String pf04ZD01) { + this.pf04ZD01 = pf04ZD01; + } + + public String getPf04ZQ01() { + return pf04ZQ01; + } + + public void setPf04ZQ01(String pf04ZQ01) { + this.pf04ZQ01 = pf04ZQ01; + } + + public String getPf04ZR01() { + return pf04ZR01; + } + + public void setPf04ZR01(String pf04ZR01) { + this.pf04ZR01 = pf04ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04ZType.java new file mode 100644 index 00000000..df1b3cc9 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF04ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF04ZType { + @JacksonXmlProperty(localName = "PF04ZS01") + private String pf04ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF04ZH") + private List pf04ZH; + + public String getPf04ZS01() { + return pf04ZS01; + } + + public void setPf04ZS01(String pf04ZS01) { + this.pf04ZS01 = pf04ZS01; + } + + public List getPf04ZH() { + return pf04ZH; + } + + public void setPf04ZH(List pf04ZH) { + this.pf04ZH = pf04ZH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05AType.java new file mode 100644 index 00000000..b1400200 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05AType.java @@ -0,0 +1,107 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF05AType { + @JacksonXmlProperty(localName = "PF05AQ01") + private String pf05AQ01; + @JacksonXmlProperty(localName = "PF05AR01") + private String pf05AR01; + @JacksonXmlProperty(localName = "PF05AD01") + private String pf05AD01; + @JacksonXmlProperty(localName = "PF05AR02") + private String pf05AR02; + @JacksonXmlProperty(localName = "PF05AR03") + private String pf05AR03; + @JacksonXmlProperty(localName = "PF05AQ02") + private String pf05AQ02; + @JacksonXmlProperty(localName = "PF05AQ03") + private String pf05AQ03; + @JacksonXmlProperty(localName = "PF05AJ01") + private String pf05AJ01; + @JacksonXmlProperty(localName = "PF05AQ04") + private String pf05AQ04; + @JacksonXmlProperty(localName = "PF05AR04") + private String pf05AR04; + + public String getPf05AQ01() { + return pf05AQ01; + } + + public void setPf05AQ01(String pf05AQ01) { + this.pf05AQ01 = pf05AQ01; + } + + public String getPf05AR01() { + return pf05AR01; + } + + public void setPf05AR01(String pf05AR01) { + this.pf05AR01 = pf05AR01; + } + + public String getPf05AD01() { + return pf05AD01; + } + + public void setPf05AD01(String pf05AD01) { + this.pf05AD01 = pf05AD01; + } + + public String getPf05AR02() { + return pf05AR02; + } + + public void setPf05AR02(String pf05AR02) { + this.pf05AR02 = pf05AR02; + } + + public String getPf05AR03() { + return pf05AR03; + } + + public void setPf05AR03(String pf05AR03) { + this.pf05AR03 = pf05AR03; + } + + public String getPf05AQ02() { + return pf05AQ02; + } + + public void setPf05AQ02(String pf05AQ02) { + this.pf05AQ02 = pf05AQ02; + } + + public String getPf05AQ03() { + return pf05AQ03; + } + + public void setPf05AQ03(String pf05AQ03) { + this.pf05AQ03 = pf05AQ03; + } + + public String getPf05AJ01() { + return pf05AJ01; + } + + public void setPf05AJ01(String pf05AJ01) { + this.pf05AJ01 = pf05AJ01; + } + + public String getPf05AQ04() { + return pf05AQ04; + } + + public void setPf05AQ04(String pf05AQ04) { + this.pf05AQ04 = pf05AQ04; + } + + public String getPf05AR04() { + return pf05AR04; + } + + public void setPf05AR04(String pf05AR04) { + this.pf05AR04 = pf05AR04; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05Type.java new file mode 100644 index 00000000..38fd5191 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05Type.java @@ -0,0 +1,27 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF05Type { + @JacksonXmlProperty(localName = "PF05A") + private PF05AType pf05A; + @JacksonXmlProperty(localName = "PF05Z") + private PF05ZType pf05Z; + + public PF05AType getPf05A() { + return pf05A; + } + + public void setPf05A(PF05AType pf05A) { + this.pf05A = pf05A; + } + + public PF05ZType getPf05Z() { + return pf05Z; + } + + public void setPf05Z(PF05ZType pf05Z) { + this.pf05Z = pf05Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05ZHType.java new file mode 100644 index 00000000..86cbfe87 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF05ZHType { + @JacksonXmlProperty(localName = "PF05ZD01") + private String pf05ZD01; + @JacksonXmlProperty(localName = "PF05ZQ01") + private String pf05ZQ01; + @JacksonXmlProperty(localName = "PF05ZR01") + private String pf05ZR01; + + public String getPf05ZD01() { + return pf05ZD01; + } + + public void setPf05ZD01(String pf05ZD01) { + this.pf05ZD01 = pf05ZD01; + } + + public String getPf05ZQ01() { + return pf05ZQ01; + } + + public void setPf05ZQ01(String pf05ZQ01) { + this.pf05ZQ01 = pf05ZQ01; + } + + public String getPf05ZR01() { + return pf05ZR01; + } + + public void setPf05ZR01(String pf05ZR01) { + this.pf05ZR01 = pf05ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05ZType.java new file mode 100644 index 00000000..e28baacb --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF05ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF05ZType { + @JacksonXmlProperty(localName = "PF05ZS01") + private String pf05ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF05ZH") + private List pf05ZH; + + public String getPf05ZS01() { + return pf05ZS01; + } + + public void setPf05ZS01(String pf05ZS01) { + this.pf05ZS01 = pf05ZS01; + } + + public List getPf05ZH() { + return pf05ZH; + } + + public void setPf05ZH(List pf05ZH) { + this.pf05ZH = pf05ZH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06AType.java new file mode 100644 index 00000000..cda3e048 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06AType.java @@ -0,0 +1,77 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF06AType { + @JacksonXmlProperty(localName = "PF06AD01") + private String pf06AD01; + @JacksonXmlProperty(localName = "PF06AQ01") + private String pf06AQ01; + @JacksonXmlProperty(localName = "PF06AQ02") + private String pf06AQ02; + @JacksonXmlProperty(localName = "PF06AQ03") + private String pf06AQ03; + @JacksonXmlProperty(localName = "PF06AR01") + private String pf06AR01; + @JacksonXmlProperty(localName = "PF06AR02") + private String pf06AR02; + @JacksonXmlProperty(localName = "PF06AR03") + private String pf06AR03; + + public String getPf06AD01() { + return pf06AD01; + } + + public void setPf06AD01(String pf06AD01) { + this.pf06AD01 = pf06AD01; + } + + public String getPf06AQ01() { + return pf06AQ01; + } + + public void setPf06AQ01(String pf06AQ01) { + this.pf06AQ01 = pf06AQ01; + } + + public String getPf06AQ02() { + return pf06AQ02; + } + + public void setPf06AQ02(String pf06AQ02) { + this.pf06AQ02 = pf06AQ02; + } + + public String getPf06AQ03() { + return pf06AQ03; + } + + public void setPf06AQ03(String pf06AQ03) { + this.pf06AQ03 = pf06AQ03; + } + + public String getPf06AR01() { + return pf06AR01; + } + + public void setPf06AR01(String pf06AR01) { + this.pf06AR01 = pf06AR01; + } + + public String getPf06AR02() { + return pf06AR02; + } + + public void setPf06AR02(String pf06AR02) { + this.pf06AR02 = pf06AR02; + } + + public String getPf06AR03() { + return pf06AR03; + } + + public void setPf06AR03(String pf06AR03) { + this.pf06AR03 = pf06AR03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06Type.java new file mode 100644 index 00000000..0d94c737 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06Type.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF06Type { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF06A") + private List pf06A; + @JacksonXmlProperty(localName = "PF06Z") + private PF06ZType pf06Z; + + public List getPf06A() { + return pf06A; + } + + public void setPf06A(List pf06A) { + this.pf06A = pf06A; + } + + public PF06ZType getPf06Z() { + return pf06Z; + } + + public void setPf06Z(PF06ZType pf06Z) { + this.pf06Z = pf06Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06ZHType.java new file mode 100644 index 00000000..839b0a1a --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF06ZHType { + @JacksonXmlProperty(localName = "PF06ZD01") + private String pf06ZD01; + @JacksonXmlProperty(localName = "PF06ZQ01") + private String pf06ZQ01; + @JacksonXmlProperty(localName = "PF06ZR01") + private String pf06ZR01; + + public String getPf06ZD01() { + return pf06ZD01; + } + + public void setPf06ZD01(String pf06ZD01) { + this.pf06ZD01 = pf06ZD01; + } + + public String getPf06ZQ01() { + return pf06ZQ01; + } + + public void setPf06ZQ01(String pf06ZQ01) { + this.pf06ZQ01 = pf06ZQ01; + } + + public String getPf06ZR01() { + return pf06ZR01; + } + + public void setPf06ZR01(String pf06ZR01) { + this.pf06ZR01 = pf06ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06ZType.java new file mode 100644 index 00000000..ad6e0e06 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF06ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF06ZType { + @JacksonXmlProperty(localName = "PF06ZS01") + private String pf06ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF06ZH") + private List pf06ZH; + + public String getPf06ZS01() { + return pf06ZS01; + } + + public void setPf06ZS01(String pf06ZS01) { + this.pf06ZS01 = pf06ZS01; + } + + public List getPf06ZH() { + return pf06ZH; + } + + public void setPf06ZH(List pf06ZH) { + this.pf06ZH = pf06ZH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07AType.java new file mode 100644 index 00000000..2e6d1b07 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07AType.java @@ -0,0 +1,77 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF07AType { + @JacksonXmlProperty(localName = "PF07AQ01") + private String pf07AQ01; + @JacksonXmlProperty(localName = "PF07AQ02") + private String pf07AQ02; + @JacksonXmlProperty(localName = "PF07AD01") + private String pf07AD01; + @JacksonXmlProperty(localName = "PF07AD02") + private String pf07AD02; + @JacksonXmlProperty(localName = "PF07AR01") + private String pf07AR01; + @JacksonXmlProperty(localName = "PF07AR02") + private String pf07AR02; + @JacksonXmlProperty(localName = "PF07AR03") + private String pf07AR03; + + public String getPf07AQ01() { + return pf07AQ01; + } + + public void setPf07AQ01(String pf07AQ01) { + this.pf07AQ01 = pf07AQ01; + } + + public String getPf07AQ02() { + return pf07AQ02; + } + + public void setPf07AQ02(String pf07AQ02) { + this.pf07AQ02 = pf07AQ02; + } + + public String getPf07AD01() { + return pf07AD01; + } + + public void setPf07AD01(String pf07AD01) { + this.pf07AD01 = pf07AD01; + } + + public String getPf07AD02() { + return pf07AD02; + } + + public void setPf07AD02(String pf07AD02) { + this.pf07AD02 = pf07AD02; + } + + public String getPf07AR01() { + return pf07AR01; + } + + public void setPf07AR01(String pf07AR01) { + this.pf07AR01 = pf07AR01; + } + + public String getPf07AR02() { + return pf07AR02; + } + + public void setPf07AR02(String pf07AR02) { + this.pf07AR02 = pf07AR02; + } + + public String getPf07AR03() { + return pf07AR03; + } + + public void setPf07AR03(String pf07AR03) { + this.pf07AR03 = pf07AR03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07Type.java new file mode 100644 index 00000000..9ce3d0ec --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07Type.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF07Type { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF07A") + private List pf07A; + @JacksonXmlProperty(localName = "PF07Z") + private PF07ZType pf07Z; + + public List getPf07A() { + return pf07A; + } + + public void setPf07A(List pf07A) { + this.pf07A = pf07A; + } + + public PF07ZType getPf07Z() { + return pf07Z; + } + + public void setPf07Z(PF07ZType pf07Z) { + this.pf07Z = pf07Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07ZHType.java new file mode 100644 index 00000000..12f41b82 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF07ZHType { + @JacksonXmlProperty(localName = "PF07ZD01") + private String pf07ZD01; + @JacksonXmlProperty(localName = "PF07ZQ01") + private String pf07ZQ01; + @JacksonXmlProperty(localName = "PF07ZR01") + private String pf07ZR01; + + public String getPf07ZD01() { + return pf07ZD01; + } + + public void setPf07ZD01(String pf07ZD01) { + this.pf07ZD01 = pf07ZD01; + } + + public String getPf07ZQ01() { + return pf07ZQ01; + } + + public void setPf07ZQ01(String pf07ZQ01) { + this.pf07ZQ01 = pf07ZQ01; + } + + public String getPf07ZR01() { + return pf07ZR01; + } + + public void setPf07ZR01(String pf07ZR01) { + this.pf07ZR01 = pf07ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07ZType.java new file mode 100644 index 00000000..49e59e6a --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF07ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF07ZType { + @JacksonXmlProperty(localName = "PF07ZS01") + private String pf07ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF07ZH") + private List pf07ZH; + + public String getPf07ZS01() { + return pf07ZS01; + } + + public void setPf07ZS01(String pf07ZS01) { + this.pf07ZS01 = pf07ZS01; + } + + public List getPf07ZH() { + return pf07ZH; + } + + public void setPf07ZH(List pf07ZH) { + this.pf07ZH = pf07ZH; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08AType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08AType.java new file mode 100644 index 00000000..988927fc --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08AType.java @@ -0,0 +1,47 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF08AType { + @JacksonXmlProperty(localName = "PF08AQ01") + private String pf08AQ01; + @JacksonXmlProperty(localName = "PF08AQ02") + private String pf08AQ02; + @JacksonXmlProperty(localName = "PF08AR01") + private String pf08AR01; + @JacksonXmlProperty(localName = "PF08AR02") + private String pf08AR02; + + public String getPf08AQ01() { + return pf08AQ01; + } + + public void setPf08AQ01(String pf08AQ01) { + this.pf08AQ01 = pf08AQ01; + } + + public String getPf08AQ02() { + return pf08AQ02; + } + + public void setPf08AQ02(String pf08AQ02) { + this.pf08AQ02 = pf08AQ02; + } + + public String getPf08AR01() { + return pf08AR01; + } + + public void setPf08AR01(String pf08AR01) { + this.pf08AR01 = pf08AR01; + } + + public String getPf08AR02() { + return pf08AR02; + } + + public void setPf08AR02(String pf08AR02) { + this.pf08AR02 = pf08AR02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08Type.java new file mode 100644 index 00000000..ccf70c21 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08Type.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF08Type { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF08A") + private List pf08A; + @JacksonXmlProperty(localName = "PF08Z") + private PF08ZType pf08Z; + + public List getPf08A() { + return pf08A; + } + + public void setPf08A(List pf08A) { + this.pf08A = pf08A; + } + + public PF08ZType getPf08Z() { + return pf08Z; + } + + public void setPf08Z(PF08ZType pf08Z) { + this.pf08Z = pf08Z; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08ZHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08ZHType.java new file mode 100644 index 00000000..3bb20c99 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08ZHType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PF08ZHType { + @JacksonXmlProperty(localName = "PF08ZD01") + private String pf08ZD01; + @JacksonXmlProperty(localName = "PF08ZQ01") + private String pf08ZQ01; + @JacksonXmlProperty(localName = "PF08ZR01") + private String pf08ZR01; + + public String getPf08ZD01() { + return pf08ZD01; + } + + public void setPf08ZD01(String pf08ZD01) { + this.pf08ZD01 = pf08ZD01; + } + + public String getPf08ZQ01() { + return pf08ZQ01; + } + + public void setPf08ZQ01(String pf08ZQ01) { + this.pf08ZQ01 = pf08ZQ01; + } + + public String getPf08ZR01() { + return pf08ZR01; + } + + public void setPf08ZR01(String pf08ZR01) { + this.pf08ZR01 = pf08ZR01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08ZType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08ZType.java new file mode 100644 index 00000000..9d3f4b70 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PF08ZType.java @@ -0,0 +1,31 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PF08ZType { + @JacksonXmlProperty(localName = "PF08ZS01") + private String pf08ZS01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF08ZH") + private List pf08ZH; + + public List getPf08ZH() { + return pf08ZH; + } + + public void setPf08ZH(List pf08ZH) { + this.pf08ZH = pf08ZH; + } + + public String getPf08ZS01() { + return pf08ZS01; + } + + public void setPf08ZS01(String pf08ZS01) { + this.pf08ZS01 = pf08ZS01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PG010HType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PG010HType.java new file mode 100644 index 00000000..2160cc1e --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PG010HType.java @@ -0,0 +1,37 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PG010HType { + @JacksonXmlProperty(localName = "PG010D03") + private String pg010D03; + @JacksonXmlProperty(localName = "PG010Q01") + private String pg010Q01; + @JacksonXmlProperty(localName = "PG010R01") + private String pg010R01; + + public String getPg010D03() { + return pg010D03; + } + + public void setPg010D03(String pg010D03) { + this.pg010D03 = pg010D03; + } + + public String getPg010Q01() { + return pg010Q01; + } + + public void setPg010Q01(String pg010Q01) { + this.pg010Q01 = pg010Q01; + } + + public String getPg010R01() { + return pg010R01; + } + + public void setPg010R01(String pg010R01) { + this.pg010R01 = pg010R01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PG01Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PG01Type.java new file mode 100644 index 00000000..2622b6dc --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PG01Type.java @@ -0,0 +1,51 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PG01Type { + @JacksonXmlProperty(localName = "PG010D01") + private String pg010D01; + @JacksonXmlProperty(localName = "PG010D02") + private String pg010D02; + @JacksonXmlProperty(localName = "PG010S01") + private String pg010S01; + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PG010H") + private List pg010H; + + public String getPg010D01() { + return pg010D01; + } + + public void setPg010D01(String pg010D01) { + this.pg010D01 = pg010D01; + } + + public String getPg010D02() { + return pg010D02; + } + + public void setPg010D02(String pg010D02) { + this.pg010D02 = pg010D02; + } + + public String getPg010S01() { + return pg010S01; + } + + public void setPg010S01(String pg010S01) { + this.pg010S01 = pg010S01; + } + + public List getPg010H() { + return pg010H; + } + + public void setPg010H(List pg010H) { + this.pg010H = pg010H; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PH01Type.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PH01Type.java new file mode 100644 index 00000000..cd238796 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PH01Type.java @@ -0,0 +1,47 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PH01Type { + @JacksonXmlProperty(localName = "PH010R01") + private String ph010R01; + @JacksonXmlProperty(localName = "PH010D01") + private String ph010D01; + @JacksonXmlProperty(localName = "PH010Q02") + private String ph010Q02; + @JacksonXmlProperty(localName = "PH010Q03") + private String ph010Q03; + + public String getPh010R01() { + return ph010R01; + } + + public void setPh010R01(String ph010R01) { + this.ph010R01 = ph010R01; + } + + public String getPh010D01() { + return ph010D01; + } + + public void setPh010D01(String ph010D01) { + this.ph010D01 = ph010D01; + } + + public String getPh010Q02() { + return ph010Q02; + } + + public void setPh010Q02(String ph010Q02) { + this.ph010Q02 = ph010Q02; + } + + public String getPh010Q03() { + return ph010Q03; + } + + public void setPh010Q03(String ph010Q03) { + this.ph010Q03 = ph010Q03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PHFType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PHFType.java new file mode 100644 index 00000000..e9c12200 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PHFType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PHFType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF05") + private List pf05; + + public List getPf05() { + return pf05; + } + + public void setPf05(List pf05) { + this.pf05 = pf05; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PIMType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PIMType.java new file mode 100644 index 00000000..3f9eede5 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PIMType.java @@ -0,0 +1,17 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PIMType { + @JacksonXmlProperty(localName = "PB01") + private PB01Type pb01; + + public PB01Type getPb01() { + return pb01; + } + + public void setPb01(PB01Type pb01) { + this.pb01 = pb01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PMMType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PMMType.java new file mode 100644 index 00000000..d2b1ba6a --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PMMType.java @@ -0,0 +1,17 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PMMType { + @JacksonXmlProperty(localName = "PB02") + private PB02Type pb02; + + public PB02Type getPb02() { + return pb02; + } + + public void setPb02(PB02Type pb02) { + this.pb02 = pb02; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PNDType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PNDType.java new file mode 100644 index 00000000..06edf587 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PNDType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PNDType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PE01") + private List pe01; + + public List getPe01() { + return pe01; + } + + public void setPe01(List pe01) { + this.pe01 = pe01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PNOType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PNOType.java new file mode 100644 index 00000000..038b0657 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PNOType.java @@ -0,0 +1,17 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PNOType { + @JacksonXmlProperty(localName = "PC03") + private PC03Type pc03; + + public PC03Type getPc03() { + return pc03; + } + + public void setPc03(PC03Type pc03) { + this.pc03 = pc03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POMType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POMType.java new file mode 100644 index 00000000..4ff5d4dd --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POMType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class POMType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PB04") + private List pb04; + + public List getPb04() { + return pb04; + } + + public void setPb04(List pb04) { + this.pb04 = pb04; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POQType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POQType.java new file mode 100644 index 00000000..c0d3c4c1 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POQType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class POQType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PH01") + private List ph01; + + public List getPh01() { + return ph01; + } + + public void setPh01(List ph01) { + this.ph01 = ph01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POSType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POSType.java new file mode 100644 index 00000000..ad242465 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POSType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class POSType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PG01") + private List pg01; + + public List getPg01() { + return pg01; + } + + public void setPg01(List pg01) { + this.pg01 = pg01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POTType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POTType.java new file mode 100644 index 00000000..67d4a773 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/POTType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class POTType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF01") + private List pf01; + + public List getPf01() { + return pf01; + } + + public void setPf01(List pf01) { + this.pf01 = pf01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PPOType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PPOType.java new file mode 100644 index 00000000..23ca50ed --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PPOType.java @@ -0,0 +1,17 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PPOType { + @JacksonXmlProperty(localName = "PC04") + private PC04Type pc04; + + public PC04Type getPc04() { + return pc04; + } + + public void setPc04(PC04Type pc04) { + this.pc04 = pc04; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PPQType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PPQType.java new file mode 100644 index 00000000..930e0b22 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PPQType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PPQType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PF07") + private List pf07; + + public List getPf07() { + return pf07; + } + + public void setPf07(List pf07) { + this.pf07 = pf07; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PQOType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PQOType.java new file mode 100644 index 00000000..94d465f4 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PQOType.java @@ -0,0 +1,17 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PQOType { + @JacksonXmlProperty(localName = "PC05") + private PC05Type pc05; + + public PC05Type getPc05() { + return pc05; + } + + public void setPc05(PC05Type pc05) { + this.pc05 = pc05; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PRHType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PRHType.java new file mode 100644 index 00000000..6629b9a3 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PRHType.java @@ -0,0 +1,17 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PRHType { + @JacksonXmlProperty(localName = "PA01") + private PA01Type pa01; + + public PA01Type getPa01() { + return pa01; + } + + public void setPa01(PA01Type pa01) { + this.pa01 = pa01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PRMType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PRMType.java new file mode 100644 index 00000000..5eaa30bc --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PRMType.java @@ -0,0 +1,21 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +import java.util.List; + +public class PRMType { + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PB03") + private List pb03; + + public List getPb03() { + return pb03; + } + + public void setPb03(List pb03) { + this.pb03 = pb03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PSMType.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PSMType.java new file mode 100644 index 00000000..185bdc8f --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/model/person2/PSMType.java @@ -0,0 +1,17 @@ + +package io.sc.creditreport.core.model.person2; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; + +public class PSMType { + @JacksonXmlProperty(localName = "PC01") + private PC01Type pc01; + + public PC01Type getPc01() { + return pc01; + } + + public void setPc01(PC01Type pc01) { + this.pc01 = pc01; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/person/Document.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/person/Document.java new file mode 100644 index 00000000..64453975 --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/person/Document.java @@ -0,0 +1,253 @@ +package io.sc.creditreport.core.model.person; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +@JacksonXmlRootElement(localName ="Document") +public class Document { + //报告头 + @JacksonXmlProperty(localName = "PRH") + private PRH prh; + + //身份信息 + @JacksonXmlProperty(localName = "PIM") + private PIM pim; + + //婚姻信息 + @JacksonXmlProperty(localName = "PMM") + private PMM pmm; + + //居住信息 + @JacksonXmlProperty(localName = "PRM") + private PRM prm; + + //职业信息 + @JacksonXmlProperty(localName = "POM") + private POM pom; + + //评分信息 + @JacksonXmlProperty(localName = "PSM") + private PSM psm; + + //信贷交易信息概要 + @JacksonXmlProperty(localName = "PCO") + private PCO pco; + + //非信贷交易信息概要 + @JacksonXmlProperty(localName = "PNO") + private PNO pno; + + //公共信息概要 + @JacksonXmlProperty(localName = "PPO") + private PPO ppo; + + //查询记录概要 + @JacksonXmlProperty(localName = "PQO") + private PQO pqo; + + //授信协议信息 + @JacksonXmlProperty(localName = "PCA") + private PCA pca; + + //借贷账户信息 + @JacksonXmlProperty(localName = "PDA") + private PDA pda; + + //相关还款责任信息 + @JacksonXmlProperty(localName = "PCR") + private PCR pcr; + + //后付费业务信息 + @JacksonXmlProperty(localName = "PND") + private PND pnd; + + //欠税记录 + @JacksonXmlProperty(localName = "POT") + private POT pot; + + //民事判决记录 + @JacksonXmlProperty(localName = "PCJ") + private PCJ pcj; + + //强制执行记录 + @JacksonXmlProperty(localName = "PCE") + private PCE pce; + + //行政处罚记录 + @JacksonXmlProperty(localName = "PAP") + private PAP pap; + + //住房公积金参缴记录 + @JacksonXmlProperty(localName = "PHF") + private PHF phf; + + //低保救助记录 + @JacksonXmlProperty(localName = "PBS") + private PBS pbs; + + //执业资格记录 + @JacksonXmlProperty(localName = "PPQ") + private PPQ ppq; + + //行政奖励记录 + @JacksonXmlProperty(localName = "PAH") + private PAH pah; + + //其他标注及声明信息 + @JacksonXmlProperty(localName = "POS") + private POS pos; + + //查询记录 + @JacksonXmlProperty(localName = "POQ") + private POQ poq; + + public PRH getPrh(){ + return this.prh; + } + public void setPrh(PRH prh){ + this.prh =prh; + } + public PIM getPim(){ + return this.pim; + } + public void setPim(PIM pim){ + this.pim =pim; + } + public PMM getPmm(){ + return this.pmm; + } + public void setPmm(PMM pmm){ + this.pmm =pmm; + } + public PRM getPrm(){ + return this.prm; + } + public void setPrm(PRM prm){ + this.prm =prm; + } + public POM getPom(){ + return this.pom; + } + public void setPom(POM pom){ + this.pom =pom; + } + public PSM getPsm(){ + return this.psm; + } + public void setPsm(PSM psm){ + this.psm =psm; + } + public PCO getPco(){ + return this.pco; + } + public void setPco(PCO pco){ + this.pco =pco; + } + public PNO getPno(){ + return this.pno; + } + public void setPno(PNO pno){ + this.pno =pno; + } + public PPO getPpo(){ + return this.ppo; + } + public void setPpo(PPO ppo){ + this.ppo =ppo; + } + public PQO getPqo(){ + return this.pqo; + } + public void setPqo(PQO pqo){ + this.pqo =pqo; + } + public PCA getPca(){ + return this.pca; + } + public void setPca(PCA pca){ + this.pca =pca; + } + public PDA getPda(){ + return this.pda; + } + public void setPda(PDA pda){ + this.pda =pda; + } + public PCR getPcr(){ + return this.pcr; + } + public void setPcr(PCR pcr){ + this.pcr =pcr; + } + public PND getPnd(){ + return this.pnd; + } + public void setPnd(PND pnd){ + this.pnd =pnd; + } + public POT getPot(){ + return this.pot; + } + public void setPot(POT pot){ + this.pot =pot; + } + public PCJ getPcj(){ + return this.pcj; + } + public void setPcj(PCJ pcj){ + this.pcj =pcj; + } + public PCE getPce(){ + return this.pce; + } + public void setPce(PCE pce){ + this.pce =pce; + } + public PAP getPap(){ + return this.pap; + } + public void setPap(PAP pap){ + this.pap =pap; + } + public PHF getPhf(){ + return this.phf; + } + public void setPhf(PHF phf){ + this.phf =phf; + } + public PBS getPbs(){ + return this.pbs; + } + public void setPbs(PBS pbs){ + this.pbs =pbs; + } + public PPQ getPpq(){ + return this.ppq; + } + public void setPpq(PPQ ppq){ + this.ppq =ppq; + } + public PAH getPah(){ + return this.pah; + } + public void setPah(PAH pah){ + this.pah =pah; + } + public POS getPos(){ + return this.pos; + } + public void setPos(POS pos){ + this.pos =pos; + } + public POQ getPoq(){ + return this.poq; + } + public void setPoq(POQ poq){ + this.poq =poq; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/person/PH01.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/person/PH01.java new file mode 100644 index 00000000..aee58ded --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/person/PH01.java @@ -0,0 +1,52 @@ +package io.sc.creditreport.core.model.person; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class PH01 { + //查询日期 + @JacksonXmlProperty(localName = "PH010R01") + private Date ph010r01; + + //查询机构类型 + @JacksonXmlProperty(localName = "PH010D01") + private String ph010d01; + + //查询机构 + @JacksonXmlProperty(localName = "PH010Q02") + private String ph010q02; + + //查询原因 + @JacksonXmlProperty(localName = "PH010Q03") + private String ph010q03; + + public Date getPh010r01(){ + return this.ph010r01; + } + public void setPh010r01(Date ph010r01){ + this.ph010r01 =ph010r01; + } + public String getPh010d01(){ + return this.ph010d01; + } + public void setPh010d01(String ph010d01){ + this.ph010d01 =ph010d01; + } + public String getPh010q02(){ + return this.ph010q02; + } + public void setPh010q02(String ph010q02){ + this.ph010q02 =ph010q02; + } + public String getPh010q03(){ + return this.ph010q03; + } + public void setPh010q03(String ph010q03){ + this.ph010q03 =ph010q03; + } +} diff --git a/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/person/POQ.java b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/person/POQ.java new file mode 100644 index 00000000..f8d5f2ba --- /dev/null +++ b/io.sc.creditreport.core/src/main/java/io/sc/creditreport/core/person/POQ.java @@ -0,0 +1,23 @@ +package io.sc.creditreport.core.model.person; + +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class POQ { + //查询记录信息单元 + @JacksonXmlElementWrapper(useWrapping = false) + @JacksonXmlProperty(localName = "PH01") + private List ph01 =new ArrayList<>(); + + public List getPh01(){ + return this.ph01; + } + public void setPh01(List ph01){ + this.ph01 =ph01; + } +} diff --git a/io.sc.creditreport.core/src/main/resources/META-INF/platform/plugins/messages.json b/io.sc.creditreport.core/src/main/resources/META-INF/platform/plugins/messages.json new file mode 100644 index 00000000..1abb850c --- /dev/null +++ b/io.sc.creditreport.core/src/main/resources/META-INF/platform/plugins/messages.json @@ -0,0 +1,16 @@ +/* + * 国际化消息源插件配置 + * 功能: 该插件配置为框架提供国际化消息资源 + * 使用说明: + * includes: 包含国际化消息资源列表 + * excludes: 排除国际化消息资源列表 + * 注意: 当一个包名同时存在于 includes 和 excludes 中, excludes 优先, 即该包不会被自动扫描 + */ + + +{ + "includes":[ + "io/sc/creditreport/core/i18n/messages" + ], + "excludes":[] +} diff --git a/io.sc.creditreport.core/src/main/resources/META-INF/platform/plugins/rule-engine-dictionary.json b/io.sc.creditreport.core/src/main/resources/META-INF/platform/plugins/rule-engine-dictionary.json new file mode 100644 index 00000000..660719ab --- /dev/null +++ b/io.sc.creditreport.core/src/main/resources/META-INF/platform/plugins/rule-engine-dictionary.json @@ -0,0 +1,3 @@ +[ + "io.sc.creditreport.core.model.PersonCreditReport" +] \ No newline at end of file diff --git a/io.sc.creditreport.core/src/main/resources/io/sc/creditreport/core/i18n/messages.properties b/io.sc.creditreport.core/src/main/resources/io/sc/creditreport/core/i18n/messages.properties new file mode 100644 index 00000000..49195947 --- /dev/null +++ b/io.sc.creditreport.core/src/main/resources/io/sc/creditreport/core/i18n/messages.properties @@ -0,0 +1,478 @@ +io.sc.creditreport.core.model.person.PersonCreditReport=\u4E2A\u4EBA\u5F81\u4FE1\u62A5\u544A +io.sc.creditreport.core.model.person.PRHType=\u62A5\u544A\u5934 +io.sc.creditreport.core.model.person.PA01Type=\u62A5\u544A\u5934\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PA01AType=\u62A5\u544A\u6807\u8BC6\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01AI01Type=\u62A5\u544A\u7F16\u53F7 +io.sc.creditreport.core.model.person.PA01AR01Type=\u62A5\u544A\u65F6\u95F4 +io.sc.creditreport.core.model.person.PA01BType=\u672C\u6B21\u67E5\u8BE2\u8BF7\u6C42\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01BQ01Type=\u88AB\u67E5\u8BE2\u8005\u59D3\u540D +io.sc.creditreport.core.model.person.PA01BD01Type=\u88AB\u67E5\u8BE2\u8005\u8BC1\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PA01BI01Type=\u88AB\u67E5\u8BE2\u8005\u8BC1\u4EF6\u53F7\u7801 +io.sc.creditreport.core.model.person.PA01BI02Type=\u67E5\u8BE2\u673A\u6784\u4EE3\u7801 +io.sc.creditreport.core.model.person.PA01BD02Type=\u67E5\u8BE2\u539F\u56E0\u4EE3\u7801 +io.sc.creditreport.core.model.person.PA01CType=\u5176\u4ED6\u8EAB\u4EFD\u6807\u8BC6\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01CS01Type=\u8EAB\u4EFD\u6807\u8BC6\u4E2A\u6570 +io.sc.creditreport.core.model.person.PA01CHType=\u8EAB\u4EFD\u4FE1\u606F +io.sc.creditreport.core.model.person.PA01CD01Type=\u8BC1\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PA01CI01Type=\u8BC1\u4EF6\u53F7\u7801 +io.sc.creditreport.core.model.person.PA01DType=\u9632\u6B3A\u8BC8\u8B66\u793A\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01DQ01Type=\u9632\u6B3A\u8BC8\u8B66\u793A\u6807\u5FD7 +io.sc.creditreport.core.model.person.PA01DQ02Type=\u9632\u6B3A\u8BC8\u8B66\u793A\u8054\u7CFB\u7535\u8BDD +io.sc.creditreport.core.model.person.PA01DR01Type=\u9632\u6B3A\u8BC8\u8B66\u793A\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PA01DR02Type=\u9632\u6B3A\u8BC8\u8B66\u793A\u622A\u6B62\u65E5\u671F +io.sc.creditreport.core.model.person.PA01EType=\u5F02\u8BAE\u63D0\u793A\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01ES01Type=\u5F02\u8BAE\u6807\u6CE8\u6570\u76EE +io.sc.creditreport.core.model.person.PIMType=\u8EAB\u4EFD\u4FE1\u606F +io.sc.creditreport.core.model.person.PB01Type=\u8EAB\u4EFD\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB01AType=\u57FA\u672C\u6982\u51B5\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PB01AD01Type=\u6027\u522B +io.sc.creditreport.core.model.person.PB01AR01Type=\u51FA\u751F\u65E5\u671F +io.sc.creditreport.core.model.person.PB01AD02Type=\u5B66\u5386 +io.sc.creditreport.core.model.person.PB01AD03Type=\u5B66\u4F4D +io.sc.creditreport.core.model.person.PB01AD04Type=\u5C31\u4E1A\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB01AQ01Type=\u7535\u5B50\u90AE\u7BB1 +io.sc.creditreport.core.model.person.PB01AQ02Type=\u901A\u8BAF\u5730\u5740 +io.sc.creditreport.core.model.person.PB01AD05Type=\u56FD\u7C4D +io.sc.creditreport.core.model.person.PB01AQ03Type=\u6237\u7C4D\u5730\u5740 +io.sc.creditreport.core.model.person.PB01BType=\u624B\u673A\u53F7\u7801\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PB01BS01Type=\u624B\u673A\u53F7\u7801\u4E2A\u6570 +io.sc.creditreport.core.model.person.PB01BHType=\u624B\u673A\u53F7\u7801\u4FE1\u606F +io.sc.creditreport.core.model.person.PB01BQ01Type=\u624B\u673A\u53F7\u7801 +io.sc.creditreport.core.model.person.PB01BR01Type=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PMMType=\u5A5A\u59FB\u4FE1\u606F +io.sc.creditreport.core.model.person.PB02Type=\u5A5A\u59FB\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB020D01Type=\u5A5A\u59FB\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB020Q01Type=\u914D\u5076\u59D3\u540D +io.sc.creditreport.core.model.person.PB020D02Type=\u914D\u5076\u8BC1\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PB020I01Type=\u914D\u5076\u8BC1\u4EF6\u53F7\u7801 +io.sc.creditreport.core.model.person.PB020Q02Type=\u914D\u5076\u5DE5\u4F5C\u5355\u4F4D +io.sc.creditreport.core.model.person.PB020Q03Type=\u914D\u5076\u8054\u7CFB\u7535\u8BDD +io.sc.creditreport.core.model.person.PRMType=\u5C45\u4F4F\u4FE1\u606F +io.sc.creditreport.core.model.person.PB03Type=\u5C45\u4F4F\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB030D01Type=\u5C45\u4F4F\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB030Q01Type=\u5C45\u4F4F\u5730\u5740 +io.sc.creditreport.core.model.person.PB030Q02Type=\u4F4F\u5B85\u7535\u8BDD +io.sc.creditreport.core.model.person.PB030R01Type=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.POMType=\u804C\u4E1A\u4FE1\u606F +io.sc.creditreport.core.model.person.PB04Type=\u804C\u4E1A\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB040D01Type=\u5C31\u4E1A\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB040Q01Type=\u5DE5\u4F5C\u5355\u4F4D +io.sc.creditreport.core.model.person.PB040D02Type=\u5355\u4F4D\u6027\u8D28 +io.sc.creditreport.core.model.person.PB040D03Type=\u884C\u4E1A +io.sc.creditreport.core.model.person.PB040Q02Type=\u5355\u4F4D\u5730\u5740 +io.sc.creditreport.core.model.person.PB040Q03Type=\u5355\u4F4D\u7535\u8BDD +io.sc.creditreport.core.model.person.PB040D04Type=\u804C\u4E1A +io.sc.creditreport.core.model.person.PB040D05Type=\u804C\u52A1 +io.sc.creditreport.core.model.person.PB040D06Type=\u804C\u79F0 +io.sc.creditreport.core.model.person.PB040R01Type=\u8FDB\u5165\u672C\u5355\u4F4D\u5E74\u4EFD +io.sc.creditreport.core.model.person.PB040R02Type=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PSMType=\u8BC4\u5206\u4FE1\u606F +io.sc.creditreport.core.model.person.PC01Type=\u8BC4\u5206\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC010Q01Type=\u6570\u5B57\u89E3\u8BFB +io.sc.creditreport.core.model.person.PC010Q02Type=\u76F8\u5BF9\u4F4D\u7F6E +io.sc.creditreport.core.model.person.PC010S01Type=\u5206\u6570\u8BF4\u660E\u6761\u6570 +io.sc.creditreport.core.model.person.PC010D01Type=\u5206\u6570\u8BF4\u660E +io.sc.creditreport.core.model.person.PCOType=\u4FE1\u8D37\u4EA4\u6613\u4FE1\u606F\u6982\u8981 +io.sc.creditreport.core.model.person.PC02Type=\u4FE1\u8D37\u4EA4\u6613\u4FE1\u606F\u6982\u8981\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC02AType=\u4FE1\u8D37\u4EA4\u6613\u63D0\u793A\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02AS01Type=\u8D26\u6237\u6570\u5408\u8BA1 +io.sc.creditreport.core.model.person.PC02AS02Type=\u4E1A\u52A1\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC02AHType=\u4FE1\u8D37\u4EA4\u6613\u63D0\u793A\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02AD01Type=\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02AD02Type=\u4E1A\u52A1\u5927\u7C7B +io.sc.creditreport.core.model.person.PC02AS03Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02AR01Type=\u9996\u7B14\u4E1A\u52A1\u53D1\u653E\u6708\u4EFD +io.sc.creditreport.core.model.person.PC02BType=\u88AB\u8FFD\u507F\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02BS01Type=\u8D26\u6237\u6570\u5408\u8BA1 +io.sc.creditreport.core.model.person.PC02BJ01Type=\u4F59\u989D\u5408\u8BA1 +io.sc.creditreport.core.model.person.PC02BS02Type=\u4E1A\u52A1\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC02BHType=\u88AB\u8FFD\u507F\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02BD01Type=\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02BS03Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02BJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02CType=\u5446\u8D26\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02CS01Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02CJ01Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02DType=\u903E\u671F\uFF08\u900F\u652F\uFF09\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02DS01Type=\u8D26\u6237\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC02DHType=\u903E\u671F\uFF08\u900F\u652F\uFF09\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02DD01Type=\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02DS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02DS03Type=\u6708\u4EFD\u6570 +io.sc.creditreport.core.model.person.PC02DJ01Type=\u5355\u6708\u6700\u9AD8\u903E\u671F\uFF08\u900F\u652F\uFF09\u603B\u989D +io.sc.creditreport.core.model.person.PC02DS04Type=\u6700\u957F\u903E\u671F\uFF08\u900F\u652F\uFF09\u6708\u6570 +io.sc.creditreport.core.model.person.PC02EType=\u975E\u5FAA\u73AF\u8D37\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02ES01Type=\u7BA1\u7406\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02ES02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02EJ01Type=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02EJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02EJ03Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PC02FType=\u5FAA\u73AF\u989D\u5EA6\u4E0B\u5206\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02FS01Type=\u7BA1\u7406\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02FS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02FJ01Type=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02FJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02FJ03Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PC02GType=\u5FAA\u73AF\u8D37\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02GS01Type=\u7BA1\u7406\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02GS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02GJ01Type=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02GJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02GJ03Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PC02HType=\u8D37\u8BB0\u5361\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02HS01Type=\u53D1\u5361\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02HS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02HJ01Type=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02HJ02Type=\u5355\u5BB6\u884C\u6700\u9AD8\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02HJ03Type=\u5355\u5BB6\u884C\u6700\u4F4E\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02HJ04Type=\u5DF2\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PC02HJ05Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u4F7F\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PC02IType=\u51C6\u8D37\u8BB0\u5361\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02IS01Type=\u53D1\u5361\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02IS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02IJ01Type=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02IJ02Type=\u5355\u5BB6\u884C\u6700\u9AD8\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02IJ03Type=\u5355\u5BB6\u884C\u6700\u4F4E\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02IJ04Type=\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PC02IJ05Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PC02KType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02KS01Type=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4E2A\u6570 +io.sc.creditreport.core.model.person.PC02KHType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02KD01Type=\u501F\u6B3E\u4EBA\u8EAB\u4EFD\u7C7B\u522B +io.sc.creditreport.core.model.person.PC02KD02Type=\u8FD8\u6B3E\u8D23\u4EFB\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02KS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02KJ01Type=\u8FD8\u6B3E\u8D23\u4EFB\u91D1\u989D +io.sc.creditreport.core.model.person.PC02KJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PNOType=\u975E\u4FE1\u8D37\u4EA4\u6613\u4FE1\u606F\u6982\u8981 +io.sc.creditreport.core.model.person.PC03Type=\u540E\u4ED8\u8D39\u4E1A\u52A1\u6B20\u8D39\u4FE1\u606F\u6C47\u603B\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC030S01Type=\u540E\u4ED8\u8D39\u4E1A\u52A1\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC030HType=\u540E\u4ED8\u8D39\u4E1A\u52A1\u6B20\u8D39\u4FE1\u606F\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC030D01Type=\u540E\u4ED8\u8D39\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PC030S02Type=\u6B20\u8D39\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC030J01Type=\u6B20\u8D39\u91D1\u989D +io.sc.creditreport.core.model.person.PPOType=\u516C\u5171\u4FE1\u606F\u6982\u8981 +io.sc.creditreport.core.model.person.PC04Type=\u516C\u5171\u4FE1\u606F\u6982\u8981\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC040S01Type=\u516C\u5171\u4FE1\u606F\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC040HType=\u516C\u5171\u4FE1\u606F\u6982\u8981\u4FE1\u606F +io.sc.creditreport.core.model.person.PC040D01Type=\u516C\u5171\u4FE1\u606F\u7C7B\u578B +io.sc.creditreport.core.model.person.PC040S02Type=\u8BB0\u5F55\u6570 +io.sc.creditreport.core.model.person.PC040J01Type=\u6D89\u53CA\u91D1\u989D +io.sc.creditreport.core.model.person.PQOType=\u67E5\u8BE2\u8BB0\u5F55\u6982\u8981 +io.sc.creditreport.core.model.person.PC05Type=\u67E5\u8BE2\u8BB0\u5F55\u6982\u8981\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC05AType=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC05AR01Type=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u65E5\u671F +io.sc.creditreport.core.model.person.PC05AD01Type=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u673A\u6784\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PC05AI01Type=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u673A\u6784\u4EE3\u7801 +io.sc.creditreport.core.model.person.PC05AQ01Type=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u539F\u56E0 +io.sc.creditreport.core.model.person.PC05BType=\u67E5\u8BE2\u8BB0\u5F55\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC05BS01Type=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u673A\u6784\u6570\uFF08\u8D37\u6B3E\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS02Type=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u673A\u6784\u6570\uFF08\u4FE1\u7528\u5361\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS03Type=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u8D37\u6B3E\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS04Type=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u4FE1\u7528\u5361\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS05Type=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u672C\u4EBA\u67E5\u8BE2\uFF09 +io.sc.creditreport.core.model.person.PC05BS06Type=\u6700\u8FD1 2 \u5E74\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u8D37\u540E\u7BA1\u7406\uFF09 +io.sc.creditreport.core.model.person.PC05BS07Type=\u6700\u8FD1 2 \u5E74\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u62C5\u4FDD\u8D44\u683C\u5BA1\u67E5\uFF09 +io.sc.creditreport.core.model.person.PC05BS08Type=\u6700\u8FD1 2 \u5E74\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u7279\u7EA6\u5546\u6237\u5B9E\u540D\u5BA1\u67E5\uFF09 +io.sc.creditreport.core.model.person.PCAType=\u6388\u4FE1\u534F\u8BAE\u4FE1\u606F +io.sc.creditreport.core.model.person.PD02Type=\u6388\u4FE1\u534F\u8BAE\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PD02AType=\u57FA\u672C\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD02AI01Type=\u6388\u4FE1\u534F\u8BAE\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD02AD01Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PD02AI02Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784 +io.sc.creditreport.core.model.person.PD02AI03Type=\u6388\u4FE1\u534F\u8BAE\u6807\u8BC6 +io.sc.creditreport.core.model.person.PD02AD02Type=\u6388\u4FE1\u989D\u5EA6\u7528\u9014 +io.sc.creditreport.core.model.person.PD02AJ01Type=\u6388\u4FE1\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD02AD03Type=\u5E01\u79CD +io.sc.creditreport.core.model.person.PD02AR01Type=\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PD02AR02Type=\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD02AD04Type=\u6388\u4FE1\u534F\u8BAE\u72B6\u6001 +io.sc.creditreport.core.model.person.PD02AJ04Type=\u5DF2\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD02AJ03Type=\u6388\u4FE1\u9650\u989D +io.sc.creditreport.core.model.person.PD02AI04Type=\u6388\u4FE1\u9650\u989D\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD02ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD02ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD02ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD02ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PD02ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PD02ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PDAType=\u501F\u8D37\u8D26\u6237\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01Type=\u501F\u8D37\u8D26\u6237\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PD01AType=\u57FA\u672C\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01AI01Type=\u8D26\u6237\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD01AD01Type=\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01AD02Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01AI02Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u4EE3\u7801 +io.sc.creditreport.core.model.person.PD01AI03Type=\u8D26\u6237\u6807\u8BC6 +io.sc.creditreport.core.model.person.PD01AI04Type=\u6388\u4FE1\u534F\u8BAE\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD01AD03Type=\u4E1A\u52A1\u79CD\u7C7B +io.sc.creditreport.core.model.person.PD01AR01Type=\u5F00\u7ACB\u65E5\u671F +io.sc.creditreport.core.model.person.PD01AD04Type=\u5E01\u79CD +io.sc.creditreport.core.model.person.PD01AJ01Type=\u501F\u6B3E\u91D1\u989D +io.sc.creditreport.core.model.person.PD01AJ02Type=\u8D26\u6237\u6388\u4FE1\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01AJ03Type=\u5171\u4EAB\u6388\u4FE1\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01AR02Type=\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD01AD05Type=\u8FD8\u6B3E\u65B9\u5F0F +io.sc.creditreport.core.model.person.PD01AD06Type=\u8FD8\u6B3E\u9891\u7387 +io.sc.creditreport.core.model.person.PD01AS01Type=\u8FD8\u6B3E\u671F\u6570 +io.sc.creditreport.core.model.person.PD01AD07Type=\u62C5\u4FDD\u65B9\u5F0F +io.sc.creditreport.core.model.person.PD01AD08Type=\u8D37\u6B3E\u53D1\u653E\u5F62\u5F0F +io.sc.creditreport.core.model.person.PD01AD09Type=\u5171\u540C\u501F\u6B3E\u6807\u5FD7 +io.sc.creditreport.core.model.person.PD01AD10Type=\u503A\u6743\u8F6C\u79FB\u65F6\u7684\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01BType=\u6700\u65B0\u8868\u73B0\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01BD01Type=\u8D26\u6237\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01BR01Type=\u5173\u95ED\u65E5\u671F +io.sc.creditreport.core.model.person.PD01BR04Type=\u8F6C\u51FA\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01BJ01Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PD01BR02Type=\u6700\u8FD1\u4E00\u6B21\u8FD8\u6B3E\u65E5\u671F +io.sc.creditreport.core.model.person.PD01BJ02Type=\u6700\u8FD1\u4E00\u6B21\u8FD8\u6B3E\u91D1\u989D +io.sc.creditreport.core.model.person.PD01BD03Type=\u4E94\u7EA7\u5206\u7C7B +io.sc.creditreport.core.model.person.PD01BD04Type=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01BR03Type=\u4FE1\u606F\u62A5\u544A\u65E5\u671F +io.sc.creditreport.core.model.person.PD01CType=\u6700\u8FD1\u4E00\u6B21\u6708\u5EA6\u8868\u73B0\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01CR01Type=\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01CD01Type=\u8D26\u6237\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01CJ01Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CJ02Type=\u5DF2\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01CJ03Type=\u672A\u51FA\u5355\u7684\u5927\u989D\u4E13\u9879\u5206\u671F\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CD02Type=\u4E94\u7EA7\u5206\u7C7B +io.sc.creditreport.core.model.person.PD01CS01Type=\u5269\u4F59\u8FD8\u6B3E\u671F\u6570 +io.sc.creditreport.core.model.person.PD01CR02Type=\u7ED3\u7B97/\u5E94\u8FD8\u6B3E\u65E5 +io.sc.creditreport.core.model.person.PD01CJ04Type=\u672C\u6708\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PD01CJ05Type=\u672C\u6708\u5B9E\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PD01CR03Type=\u6700\u8FD1\u4E00\u6B21\u8FD8\u6B3E\u65E5\u671F +io.sc.creditreport.core.model.person.PD01CS02Type=\u5F53\u524D\u903E\u671F\u671F\u6570 +io.sc.creditreport.core.model.person.PD01CJ06Type=\u5F53\u524D\u903E\u671F\u603B\u989D +io.sc.creditreport.core.model.person.PD01CJ07Type=\u903E\u671F 31\u201460 \u5929\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ08Type=\u903E\u671F 61\uFF0D90 \u5929\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ09Type=\u903E\u671F 91\uFF0D180 \u5929\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ10Type=\u903E\u671F 180 \u5929\u4EE5\u4E0A\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ11Type=\u900F\u652F 180 \u5929\u4EE5\u4E0A\u672A\u4ED8\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CJ12Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u4F7F\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01CJ13Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CJ14Type=\u6700\u5927\u4F7F\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01CJ15Type=\u6700\u5927\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CR04Type=\u4FE1\u606F\u62A5\u544A\u65E5\u671F +io.sc.creditreport.core.model.person.PD01DType=\u6700\u8FD1 24 \u4E2A\u6708\u8FD8\u6B3E\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01DR01Type=\u8D77\u59CB\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01DR02Type=\u622A\u6B62\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01DHType=\u8FD8\u6B3E\u72B6\u6001\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01DR03Type=\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01DD01Type=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01EType=\u6700\u8FD1 5 \u5E74\u5185\u5386\u53F2\u8868\u73B0\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01ER01Type=\u8D77\u59CB\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01ER02Type=\u622A\u6B62\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01ES01Type=\u6708\u6570 +io.sc.creditreport.core.model.person.PD01EHType=\u5386\u53F2\u8868\u73B0\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01ER03Type=\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01ED01Type=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01EJ01Type=\u903E\u671F\uFF08\u900F\u652F\uFF09\u603B\u989D +io.sc.creditreport.core.model.person.PD01FType=\u7279\u6B8A\u4EA4\u6613\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01FS01Type=\u7279\u6B8A\u4EA4\u6613\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD01FHType=\u7279\u6B8A\u4EA4\u6613\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01FD01Type=\u7279\u6B8A\u4EA4\u6613\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01FR01Type=\u7279\u6B8A\u4EA4\u6613\u53D1\u751F\u65E5\u671F +io.sc.creditreport.core.model.person.PD01FS02Type=\u5230\u671F\u65E5\u671F\u53D8\u66F4\u6708\u6570 +io.sc.creditreport.core.model.person.PD01FJ01Type=\u7279\u6B8A\u4EA4\u6613\u53D1\u751F\u91D1\u989D +io.sc.creditreport.core.model.person.PD01FQ01Type=\u7279\u6B8A\u4EA4\u6613\u660E\u7EC6\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PD01GType=\u7279\u6B8A\u4E8B\u4EF6\u8BF4\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01GS01Type=\u7279\u6B8A\u4E8B\u4EF6\u8BF4\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD01GHType=\u7279\u6B8A\u4E8B\u4EF6\u8BF4\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01GR01Type=\u7279\u6B8A\u4E8B\u4EF6\u53D1\u751F\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01GD01Type=\u7279\u6B8A\u4E8B\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01HType=\u5927\u989D\u4E13\u9879\u5206\u671F\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01HS01Type=\u5927\u989D\u4E13\u9879\u5206\u671F\u7B14\u6570 +io.sc.creditreport.core.model.person.PD01HHType=\u5927\u989D\u4E13\u9879\u5206\u671F\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01HJ01Type=\u5927\u989D\u4E13\u9879\u5206\u671F\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01HR01Type=\u5206\u671F\u989D\u5EA6\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PD01HR02Type=\u5206\u671F\u989D\u5EA6\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD01HJ02Type=\u5DF2\u7528\u5206\u671F\u91D1\u989D +io.sc.creditreport.core.model.person.PD01ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD01ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PD01ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PCRType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4FE1\u606F +io.sc.creditreport.core.model.person.PD03Type=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PD03AType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD03AD08Type=\u4E3B\u501F\u6B3E\u4EBA\u8EAB\u4EFD\u7C7B\u522B +io.sc.creditreport.core.model.person.PD03AD01Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03AQ01Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784 +io.sc.creditreport.core.model.person.PD03AD02Type=\u4E1A\u52A1\u79CD\u7C7B +io.sc.creditreport.core.model.person.PD03AR01Type=\u5F00\u7ACB\u65E5\u671F +io.sc.creditreport.core.model.person.PD03AR02Type=\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD03AD03Type=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4EBA\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03AQ02Type=\u4FDD\u8BC1\u5408\u540C\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD03AJ01Type=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u91D1\u989D +io.sc.creditreport.core.model.person.PD03AD04Type=\u5E01\u79CD +io.sc.creditreport.core.model.person.PD03AJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PD03AD05Type=\u4E94\u7EA7\u5206\u7C7B +io.sc.creditreport.core.model.person.PD03AD06Type=\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03AD07Type=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD03AS01Type=\u903E\u671F\u6708\u6570 +io.sc.creditreport.core.model.person.PD03AR03Type=\u4FE1\u606F\u62A5\u544A\u65E5\u671F +io.sc.creditreport.core.model.person.PD03ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD03ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD03ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD03ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PD03ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PNDType=\u540E\u4ED8\u8D39\u4E1A\u52A1\u4FE1\u606F +io.sc.creditreport.core.model.person.PE01Type=\u540E\u4ED8\u8D39\u4E1A\u52A1\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PE01AType=\u540E\u4ED8\u8D39\u4E1A\u52A1\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PE01AD01Type=\u540E\u4ED8\u8D39\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PE01AQ01Type=\u673A\u6784\u540D\u79F0 +io.sc.creditreport.core.model.person.PE01AD02Type=\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PE01AR01Type=\u4E1A\u52A1\u5F00\u901A\u65E5\u671F +io.sc.creditreport.core.model.person.PE01AD03Type=\u5F53\u524D\u7F34\u8D39\u72B6\u6001 +io.sc.creditreport.core.model.person.PE01AJ01Type=\u5F53\u524D\u6B20\u8D39\u91D1\u989D +io.sc.creditreport.core.model.person.PE01AR02Type=\u8BB0\u8D26\u5E74\u6708 +io.sc.creditreport.core.model.person.PE01AQ02Type=\u6700\u8FD1 24 \u4E2A\u6708\u7F34\u8D39\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PE01ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PE01ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PE01ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PE01ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PE01ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PE01ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.POTType=\u6B20\u7A0E\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF01Type=\u6B20\u7A0E\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF01AType=\u6B20\u7A0E\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF01AQ01Type=\u4E3B\u7BA1\u7A0E\u52A1\u673A\u5173 +io.sc.creditreport.core.model.person.PF01AJ01Type=\u6B20\u7A0E\u603B\u989D +io.sc.creditreport.core.model.person.PF01AR01Type=\u6B20\u7A0E\u7EDF\u8BA1\u65E5\u671F +io.sc.creditreport.core.model.person.PF01ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF01ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF01ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF01ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF01ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF01ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PCJType=\u6C11\u4E8B\u5224\u51B3\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF02Type=\u6C11\u4E8B\u5224\u51B3\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF02AType=\u6C11\u4E8B\u5224\u51B3\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF02AQ01Type=\u7ACB\u6848\u6CD5\u9662 +io.sc.creditreport.core.model.person.PF02AQ02Type=\u6848\u7531 +io.sc.creditreport.core.model.person.PF02AR01Type=\u7ACB\u6848\u65E5\u671F +io.sc.creditreport.core.model.person.PF02AD01Type=\u7ED3\u6848\u65B9\u5F0F +io.sc.creditreport.core.model.person.PF02AQ03Type=\u5224\u51B3/\u8C03\u89E3\u7ED3\u679C +io.sc.creditreport.core.model.person.PF02AR02Type=\u5224\u51B3/\u8C03\u89E3\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PF02AQ04Type=\u8BC9\u8BBC\u6807\u7684 +io.sc.creditreport.core.model.person.PF02AJ01Type=\u8BC9\u8BBC\u6807\u7684\u91D1\u989D +io.sc.creditreport.core.model.person.PF02ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF02ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF02ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF02ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF02ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF02ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PCEType=\u5F3A\u5236\u6267\u884C\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF03Type=\u5F3A\u5236\u6267\u884C\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF03AType=\u5F3A\u5236\u6267\u884C\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF03AQ01Type=\u6267\u884C\u6CD5\u9662 +io.sc.creditreport.core.model.person.PF03AQ02Type=\u6267\u884C\u6848\u7531 +io.sc.creditreport.core.model.person.PF03AR01Type=\u7ACB\u6848\u65E5\u671F +io.sc.creditreport.core.model.person.PF03AD01Type=\u7ED3\u6848\u65B9\u5F0F +io.sc.creditreport.core.model.person.PF03AQ03Type=\u6848\u4EF6\u72B6\u6001 +io.sc.creditreport.core.model.person.PF03AR02Type=\u7ED3\u6848\u65E5\u671F +io.sc.creditreport.core.model.person.PF03AQ04Type=\u7533\u8BF7\u6267\u884C\u6807\u7684 +io.sc.creditreport.core.model.person.PF03AJ01Type=\u7533\u8BF7\u6267\u884C\u6807\u7684\u91D1\u989D +io.sc.creditreport.core.model.person.PF03AQ05Type=\u5DF2\u6267\u884C\u6807\u7684 +io.sc.creditreport.core.model.person.PF03AJ02Type=\u5DF2\u6267\u884C\u6807\u7684\u91D1\u989D +io.sc.creditreport.core.model.person.PF03ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF03ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF03ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF03ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF03ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF03ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PAPType=\u884C\u653F\u5904\u7F5A\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF04Type=\u884C\u653F\u5904\u7F5A\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF04AType=\u884C\u653F\u5904\u7F5A\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF04AQ01Type=\u5904\u7F5A\u673A\u6784 +io.sc.creditreport.core.model.person.PF04AQ02Type=\u5904\u7F5A\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF04AJ01Type=\u5904\u7F5A\u91D1\u989D +io.sc.creditreport.core.model.person.PF04AR01Type=\u5904\u7F5A\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PF04AR02Type=\u5904\u7F5A\u622A\u6B62\u65E5\u671F +io.sc.creditreport.core.model.person.PF04AQ03Type=\u884C\u653F\u590D\u8BAE\u7ED3\u679C +io.sc.creditreport.core.model.person.PF04ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF04ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF04ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF04ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF04ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF04ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PHFType=\u4F4F\u623F\u516C\u79EF\u91D1\u53C2\u7F34\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF05Type=\u4F4F\u623F\u516C\u79EF\u91D1\u53C2\u7F34\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF05AType=\u4F4F\u623F\u516C\u79EF\u91D1\u53C2\u7F34\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF05AQ01Type=\u53C2\u7F34\u5730 +io.sc.creditreport.core.model.person.PF05AR01Type=\u53C2\u7F34\u65E5\u671F +io.sc.creditreport.core.model.person.PF05AD01Type=\u7F34\u8D39\u72B6\u6001 +io.sc.creditreport.core.model.person.PF05AR02Type=\u521D\u7F34\u6708\u4EFD +io.sc.creditreport.core.model.person.PF05AR03Type=\u7F34\u81F3\u6708\u4EFD +io.sc.creditreport.core.model.person.PF05AQ02Type=\u5355\u4F4D\u7F34\u5B58\u6BD4\u4F8B +io.sc.creditreport.core.model.person.PF05AQ03Type=\u4E2A\u4EBA\u7F34\u5B58\u6BD4\u4F8B +io.sc.creditreport.core.model.person.PF05AJ01Type=\u6708\u7F34\u5B58\u989D +io.sc.creditreport.core.model.person.PF05AQ04Type=\u7F34\u8D39\u5355\u4F4D +io.sc.creditreport.core.model.person.PF05AR04Type=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PF05ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF05ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF05ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF05ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF05ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF05ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PBSType=\u4F4E\u4FDD\u6551\u52A9\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF06Type=\u4F4E\u4FDD\u6551\u52A9\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF06AType=\u4F4E\u4FDD\u6551\u52A9\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF06AD01Type=\u4EBA\u5458\u7C7B\u522B +io.sc.creditreport.core.model.person.PF06AQ01Type=\u6240\u5728\u5730 +io.sc.creditreport.core.model.person.PF06AQ02Type=\u5DE5\u4F5C\u5355\u4F4D +io.sc.creditreport.core.model.person.PF06AQ03Type=\u5BB6\u5EAD\u6708\u6536\u5165 +io.sc.creditreport.core.model.person.PF06AR01Type=\u7533\u8BF7\u65E5\u671F +io.sc.creditreport.core.model.person.PF06AR02Type=\u6279\u51C6\u65E5\u671F +io.sc.creditreport.core.model.person.PF06AR03Type=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PF06ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF06ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF06ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF06ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF06ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF06ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PPQType=\u6267\u4E1A\u8D44\u683C\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF07Type=\u6267\u4E1A\u8D44\u683C\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF07AType=\u6267\u4E1A\u8D44\u683C\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF07AQ01Type=\u6267\u4E1A\u8D44\u683C\u540D\u79F0 +io.sc.creditreport.core.model.person.PF07AQ02Type=\u9881\u53D1\u673A\u6784 +io.sc.creditreport.core.model.person.PF07AD01Type=\u7B49\u7EA7 +io.sc.creditreport.core.model.person.PF07AD02Type=\u673A\u6784\u6240\u5728\u5730 +io.sc.creditreport.core.model.person.PF07AR01Type=\u83B7\u5F97\u5E74\u6708 +io.sc.creditreport.core.model.person.PF07AR02Type=\u5230\u671F\u5E74\u6708 +io.sc.creditreport.core.model.person.PF07AR03Type=\u540A\u9500\u5E74\u6708 +io.sc.creditreport.core.model.person.PF07ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF07ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF07ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF07ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF07ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF07ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PAHType=\u884C\u653F\u5956\u52B1\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF08Type=\u884C\u653F\u5956\u52B1\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF08AType=\u884C\u653F\u5956\u52B1\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF08AQ01Type=\u5956\u52B1\u673A\u6784 +io.sc.creditreport.core.model.person.PF08AQ02Type=\u5956\u52B1\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF08AR01Type=\u751F\u6548\u5E74\u6708 +io.sc.creditreport.core.model.person.PF08AR02Type=\u622A\u6B62\u5E74\u6708 +io.sc.creditreport.core.model.person.PF08ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF08ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF08ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF08ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF08ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF08ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.POSType=\u5176\u4ED6\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PG01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PG010D01Type=\u5BF9\u8C61\u7C7B\u578B +io.sc.creditreport.core.model.person.PG010D02Type=\u5BF9\u8C61\u6807\u8BC6 +io.sc.creditreport.core.model.person.PG010S01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B\u4E2A\u6570 +io.sc.creditreport.core.model.person.PG010HType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PG010D03Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PG010Q01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PG010R01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.POQType=\u67E5\u8BE2\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PH01Type=\u67E5\u8BE2\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PH010R01Type=\u67E5\u8BE2\u65E5\u671F +io.sc.creditreport.core.model.person.PH010D01Type=\u67E5\u8BE2\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PH010Q02Type=\u67E5\u8BE2\u673A\u6784 +io.sc.creditreport.core.model.person.PH010Q03Type=\u67E5\u8BE2\u539F\u56E0 \ No newline at end of file diff --git a/io.sc.creditreport.core/src/main/resources/io/sc/creditreport/core/i18n/messages_tw_CN.properties b/io.sc.creditreport.core/src/main/resources/io/sc/creditreport/core/i18n/messages_tw_CN.properties new file mode 100644 index 00000000..49195947 --- /dev/null +++ b/io.sc.creditreport.core/src/main/resources/io/sc/creditreport/core/i18n/messages_tw_CN.properties @@ -0,0 +1,478 @@ +io.sc.creditreport.core.model.person.PersonCreditReport=\u4E2A\u4EBA\u5F81\u4FE1\u62A5\u544A +io.sc.creditreport.core.model.person.PRHType=\u62A5\u544A\u5934 +io.sc.creditreport.core.model.person.PA01Type=\u62A5\u544A\u5934\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PA01AType=\u62A5\u544A\u6807\u8BC6\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01AI01Type=\u62A5\u544A\u7F16\u53F7 +io.sc.creditreport.core.model.person.PA01AR01Type=\u62A5\u544A\u65F6\u95F4 +io.sc.creditreport.core.model.person.PA01BType=\u672C\u6B21\u67E5\u8BE2\u8BF7\u6C42\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01BQ01Type=\u88AB\u67E5\u8BE2\u8005\u59D3\u540D +io.sc.creditreport.core.model.person.PA01BD01Type=\u88AB\u67E5\u8BE2\u8005\u8BC1\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PA01BI01Type=\u88AB\u67E5\u8BE2\u8005\u8BC1\u4EF6\u53F7\u7801 +io.sc.creditreport.core.model.person.PA01BI02Type=\u67E5\u8BE2\u673A\u6784\u4EE3\u7801 +io.sc.creditreport.core.model.person.PA01BD02Type=\u67E5\u8BE2\u539F\u56E0\u4EE3\u7801 +io.sc.creditreport.core.model.person.PA01CType=\u5176\u4ED6\u8EAB\u4EFD\u6807\u8BC6\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01CS01Type=\u8EAB\u4EFD\u6807\u8BC6\u4E2A\u6570 +io.sc.creditreport.core.model.person.PA01CHType=\u8EAB\u4EFD\u4FE1\u606F +io.sc.creditreport.core.model.person.PA01CD01Type=\u8BC1\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PA01CI01Type=\u8BC1\u4EF6\u53F7\u7801 +io.sc.creditreport.core.model.person.PA01DType=\u9632\u6B3A\u8BC8\u8B66\u793A\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01DQ01Type=\u9632\u6B3A\u8BC8\u8B66\u793A\u6807\u5FD7 +io.sc.creditreport.core.model.person.PA01DQ02Type=\u9632\u6B3A\u8BC8\u8B66\u793A\u8054\u7CFB\u7535\u8BDD +io.sc.creditreport.core.model.person.PA01DR01Type=\u9632\u6B3A\u8BC8\u8B66\u793A\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PA01DR02Type=\u9632\u6B3A\u8BC8\u8B66\u793A\u622A\u6B62\u65E5\u671F +io.sc.creditreport.core.model.person.PA01EType=\u5F02\u8BAE\u63D0\u793A\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01ES01Type=\u5F02\u8BAE\u6807\u6CE8\u6570\u76EE +io.sc.creditreport.core.model.person.PIMType=\u8EAB\u4EFD\u4FE1\u606F +io.sc.creditreport.core.model.person.PB01Type=\u8EAB\u4EFD\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB01AType=\u57FA\u672C\u6982\u51B5\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PB01AD01Type=\u6027\u522B +io.sc.creditreport.core.model.person.PB01AR01Type=\u51FA\u751F\u65E5\u671F +io.sc.creditreport.core.model.person.PB01AD02Type=\u5B66\u5386 +io.sc.creditreport.core.model.person.PB01AD03Type=\u5B66\u4F4D +io.sc.creditreport.core.model.person.PB01AD04Type=\u5C31\u4E1A\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB01AQ01Type=\u7535\u5B50\u90AE\u7BB1 +io.sc.creditreport.core.model.person.PB01AQ02Type=\u901A\u8BAF\u5730\u5740 +io.sc.creditreport.core.model.person.PB01AD05Type=\u56FD\u7C4D +io.sc.creditreport.core.model.person.PB01AQ03Type=\u6237\u7C4D\u5730\u5740 +io.sc.creditreport.core.model.person.PB01BType=\u624B\u673A\u53F7\u7801\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PB01BS01Type=\u624B\u673A\u53F7\u7801\u4E2A\u6570 +io.sc.creditreport.core.model.person.PB01BHType=\u624B\u673A\u53F7\u7801\u4FE1\u606F +io.sc.creditreport.core.model.person.PB01BQ01Type=\u624B\u673A\u53F7\u7801 +io.sc.creditreport.core.model.person.PB01BR01Type=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PMMType=\u5A5A\u59FB\u4FE1\u606F +io.sc.creditreport.core.model.person.PB02Type=\u5A5A\u59FB\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB020D01Type=\u5A5A\u59FB\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB020Q01Type=\u914D\u5076\u59D3\u540D +io.sc.creditreport.core.model.person.PB020D02Type=\u914D\u5076\u8BC1\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PB020I01Type=\u914D\u5076\u8BC1\u4EF6\u53F7\u7801 +io.sc.creditreport.core.model.person.PB020Q02Type=\u914D\u5076\u5DE5\u4F5C\u5355\u4F4D +io.sc.creditreport.core.model.person.PB020Q03Type=\u914D\u5076\u8054\u7CFB\u7535\u8BDD +io.sc.creditreport.core.model.person.PRMType=\u5C45\u4F4F\u4FE1\u606F +io.sc.creditreport.core.model.person.PB03Type=\u5C45\u4F4F\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB030D01Type=\u5C45\u4F4F\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB030Q01Type=\u5C45\u4F4F\u5730\u5740 +io.sc.creditreport.core.model.person.PB030Q02Type=\u4F4F\u5B85\u7535\u8BDD +io.sc.creditreport.core.model.person.PB030R01Type=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.POMType=\u804C\u4E1A\u4FE1\u606F +io.sc.creditreport.core.model.person.PB04Type=\u804C\u4E1A\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB040D01Type=\u5C31\u4E1A\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB040Q01Type=\u5DE5\u4F5C\u5355\u4F4D +io.sc.creditreport.core.model.person.PB040D02Type=\u5355\u4F4D\u6027\u8D28 +io.sc.creditreport.core.model.person.PB040D03Type=\u884C\u4E1A +io.sc.creditreport.core.model.person.PB040Q02Type=\u5355\u4F4D\u5730\u5740 +io.sc.creditreport.core.model.person.PB040Q03Type=\u5355\u4F4D\u7535\u8BDD +io.sc.creditreport.core.model.person.PB040D04Type=\u804C\u4E1A +io.sc.creditreport.core.model.person.PB040D05Type=\u804C\u52A1 +io.sc.creditreport.core.model.person.PB040D06Type=\u804C\u79F0 +io.sc.creditreport.core.model.person.PB040R01Type=\u8FDB\u5165\u672C\u5355\u4F4D\u5E74\u4EFD +io.sc.creditreport.core.model.person.PB040R02Type=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PSMType=\u8BC4\u5206\u4FE1\u606F +io.sc.creditreport.core.model.person.PC01Type=\u8BC4\u5206\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC010Q01Type=\u6570\u5B57\u89E3\u8BFB +io.sc.creditreport.core.model.person.PC010Q02Type=\u76F8\u5BF9\u4F4D\u7F6E +io.sc.creditreport.core.model.person.PC010S01Type=\u5206\u6570\u8BF4\u660E\u6761\u6570 +io.sc.creditreport.core.model.person.PC010D01Type=\u5206\u6570\u8BF4\u660E +io.sc.creditreport.core.model.person.PCOType=\u4FE1\u8D37\u4EA4\u6613\u4FE1\u606F\u6982\u8981 +io.sc.creditreport.core.model.person.PC02Type=\u4FE1\u8D37\u4EA4\u6613\u4FE1\u606F\u6982\u8981\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC02AType=\u4FE1\u8D37\u4EA4\u6613\u63D0\u793A\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02AS01Type=\u8D26\u6237\u6570\u5408\u8BA1 +io.sc.creditreport.core.model.person.PC02AS02Type=\u4E1A\u52A1\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC02AHType=\u4FE1\u8D37\u4EA4\u6613\u63D0\u793A\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02AD01Type=\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02AD02Type=\u4E1A\u52A1\u5927\u7C7B +io.sc.creditreport.core.model.person.PC02AS03Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02AR01Type=\u9996\u7B14\u4E1A\u52A1\u53D1\u653E\u6708\u4EFD +io.sc.creditreport.core.model.person.PC02BType=\u88AB\u8FFD\u507F\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02BS01Type=\u8D26\u6237\u6570\u5408\u8BA1 +io.sc.creditreport.core.model.person.PC02BJ01Type=\u4F59\u989D\u5408\u8BA1 +io.sc.creditreport.core.model.person.PC02BS02Type=\u4E1A\u52A1\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC02BHType=\u88AB\u8FFD\u507F\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02BD01Type=\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02BS03Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02BJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02CType=\u5446\u8D26\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02CS01Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02CJ01Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02DType=\u903E\u671F\uFF08\u900F\u652F\uFF09\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02DS01Type=\u8D26\u6237\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC02DHType=\u903E\u671F\uFF08\u900F\u652F\uFF09\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02DD01Type=\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02DS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02DS03Type=\u6708\u4EFD\u6570 +io.sc.creditreport.core.model.person.PC02DJ01Type=\u5355\u6708\u6700\u9AD8\u903E\u671F\uFF08\u900F\u652F\uFF09\u603B\u989D +io.sc.creditreport.core.model.person.PC02DS04Type=\u6700\u957F\u903E\u671F\uFF08\u900F\u652F\uFF09\u6708\u6570 +io.sc.creditreport.core.model.person.PC02EType=\u975E\u5FAA\u73AF\u8D37\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02ES01Type=\u7BA1\u7406\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02ES02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02EJ01Type=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02EJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02EJ03Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PC02FType=\u5FAA\u73AF\u989D\u5EA6\u4E0B\u5206\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02FS01Type=\u7BA1\u7406\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02FS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02FJ01Type=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02FJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02FJ03Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PC02GType=\u5FAA\u73AF\u8D37\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02GS01Type=\u7BA1\u7406\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02GS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02GJ01Type=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02GJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02GJ03Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PC02HType=\u8D37\u8BB0\u5361\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02HS01Type=\u53D1\u5361\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02HS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02HJ01Type=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02HJ02Type=\u5355\u5BB6\u884C\u6700\u9AD8\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02HJ03Type=\u5355\u5BB6\u884C\u6700\u4F4E\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02HJ04Type=\u5DF2\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PC02HJ05Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u4F7F\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PC02IType=\u51C6\u8D37\u8BB0\u5361\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02IS01Type=\u53D1\u5361\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02IS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02IJ01Type=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02IJ02Type=\u5355\u5BB6\u884C\u6700\u9AD8\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02IJ03Type=\u5355\u5BB6\u884C\u6700\u4F4E\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02IJ04Type=\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PC02IJ05Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PC02KType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02KS01Type=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4E2A\u6570 +io.sc.creditreport.core.model.person.PC02KHType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02KD01Type=\u501F\u6B3E\u4EBA\u8EAB\u4EFD\u7C7B\u522B +io.sc.creditreport.core.model.person.PC02KD02Type=\u8FD8\u6B3E\u8D23\u4EFB\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02KS02Type=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02KJ01Type=\u8FD8\u6B3E\u8D23\u4EFB\u91D1\u989D +io.sc.creditreport.core.model.person.PC02KJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PNOType=\u975E\u4FE1\u8D37\u4EA4\u6613\u4FE1\u606F\u6982\u8981 +io.sc.creditreport.core.model.person.PC03Type=\u540E\u4ED8\u8D39\u4E1A\u52A1\u6B20\u8D39\u4FE1\u606F\u6C47\u603B\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC030S01Type=\u540E\u4ED8\u8D39\u4E1A\u52A1\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC030HType=\u540E\u4ED8\u8D39\u4E1A\u52A1\u6B20\u8D39\u4FE1\u606F\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC030D01Type=\u540E\u4ED8\u8D39\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PC030S02Type=\u6B20\u8D39\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC030J01Type=\u6B20\u8D39\u91D1\u989D +io.sc.creditreport.core.model.person.PPOType=\u516C\u5171\u4FE1\u606F\u6982\u8981 +io.sc.creditreport.core.model.person.PC04Type=\u516C\u5171\u4FE1\u606F\u6982\u8981\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC040S01Type=\u516C\u5171\u4FE1\u606F\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC040HType=\u516C\u5171\u4FE1\u606F\u6982\u8981\u4FE1\u606F +io.sc.creditreport.core.model.person.PC040D01Type=\u516C\u5171\u4FE1\u606F\u7C7B\u578B +io.sc.creditreport.core.model.person.PC040S02Type=\u8BB0\u5F55\u6570 +io.sc.creditreport.core.model.person.PC040J01Type=\u6D89\u53CA\u91D1\u989D +io.sc.creditreport.core.model.person.PQOType=\u67E5\u8BE2\u8BB0\u5F55\u6982\u8981 +io.sc.creditreport.core.model.person.PC05Type=\u67E5\u8BE2\u8BB0\u5F55\u6982\u8981\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC05AType=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC05AR01Type=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u65E5\u671F +io.sc.creditreport.core.model.person.PC05AD01Type=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u673A\u6784\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PC05AI01Type=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u673A\u6784\u4EE3\u7801 +io.sc.creditreport.core.model.person.PC05AQ01Type=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u539F\u56E0 +io.sc.creditreport.core.model.person.PC05BType=\u67E5\u8BE2\u8BB0\u5F55\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC05BS01Type=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u673A\u6784\u6570\uFF08\u8D37\u6B3E\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS02Type=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u673A\u6784\u6570\uFF08\u4FE1\u7528\u5361\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS03Type=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u8D37\u6B3E\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS04Type=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u4FE1\u7528\u5361\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS05Type=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u672C\u4EBA\u67E5\u8BE2\uFF09 +io.sc.creditreport.core.model.person.PC05BS06Type=\u6700\u8FD1 2 \u5E74\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u8D37\u540E\u7BA1\u7406\uFF09 +io.sc.creditreport.core.model.person.PC05BS07Type=\u6700\u8FD1 2 \u5E74\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u62C5\u4FDD\u8D44\u683C\u5BA1\u67E5\uFF09 +io.sc.creditreport.core.model.person.PC05BS08Type=\u6700\u8FD1 2 \u5E74\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u7279\u7EA6\u5546\u6237\u5B9E\u540D\u5BA1\u67E5\uFF09 +io.sc.creditreport.core.model.person.PCAType=\u6388\u4FE1\u534F\u8BAE\u4FE1\u606F +io.sc.creditreport.core.model.person.PD02Type=\u6388\u4FE1\u534F\u8BAE\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PD02AType=\u57FA\u672C\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD02AI01Type=\u6388\u4FE1\u534F\u8BAE\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD02AD01Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PD02AI02Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784 +io.sc.creditreport.core.model.person.PD02AI03Type=\u6388\u4FE1\u534F\u8BAE\u6807\u8BC6 +io.sc.creditreport.core.model.person.PD02AD02Type=\u6388\u4FE1\u989D\u5EA6\u7528\u9014 +io.sc.creditreport.core.model.person.PD02AJ01Type=\u6388\u4FE1\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD02AD03Type=\u5E01\u79CD +io.sc.creditreport.core.model.person.PD02AR01Type=\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PD02AR02Type=\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD02AD04Type=\u6388\u4FE1\u534F\u8BAE\u72B6\u6001 +io.sc.creditreport.core.model.person.PD02AJ04Type=\u5DF2\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD02AJ03Type=\u6388\u4FE1\u9650\u989D +io.sc.creditreport.core.model.person.PD02AI04Type=\u6388\u4FE1\u9650\u989D\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD02ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD02ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD02ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD02ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PD02ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PD02ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PDAType=\u501F\u8D37\u8D26\u6237\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01Type=\u501F\u8D37\u8D26\u6237\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PD01AType=\u57FA\u672C\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01AI01Type=\u8D26\u6237\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD01AD01Type=\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01AD02Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01AI02Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u4EE3\u7801 +io.sc.creditreport.core.model.person.PD01AI03Type=\u8D26\u6237\u6807\u8BC6 +io.sc.creditreport.core.model.person.PD01AI04Type=\u6388\u4FE1\u534F\u8BAE\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD01AD03Type=\u4E1A\u52A1\u79CD\u7C7B +io.sc.creditreport.core.model.person.PD01AR01Type=\u5F00\u7ACB\u65E5\u671F +io.sc.creditreport.core.model.person.PD01AD04Type=\u5E01\u79CD +io.sc.creditreport.core.model.person.PD01AJ01Type=\u501F\u6B3E\u91D1\u989D +io.sc.creditreport.core.model.person.PD01AJ02Type=\u8D26\u6237\u6388\u4FE1\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01AJ03Type=\u5171\u4EAB\u6388\u4FE1\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01AR02Type=\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD01AD05Type=\u8FD8\u6B3E\u65B9\u5F0F +io.sc.creditreport.core.model.person.PD01AD06Type=\u8FD8\u6B3E\u9891\u7387 +io.sc.creditreport.core.model.person.PD01AS01Type=\u8FD8\u6B3E\u671F\u6570 +io.sc.creditreport.core.model.person.PD01AD07Type=\u62C5\u4FDD\u65B9\u5F0F +io.sc.creditreport.core.model.person.PD01AD08Type=\u8D37\u6B3E\u53D1\u653E\u5F62\u5F0F +io.sc.creditreport.core.model.person.PD01AD09Type=\u5171\u540C\u501F\u6B3E\u6807\u5FD7 +io.sc.creditreport.core.model.person.PD01AD10Type=\u503A\u6743\u8F6C\u79FB\u65F6\u7684\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01BType=\u6700\u65B0\u8868\u73B0\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01BD01Type=\u8D26\u6237\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01BR01Type=\u5173\u95ED\u65E5\u671F +io.sc.creditreport.core.model.person.PD01BR04Type=\u8F6C\u51FA\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01BJ01Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PD01BR02Type=\u6700\u8FD1\u4E00\u6B21\u8FD8\u6B3E\u65E5\u671F +io.sc.creditreport.core.model.person.PD01BJ02Type=\u6700\u8FD1\u4E00\u6B21\u8FD8\u6B3E\u91D1\u989D +io.sc.creditreport.core.model.person.PD01BD03Type=\u4E94\u7EA7\u5206\u7C7B +io.sc.creditreport.core.model.person.PD01BD04Type=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01BR03Type=\u4FE1\u606F\u62A5\u544A\u65E5\u671F +io.sc.creditreport.core.model.person.PD01CType=\u6700\u8FD1\u4E00\u6B21\u6708\u5EA6\u8868\u73B0\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01CR01Type=\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01CD01Type=\u8D26\u6237\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01CJ01Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CJ02Type=\u5DF2\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01CJ03Type=\u672A\u51FA\u5355\u7684\u5927\u989D\u4E13\u9879\u5206\u671F\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CD02Type=\u4E94\u7EA7\u5206\u7C7B +io.sc.creditreport.core.model.person.PD01CS01Type=\u5269\u4F59\u8FD8\u6B3E\u671F\u6570 +io.sc.creditreport.core.model.person.PD01CR02Type=\u7ED3\u7B97/\u5E94\u8FD8\u6B3E\u65E5 +io.sc.creditreport.core.model.person.PD01CJ04Type=\u672C\u6708\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PD01CJ05Type=\u672C\u6708\u5B9E\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PD01CR03Type=\u6700\u8FD1\u4E00\u6B21\u8FD8\u6B3E\u65E5\u671F +io.sc.creditreport.core.model.person.PD01CS02Type=\u5F53\u524D\u903E\u671F\u671F\u6570 +io.sc.creditreport.core.model.person.PD01CJ06Type=\u5F53\u524D\u903E\u671F\u603B\u989D +io.sc.creditreport.core.model.person.PD01CJ07Type=\u903E\u671F 31\u201460 \u5929\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ08Type=\u903E\u671F 61\uFF0D90 \u5929\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ09Type=\u903E\u671F 91\uFF0D180 \u5929\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ10Type=\u903E\u671F 180 \u5929\u4EE5\u4E0A\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ11Type=\u900F\u652F 180 \u5929\u4EE5\u4E0A\u672A\u4ED8\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CJ12Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u4F7F\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01CJ13Type=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CJ14Type=\u6700\u5927\u4F7F\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01CJ15Type=\u6700\u5927\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CR04Type=\u4FE1\u606F\u62A5\u544A\u65E5\u671F +io.sc.creditreport.core.model.person.PD01DType=\u6700\u8FD1 24 \u4E2A\u6708\u8FD8\u6B3E\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01DR01Type=\u8D77\u59CB\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01DR02Type=\u622A\u6B62\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01DHType=\u8FD8\u6B3E\u72B6\u6001\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01DR03Type=\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01DD01Type=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01EType=\u6700\u8FD1 5 \u5E74\u5185\u5386\u53F2\u8868\u73B0\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01ER01Type=\u8D77\u59CB\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01ER02Type=\u622A\u6B62\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01ES01Type=\u6708\u6570 +io.sc.creditreport.core.model.person.PD01EHType=\u5386\u53F2\u8868\u73B0\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01ER03Type=\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01ED01Type=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01EJ01Type=\u903E\u671F\uFF08\u900F\u652F\uFF09\u603B\u989D +io.sc.creditreport.core.model.person.PD01FType=\u7279\u6B8A\u4EA4\u6613\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01FS01Type=\u7279\u6B8A\u4EA4\u6613\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD01FHType=\u7279\u6B8A\u4EA4\u6613\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01FD01Type=\u7279\u6B8A\u4EA4\u6613\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01FR01Type=\u7279\u6B8A\u4EA4\u6613\u53D1\u751F\u65E5\u671F +io.sc.creditreport.core.model.person.PD01FS02Type=\u5230\u671F\u65E5\u671F\u53D8\u66F4\u6708\u6570 +io.sc.creditreport.core.model.person.PD01FJ01Type=\u7279\u6B8A\u4EA4\u6613\u53D1\u751F\u91D1\u989D +io.sc.creditreport.core.model.person.PD01FQ01Type=\u7279\u6B8A\u4EA4\u6613\u660E\u7EC6\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PD01GType=\u7279\u6B8A\u4E8B\u4EF6\u8BF4\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01GS01Type=\u7279\u6B8A\u4E8B\u4EF6\u8BF4\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD01GHType=\u7279\u6B8A\u4E8B\u4EF6\u8BF4\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01GR01Type=\u7279\u6B8A\u4E8B\u4EF6\u53D1\u751F\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01GD01Type=\u7279\u6B8A\u4E8B\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01HType=\u5927\u989D\u4E13\u9879\u5206\u671F\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01HS01Type=\u5927\u989D\u4E13\u9879\u5206\u671F\u7B14\u6570 +io.sc.creditreport.core.model.person.PD01HHType=\u5927\u989D\u4E13\u9879\u5206\u671F\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01HJ01Type=\u5927\u989D\u4E13\u9879\u5206\u671F\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01HR01Type=\u5206\u671F\u989D\u5EA6\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PD01HR02Type=\u5206\u671F\u989D\u5EA6\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD01HJ02Type=\u5DF2\u7528\u5206\u671F\u91D1\u989D +io.sc.creditreport.core.model.person.PD01ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD01ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PD01ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PCRType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4FE1\u606F +io.sc.creditreport.core.model.person.PD03Type=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PD03AType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD03AD08Type=\u4E3B\u501F\u6B3E\u4EBA\u8EAB\u4EFD\u7C7B\u522B +io.sc.creditreport.core.model.person.PD03AD01Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03AQ01Type=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784 +io.sc.creditreport.core.model.person.PD03AD02Type=\u4E1A\u52A1\u79CD\u7C7B +io.sc.creditreport.core.model.person.PD03AR01Type=\u5F00\u7ACB\u65E5\u671F +io.sc.creditreport.core.model.person.PD03AR02Type=\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD03AD03Type=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4EBA\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03AQ02Type=\u4FDD\u8BC1\u5408\u540C\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD03AJ01Type=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u91D1\u989D +io.sc.creditreport.core.model.person.PD03AD04Type=\u5E01\u79CD +io.sc.creditreport.core.model.person.PD03AJ02Type=\u4F59\u989D +io.sc.creditreport.core.model.person.PD03AD05Type=\u4E94\u7EA7\u5206\u7C7B +io.sc.creditreport.core.model.person.PD03AD06Type=\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03AD07Type=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD03AS01Type=\u903E\u671F\u6708\u6570 +io.sc.creditreport.core.model.person.PD03AR03Type=\u4FE1\u606F\u62A5\u544A\u65E5\u671F +io.sc.creditreport.core.model.person.PD03ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD03ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD03ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD03ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PD03ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PNDType=\u540E\u4ED8\u8D39\u4E1A\u52A1\u4FE1\u606F +io.sc.creditreport.core.model.person.PE01Type=\u540E\u4ED8\u8D39\u4E1A\u52A1\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PE01AType=\u540E\u4ED8\u8D39\u4E1A\u52A1\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PE01AD01Type=\u540E\u4ED8\u8D39\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PE01AQ01Type=\u673A\u6784\u540D\u79F0 +io.sc.creditreport.core.model.person.PE01AD02Type=\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PE01AR01Type=\u4E1A\u52A1\u5F00\u901A\u65E5\u671F +io.sc.creditreport.core.model.person.PE01AD03Type=\u5F53\u524D\u7F34\u8D39\u72B6\u6001 +io.sc.creditreport.core.model.person.PE01AJ01Type=\u5F53\u524D\u6B20\u8D39\u91D1\u989D +io.sc.creditreport.core.model.person.PE01AR02Type=\u8BB0\u8D26\u5E74\u6708 +io.sc.creditreport.core.model.person.PE01AQ02Type=\u6700\u8FD1 24 \u4E2A\u6708\u7F34\u8D39\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PE01ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PE01ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PE01ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PE01ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PE01ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PE01ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.POTType=\u6B20\u7A0E\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF01Type=\u6B20\u7A0E\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF01AType=\u6B20\u7A0E\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF01AQ01Type=\u4E3B\u7BA1\u7A0E\u52A1\u673A\u5173 +io.sc.creditreport.core.model.person.PF01AJ01Type=\u6B20\u7A0E\u603B\u989D +io.sc.creditreport.core.model.person.PF01AR01Type=\u6B20\u7A0E\u7EDF\u8BA1\u65E5\u671F +io.sc.creditreport.core.model.person.PF01ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF01ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF01ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF01ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF01ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF01ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PCJType=\u6C11\u4E8B\u5224\u51B3\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF02Type=\u6C11\u4E8B\u5224\u51B3\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF02AType=\u6C11\u4E8B\u5224\u51B3\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF02AQ01Type=\u7ACB\u6848\u6CD5\u9662 +io.sc.creditreport.core.model.person.PF02AQ02Type=\u6848\u7531 +io.sc.creditreport.core.model.person.PF02AR01Type=\u7ACB\u6848\u65E5\u671F +io.sc.creditreport.core.model.person.PF02AD01Type=\u7ED3\u6848\u65B9\u5F0F +io.sc.creditreport.core.model.person.PF02AQ03Type=\u5224\u51B3/\u8C03\u89E3\u7ED3\u679C +io.sc.creditreport.core.model.person.PF02AR02Type=\u5224\u51B3/\u8C03\u89E3\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PF02AQ04Type=\u8BC9\u8BBC\u6807\u7684 +io.sc.creditreport.core.model.person.PF02AJ01Type=\u8BC9\u8BBC\u6807\u7684\u91D1\u989D +io.sc.creditreport.core.model.person.PF02ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF02ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF02ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF02ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF02ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF02ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PCEType=\u5F3A\u5236\u6267\u884C\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF03Type=\u5F3A\u5236\u6267\u884C\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF03AType=\u5F3A\u5236\u6267\u884C\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF03AQ01Type=\u6267\u884C\u6CD5\u9662 +io.sc.creditreport.core.model.person.PF03AQ02Type=\u6267\u884C\u6848\u7531 +io.sc.creditreport.core.model.person.PF03AR01Type=\u7ACB\u6848\u65E5\u671F +io.sc.creditreport.core.model.person.PF03AD01Type=\u7ED3\u6848\u65B9\u5F0F +io.sc.creditreport.core.model.person.PF03AQ03Type=\u6848\u4EF6\u72B6\u6001 +io.sc.creditreport.core.model.person.PF03AR02Type=\u7ED3\u6848\u65E5\u671F +io.sc.creditreport.core.model.person.PF03AQ04Type=\u7533\u8BF7\u6267\u884C\u6807\u7684 +io.sc.creditreport.core.model.person.PF03AJ01Type=\u7533\u8BF7\u6267\u884C\u6807\u7684\u91D1\u989D +io.sc.creditreport.core.model.person.PF03AQ05Type=\u5DF2\u6267\u884C\u6807\u7684 +io.sc.creditreport.core.model.person.PF03AJ02Type=\u5DF2\u6267\u884C\u6807\u7684\u91D1\u989D +io.sc.creditreport.core.model.person.PF03ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF03ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF03ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF03ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF03ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF03ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PAPType=\u884C\u653F\u5904\u7F5A\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF04Type=\u884C\u653F\u5904\u7F5A\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF04AType=\u884C\u653F\u5904\u7F5A\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF04AQ01Type=\u5904\u7F5A\u673A\u6784 +io.sc.creditreport.core.model.person.PF04AQ02Type=\u5904\u7F5A\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF04AJ01Type=\u5904\u7F5A\u91D1\u989D +io.sc.creditreport.core.model.person.PF04AR01Type=\u5904\u7F5A\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PF04AR02Type=\u5904\u7F5A\u622A\u6B62\u65E5\u671F +io.sc.creditreport.core.model.person.PF04AQ03Type=\u884C\u653F\u590D\u8BAE\u7ED3\u679C +io.sc.creditreport.core.model.person.PF04ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF04ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF04ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF04ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF04ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF04ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PHFType=\u4F4F\u623F\u516C\u79EF\u91D1\u53C2\u7F34\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF05Type=\u4F4F\u623F\u516C\u79EF\u91D1\u53C2\u7F34\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF05AType=\u4F4F\u623F\u516C\u79EF\u91D1\u53C2\u7F34\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF05AQ01Type=\u53C2\u7F34\u5730 +io.sc.creditreport.core.model.person.PF05AR01Type=\u53C2\u7F34\u65E5\u671F +io.sc.creditreport.core.model.person.PF05AD01Type=\u7F34\u8D39\u72B6\u6001 +io.sc.creditreport.core.model.person.PF05AR02Type=\u521D\u7F34\u6708\u4EFD +io.sc.creditreport.core.model.person.PF05AR03Type=\u7F34\u81F3\u6708\u4EFD +io.sc.creditreport.core.model.person.PF05AQ02Type=\u5355\u4F4D\u7F34\u5B58\u6BD4\u4F8B +io.sc.creditreport.core.model.person.PF05AQ03Type=\u4E2A\u4EBA\u7F34\u5B58\u6BD4\u4F8B +io.sc.creditreport.core.model.person.PF05AJ01Type=\u6708\u7F34\u5B58\u989D +io.sc.creditreport.core.model.person.PF05AQ04Type=\u7F34\u8D39\u5355\u4F4D +io.sc.creditreport.core.model.person.PF05AR04Type=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PF05ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF05ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF05ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF05ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF05ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF05ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PBSType=\u4F4E\u4FDD\u6551\u52A9\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF06Type=\u4F4E\u4FDD\u6551\u52A9\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF06AType=\u4F4E\u4FDD\u6551\u52A9\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF06AD01Type=\u4EBA\u5458\u7C7B\u522B +io.sc.creditreport.core.model.person.PF06AQ01Type=\u6240\u5728\u5730 +io.sc.creditreport.core.model.person.PF06AQ02Type=\u5DE5\u4F5C\u5355\u4F4D +io.sc.creditreport.core.model.person.PF06AQ03Type=\u5BB6\u5EAD\u6708\u6536\u5165 +io.sc.creditreport.core.model.person.PF06AR01Type=\u7533\u8BF7\u65E5\u671F +io.sc.creditreport.core.model.person.PF06AR02Type=\u6279\u51C6\u65E5\u671F +io.sc.creditreport.core.model.person.PF06AR03Type=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PF06ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF06ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF06ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF06ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF06ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF06ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PPQType=\u6267\u4E1A\u8D44\u683C\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF07Type=\u6267\u4E1A\u8D44\u683C\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF07AType=\u6267\u4E1A\u8D44\u683C\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF07AQ01Type=\u6267\u4E1A\u8D44\u683C\u540D\u79F0 +io.sc.creditreport.core.model.person.PF07AQ02Type=\u9881\u53D1\u673A\u6784 +io.sc.creditreport.core.model.person.PF07AD01Type=\u7B49\u7EA7 +io.sc.creditreport.core.model.person.PF07AD02Type=\u673A\u6784\u6240\u5728\u5730 +io.sc.creditreport.core.model.person.PF07AR01Type=\u83B7\u5F97\u5E74\u6708 +io.sc.creditreport.core.model.person.PF07AR02Type=\u5230\u671F\u5E74\u6708 +io.sc.creditreport.core.model.person.PF07AR03Type=\u540A\u9500\u5E74\u6708 +io.sc.creditreport.core.model.person.PF07ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF07ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF07ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF07ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF07ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF07ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PAHType=\u884C\u653F\u5956\u52B1\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF08Type=\u884C\u653F\u5956\u52B1\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF08AType=\u884C\u653F\u5956\u52B1\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF08AQ01Type=\u5956\u52B1\u673A\u6784 +io.sc.creditreport.core.model.person.PF08AQ02Type=\u5956\u52B1\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF08AR01Type=\u751F\u6548\u5E74\u6708 +io.sc.creditreport.core.model.person.PF08AR02Type=\u622A\u6B62\u5E74\u6708 +io.sc.creditreport.core.model.person.PF08ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF08ZS01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF08ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF08ZD01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF08ZQ01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF08ZR01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.POSType=\u5176\u4ED6\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PG01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PG010D01Type=\u5BF9\u8C61\u7C7B\u578B +io.sc.creditreport.core.model.person.PG010D02Type=\u5BF9\u8C61\u6807\u8BC6 +io.sc.creditreport.core.model.person.PG010S01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B\u4E2A\u6570 +io.sc.creditreport.core.model.person.PG010HType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PG010D03Type=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PG010Q01Type=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PG010R01Type=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.POQType=\u67E5\u8BE2\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PH01Type=\u67E5\u8BE2\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PH010R01Type=\u67E5\u8BE2\u65E5\u671F +io.sc.creditreport.core.model.person.PH010D01Type=\u67E5\u8BE2\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PH010Q02Type=\u67E5\u8BE2\u673A\u6784 +io.sc.creditreport.core.model.person.PH010Q03Type=\u67E5\u8BE2\u539F\u56E0 \ No newline at end of file diff --git a/io.sc.creditreport.core/src/main/resources/io/sc/creditreport/core/i18n/messages_zh_CN.properties b/io.sc.creditreport.core/src/main/resources/io/sc/creditreport/core/i18n/messages_zh_CN.properties new file mode 100644 index 00000000..a01e075a --- /dev/null +++ b/io.sc.creditreport.core/src/main/resources/io/sc/creditreport/core/i18n/messages_zh_CN.properties @@ -0,0 +1,477 @@ +io.sc.creditreport.core.model.person.PRHType=\u62A5\u544A\u5934 +io.sc.creditreport.core.model.person.PA01Type=\u62A5\u544A\u5934\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PA01AType=\u62A5\u544A\u6807\u8BC6\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01AI01=\u62A5\u544A\u7F16\u53F7 +io.sc.creditreport.core.model.person.PA01AR01=\u62A5\u544A\u65F6\u95F4 +io.sc.creditreport.core.model.person.PA01BType=\u672C\u6B21\u67E5\u8BE2\u8BF7\u6C42\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01BQ01=\u88AB\u67E5\u8BE2\u8005\u59D3\u540D +io.sc.creditreport.core.model.person.PA01BD01=\u88AB\u67E5\u8BE2\u8005\u8BC1\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PA01BI01=\u88AB\u67E5\u8BE2\u8005\u8BC1\u4EF6\u53F7\u7801 +io.sc.creditreport.core.model.person.PA01BI02=\u67E5\u8BE2\u673A\u6784\u4EE3\u7801 +io.sc.creditreport.core.model.person.PA01BD02=\u67E5\u8BE2\u539F\u56E0\u4EE3\u7801 +io.sc.creditreport.core.model.person.PA01CType=\u5176\u4ED6\u8EAB\u4EFD\u6807\u8BC6\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01CS01=\u8EAB\u4EFD\u6807\u8BC6\u4E2A\u6570 +io.sc.creditreport.core.model.person.PA01CHType=\u8EAB\u4EFD\u4FE1\u606F +io.sc.creditreport.core.model.person.PA01CD01=\u8BC1\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PA01CI01=\u8BC1\u4EF6\u53F7\u7801 +io.sc.creditreport.core.model.person.PA01DType=\u9632\u6B3A\u8BC8\u8B66\u793A\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01DQ01=\u9632\u6B3A\u8BC8\u8B66\u793A\u6807\u5FD7 +io.sc.creditreport.core.model.person.PA01DQ02=\u9632\u6B3A\u8BC8\u8B66\u793A\u8054\u7CFB\u7535\u8BDD +io.sc.creditreport.core.model.person.PA01DR01=\u9632\u6B3A\u8BC8\u8B66\u793A\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PA01DR02=\u9632\u6B3A\u8BC8\u8B66\u793A\u622A\u6B62\u65E5\u671F +io.sc.creditreport.core.model.person.PA01EType=\u5F02\u8BAE\u63D0\u793A\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PA01ES01=\u5F02\u8BAE\u6807\u6CE8\u6570\u76EE +io.sc.creditreport.core.model.person.PIMType=\u8EAB\u4EFD\u4FE1\u606F +io.sc.creditreport.core.model.person.PB01Type=\u8EAB\u4EFD\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB01AType=\u57FA\u672C\u6982\u51B5\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PB01AD01=\u6027\u522B +io.sc.creditreport.core.model.person.PB01AR01=\u51FA\u751F\u65E5\u671F +io.sc.creditreport.core.model.person.PB01AD02=\u5B66\u5386 +io.sc.creditreport.core.model.person.PB01AD03=\u5B66\u4F4D +io.sc.creditreport.core.model.person.PB01AD04=\u5C31\u4E1A\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB01AQ01=\u7535\u5B50\u90AE\u7BB1 +io.sc.creditreport.core.model.person.PB01AQ02=\u901A\u8BAF\u5730\u5740 +io.sc.creditreport.core.model.person.PB01AD05=\u56FD\u7C4D +io.sc.creditreport.core.model.person.PB01AQ03=\u6237\u7C4D\u5730\u5740 +io.sc.creditreport.core.model.person.PB01BType=\u624B\u673A\u53F7\u7801\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PB01BS01=\u624B\u673A\u53F7\u7801\u4E2A\u6570 +io.sc.creditreport.core.model.person.PB01BHType=\u624B\u673A\u53F7\u7801\u4FE1\u606F +io.sc.creditreport.core.model.person.PB01BQ01=\u624B\u673A\u53F7\u7801 +io.sc.creditreport.core.model.person.PB01BR01=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PMMType=\u5A5A\u59FB\u4FE1\u606F +io.sc.creditreport.core.model.person.PB02Type=\u5A5A\u59FB\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB020D01=\u5A5A\u59FB\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB020Q01=\u914D\u5076\u59D3\u540D +io.sc.creditreport.core.model.person.PB020D02=\u914D\u5076\u8BC1\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PB020I01=\u914D\u5076\u8BC1\u4EF6\u53F7\u7801 +io.sc.creditreport.core.model.person.PB020Q02=\u914D\u5076\u5DE5\u4F5C\u5355\u4F4D +io.sc.creditreport.core.model.person.PB020Q03=\u914D\u5076\u8054\u7CFB\u7535\u8BDD +io.sc.creditreport.core.model.person.PRMType=\u5C45\u4F4F\u4FE1\u606F +io.sc.creditreport.core.model.person.PB03Type=\u5C45\u4F4F\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB030D01=\u5C45\u4F4F\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB030Q01=\u5C45\u4F4F\u5730\u5740 +io.sc.creditreport.core.model.person.PB030Q02=\u4F4F\u5B85\u7535\u8BDD +io.sc.creditreport.core.model.person.PB030R01=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.POMType=\u804C\u4E1A\u4FE1\u606F +io.sc.creditreport.core.model.person.PB04Type=\u804C\u4E1A\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PB040D01=\u5C31\u4E1A\u72B6\u51B5 +io.sc.creditreport.core.model.person.PB040Q01=\u5DE5\u4F5C\u5355\u4F4D +io.sc.creditreport.core.model.person.PB040D02=\u5355\u4F4D\u6027\u8D28 +io.sc.creditreport.core.model.person.PB040D03=\u884C\u4E1A +io.sc.creditreport.core.model.person.PB040Q02=\u5355\u4F4D\u5730\u5740 +io.sc.creditreport.core.model.person.PB040Q03=\u5355\u4F4D\u7535\u8BDD +io.sc.creditreport.core.model.person.PB040D04=\u804C\u4E1A +io.sc.creditreport.core.model.person.PB040D05=\u804C\u52A1 +io.sc.creditreport.core.model.person.PB040D06=\u804C\u79F0 +io.sc.creditreport.core.model.person.PB040R01=\u8FDB\u5165\u672C\u5355\u4F4D\u5E74\u4EFD +io.sc.creditreport.core.model.person.PB040R02=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PSMType=\u8BC4\u5206\u4FE1\u606F +io.sc.creditreport.core.model.person.PC01Type=\u8BC4\u5206\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC010Q01=\u6570\u5B57\u89E3\u8BFB +io.sc.creditreport.core.model.person.PC010Q02=\u76F8\u5BF9\u4F4D\u7F6E +io.sc.creditreport.core.model.person.PC010S01=\u5206\u6570\u8BF4\u660E\u6761\u6570 +io.sc.creditreport.core.model.person.PC010D01=\u5206\u6570\u8BF4\u660E +io.sc.creditreport.core.model.person.PCOType=\u4FE1\u8D37\u4EA4\u6613\u4FE1\u606F\u6982\u8981 +io.sc.creditreport.core.model.person.PC02Type=\u4FE1\u8D37\u4EA4\u6613\u4FE1\u606F\u6982\u8981\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC02AType=\u4FE1\u8D37\u4EA4\u6613\u63D0\u793A\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02AS01=\u8D26\u6237\u6570\u5408\u8BA1 +io.sc.creditreport.core.model.person.PC02AS02=\u4E1A\u52A1\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC02AHType=\u4FE1\u8D37\u4EA4\u6613\u63D0\u793A\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02AD01=\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02AD02=\u4E1A\u52A1\u5927\u7C7B +io.sc.creditreport.core.model.person.PC02AS03=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02AR01=\u9996\u7B14\u4E1A\u52A1\u53D1\u653E\u6708\u4EFD +io.sc.creditreport.core.model.person.PC02BType=\u88AB\u8FFD\u507F\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02BS01=\u8D26\u6237\u6570\u5408\u8BA1 +io.sc.creditreport.core.model.person.PC02BJ01=\u4F59\u989D\u5408\u8BA1 +io.sc.creditreport.core.model.person.PC02BS02=\u4E1A\u52A1\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC02BHType=\u88AB\u8FFD\u507F\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02BD01=\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02BS03=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02BJ02=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02CType=\u5446\u8D26\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02CS01=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02CJ01=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02DType=\u903E\u671F\uFF08\u900F\u652F\uFF09\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02DS01=\u8D26\u6237\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC02DHType=\u903E\u671F\uFF08\u900F\u652F\uFF09\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02DD01=\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02DS02=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02DS03=\u6708\u4EFD\u6570 +io.sc.creditreport.core.model.person.PC02DJ01=\u5355\u6708\u6700\u9AD8\u903E\u671F\uFF08\u900F\u652F\uFF09\u603B\u989D +io.sc.creditreport.core.model.person.PC02DS04=\u6700\u957F\u903E\u671F\uFF08\u900F\u652F\uFF09\u6708\u6570 +io.sc.creditreport.core.model.person.PC02EType=\u975E\u5FAA\u73AF\u8D37\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02ES01=\u7BA1\u7406\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02ES02=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02EJ01=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02EJ02=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02EJ03=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PC02FType=\u5FAA\u73AF\u989D\u5EA6\u4E0B\u5206\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02FS01=\u7BA1\u7406\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02FS02=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02FJ01=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02FJ02=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02FJ03=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PC02GType=\u5FAA\u73AF\u8D37\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02GS01=\u7BA1\u7406\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02GS02=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02GJ01=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02GJ02=\u4F59\u989D +io.sc.creditreport.core.model.person.PC02GJ03=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PC02HType=\u8D37\u8BB0\u5361\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02HS01=\u53D1\u5361\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02HS02=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02HJ01=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02HJ02=\u5355\u5BB6\u884C\u6700\u9AD8\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02HJ03=\u5355\u5BB6\u884C\u6700\u4F4E\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02HJ04=\u5DF2\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PC02HJ05=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u4F7F\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PC02IType=\u51C6\u8D37\u8BB0\u5361\u8D26\u6237\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02IS01=\u53D1\u5361\u673A\u6784\u6570 +io.sc.creditreport.core.model.person.PC02IS02=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02IJ01=\u6388\u4FE1\u603B\u989D +io.sc.creditreport.core.model.person.PC02IJ02=\u5355\u5BB6\u884C\u6700\u9AD8\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02IJ03=\u5355\u5BB6\u884C\u6700\u4F4E\u6388\u4FE1\u989D +io.sc.creditreport.core.model.person.PC02IJ04=\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PC02IJ05=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PC02KType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC02KS01=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4E2A\u6570 +io.sc.creditreport.core.model.person.PC02KHType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC02KD01=\u501F\u6B3E\u4EBA\u8EAB\u4EFD\u7C7B\u522B +io.sc.creditreport.core.model.person.PC02KD02=\u8FD8\u6B3E\u8D23\u4EFB\u7C7B\u578B +io.sc.creditreport.core.model.person.PC02KS02=\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC02KJ01=\u8FD8\u6B3E\u8D23\u4EFB\u91D1\u989D +io.sc.creditreport.core.model.person.PC02KJ02=\u4F59\u989D +io.sc.creditreport.core.model.person.PNOType=\u975E\u4FE1\u8D37\u4EA4\u6613\u4FE1\u606F\u6982\u8981 +io.sc.creditreport.core.model.person.PC03Type=\u540E\u4ED8\u8D39\u4E1A\u52A1\u6B20\u8D39\u4FE1\u606F\u6C47\u603B\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC030S01=\u540E\u4ED8\u8D39\u4E1A\u52A1\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC030HType=\u540E\u4ED8\u8D39\u4E1A\u52A1\u6B20\u8D39\u4FE1\u606F\u6C47\u603B\u4FE1\u606F +io.sc.creditreport.core.model.person.PC030D01=\u540E\u4ED8\u8D39\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PC030S02=\u6B20\u8D39\u8D26\u6237\u6570 +io.sc.creditreport.core.model.person.PC030J01=\u6B20\u8D39\u91D1\u989D +io.sc.creditreport.core.model.person.PPOType=\u516C\u5171\u4FE1\u606F\u6982\u8981 +io.sc.creditreport.core.model.person.PC04Type=\u516C\u5171\u4FE1\u606F\u6982\u8981\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC040S01=\u516C\u5171\u4FE1\u606F\u7C7B\u578B\u6570\u91CF +io.sc.creditreport.core.model.person.PC040HType=\u516C\u5171\u4FE1\u606F\u6982\u8981\u4FE1\u606F +io.sc.creditreport.core.model.person.PC040D01=\u516C\u5171\u4FE1\u606F\u7C7B\u578B +io.sc.creditreport.core.model.person.PC040S02=\u8BB0\u5F55\u6570 +io.sc.creditreport.core.model.person.PC040J01=\u6D89\u53CA\u91D1\u989D +io.sc.creditreport.core.model.person.PQOType=\u67E5\u8BE2\u8BB0\u5F55\u6982\u8981 +io.sc.creditreport.core.model.person.PC05Type=\u67E5\u8BE2\u8BB0\u5F55\u6982\u8981\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PC05AType=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC05AR01=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u65E5\u671F +io.sc.creditreport.core.model.person.PC05AD01=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u673A\u6784\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PC05AI01=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u673A\u6784\u4EE3\u7801 +io.sc.creditreport.core.model.person.PC05AQ01=\u4E0A\u4E00\u6B21\u67E5\u8BE2\u539F\u56E0 +io.sc.creditreport.core.model.person.PC05BType=\u67E5\u8BE2\u8BB0\u5F55\u6C47\u603B\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PC05BS01=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u673A\u6784\u6570\uFF08\u8D37\u6B3E\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS02=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u673A\u6784\u6570\uFF08\u4FE1\u7528\u5361\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS03=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u8D37\u6B3E\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS04=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u4FE1\u7528\u5361\u5BA1\u6279\uFF09 +io.sc.creditreport.core.model.person.PC05BS05=\u6700\u8FD1 1 \u4E2A\u6708\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u672C\u4EBA\u67E5\u8BE2\uFF09 +io.sc.creditreport.core.model.person.PC05BS06=\u6700\u8FD1 2 \u5E74\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u8D37\u540E\u7BA1\u7406\uFF09 +io.sc.creditreport.core.model.person.PC05BS07=\u6700\u8FD1 2 \u5E74\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u62C5\u4FDD\u8D44\u683C\u5BA1\u67E5\uFF09 +io.sc.creditreport.core.model.person.PC05BS08=\u6700\u8FD1 2 \u5E74\u5185\u7684\u67E5\u8BE2\u6B21\u6570\uFF08\u7279\u7EA6\u5546\u6237\u5B9E\u540D\u5BA1\u67E5\uFF09 +io.sc.creditreport.core.model.person.PCAType=\u6388\u4FE1\u534F\u8BAE\u4FE1\u606F +io.sc.creditreport.core.model.person.PD02Type=\u6388\u4FE1\u534F\u8BAE\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PD02AType=\u57FA\u672C\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD02AI01=\u6388\u4FE1\u534F\u8BAE\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD02AD01=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PD02AI02=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784 +io.sc.creditreport.core.model.person.PD02AI03=\u6388\u4FE1\u534F\u8BAE\u6807\u8BC6 +io.sc.creditreport.core.model.person.PD02AD02=\u6388\u4FE1\u989D\u5EA6\u7528\u9014 +io.sc.creditreport.core.model.person.PD02AJ01=\u6388\u4FE1\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD02AD03=\u5E01\u79CD +io.sc.creditreport.core.model.person.PD02AR01=\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PD02AR02=\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD02AD04=\u6388\u4FE1\u534F\u8BAE\u72B6\u6001 +io.sc.creditreport.core.model.person.PD02AJ04=\u5DF2\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD02AJ03=\u6388\u4FE1\u9650\u989D +io.sc.creditreport.core.model.person.PD02AI04=\u6388\u4FE1\u9650\u989D\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD02ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD02ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD02ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD02ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PD02ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PD02ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PDAType=\u501F\u8D37\u8D26\u6237\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01Type=\u501F\u8D37\u8D26\u6237\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PD01AType=\u57FA\u672C\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01AI01=\u8D26\u6237\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD01AD01=\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01AD02=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01AI02=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u4EE3\u7801 +io.sc.creditreport.core.model.person.PD01AI03=\u8D26\u6237\u6807\u8BC6 +io.sc.creditreport.core.model.person.PD01AI04=\u6388\u4FE1\u534F\u8BAE\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD01AD03=\u4E1A\u52A1\u79CD\u7C7B +io.sc.creditreport.core.model.person.PD01AR01=\u5F00\u7ACB\u65E5\u671F +io.sc.creditreport.core.model.person.PD01AD04=\u5E01\u79CD +io.sc.creditreport.core.model.person.PD01AJ01=\u501F\u6B3E\u91D1\u989D +io.sc.creditreport.core.model.person.PD01AJ02=\u8D26\u6237\u6388\u4FE1\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01AJ03=\u5171\u4EAB\u6388\u4FE1\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01AR02=\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD01AD05=\u8FD8\u6B3E\u65B9\u5F0F +io.sc.creditreport.core.model.person.PD01AD06=\u8FD8\u6B3E\u9891\u7387 +io.sc.creditreport.core.model.person.PD01AS01=\u8FD8\u6B3E\u671F\u6570 +io.sc.creditreport.core.model.person.PD01AD07=\u62C5\u4FDD\u65B9\u5F0F +io.sc.creditreport.core.model.person.PD01AD08=\u8D37\u6B3E\u53D1\u653E\u5F62\u5F0F +io.sc.creditreport.core.model.person.PD01AD09=\u5171\u540C\u501F\u6B3E\u6807\u5FD7 +io.sc.creditreport.core.model.person.PD01AD10=\u503A\u6743\u8F6C\u79FB\u65F6\u7684\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01BType=\u6700\u65B0\u8868\u73B0\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01BD01=\u8D26\u6237\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01BR01=\u5173\u95ED\u65E5\u671F +io.sc.creditreport.core.model.person.PD01BR04=\u8F6C\u51FA\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01BJ01=\u4F59\u989D +io.sc.creditreport.core.model.person.PD01BR02=\u6700\u8FD1\u4E00\u6B21\u8FD8\u6B3E\u65E5\u671F +io.sc.creditreport.core.model.person.PD01BJ02=\u6700\u8FD1\u4E00\u6B21\u8FD8\u6B3E\u91D1\u989D +io.sc.creditreport.core.model.person.PD01BD03=\u4E94\u7EA7\u5206\u7C7B +io.sc.creditreport.core.model.person.PD01BD04=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01BR03=\u4FE1\u606F\u62A5\u544A\u65E5\u671F +io.sc.creditreport.core.model.person.PD01C=\u6700\u8FD1\u4E00\u6B21\u6708\u5EA6\u8868\u73B0\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01CR01=\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01CD01=\u8D26\u6237\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01CJ01=\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CJ02=\u5DF2\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01CJ03=\u672A\u51FA\u5355\u7684\u5927\u989D\u4E13\u9879\u5206\u671F\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CD02=\u4E94\u7EA7\u5206\u7C7B +io.sc.creditreport.core.model.person.PD01CS01=\u5269\u4F59\u8FD8\u6B3E\u671F\u6570 +io.sc.creditreport.core.model.person.PD01CR02=\u7ED3\u7B97/\u5E94\u8FD8\u6B3E\u65E5 +io.sc.creditreport.core.model.person.PD01CJ04=\u672C\u6708\u5E94\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PD01CJ05=\u672C\u6708\u5B9E\u8FD8\u6B3E +io.sc.creditreport.core.model.person.PD01CR03=\u6700\u8FD1\u4E00\u6B21\u8FD8\u6B3E\u65E5\u671F +io.sc.creditreport.core.model.person.PD01CS02=\u5F53\u524D\u903E\u671F\u671F\u6570 +io.sc.creditreport.core.model.person.PD01CJ06=\u5F53\u524D\u903E\u671F\u603B\u989D +io.sc.creditreport.core.model.person.PD01CJ07=\u903E\u671F 31\u201460 \u5929\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ08=\u903E\u671F 61\uFF0D90 \u5929\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ09=\u903E\u671F 91\uFF0D180 \u5929\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ10=\u903E\u671F 180 \u5929\u4EE5\u4E0A\u672A\u8FD8\u672C\u91D1 +io.sc.creditreport.core.model.person.PD01CJ11=\u900F\u652F 180 \u5929\u4EE5\u4E0A\u672A\u4ED8\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CJ12=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u4F7F\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01CJ13=\u6700\u8FD1 6 \u4E2A\u6708\u5E73\u5747\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CJ14=\u6700\u5927\u4F7F\u7528\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01CJ15=\u6700\u5927\u900F\u652F\u4F59\u989D +io.sc.creditreport.core.model.person.PD01CR04=\u4FE1\u606F\u62A5\u544A\u65E5\u671F +io.sc.creditreport.core.model.person.PD01DType=\u6700\u8FD1 24 \u4E2A\u6708\u8FD8\u6B3E\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01DR01=\u8D77\u59CB\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01DR02=\u622A\u6B62\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01DHType=\u8FD8\u6B3E\u72B6\u6001\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01DR03=\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01DD01=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01EType=\u6700\u8FD1 5 \u5E74\u5185\u5386\u53F2\u8868\u73B0\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01ER01=\u8D77\u59CB\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01ER02=\u622A\u6B62\u5E74\u6708 +io.sc.creditreport.core.model.person.PD01ES01=\u6708\u6570 +io.sc.creditreport.core.model.person.PD01EHType=\u5386\u53F2\u8868\u73B0\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01ER03=\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01ED01=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD01EJ01=\u903E\u671F\uFF08\u900F\u652F\uFF09\u603B\u989D +io.sc.creditreport.core.model.person.PD01FType=\u7279\u6B8A\u4EA4\u6613\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01FS01=\u7279\u6B8A\u4EA4\u6613\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD01FHType=\u7279\u6B8A\u4EA4\u6613\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01FD01=\u7279\u6B8A\u4EA4\u6613\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01FR01=\u7279\u6B8A\u4EA4\u6613\u53D1\u751F\u65E5\u671F +io.sc.creditreport.core.model.person.PD01FS02=\u5230\u671F\u65E5\u671F\u53D8\u66F4\u6708\u6570 +io.sc.creditreport.core.model.person.PD01FJ01=\u7279\u6B8A\u4EA4\u6613\u53D1\u751F\u91D1\u989D +io.sc.creditreport.core.model.person.PD01FQ01=\u7279\u6B8A\u4EA4\u6613\u660E\u7EC6\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PD01GType=\u7279\u6B8A\u4E8B\u4EF6\u8BF4\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01GS01=\u7279\u6B8A\u4E8B\u4EF6\u8BF4\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD01GHType=\u7279\u6B8A\u4E8B\u4EF6\u8BF4\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01GR01=\u7279\u6B8A\u4E8B\u4EF6\u53D1\u751F\u6708\u4EFD +io.sc.creditreport.core.model.person.PD01GD01=\u7279\u6B8A\u4E8B\u4EF6\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01HType=\u5927\u989D\u4E13\u9879\u5206\u671F\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01HS01=\u5927\u989D\u4E13\u9879\u5206\u671F\u7B14\u6570 +io.sc.creditreport.core.model.person.PD01HHType=\u5927\u989D\u4E13\u9879\u5206\u671F\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01HJ01=\u5927\u989D\u4E13\u9879\u5206\u671F\u989D\u5EA6 +io.sc.creditreport.core.model.person.PD01HR01=\u5206\u671F\u989D\u5EA6\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PD01HR02=\u5206\u671F\u989D\u5EA6\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD01HJ02=\u5DF2\u7528\u5206\u671F\u91D1\u989D +io.sc.creditreport.core.model.person.PD01ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD01ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD01ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD01ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PD01ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PD01ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PCRType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4FE1\u606F +io.sc.creditreport.core.model.person.PD03Type=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PD03AType=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD03AD08=\u4E3B\u501F\u6B3E\u4EBA\u8EAB\u4EFD\u7C7B\u522B +io.sc.creditreport.core.model.person.PD03AD01=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03AQ01=\u4E1A\u52A1\u7BA1\u7406\u673A\u6784 +io.sc.creditreport.core.model.person.PD03AD02=\u4E1A\u52A1\u79CD\u7C7B +io.sc.creditreport.core.model.person.PD03AR01=\u5F00\u7ACB\u65E5\u671F +io.sc.creditreport.core.model.person.PD03AR02=\u5230\u671F\u65E5\u671F +io.sc.creditreport.core.model.person.PD03AD03=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u4EBA\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03AQ02=\u4FDD\u8BC1\u5408\u540C\u7F16\u53F7 +io.sc.creditreport.core.model.person.PD03AJ01=\u76F8\u5173\u8FD8\u6B3E\u8D23\u4EFB\u91D1\u989D +io.sc.creditreport.core.model.person.PD03AD04=\u5E01\u79CD +io.sc.creditreport.core.model.person.PD03AJ02=\u4F59\u989D +io.sc.creditreport.core.model.person.PD03AD05=\u4E94\u7EA7\u5206\u7C7B +io.sc.creditreport.core.model.person.PD03AD06=\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03AD07=\u8FD8\u6B3E\u72B6\u6001 +io.sc.creditreport.core.model.person.PD03AS01=\u903E\u671F\u6708\u6570 +io.sc.creditreport.core.model.person.PD03AR03=\u4FE1\u606F\u62A5\u544A\u65E5\u671F +io.sc.creditreport.core.model.person.PD03ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PD03ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PD03ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PD03ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PD03ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PD03ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PNDType=\u540E\u4ED8\u8D39\u4E1A\u52A1\u4FE1\u606F +io.sc.creditreport.core.model.person.PE01Type=\u540E\u4ED8\u8D39\u4E1A\u52A1\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PE01AType=\u540E\u4ED8\u8D39\u4E1A\u52A1\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PE01AD01=\u540E\u4ED8\u8D39\u8D26\u6237\u7C7B\u578B +io.sc.creditreport.core.model.person.PE01AQ01=\u673A\u6784\u540D\u79F0 +io.sc.creditreport.core.model.person.PE01AD02=\u4E1A\u52A1\u7C7B\u578B +io.sc.creditreport.core.model.person.PE01AR01=\u4E1A\u52A1\u5F00\u901A\u65E5\u671F +io.sc.creditreport.core.model.person.PE01AD03=\u5F53\u524D\u7F34\u8D39\u72B6\u6001 +io.sc.creditreport.core.model.person.PE01AJ01=\u5F53\u524D\u6B20\u8D39\u91D1\u989D +io.sc.creditreport.core.model.person.PE01AR02=\u8BB0\u8D26\u5E74\u6708 +io.sc.creditreport.core.model.person.PE01AQ02=\u6700\u8FD1 24 \u4E2A\u6708\u7F34\u8D39\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PE01ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PE01ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PE01ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PE01ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PE01ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PE01ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.POTType=\u6B20\u7A0E\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF01Type=\u6B20\u7A0E\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF01AType=\u6B20\u7A0E\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF01AQ01=\u4E3B\u7BA1\u7A0E\u52A1\u673A\u5173 +io.sc.creditreport.core.model.person.PF01AJ01=\u6B20\u7A0E\u603B\u989D +io.sc.creditreport.core.model.person.PF01AR01=\u6B20\u7A0E\u7EDF\u8BA1\u65E5\u671F +io.sc.creditreport.core.model.person.PF01ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF01ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF01ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF01ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF01ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF01ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PCJType=\u6C11\u4E8B\u5224\u51B3\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF02Type=\u6C11\u4E8B\u5224\u51B3\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF02AType=\u6C11\u4E8B\u5224\u51B3\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF02AQ01=\u7ACB\u6848\u6CD5\u9662 +io.sc.creditreport.core.model.person.PF02AQ02=\u6848\u7531 +io.sc.creditreport.core.model.person.PF02AR01=\u7ACB\u6848\u65E5\u671F +io.sc.creditreport.core.model.person.PF02AD01=\u7ED3\u6848\u65B9\u5F0F +io.sc.creditreport.core.model.person.PF02AQ03=\u5224\u51B3/\u8C03\u89E3\u7ED3\u679C +io.sc.creditreport.core.model.person.PF02AR02=\u5224\u51B3/\u8C03\u89E3\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PF02AQ04=\u8BC9\u8BBC\u6807\u7684 +io.sc.creditreport.core.model.person.PF02AJ01=\u8BC9\u8BBC\u6807\u7684\u91D1\u989D +io.sc.creditreport.core.model.person.PF02ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF02ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF02ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF02ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF02ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF02ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PCEType=\u5F3A\u5236\u6267\u884C\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF03Type=\u5F3A\u5236\u6267\u884C\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF03AType=\u5F3A\u5236\u6267\u884C\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF03AQ01=\u6267\u884C\u6CD5\u9662 +io.sc.creditreport.core.model.person.PF03AQ02=\u6267\u884C\u6848\u7531 +io.sc.creditreport.core.model.person.PF03AR01=\u7ACB\u6848\u65E5\u671F +io.sc.creditreport.core.model.person.PF03AD01=\u7ED3\u6848\u65B9\u5F0F +io.sc.creditreport.core.model.person.PF03AQ03=\u6848\u4EF6\u72B6\u6001 +io.sc.creditreport.core.model.person.PF03AR02=\u7ED3\u6848\u65E5\u671F +io.sc.creditreport.core.model.person.PF03AQ04=\u7533\u8BF7\u6267\u884C\u6807\u7684 +io.sc.creditreport.core.model.person.PF03AJ01=\u7533\u8BF7\u6267\u884C\u6807\u7684\u91D1\u989D +io.sc.creditreport.core.model.person.PF03AQ05=\u5DF2\u6267\u884C\u6807\u7684 +io.sc.creditreport.core.model.person.PF03AJ02=\u5DF2\u6267\u884C\u6807\u7684\u91D1\u989D +io.sc.creditreport.core.model.person.PF03ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF03ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF03ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF03ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF03ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF03ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PAPType=\u884C\u653F\u5904\u7F5A\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF04Type=\u884C\u653F\u5904\u7F5A\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF04AType=\u884C\u653F\u5904\u7F5A\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF04AQ01=\u5904\u7F5A\u673A\u6784 +io.sc.creditreport.core.model.person.PF04AQ02=\u5904\u7F5A\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF04AJ01=\u5904\u7F5A\u91D1\u989D +io.sc.creditreport.core.model.person.PF04AR01=\u5904\u7F5A\u751F\u6548\u65E5\u671F +io.sc.creditreport.core.model.person.PF04AR02=\u5904\u7F5A\u622A\u6B62\u65E5\u671F +io.sc.creditreport.core.model.person.PF04AQ03=\u884C\u653F\u590D\u8BAE\u7ED3\u679C +io.sc.creditreport.core.model.person.PF04ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF04ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF04ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF04ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF04ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF04ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PHFType=\u4F4F\u623F\u516C\u79EF\u91D1\u53C2\u7F34\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF05Type=\u4F4F\u623F\u516C\u79EF\u91D1\u53C2\u7F34\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF05AType=\u4F4F\u623F\u516C\u79EF\u91D1\u53C2\u7F34\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF05AQ01=\u53C2\u7F34\u5730 +io.sc.creditreport.core.model.person.PF05AR01=\u53C2\u7F34\u65E5\u671F +io.sc.creditreport.core.model.person.PF05AD01=\u7F34\u8D39\u72B6\u6001 +io.sc.creditreport.core.model.person.PF05AR02=\u521D\u7F34\u6708\u4EFD +io.sc.creditreport.core.model.person.PF05AR03=\u7F34\u81F3\u6708\u4EFD +io.sc.creditreport.core.model.person.PF05AQ02=\u5355\u4F4D\u7F34\u5B58\u6BD4\u4F8B +io.sc.creditreport.core.model.person.PF05AQ03=\u4E2A\u4EBA\u7F34\u5B58\u6BD4\u4F8B +io.sc.creditreport.core.model.person.PF05AJ01=\u6708\u7F34\u5B58\u989D +io.sc.creditreport.core.model.person.PF05AQ04=\u7F34\u8D39\u5355\u4F4D +io.sc.creditreport.core.model.person.PF05AR04=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PF05ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF05ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF05ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF05ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF05ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF05ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PBSType=\u4F4E\u4FDD\u6551\u52A9\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF06Type=\u4F4E\u4FDD\u6551\u52A9\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF06AType=\u4F4E\u4FDD\u6551\u52A9\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF06AD01=\u4EBA\u5458\u7C7B\u522B +io.sc.creditreport.core.model.person.PF06AQ01=\u6240\u5728\u5730 +io.sc.creditreport.core.model.person.PF06AQ02=\u5DE5\u4F5C\u5355\u4F4D +io.sc.creditreport.core.model.person.PF06AQ03=\u5BB6\u5EAD\u6708\u6536\u5165 +io.sc.creditreport.core.model.person.PF06AR01=\u7533\u8BF7\u65E5\u671F +io.sc.creditreport.core.model.person.PF06AR02=\u6279\u51C6\u65E5\u671F +io.sc.creditreport.core.model.person.PF06AR03=\u4FE1\u606F\u66F4\u65B0\u65E5\u671F +io.sc.creditreport.core.model.person.PF06ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF06ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF06ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF06ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF06ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF06ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PPQType=\u6267\u4E1A\u8D44\u683C\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF07Type=\u6267\u4E1A\u8D44\u683C\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF07AType=\u6267\u4E1A\u8D44\u683C\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF07AQ01=\u6267\u4E1A\u8D44\u683C\u540D\u79F0 +io.sc.creditreport.core.model.person.PF07AQ02=\u9881\u53D1\u673A\u6784 +io.sc.creditreport.core.model.person.PF07AD01=\u7B49\u7EA7 +io.sc.creditreport.core.model.person.PF07AD02=\u673A\u6784\u6240\u5728\u5730 +io.sc.creditreport.core.model.person.PF07AR01=\u83B7\u5F97\u5E74\u6708 +io.sc.creditreport.core.model.person.PF07AR02=\u5230\u671F\u5E74\u6708 +io.sc.creditreport.core.model.person.PF07AR03=\u540A\u9500\u5E74\u6708 +io.sc.creditreport.core.model.person.PF07ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF07ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF07ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF07ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF07ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF07ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.PAHType=\u884C\u653F\u5956\u52B1\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PF08Type=\u884C\u653F\u5956\u52B1\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PF08AType=\u884C\u653F\u5956\u52B1\u8BB0\u5F55\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF08AQ01=\u5956\u52B1\u673A\u6784 +io.sc.creditreport.core.model.person.PF08AQ02=\u5956\u52B1\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF08AR01=\u751F\u6548\u5E74\u6708 +io.sc.creditreport.core.model.person.PF08AR02=\u622A\u6B62\u5E74\u6708 +io.sc.creditreport.core.model.person.PF08ZType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u6BB5 +io.sc.creditreport.core.model.person.PF08ZS01=\u6807\u6CE8\u53CA\u58F0\u660E\u4E2A\u6570 +io.sc.creditreport.core.model.person.PF08ZHType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PF08ZD01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PF08ZQ01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PF08ZR01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.POSType=\u5176\u4ED6\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PG01Type=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PG010D01=\u5BF9\u8C61\u7C7B\u578B +io.sc.creditreport.core.model.person.PG010D02=\u5BF9\u8C61\u6807\u8BC6 +io.sc.creditreport.core.model.person.PG010S01=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B\u4E2A\u6570 +io.sc.creditreport.core.model.person.PG010HType=\u6807\u6CE8\u53CA\u58F0\u660E\u4FE1\u606F +io.sc.creditreport.core.model.person.PG010D03=\u6807\u6CE8\u53CA\u58F0\u660E\u7C7B\u578B +io.sc.creditreport.core.model.person.PG010Q01=\u6807\u6CE8\u6216\u58F0\u660E\u5185\u5BB9 +io.sc.creditreport.core.model.person.PG010R01=\u6DFB\u52A0\u65E5\u671F +io.sc.creditreport.core.model.person.POQType=\u67E5\u8BE2\u8BB0\u5F55 +io.sc.creditreport.core.model.person.PH01Type=\u67E5\u8BE2\u8BB0\u5F55\u4FE1\u606F\u5355\u5143 +io.sc.creditreport.core.model.person.PH010R01=\u67E5\u8BE2\u65E5\u671F +io.sc.creditreport.core.model.person.PH010D01=\u67E5\u8BE2\u673A\u6784\u7C7B\u578B +io.sc.creditreport.core.model.person.PH010Q02=\u67E5\u8BE2\u673A\u6784 +io.sc.creditreport.core.model.person.PH010Q03=\u67E5\u8BE2\u539F\u56E0 \ No newline at end of file diff --git a/io.sc.creditreport.core/src/test/java/io/sc/creditreport/core/CreditReportTest.java b/io.sc.creditreport.core/src/test/java/io/sc/creditreport/core/CreditReportTest.java new file mode 100644 index 00000000..b5941d2b --- /dev/null +++ b/io.sc.creditreport.core/src/test/java/io/sc/creditreport/core/CreditReportTest.java @@ -0,0 +1,24 @@ +package io.sc.creditreport.core; + +import org.springframework.util.StreamUtils; + +import java.io.IOException; +import java.nio.charset.StandardCharsets; + +public class CreditReportTest { + public static void main(String[] args) throws IOException { + person(); + } + + private static void person() throws IOException { + String content = StreamUtils.copyToString(Test.class.getResourceAsStream("/io/sc/creditreport/core/xml/个人接口报文.xml"), StandardCharsets.UTF_8); + io.sc.creditreport.core.model.person.Document document =CreditReportParser.parsePersonCreditReport(content); + System.out.println(document.getPce().getPf03().get(0).getPf03a().getPf03ar01()); + } + + private static void company() throws IOException { + String content = StreamUtils.copyToString(Test.class.getResourceAsStream("/io/sc/creditreport/core/xml/企业接口报文.xml"), StandardCharsets.UTF_8); + io.sc.creditreport.core.model.company.Document document =CreditReportParser.parseCompanyCreditReport(content); + System.out.println(document.getEaa().getEa01().getEa01a().getEa01ai01()); + } +} diff --git a/io.sc.creditreport.core/src/test/resources/io/sc/creditreport/core/xml/个人接口报文.xml b/io.sc.creditreport.core/src/test/resources/io/sc/creditreport/core/xml/个人接口报文.xml new file mode 100644 index 00000000..e11a1d9d --- /dev/null +++ b/io.sc.creditreport.core/src/test/resources/io/sc/creditreport/core/xml/个人接口报文.xml @@ -0,0 +1,3337 @@ + + + + + 2019021408350416551574 + 2019-02-14T08:35:04 + + + ��ijij + 10 + 11010819931010444X + T10152521H0001 + 01 + + + + + + + + + 0 + + + + + + + 1 + 1981-08-15 + 20 + 4 + 91 + zhang15@hotmail.com + 北京市西城区金融大街35号国际企业大厦A座301室 + CHN + 北京市朝阳区春晓园北区7号楼C522室 + + + 5 + + 13811117777 + 2018-10-01 + + + 13811112222 + 2018-09-22 + + + 13900000000 + 2017-02-01 + + + 13300000000 + 2017-01-22 + + + 18600000000 + 2016-11-12 + + + + + + + 20 + 李金花 + 8 + 12356000000888 + 三星电子北京分公司财务部 + 13800003333 + + + + + 2 + 北京市朝阳区春晓园北区7号楼C555室 + 010-83234323 + 2018-10-01 + + + 4 + 北京市海淀区学院路20号院甲2号楼401室 + 010-62123212 + 2018-09-22 + + + 5 + 北京市西城区复兴门北大街4号楼603室 + 010-59873232 + 2017-02-01 + + + 5 + 北京市西城区西交民巷64号院1号楼201室 + 010-59000011 + 2017-01-22 + + + 5 + 北京市海淀区花园路10号院3号楼701室 + 010-57889900 + 2016-11-12 + + + + + 91 + 中国人民银行征信中心企业部 + 10 + J + 北京市西城区金融大街35号国际企业大厦A座305室 + 010-83233333 + 3 + 2 + 2 + 2008 + 2018-10-01 + + + 91 + 北京大学信息科学技术学院软件工程研究所 + 10 + M + 北京市海淀区颐和园路5号理科3号楼601室 + 010-62123333 + 1 + 2 + 2 + 2007 + 2018-09-22 + + + 91 + 中科院微电子研究所 + 10 + M + 北京市海淀区清华园1号 + 010-59875555 + 1 + 3 + 3 + 2004 + 2017-02-01 + + + 91 + 北京威力公司 + 40 + M + 北京市朝阳区北土城西路3号 + 010-59006666 + 1 + 3 + 3 + 2003 + 2017-01-22 + + + 91 + IBM软件中心 + 30 + M + 北京市朝阳区北辰东路8号 + 010-57889900 + 1 + 3 + 3 + 2001 + 2016-11-12 + + + + + + + + + 7 + 4 + + 11 + 1 + 2 + 2010-01 + + + 19 + 1 + 2 + 2014-09 + + + 21 + 2 + 2 + 2009-05 + + + 22 + 2 + 1 + 2009-05 + + + + 1 + 0 + 1 + + 2 + 1 + 0 + + + + 1 + 17100 + + + 5 + + 1 + 1 + 2 + 6100 + 2 + + + 2 + 1 + 2 + 6000 + 1 + + + 3 + 1 + 2 + 6100 + 2 + + + 4 + 1 + 8 + 24550 + 7 + + + 5 + 1 + 1 + 1000 + 3 + + + + 1 + 2 + 860000 + 417100 + 6000 + + + 1 + 1 + 1200000 + 40000 + 2000 + + + 1 + 1 + 70000 + 30000 + 5000 + + + 1 + 2 + 190000 + 160000 + 160000 + 135500 + 90000 + + + 1 + 1 + 16000 + 16000 + 16000 + 1000 + 1000 + + + 2 + + 1 + 1 + 2 + 220000 + 110000 + + + 2 + 1 + 1 + 1375838 + 687919 + + + + + + + 1 + + 1 + 1 + 1000 + + + + + + 4 + + 1 + 1 + 500 + + + 2 + 1 + 500000 + + + 3 + 1 + 420000 + + + 4 + 2 + 400 + + + + + + + 2019-02-13 + 11 + UV + 02 + + + 11 + 8 + 16 + 14 + 0 + 39 + 1 + 5 + + + + + + + 37745 + 11 + SR + Q705 + 31 + 16000 + CNY + 2009-04-01 + 2099-12-31 + 1 + 1000 + + + + + + + 96537 + 11 + SR + I211 + 31 + 30000 + CNY + 2017-04-01 + 2099-12-31 + 1 + 0 + + + + + + + 66837 + 11 + SR + F954 + 10 + 1200000 + USD + 2012-10-01 + 2020-01-31 + 1 + 40000 + + + + + + + 95604 + 11 + SR + J639 + 31 + 160000 + CNY + 2009-05-01 + 2099-12-31 + 1 + 135500 + + + + + + + 96085 + 11 + SR + H157 + 10 + 70000 + USD + 2014-09-01 + 2019-01-31 + 1 + 30000 + + + + + + + 97098 + 11 + SR + F645 + 20 + 500000 + USD + 2010-09-01 + 2020-01-31 + 1 + 500000 + 100000 + R134 + + + + + + + 55165 + C1 + 53 + YO + B1 + 2007-11-08 + 10000 + 2 + + + 2 + 2018-01-20 + + + 2018-01-20 + + + 1 + + 2 + 2018-01-20 + 0 + 10000 + 该贷款由XX公司代偿10,000元 + + + + + + 73655 + D1 + 11 + SR + + + 11 + 2010-01-22 + CNY + 360000 + 2020-01-19 + 12 + 03 + 180 + 2 + 1 + 1 + + + 4 + + + 17100 + 2018-10-25 + + + + 2018-10-25 + + + 2016-11 + 2018-10 + + 2018-10 + B + + + 2018-09 + B + + + 2018-08 + B + + + 2018-07 + B + + + 2018-06 + B + + + 2018-05 + B + + + 2018-04 + B + + + 2018-03 + B + + + 2018-02 + B + + + 2018-01 + B + + + 2017-12 + B + + + 2017-11 + B + + + 2017-10 + B + + + 2017-09 + B + + + 2017-08 + B + + + 2017-07 + B + + + 2017-06 + B + + + 2017-05 + B + + + 2017-04 + B + + + 2017-03 + B + + + 2017-02 + B + + + 2017-01 + B + + + 2016-12 + B + + + 2016-11 + B + + + + 2014-03 + 2018-10 + 56 + + 2018-10 + B + 17100 + + + 2018-09 + B + 17000 + + + 2018-08 + B + 16900 + + + 2018-07 + B + 16800 + + + 2018-06 + B + 16700 + + + 2018-05 + B + 16600 + + + 2018-04 + B + 16500 + + + 2018-03 + B + 16400 + + + 2018-02 + B + 16300 + + + 2018-01 + B + 16200 + + + 2017-12 + B + 16200 + + + 2017-11 + B + 16200 + + + 2017-10 + B + 16200 + + + 2017-09 + B + 16200 + + + 2017-08 + B + 16200 + + + 2017-07 + B + 16200 + + + 2017-06 + B + 16200 + + + 2017-05 + B + 16200 + + + 2017-04 + B + 16200 + + + 2017-03 + B + 16200 + + + 2017-02 + B + 16200 + + + 2017-01 + B + 16200 + + + 2016-12 + B + 16200 + + + 2016-11 + B + 16200 + + + 2016-10 + B + 16200 + + + 2016-09 + B + 16200 + + + 2016-08 + B + 16200 + + + 2016-07 + B + 16200 + + + 2016-06 + B + 16200 + + + 2016-05 + 7 + 16200 + + + 2016-04 + 6 + 16200 + + + 2016-03 + 5 + 16200 + + + 2016-02 + 4 + 16200 + + + 2016-01 + 3 + 16200 + + + 2015-12 + 2 + 16200 + + + 2015-11 + 1 + 16200 + + + 2015-10 + N + 0 + + + 2015-09 + N + 0 + + + 2015-08 + N + 0 + + + 2015-07 + N + 0 + + + 2015-06 + N + 0 + + + 2015-05 + N + 0 + + + 2015-04 + N + 0 + + + 2015-03 + N + 0 + + + 2015-02 + N + 0 + + + 2015-01 + N + 0 + + + 2014-12 + N + 0 + + + 2014-11 + N + 0 + + + 2014-10 + N + 0 + + + 2014-09 + N + 0 + + + 2014-08 + N + 0 + + + 2014-07 + N + 0 + + + 2014-06 + N + 0 + + + 2014-05 + N + 0 + + + 2014-04 + N + 0 + + + 2014-03 + N + 0 + + + + + + 75050 + D1 + 11 + SR + + 97098 + 11 + 2010-09-22 + USD + 500000 + 2025-09-21 + 12 + 03 + 180 + 2 + 5 + 0 + + + + + + 394000 + 2018-10-31 + 6100 + 1 + N + 2018-10-31 + + + 2018-10 + 2 + 400000 + 3 + 125 + 2018-10-05 + 5000 + 0 + 2018-10-05 + 2 + 6100 + 1000 + 0 + 0 + 0 + 2018-10-05 + + + 2016-11 + 2018-10 + + 2018-10 + 2 + + + 2018-09 + 1 + + + 2018-08 + N + + + 2018-07 + N + + + 2018-06 + N + + + 2018-05 + N + + + 2018-04 + N + + + 2018-03 + N + + + 2018-02 + N + + + 2018-01 + N + + + 2017-12 + N + + + 2017-11 + N + + + 2017-10 + N + + + 2017-09 + N + + + 2017-08 + N + + + 2017-07 + N + + + 2017-06 + N + + + 2017-05 + N + + + 2017-04 + N + + + 2017-03 + N + + + 2017-02 + N + + + 2017-01 + N + + + 2016-12 + N + + + 2016-11 + N + + + + 2014-03 + 2018-10 + 56 + + 2018-10 + 2 + 6100 + + + 2018-09 + 1 + 3000 + + + 2018-08 + N + 0 + + + 2018-07 + N + 0 + + + 2018-06 + N + 0 + + + 2018-05 + N + 0 + + + 2018-04 + N + 0 + + + 2018-03 + N + 0 + + + 2018-02 + N + 0 + + + 2018-01 + N + 0 + + + 2017-12 + N + 0 + + + 2017-11 + N + 0 + + + 2017-10 + N + 0 + + + 2017-09 + N + 0 + + + 2017-08 + N + 0 + + + 2017-07 + N + 0 + + + 2017-06 + N + 0 + + + 2017-05 + N + 0 + + + 2017-04 + N + 0 + + + 2017-03 + N + 0 + + + 2017-02 + N + 0 + + + 2017-01 + N + 0 + + + 2016-12 + N + 0 + + + 2016-11 + N + 0 + + + 2016-10 + N + 0 + + + 2016-09 + N + 0 + + + 2016-08 + N + 0 + + + 2016-07 + N + 0 + + + 2016-06 + N + 0 + + + 2016-05 + N + 0 + + + 2016-04 + N + 0 + + + 2016-03 + N + 0 + + + 2016-02 + N + 0 + + + 2016-01 + N + 0 + + + 2015-12 + N + 0 + + + 2015-11 + N + 0 + + + 2015-10 + N + 0 + + + 2015-09 + N + 0 + + + 2015-08 + N + 0 + + + 2015-07 + N + 0 + + + 2015-06 + N + 0 + + + 2015-05 + N + 0 + + + 2015-04 + N + 0 + + + 2015-03 + N + 0 + + + 2015-02 + N + 0 + + + 2015-01 + N + 0 + + + 2014-12 + N + 0 + + + 2014-11 + N + 0 + + + 2014-10 + N + 0 + + + 2014-09 + N + 0 + + + 2014-08 + N + 0 + + + 2014-07 + N + 0 + + + 2014-06 + N + 0 + + + 2014-05 + N + 0 + + + 2014-04 + N + 0 + + + 2014-03 + N + 0 + + + + 1 + + 2 + 2017-07-05 + 0 + 20000 + 该贷款由阿里公司代偿20000元 + + + + + + 80253 + R1 + 11 + SR + + 96085 + 91 + 2016-07-22 + USD + 70000 + 2019-01-31 + 31 + 03 + 2 + 0 + + + + + 30000 + 2018-10-05 + + 3 + 2 + 2018-10-05 + + + 2018-10 + 2 + 30000 + 3 + 20 + 2018-10-05 + 5000 + 0 + 2018-10-05 + 2 + 6100 + 1000 + 0 + 0 + 0 + 2018-10-05 + + + 2016-11 + 2018-10 + + 2018-10 + 2 + + + 2018-09 + 1 + + + 2018-08 + N + + + 2018-07 + N + + + 2018-06 + N + + + 2018-05 + N + + + 2018-04 + N + + + 2018-03 + N + + + 2018-02 + N + + + 2018-01 + N + + + 2017-12 + N + + + 2017-11 + N + + + 2017-10 + N + + + 2017-09 + N + + + 2017-08 + N + + + 2017-07 + N + + + 2017-06 + N + + + 2017-05 + N + + + 2017-04 + N + + + 2017-03 + N + + + 2017-02 + N + + + 2017-01 + N + + + 2016-12 + N + + + 2016-11 + N + + + + 2016-07 + 2018-10 + 28 + + 2018-10 + 2 + 6100 + + + 2018-09 + 1 + 6000 + + + 2018-08 + N + 0 + + + 2018-07 + N + 0 + + + 2018-06 + N + 0 + + + 2018-05 + N + 0 + + + 2018-04 + N + 0 + + + 2018-03 + N + 0 + + + 2018-02 + N + 0 + + + 2018-01 + N + 0 + + + 2017-12 + N + 0 + + + 2017-11 + N + 0 + + + 2017-10 + N + 0 + + + 2017-09 + N + 0 + + + 2017-08 + N + 0 + + + 2017-07 + N + 0 + + + 2017-06 + N + 0 + + + 2017-05 + N + 0 + + + 2017-04 + N + 0 + + + 2017-03 + N + 0 + + + 2017-02 + N + 0 + + + 2017-01 + N + 0 + + + 2016-12 + N + 0 + + + 2016-11 + N + 0 + + + 2016-10 + N + 0 + + + 2016-09 + N + 0 + + + 2016-08 + N + 0 + + + 2016-07 + N + 0 + + + + + + 55900 + R2 + 11 + SR + + 95604 + 81 + 2009-05-22 + CNY + 160000 + + 4 + + + + + 230950 + 2018-09-25 + 24550 + N + 2018-09-25 + + + 2018-09 + 1 + 255500 + 135500 + 110000 + 11 + 2018-09-12 + 24500 + 0 + 2018-09-10 + 1 + 24550 + 90000 + 150000 + 2018-09-12 + + + 2016-10 + 2018-09 + + 2018-09 + 1 + + + 2018-08 + N + + + 2018-07 + N + + + 2018-06 + N + + + 2018-05 + N + + + 2018-04 + N + + + 2018-03 + N + + + 2018-02 + N + + + 2018-01 + N + + + 2017-12 + 7 + + + 2017-11 + 6 + + + 2017-10 + 5 + + + 2017-09 + 4 + + + 2017-08 + 3 + + + 2017-07 + 2 + + + 2017-06 + 1 + + + 2017-05 + N + + + 2017-04 + N + + + 2017-03 + N + + + 2017-02 + N + + + 2017-01 + N + + + 2016-12 + N + + + 2016-11 + N + + + 2016-10 + N + + + + 2014-03 + 2018-09 + 55 + + 2018-09 + 1 + 24550 + + + 2018-08 + N + 0 + + + 2018-07 + N + 0 + + + 2018-06 + N + 0 + + + 2018-05 + N + 0 + + + 2018-04 + N + 0 + + + 2018-03 + N + 0 + + + 2018-02 + N + 0 + + + 2018-01 + N + 0 + + + 2017-12 + 7 + 10000 + + + 2017-11 + 6 + 9000 + + + 2017-10 + 5 + 8000 + + + 2017-09 + 4 + 7000 + + + 2017-08 + 3 + 6000 + + + 2017-07 + 2 + 5000 + + + 2017-06 + 1 + 4000 + + + 2017-05 + N + 0 + + + 2017-04 + N + 0 + + + 2017-03 + N + 0 + + + 2017-02 + N + 0 + + + 2017-01 + N + 0 + + + 2016-12 + N + 0 + + + 2016-11 + N + 0 + + + 2016-10 + N + 0 + + + 2016-09 + N + 0 + + + 2016-08 + N + 0 + + + 2016-07 + N + 0 + + + 2016-06 + N + 0 + + + 2016-05 + N + 0 + + + 2016-04 + N + 0 + + + 2016-03 + N + 0 + + + 2016-02 + N + 0 + + + 2016-01 + N + 0 + + + 2015-12 + N + 0 + + + 2015-11 + N + 0 + + + 2015-10 + N + 0 + + + 2015-09 + N + 0 + + + 2015-08 + N + 0 + + + 2015-07 + N + 0 + + + 2015-06 + N + 0 + + + 2015-05 + N + 0 + + + 2015-04 + N + 0 + + + 2015-03 + N + 0 + + + 2015-02 + N + 0 + + + 2015-01 + N + 0 + + + 2014-12 + N + 0 + + + 2014-11 + N + 0 + + + 2014-10 + # + + + + 2014-09 + # + + + + 2014-08 + # + + + + 2014-07 + # + + + + 2014-06 + # + + + + 2014-05 + # + + + + 2014-04 + # + + + + 2014-03 + # + + + + + 1 + + 2018-10 + 11 + + + + 1 + + 120000 + 2018-08-12 + 2019-08-11 + 120000 + + + + + + 60735 + R2 + 11 + SR + + 96537 + 81 + 2017-05-28 + CNY + 30000 + + 4 + + + 6 + + 0 + + + + 2017-05-28 + + + + + 67340 + R3 + 11 + SR + + 37745 + 2009-05-22 + CNY + 16000 + + 4 + + + + + 1000 + 2018-10-19 + + 3 + 2018-10-19 + + + 2018-10 + 1 + 1000 + 2018-10-19 + 0 + 2018-10-19 + 0 + 1000 + 1200 + 2018-10-19 + + + 2016-11 + 2018-10 + + 2018-10 + 3 + + + 2018-09 + 2 + + + 2018-08 + 1 + + + 2018-07 + 1 + + + 2018-06 + 1 + + + 2018-05 + 1 + + + 2018-04 + N + + + 2018-03 + N + + + 2018-02 + N + + + 2018-01 + N + + + 2017-12 + N + + + 2017-11 + N + + + 2017-10 + N + + + 2017-09 + N + + + 2017-08 + N + + + 2017-07 + N + + + 2017-06 + N + + + 2017-05 + N + + + 2017-04 + N + + + 2017-03 + N + + + 2017-02 + N + + + 2017-01 + N + + + 2016-12 + N + + + 2016-11 + N + + + + 2014-03 + 2018-10 + 56 + + 2018-10 + 3 + 1000 + + + 2018-09 + 2 + 900 + + + 2018-08 + 1 + 800 + + + 2018-07 + 1 + 1000 + + + 2018-06 + 1 + 1100 + + + 2018-05 + 1 + 1200 + + + 2018-04 + N + 0 + + + 2018-03 + N + 0 + + + 2018-02 + N + 0 + + + 2018-01 + N + 0 + + + 2017-12 + N + 0 + + + 2017-11 + N + 0 + + + 2017-10 + N + 0 + + + 2017-09 + N + 0 + + + 2017-08 + N + 0 + + + 2017-07 + N + 0 + + + 2017-06 + N + 0 + + + 2017-05 + N + 0 + + + 2017-04 + N + 1 + + + 2017-03 + N + 0 + + + 2017-02 + N + 0 + + + 2017-01 + N + 0 + + + 2016-12 + N + 0 + + + 2016-11 + N + 0 + + + 2016-10 + N + 0 + + + 2016-09 + N + 0 + + + 2016-08 + N + 0 + + + 2016-07 + N + 0 + + + 2016-06 + N + 0 + + + 2016-05 + N + 0 + + + 2016-04 + N + 0 + + + 2016-03 + N + 0 + + + 2016-02 + N + 0 + + + 2016-01 + N + 0 + + + 2015-12 + N + 0 + + + 2015-11 + N + 0 + + + 2015-10 + N + 0 + + + 2015-09 + N + 0 + + + 2015-08 + N + 0 + + + 2015-07 + N + 0 + + + 2015-06 + N + 0 + + + 2015-05 + N + 0 + + + 2015-04 + N + 0 + + + 2015-03 + N + 0 + + + 2015-02 + N + 0 + + + 2015-01 + N + 0 + + + 2014-12 + N + 0 + + + 2014-11 + N + 0 + + + 2014-10 + N + 0 + + + 2014-09 + N + 0 + + + 2014-08 + N + 0 + + + 2014-07 + N + 0 + + + 2014-06 + N + 0 + + + 2014-05 + N + 0 + + + 2014-04 + N + 0 + + + 2014-03 + N + 0 + + + + + + 94120 + R4 + 11 + SR + + 66837 + 91 + 2014-09-22 + USD + 500000 + 2019-09-21 + 11 + 03 + 60 + 2 + 0 + + + + + 40000 + 2018-10-05 + + 1 + N + 2018-10-05 + + + 2018-10 + 1 + 40000 + 1 + 16 + 2018-10-05 + 5000 + 5000 + 2018-10-05 + 0 + 0 + 0 + 0 + 0 + 0 + 2018-10-05 + + + 2016-11 + 2018-10 + + 2018-10 + N + + + 2018-09 + N + + + 2018-08 + N + + + 2018-07 + N + + + 2018-06 + N + + + 2018-05 + N + + + 2018-04 + N + + + 2018-03 + N + + + 2018-02 + N + + + 2018-01 + N + + + 2017-12 + N + + + 2017-11 + N + + + 2017-10 + N + + + 2017-09 + N + + + 2017-08 + N + + + 2017-07 + N + + + 2017-06 + N + + + 2017-05 + N + + + 2017-04 + N + + + 2017-03 + N + + + 2017-02 + N + + + 2017-01 + N + + + 2016-12 + N + + + 2016-11 + N + + + + 2014-09 + 2018-10 + 50 + + 2018-10 + N + 0 + + + 2018-09 + N + 0 + + + 2018-08 + N + 0 + + + 2018-07 + N + 0 + + + 2018-06 + N + 0 + + + 2018-05 + N + 0 + + + 2018-04 + N + 0 + + + 2018-03 + N + 0 + + + 2018-02 + N + 0 + + + 2018-01 + N + 0 + + + 2017-12 + N + 0 + + + 2017-11 + N + 0 + + + 2017-10 + N + 0 + + + 2017-09 + N + 0 + + + 2017-08 + N + 0 + + + 2017-07 + N + 0 + + + 2017-06 + N + 0 + + + 2017-05 + N + 0 + + + 2017-04 + N + 0 + + + 2017-03 + N + 0 + + + 2017-02 + N + 0 + + + 2017-01 + N + 0 + + + 2016-12 + N + 0 + + + 2016-11 + N + 0 + + + 2016-10 + 1 + 6000 + + + 2016-09 + N + 0 + + + 2016-08 + N + 0 + + + 2016-07 + 1 + 5000 + + + 2016-06 + N + 0 + + + 2016-05 + N + 0 + + + 2016-04 + N + 0 + + + 2016-03 + N + 0 + + + 2016-02 + N + 0 + + + 2016-01 + # + 0 + + + 2015-12 + N + 0 + + + 2015-11 + N + 0 + + + 2015-10 + N + 0 + + + 2015-09 + N + 0 + + + 2015-08 + N + 0 + + + 2015-07 + N + 0 + + + 2015-06 + # + + + + 2015-05 + N + 0 + + + 2015-04 + N + 0 + + + 2015-03 + N + 0 + + + 2015-02 + N + 0 + + + 2015-01 + N + 0 + + + 2014-12 + # + + + + 2014-11 + # + + + + 2014-10 + # + + + + 2014-09 + # + + + + + + + + + 1 + 11 + QV + 81 + 2011-05-15 + 2099-12-31 + 2 + O983 + 20000 + CNY + 10000 + 1 + R2 + N + + 2018-10-25 + + + + + 2 + 11 + QV + 11 + 2014-05-15 + 2019-05-14 + 2 + Y046 + 200000 + USD + 100000 + 3 + + + 2 + 2018-10-25 + + + + + 1 + 11 + QV + 91 + 2014-05-15 + 2019-05-14 + 2 + J143 + 200000 + CNY + 100000 + 1 + D1 + N + + 2018-10-25 + + + + + + + TE + 中国电信集团江苏省电信公司 + 1 + 2009-08-17 + 1 + 1000 + 2018-10 + NNNNNNNNNNNNNNNNNNNNNN12 + + + + + TE + 中国电信集团江苏省电信公司 + 2 + 2012-08-17 + 0 + 0 + 2018-10 + NNNNNN1NNNNNNNNNNNNNNNNN + + + + + + + 北京市东城区地税局 + 500 + 2017-03-17 + + + + + + + 北京市西城区人民法院 + + 2014-09-11 + 1 + 被告张某某赔偿原告李四人民币500,000元 + 2018-07-09 + 房屋买卖纠纷 + 500000 + + + + + + + 北京市西城区人民法院 + + 2015-09-11 + 004 + 执行完毕 + 2017-09-15 + 房屋 + 420000 + 房屋买卖纠纷 + 420000 + + + + + + + 北京市西城区地方税务局 + 责令限期改正、没收违法所得 + 400 + 2016-08 + + + + + + + 北京市建设管理服务中心 + 暂扣或者吊销许可证、暂扣或者吊销执照 + + 2015-07 + 2016-07 + + + + + + + + 110000 + 2008-08-01 + 1 + 2008-08 + 2008-11 + 12 + 12 + 1000 + 北京银行 + 2018-10-01 + + + + + + + 1 + 110000 + + 200 + 1995-01-08 + 1995-03-08 + 2018-12-19 + + + + + + + 会计从业资格证书 + 北京市财政厅 + 2 + 110105 + 2007-05 + 2029-03 + 0000-00 + + + + + + + 北京市建筑管理服务中心 + 先进生产者 + 2017-05 + 2019-05 + + + + + + + 2019-01-30 + 11 + DP + 02 + + + 2019-01-24 + 11 + EJ + 03 + + + 2019-01-25 + 11 + UV + 03 + + + 2019-02-13 + 11 + GM + 02 + + + 2019-01-24 + 11 + PT + 03 + + + 2019-01-24 + 11 + PT + 02 + + + 2019-02-13 + 11 + JA + 02 + + + 2019-01-25 + 11 + JF + 02 + + + 2019-02-01 + 11 + DP + 02 + + + 2019-01-28 + 11 + UV + 03 + + + 2019-02-13 + 11 + JX + 03 + + + 2019-01-28 + 11 + JX + 03 + + + 2019-02-11 + 11 + JX + 03 + + + 2019-01-31 + 11 + JX + 03 + + + 2019-01-29 + 11 + ZD + 02 + + + 2019-02-01 + 11 + DP + 03 + + + 2019-01-30 + 11 + JX + 03 + + + 2019-02-01 + 11 + DP + 02 + + + 2019-02-01 + 11 + DP + 08 + + + 2019-02-12 + 11 + OC + 03 + + + 2019-01-29 + 11 + DP + 02 + + + 2019-01-24 + 11 + EJ + 03 + + + 2019-01-24 + 11 + ML + 02 + + + 2019-02-13 + 11 + OC + 03 + + + 2019-02-13 + 11 + UV + 02 + + + 2019-02-13 + 11 + DP + 02 + + + 2019-01-25 + 11 + IA + 02 + + + 2019-02-12 + 11 + BJ + 02 + + + 2019-01-25 + 11 + ML + 02 + + + 2019-02-02 + 11 + DP + 02 + + + 2019-01-28 + 11 + DP + 03 + + + \ No newline at end of file diff --git a/io.sc.creditreport.core/src/test/resources/io/sc/creditreport/core/xml/企业接口报文.xml b/io.sc.creditreport.core/src/test/resources/io/sc/creditreport/core/xml/企业接口报文.xml new file mode 100644 index 00000000..c00be9ac --- /dev/null +++ b/io.sc.creditreport.core/src/test/resources/io/sc/creditreport/core/xml/企业接口报文.xml @@ -0,0 +1,2937 @@ + + + + + 2019022208310062527930 + 2019-02-22T08:31:00 + + + 011726400H0001 + 01 + + + 北京报告样本公司 + 1 + + 30 + 686905719 + + + + 0 + + + 6.88 + 2018-10 + + + + + + + 2012 + 2015 + 3 + 3 + 2956600 + 380000 + 401600 + 0 + 2438000 + 0 + 0 + + + 1 + 0 + 1 + 1 + 1 + + + + + + + 1 + 380000 + 2018-08-15 + 0 + 0 + + 105000 + 100000 + 5000 + 12 + + 1 + 1 + 1 + 1000000 + + + 1 + 0 + 1 + 1000000 + + + 2 + 1 + 1 + 225000 + + + 2 + 0 + 1 + 225000 + + + 3 + 1 + 1 + 500000 + + + 3 + 0 + 1 + 500000 + + + 4 + 1 + 1 + 450000 + + + 4 + 3 + 1 + 401600 + + + 4 + 0 + 2 + 851600 + + + 0 + 1 + 4 + 2175000 + + + 0 + 3 + 1 + 401600 + + + 0 + 0 + 5 + 2576600 + + + + 0 + 0 + + + 0 + 0 + 13 + + 1 + 3 + 1 + + + 1 + 0 + 2 + + + 2 + 2 + 1 + + + 2 + 3 + 1 + + + 2 + 0 + 2 + + + 3 + 1 + 2 + + + 3 + 0 + 2 + + + 4 + 1 + 2 + + + 4 + 0 + 2 + + + 0 + 1 + 4 + + + 0 + 2 + 1 + + + 0 + 3 + 2 + + + 0 + 0 + 8 + + + + 12 + + 2018-12 + 6 + 2956600 + 0 + 0 + 2 + 781600 + 0 + 0 + 0 + 0 + + + 2018-09 + 6 + 3680000 + 0 + 0 + 1 + 380000 + 0 + 0 + 0 + 0 + + + 2018-06 + 6 + 3900000 + 1 + 1000000 + 2 + 900000 + 0 + 0 + 0 + 0 + + + 2018-03 + 3 + 2050000 + 0 + 0 + 1 + 400000 + 0 + 0 + 0 + 0 + + + 2017-12 + 2 + 1650000 + 0 + 0 + 1 + 450000 + 0 + 0 + 0 + 0 + + + 2017-09 + 3 + 2650000 + 0 + 0 + 1 + 450000 + 0 + 0 + 0 + 0 + + + 2017-06 + 3 + 2650000 + 0 + 0 + 1 + 450000 + 0 + 0 + 0 + 0 + + + 2017-03 + 4 + 2900000 + 1 + 500000 + 1 + 200000 + 0 + 0 + 0 + 0 + + + 2016-12 + 3 + 1900000 + 1 + 500000 + 1 + 200000 + 0 + 0 + 0 + 0 + + + 2016-09 + 4 + 2900000 + 1 + 500000 + 1 + 200000 + 0 + 0 + 0 + 0 + + + 2016-06 + 5 + 4700000 + 1 + 500000 + 1 + 200000 + 0 + 0 + 0 + 0 + + + 2016-03 + 5 + 4900000 + 1 + 500000 + 1 + 400000 + 0 + 0 + 0 + 0 + + + + + + + + 6 + + 1 + 1 + 4 + 1016000 + + + 1 + 0 + 4 + 1016000 + + + 2 + 1 + 2 + 360000 + + + 2 + 0 + 2 + 360000 + + + 3 + 1 + 2 + 1062000 + + + 3 + 0 + 2 + 1062000 + + + + 6 + + 1 + 1 + 1 + + + 1 + 0 + 1 + + + 2 + 1 + 1 + + + 2 + 0 + 1 + + + 3 + 1 + 2 + + + 3 + 0 + 2 + + + + + + + 5000000 + 2000000 + 3000000 + 0 + 0 + 0 + 1 + + + + + + 3 + + 2 + 1000000 + 1 + 200000 + 1500000 + 2 + 300000 + 0 + 0 + + + 9 + 0 + 0 + 0 + 3150000 + 2 + 475000 + 0 + 100000 + + + 0 + 1000000 + 1 + 200000 + 4650000 + 4 + 775000 + 0 + 100000 + + + + 3 + + 2 + 1000000 + 3 + 80000 + 0 + 0 + + + 9 + 100000 + 2 + 60000 + 0 + 0 + + + 0 + 1100000 + 5 + 140000 + 0 + 0 + + + + + + + 130 + 13 + 3 + A0311 + 北京市北京路188号 + 1998 + 2028-01-01 + 北京市海淀区永丰路888号 + 1 + + + 2500000000 + 2 + + 10 + 2 + 报告样本上海公司 + 10 + 3301013044994685 + 60 + + + 10 + 1 + 高瑶 + 10 + 210522198602230673 + 40 + + 2018-05-12 + + + 6 + 2018-05-12 + + 刘吾 + 10 + 371426199112317020 + 3 + + + 周尔 + 10 + 120102199111116601 + 4 + + + 郑陆 + 10 + 341422197712271329 + 9 + + + 夏思 + 10 + 410802199010054963 + 2 + + + 张珊 + 10 + 360322197911242907 + 5 + + + 邹义 + 10 + 52242819791109441X + 1 + + + + 1 + 报告样本上海公司 + 10 + 3301013044994685 + 2018-08-15 + + + 1 + + 2 + 报告样本上海公司 + 10 + 3301013044994685 + + 2018-08-15 + + + + + + L8683 + 1 + D1 + 20 + 51 + 6829 + E066 + 11 + 12 + 2014-01-01 + CNY + 2000000 + 2020-12-31 + 0 + 0 + 1 + 0 + + 2018-08-01 + + + 2 + + 2018-08-01 + 1000000 + 2018-08-01 + 1 + 2014-01-01 + 2018-08-01 + 300000 + 10 + 2018-08-01 + 200000 + 0 + 0 + 0 + + + 2014-01-01 + 1200000 + 2014-01-01 + 1 + 2014-01-01 + 2014-01-01 + 0 + 99 + 2014-01-01 + 0 + 0 + 0 + 0 + + + + 1 + + 11 + 2017-03-31 + 800000 + 12 + + + + + + + S8057 + 1 + D1 + 10 + 41 + 9404 + + 12 + 11 + 2012-05-01 + CNY + 300000 + 2019-03-31 + 0 + 0 + 1 + 1 + + 2018-10-01 + + + 2 + + 2018-10-01 + 225000 + 2018-10-01 + 1 + 2018-05-01 + 2018-05-01 + 75000 + 10 + 2018-10-01 + 75000 + 0 + 0 + 0 + + + 2018-06-15 + 300000 + 2018-05-01 + 1 + 2018-05-01 + 2018-05-01 + 0 + 99 + 2018-05-01 + 0 + 0 + 0 + 0 + + + + 1 + + 11 + 2018-10-01 + 50000 + 6 + + + + + + + L3879 + 2 + D1 + 20 + 41 + 9404 + + 11 + 12 + 2012-07-01 + CNY + 1000000 + 2017-06-30 + + + + 0 + 2017-06-30 + + + + 6 + + 2017-06-30 + 0 + 2017-06-30 + 3 + 2014-10-30 + 2016-07-31 + 250000 + 10 + 2017-06-30 + 250000 + 0 + 0 + 0 + + + 2016-06-30 + 200000 + 2016-06-30 + 3 + 2014-10-30 + 2016-06-30 + 200000 + 10 + 2016-06-30 + 200000 + 0 + 0 + 0 + + + 2015-06-30 + 400000 + 2015-06-30 + 3 + 2014-10-30 + 2015-06-30 + 400000 + 10 + 2015-06-30 + 200000 + 0 + 0 + 0 + + + 2014-10-30 + 800000 + 2013-06-30 + 3 + 2014-10-30 + 2013-06-30 + 0 + 10 + 2014-06-30 + 200000 + 200000 + 200000 + 6 + + + 2013-06-30 + 800000 + 2013-06-30 + 1 + 2013-06-30 + 2013-06-30 + 200000 + 10 + 2013-06-30 + 200000 + 0 + 0 + 0 + + + 2012-07-01 + 1000000 + 2012-07-01 + 1 + 2012-07-01 + 2012-07-01 + 0 + 99 + 2012-07-01 + 0 + 0 + 0 + 0 + + + + + + L3098 + 2 + D1 + 20 + 51 + 6829 + + 11 + 12 + 2013-02-01 + CNY + 800000 + 2016-07-31 + + + + 2 + 2016-07-31 + + + + 2 + + 2016-07-31 + 0 + 2016-07-31 + 9 + 2013-02-01 + 2016-07-31 + 800000 + 10 + 2016-07-31 + 800000 + 0 + 0 + 0 + + + 2013-02-01 + 800000 + 2013-02-01 + 9 + 2013-02-01 + 2013-02-01 + 0 + 99 + 2013-02-01 + 0 + 0 + 0 + 0 + + + + + + S0807 + 2 + D1 + 10 + 41 + 9404 + + 12 + 11 + 2012-05-01 + CNY + 1000000 + 2017-10-31 + + + + 0 + 2017-10-31 + + + + 2 + + 2018-09-30 + 0 + 2017-10-31 + 2 + 2013-02-01 + 2013-02-01 + 1060000 + 10 + 2017-10-31 + 1050000 + 0 + 0 + 0 + + + 2018-04-01 + 1000000 + 2017-05-01 + 2 + 2013-02-01 + 2013-02-01 + 0 + 99 + 2017-05-01 + 0 + 0 + 0 + 0 + + + + + + S3333 + 2 + D1 + 10 + 51 + 6829 + + 11 + 11 + 2013-04-01 + CNY + 500000 + 2018-09-30 + + + + 1 + 2018-08-01 + + + + 2 + + 2018-08-01 + 0 + 2018-06-30 + 5 + 2014-10-30 + 2014-10-30 + 520000 + 52 + 2018-06-30 + 520000 + 0 + 0 + 0 + + + 2018-05-01 + 500000 + 2018-04-01 + 5 + 2014-10-30 + 2014-10-30 + 0 + 99 + 2018-04-01 + 0 + 0 + 0 + 0 + + + + + + D7539 + 1 + D2 + 51 + 6829 + 21 + 10 + 2018-09-01 + CNY + 500000 + 2019-08-31 + 0 + 0 + + + 2018-10-01 + 0 + + + 2 + + 2018-10-01 + 450000 + 2018-10-01 + 1 + 2018-09-01 + 2018-10-01 + 0 + 10 + 2018-10-01 + 50000 + 0 + 0 + 0 + + + 2018-09-01 + 500000 + 2018-09-01 + 1 + 2018-09-01 + 2018-09-01 + 0 + 99 + 2018-09-01 + 0 + 0 + 0 + 0 + + + + + + D0143 + 1 + D2 + 51 + 6829 + 21 + 10 + 2018-05-01 + CNY + 500000 + 2019-03-31 + 0 + 0 + + + 2018-10-01 + 0 + + + 2 + + 2018-10-01 + 401600 + 2018-10-01 + 3 + 2018-10-01 + 2018-10-01 + 101500 + 10 + 2018-08-01 + 220000 + 105000 + 100000 + 2 + + + 2018-05-01 + 500000 + 2018-05-01 + 1 + 2014-01-01 + 2014-01-01 + 0 + 99 + 2018-05-01 + 0 + 0 + 0 + 0 + + + + + + D7848 + 2 + D2 + 51 + 6829 + 21 + 10 + 2017-01-01 + CNY + 1000000 + 2017-12-31 + + + + 2017-12-31 + + 0 + + + 2 + + 2017-12-31 + 0 + 2017-12-31 + 1 + 2017-01-01 + 2017-12-31 + 0 + 10 + 2017-12-31 + 1000000 + 0 + 0 + 0 + + + 2017-01-01 + 1000000 + 2017-01-01 + 1 + 2017-01-01 + 2017-01-01 + 0 + 99 + 2017-01-01 + 0 + 0 + 0 + 0 + + + + + + D7438 + 2 + D2 + 41 + 9404 + 21 + 10 + 2018-01-01 + CNY + 450000 + 2018-06-30 + + + + 2018-06-30 + + 0 + + + 2 + + 2018-06-30 + 0 + 2018-06-30 + 1 + 2018-01-01 + 2018-06-30 + 450000 + 10 + 2018-06-30 + 450000 + 0 + 0 + 0 + + + 2018-01-01 + 450000 + 2018-01-01 + 1 + 2018-01-01 + 2018-01-01 + 0 + 99 + 2018-01-01 + 0 + 0 + 0 + 0 + + + + + + R0739 + 1 + R1 + 51 + 6829 + E510 + 16 + 10 + 2018-08-01 + CNY + 1000000 + 2019-07-31 + 3 + 0 + 1 + 0 + + 2018-10-01 + + + 2 + + 2018-10-01 + 500000 + 2018-10-01 + 1 + 2018-08-01 + 2018-10-01 + 500000 + 22 + 2018-08-01 + 158000 + 0 + 0 + 0 + 11 + + + 2018-08-01 + 1000000 + 2018-08-01 + 1 + 2018-08-01 + 2018-08-01 + 0 + 31 + 2018-08-01 + 0 + 0 + 0 + 0 + 12 + + + + + + R7226 + 2 + R1 + 51 + 6829 + + 16 + 10 + 2016-01-01 + CNY + 2000000 + 2016-12-31 + + + + 0 + 2016-12-31 + + + + 3 + + 2016-12-31 + 0 + 2016-12-31 + 1 + 2016-01-01 + 2016-12-31 + 1000000 + 10 + 2016-12-31 + 1000000 + 0 + 0 + 0 + 0 + + + 2016-07-01 + 1000000 + 2016-07-01 + 1 + 2016-01-01 + 2016-07-01 + 1000000 + 10 + 2016-07-01 + 1000000 + 0 + 0 + 0 + 6 + + + 2016-01-01 + 2000000 + 2016-01-01 + 1 + 2016-01-01 + 2016-01-01 + 0 + 99 + 2016-01-01 + 0 + 0 + 0 + 0 + 12 + + + + + + R0698 + 2 + R1 + 41 + 9404 + + 16 + 20 + 2015-06-01 + CNY + 800000 + 2015-12-31 + + + + 0 + 2015-12-31 + + + + 2 + + 2015-12-31 + 0 + 2015-12-31 + 1 + 2015-06-01 + 2015-12-31 + 820000 + 10 + 2015-12-31 + 820000 + 0 + 0 + 0 + 0 + + + 2015-06-01 + 800000 + 2015-06-01 + 1 + 2015-06-01 + 2015-06-01 + 0 + 99 + 2015-06-01 + 800000 + 0 + 0 + 0 + 6 + + + + + + C6885 + 1 + C1 + 11 + 9258 + 51 + 10 + 2015-01-01 + CNY + 500000 + + 2018-08-15 + 0 + + + 4 + + 2018-08-15 + 380000 + 2018-08-15 + 4 + 2015-10-15 + 2018-08-15 + 20000 + 10 + + + 2018-01-15 + 400000 + 2018-01-15 + 4 + 2015-10-15 + 2018-01-15 + 50000 + 52 + + + 2017-04-16 + 450000 + 2017-04-16 + 4 + 2015-10-15 + 2017-04-16 + 50000 + 52 + + + 2015-01-01 + 500000 + 2015-01-01 + 2 + 2015-01-01 + 2015-01-01 + 0 + 99 + + + + + 1 + 51 + 6829 + 10 + 1 + 1 + 450000 + 0 + 0 + + + + + 2 + 51 + 6829 + 10 + 3 + 1 + 401600 + 105000 + 100000 + + + + + 3 + 41 + 9404 + 10 + 1 + + + + + 1 + 450000 + + + 4 + 51 + 6829 + 10 + 1 + + + + + 1 + 1000000 + + + + + + F9205 + G3 + 41 + 9404 + + 51 + 2017-08-01 + CNY + 200000 + 2018-03-30 + + + + + + + 2 + + 1 + + 0 + 0 + 2018-03-30 + + + + + A6884 + G3 + 11 + 9258 + + 61 + 2017-09-01 + CNY + 200000 + 2017-12-30 + + + + + + + 2 + + 1 + + 1 + 0 + 2017-12-30 + + + + + G7476 + G3 + 51 + 6829 + + 71 + 2017-09-01 + CNY + 400000 + 2018-05-31 + + + + + + + 2 + + 1 + + 0 + 0 + 2018-05-31 + + + + + G8553 + G1 + 11 + 9258 + + 71 + 2017-09-01 + CNY + 300000 + 2018-02-28 + + + + + + + 2 + + 1 + + 1 + 0 + 2018-02-28 + + + + + F1170 + G3 + 41 + 9404 + + 51 + 2018-08-01 + CNY + 300000 + 2019-03-30 + 3 + 0 + 18 + + + 2018-08-01 + 1 + 300000 + 1 + 0 + + 0 + + + + + + F3465 + G3 + 41 + 9404 + + 51 + 2018-09-01 + CNY + 200000 + 2019-01-18 + 3 + 0 + 14 + + + 2018-09-01 + 1 + 60000 + 1 + 0 + + 0 + + + + + + A7704 + G3 + 11 + 9258 + + 61 + 2018-08-01 + CNY + 200000 + 2019-03-30 + 3 + 0 + 10 + + + 2018-08-01 + 1 + 200000 + 1 + 0 + + 0 + + + + + + A3607 + G3 + 11 + 9258 + + 61 + 2018-10-01 + CNY + 366000 + 2019-02-20 + 3 + 0 + 10 + + + 2018-10-01 + 1 + 366000 + 1 + 0 + + 0 + + + + + + A7763 + G3 + 11 + 9258 + + 61 + 2018-09-01 + CNY + 250000 + 2019-01-20 + 3 + 0 + 10 + + + 2018-09-01 + 1 + 250000 + 1 + 0 + + 0 + + + + + + A2720 + G3 + 11 + 9258 + + 61 + 2018-08-01 + CNY + 200000 + 2018-11-15 + 3 + 0 + 20 + + + 2018-08-01 + 1 + 200000 + 1 + 0 + + 0 + + + + + + G5781 + G1 + 11 + 9258 + + 71 + 2018-08-01 + CNY + 800000 + 2018-12-30 + 3 + 0 + 20 + + + 2018-10-01 + 1 + 667000 + 1 + 0 + + 0 + + + + + + G4482 + G3 + 51 + 6829 + + 72 + 2018-08-01 + CNY + 500000 + 2018-12-30 + 3 + 0 + 15 + + + 2018-10-01 + 1 + 395000 + 1 + 0 + + 0 + + + + + 5 + 11 + 9258 + 61 + 1 + + + + + + + 1 + 1 + + + 6 + 41 + 9404 + 51 + 1 + + + + + + + 1 + 0 + + + 7 + 51 + 6829 + 71 + 1 + + + + + + + 1 + 0 + + + 8 + 11 + 9258 + 71 + 1 + + + + + + + 1 + 1 + + + 9 + 11 + 9258 + 61 + 1 + 4 + 1016000 + 816000 + 200000 + 0 + 0 + + + + + 10 + 41 + 9404 + 51 + 1 + 2 + 360000 + 60000 + 300000 + 0 + 0 + + + + + 11 + 11 + 9258 + 71 + 1 + 1 + 667000 + + + + + + + + + 12 + 51 + 6829 + 72 + 1 + 1 + 395000 + + + + + + + + + + + E066 + 51 + 6829 + 11 + 0 + CNY + 5000000 + 2000000 + 20000000 + 4285 + 2016-01-01 + 2021-12-31 + 2018-07-02 + + + + + L8531 + 2 + D1 + 4 + CNY + 3000000 + 11 + 9258 + 11 + 11 + 2015-06-01 + 2019-05-31 + CNY + 375000 + 1 + 0 + 0 + 0 + + + 2018-09-02 + 375000 + + + + + C3218 + 2 + C1 + 2 + CNY + 1000000 + 11 + 9258 + 41 + 10 + 2015-02-01 + + CNY + 200000 + 4 + + + + + + 2018-05-16 + 200000 + + P189 + + + 13 + 3 + 41 + 9404 + 10 + 3 + 150000 + 1 + 100000 + 30000 + 30000 + 150000 + + + + 14 + 2 + 41 + 9404 + 10 + 1 + 1500000 + 2 + 300000 + 0 + 0 + 500000 + P346 + + + 15 + 9 + 41 + 9404 + 51 + 1 + 100000 + 2 + 60000 + 150000 + + + + 16 + 2 + 51 + 6829 + 71 + 1 + 1000000 + 3 + 80000 + 100000 + P523 + + + + + + H283 + 中国电信集团北京市电信公司 + 00 + 2 + 4300 + 2018-08 + + + 18 + + 2018-08 + 2 + 7800 + 5000 + 4300 + + + 2018-07 + 2 + 6500 + 5000 + 1500 + + + 2018-06 + 2 + 7700 + 0 + 7700 + + + 2018-05 + 2 + 7600 + 0 + 7600 + + + 2018-04 + 1 + 6800 + 6800 + 0 + + + 2018-03 + 2 + 4400 + 1000 + 3400 + + + 2018-02 + 2 + 5800 + 0 + 5800 + + + 2018-01 + 2 + 5800 + 0 + 5800 + + + 2017-12 + 1 + 6500 + 6500 + 0 + + + 2017-11 + 1 + 6400 + 6400 + 0 + + + 2017-10 + 1 + 7600 + 7600 + 0 + + + 2017-09 + 1 + 6800 + 6800 + 0 + + + 2017-08 + 1 + 4400 + 4400 + 0 + + + 2017-07 + 1 + 7300 + 7300 + 0 + + + 2017-06 + 1 + 6500 + 6500 + 0 + + + 2017-05 + 1 + 6400 + 6400 + 0 + + + 2017-04 + 1 + 7600 + 7600 + 0 + + + 2017-03 + 1 + 6800 + 6800 + 0 + + + + + + + + J687 + 四川省泸州市中级人民法院 + (2016)泸民终字第295号 + 2016-10-03 + 房地产合同纠纷 + 2 + 1 + 房屋 + 25000000 + 1 + 2017-02-05 + 驳回上诉,维持原判。限期被告中国有限责任公司支付原告四川王氏房地产开发有限公司违约金45万元。如果未按期履行给付金钱义务,应当依照法律规定,加倍支付债务利息。驳回原告的其他诉讼请求。 + + + K020 + 北京市西城区人民法院 + (2015)建执字第1573号 + 2015-09-25 + 货款 + 房屋 + 510000 + 2017年12月已结案 + 4 + 房屋 + 510000 + + + + + M945 + 北京市质量技术监督局 + (京)质技监罚字[2017]318号 + 生产伪造产地的建筑材料 + 该类产品停产 + 2017-05-13 + 500000 + 已缴纳罚款 + + + + + + + N839 + 2004-07 + 500 + 3000000 + 2018-09-27 + 2018-09 + 0 + + 2018-09 + + + 18 + + 2018-01 + 0 + 115035 + 115035 + + + + 2018-06 + 0 + 109209 + 109209 + + + + 2018-05 + 0 + 102460 + 102460 + + + + 2018-09 + 0 + 105460 + 105460 + + + + 2018-02 + 0 + 105460 + 105460 + + + + 2017-09 + 0 + 149209 + 149209 + + + + 2017-07 + 0 + 145030 + 145030 + + + + 2018-04 + 0 + 125030 + 125030 + + + + 2017-05 + 0 + 125460 + 125460 + + + + 2017-06 + 0 + 149209 + 149209 + + + + 2017-11 + 0 + 105460 + 105460 + + + + 2017-03 + 0 + 129209 + 129209 + + + + 2018-08 + 0 + 115030 + 115030 + + + + 2017-12 + 0 + 102209 + 102209 + + + + 2018-03 + 0 + 139219 + 139219 + + + + 2017-04 + 0 + 125030 + 125030 + + + + 2017-08 + 0 + 145460 + 145460 + + + + 2017-10 + 0 + 155030 + 155030 + + + + + + + + Q963 + 北京市环保局 + 环保审批 + 2017-01-01 + 2020-12-31 + 建设项目环境影响评价审批 + + + T813 + 北京市质量技术监督局 + 强制产品质量认证 + 2018-04-01 + 2020-03-31 + + + + U218 + 北京市建设厅 + 建筑企业资质 + 2014-07-10 + 2020-07-09 + + + + V767 + 北京市质量技术监督局 + 北京市名牌 + 2017-01-25 + 2020-12-31 + + + + + + W979 + 国家质量检验检疫总局 + 棉麻制品 + 2016-01-01 + + + X283 + 国家质量检验检疫总局 + 棉麻制品 + 201801234 + 2020-12-31 + + + Y638 + 国家质量检验检疫总局 + 北京分局 + 1 + 2015-08-01 + 2024-07-31 + + + + + + + 3145 + 41 + 9404 + 2018 + 20 + 1 + + + + 111111 + + 111111 + 111111 + 111111 + 111111 + + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 10 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 10 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 600000 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 100000 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 100000 + 200000 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 300000 + 600000 + + + + + 3418 + 11 + 9258 + 2017 + 10 + 2 + + + + + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + + + 5 + 11111111 + 11111111 + + + + 11111111 + 11111111 + 11111111 + 11111111 + 11111111 + 11111111 + 11111111 + + + + + + 5 + 10 + + + + + + + + + + + + + 3 + + + 6666 + + + + + 3 + 6 + + + + + + 4 + 10 + + + + + 3785 + 41 + 9404 + 2017 + 10 + 1 + + + 7 + 7 + 7 + 7 + 7 + 7 + + 7 + 7 + 7 + + 7 + 7 + 7 + 7 + + 7 + 7 + + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + + + + + 3934 + 11 + 9258 + 2018 + 40 + 2 + + + 1 + 1 + 1 + + + + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + + + + + 3180 + 41 + 9404 + 2017 + 10 + 1 + + + + 100 + 45 + 1067 + 45 + 14 + 72 + 43 + 175 + 892 + + 34 + 76 + + 244 + 42 + + 29 + 106 + 138 + + 27 + 61 + 161 + 27 + 42 + 89 + 159 + 2 + 100 + 1133 + 201 + 12 + 23 + 34 + 56 + 67 + 78 + 89 + 51 + 59 + 21 + 43 + 72 + 12 + 32 + 34 + 892 + 12 + 23 + + 26 + 1175 + 23 + 42 + 61 + 1234567891234567 + + + + + 3842 + 11 + 9258 + 2018 + 20 + 2 + + + + + + 2 + + + 7 + + 1 + 1 + + + 1088 + + + 5 + + + + + 4 + 1 + + + + 5 + + + + 4 + 1 + 1 + 4 + 5 + 9 + + + + + + + + + + 111111 + 111111 + 111111 + 111111 + 111111 + 111111 + + + + + + + 1234567891011121 + 1234567891011121 + 1234567891011121 + + + + 26 + + + + + + \ No newline at end of file diff --git a/io.sc.engine.mv.frontend/package.json b/io.sc.engine.mv.frontend/package.json index 9b2d69da..3f4ddc01 100644 --- a/io.sc.engine.mv.frontend/package.json +++ b/io.sc.engine.mv.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.2", "pinia": "2.2.2", "pinia-undo": "0.2.4", - "platform-core": "8.1.433", + "platform-core": "8.1.434", "quasar": "2.17.0", "svg-path-commander": "2.0.10", "tailwindcss": "3.4.10", diff --git a/io.sc.engine.rule.core/build.gradle b/io.sc.engine.rule.core/build.gradle index aff1da09..7507849f 100644 --- a/io.sc.engine.rule.core/build.gradle +++ b/io.sc.engine.rule.core/build.gradle @@ -1,12 +1,14 @@ dependencies { api( project(":io.sc.platform.orm.api"), + project(":io.sc.creditreport.core"), "org.springframework:spring-core", "jakarta.xml.bind:jakarta.xml.bind-api", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", + "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", "org.slf4j:slf4j-api", "org.freemarker:freemarker", diff --git a/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/enums/ValidatorType.java b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/enums/ValidatorType.java index 2b71a205..1a228c1f 100644 --- a/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/enums/ValidatorType.java +++ b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/enums/ValidatorType.java @@ -13,5 +13,5 @@ public enum ValidatorType { EMAIL, //邮件 LENGTH_RANGE, //长度范围 DATE_RANGE, //日期范围 - PATTERN //正则表达式 + PATTERN; //正则表达式 } diff --git a/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/enums/ValueType.java b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/enums/ValueType.java index 2024fb62..dc825358 100644 --- a/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/enums/ValueType.java +++ b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/enums/ValueType.java @@ -1,6 +1,11 @@ package io.sc.engine.rule.core.enums; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.Calendar; import java.util.Date; +import java.util.List; +import java.util.Map; import io.sc.engine.rule.core.classes.ResourceAbstract; import io.sc.engine.rule.core.classes.RuleResult; @@ -28,6 +33,43 @@ public enum ValueType { SingleRuleResult, //单规则结果值 ResourceAbstract; //资源摘要 + public static boolean isBase(Object o){ + if(o==null){ + return true; + } + return isBase(o.getClass()); + } + + public static boolean isBase(Class clazz){ + if(clazz.isPrimitive()){ + return true; + } + if( + Byte.class.equals(clazz) + || Short.class.equals(clazz) + || Integer.class.equals(clazz) + || BigInteger.class.equals(clazz) + || Long.class.equals(clazz) + || Float.class.equals(clazz) + || Double.class.equals(clazz) + || BigDecimal.class.equals(clazz) + || String.class.equals(clazz) + || Calendar.class.equals(clazz) + || Date.class.equals(clazz) + ){ + return true; + } + return false; + } + + public static boolean isList(Class clazz){ + return List.class.isAssignableFrom(clazz); + } + + public static boolean isMap(Class clazz){ + return Map.class.isAssignableFrom(clazz); + } + public String getJavaType() { switch(this) { case Boolean: diff --git a/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/util/FileUtil.java b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/util/FileUtil.java index 234a1f86..3e1a4b43 100644 --- a/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/util/FileUtil.java +++ b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/util/FileUtil.java @@ -1,496 +1,358 @@ package io.sc.engine.rule.core.util; -import java.io.BufferedReader; -import java.io.File; -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.FileOutputStream; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.OutputStream; -import java.io.OutputStreamWriter; -import java.io.RandomAccessFile; -import java.io.UnsupportedEncodingException; +import org.springframework.core.io.DefaultResourceLoader; +import org.springframework.core.io.Resource; +import org.springframework.util.StreamUtils; + +import java.io.*; import java.nio.ByteBuffer; import java.nio.channels.FileChannel; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; public class FileUtil { - private static final String NEW_LINE ="\n"; - private static final String DEFAULT_ENCODING ="UTF-8"; - - /** - * 向一个文本文件追加文本内容,采用默认字符编码 - * @param fileName 文件名 - * @param content 追加的内容 - * @throws Exception 违例 - */ - public static synchronized void append(String fileName,String content) throws Exception{ - append(fileName,content,DEFAULT_ENCODING); - } - - /** - * 向一个文本文件追加文本内容,采用指定的字符编码 - * @param fileName 文件名 - * @param content 追加的内容 - * @param encoding 追加内容字符编码 - * @throws Exception 违例 - */ - public static synchronized void append(String fileName,String content,String encoding) throws Exception{ - RandomAccessFile raf =null; - FileChannel fc =null; - try { - raf =new RandomAccessFile(fileName,"rw"); - fc =raf.getChannel(); - ByteBuffer bb =ByteBuffer.wrap(content.getBytes(encoding)); - fc.position(fc.size()); - fc.write(bb); - } catch (Exception e) { - throw e; - }finally{ - if(fc!=null){ - fc.close(); - } - if(raf!=null){ - raf.close(); - } - fc =null; - raf =null; - } - } - + private FileUtil(){} + /** - * 向一个文本文件追加文本内容,采用默认字符编码 - * @param fileName 文件名 - * @param content 追加的内容 - * @param header 文件头内容 - * @param tail 文件尾内容 - * @throws Exception 违例 + * 判断资源文件是否存在 + * @param url 资源文件 url + * @return 资源文件是否存在 */ - public static synchronized void append(String fileName,String content,String header,String tail) throws Exception{ - append(fileName,content,header,tail,DEFAULT_ENCODING); + public static boolean exists(String url) { + ParameterChecker.notTrimEmpty(url); + Resource rs =new DefaultResourceLoader().getResource(url); + return rs.exists(); } - + /** - * 向一个文本文件追加文本内容 - * @param fileName 文件名 - * @param content 追加的内容 - * @param header 文件头内容 - * @param tail 文件尾内容 - * @param encoding 追加内容字符编码 - * @throws Exception 违例 + * 获取资源文件输入流对象 + * @param url 资源文件 url + * @return 资源文件输入流对象 + * @throws IOException 违例 */ - public static synchronized void append(String fileName,String content,String header,String tail,String encoding) throws Exception{ - RandomAccessFile raf =null; - FileChannel fc =null; - boolean isNewFile =false; - try { - raf =new RandomAccessFile(fileName,"rw"); - fc =raf.getChannel(); - if(fc.size()==0){ - isNewFile =true; - } - ByteBuffer bb =ByteBuffer.wrap((content+tail).getBytes(encoding)); - if(isNewFile){ - fc.write(ByteBuffer.wrap(header.getBytes(encoding))); - fc.write(bb); - }else{ - fc.position(fc.size()-tail.getBytes(encoding).length); - fc.write(bb); - } - - } catch (Exception e) { - throw e; - }finally{ - if(fc!=null){ - fc.close(); - } - if(raf!=null){ - raf.close(); - } - fc =null; - raf =null; + public static InputStream getInputStream(String url) throws IOException { + ParameterChecker.notTrimEmpty(url); + Resource rs =new DefaultResourceLoader().getResource(url); + if(rs.exists()){ + return rs.getInputStream(); } + return null; } - + /** - * 读取一个文本文件的字符内容 - * @param file 文件名 + * 获取文件内容 + * @param url 文件 url * @return 文件内容 - * @throws FileNotFoundException 违例 - * @throws UnsupportedEncodingException 违例 * @throws IOException 违例 */ - public static String readString(String file) throws FileNotFoundException,UnsupportedEncodingException,IOException{ - return readString(file,DEFAULT_ENCODING); + public static String readString(String url) throws IOException { + ParameterChecker.notTrimEmpty(url); + return readString(url, StandardCharsets.UTF_8.name()); } - + /** - * 读取一个文本文件的字符内容 - * @param file 文件名 - * @param encoding 文件字符编码 + * 获取文件内容 + * @param url 文件 url + * @param encoding 编码 * @return 文件内容 - * @throws FileNotFoundException 违例 - * @throws UnsupportedEncodingException 违例 * @throws IOException 违例 */ - public static String readString(String file,String encoding) throws FileNotFoundException,UnsupportedEncodingException,IOException{ - return readString(new File(file),encoding); + public static String readString(String url,String encoding) throws IOException { + ParameterChecker.notTrimEmpty(url); + ParameterChecker.notTrimEmpty(encoding); + return readString(getInputStream(url),encoding); } - + /** - * 从文本文件中读取所有文本 - * @param file 文件对象 + * 获取文件内容 + * @param inputStream 输入流 * @return 文件内容 - * @throws FileNotFoundException 违例 - * @throws UnsupportedEncodingException 违例 * @throws IOException 违例 */ - public static String readString(File file) throws FileNotFoundException,UnsupportedEncodingException,IOException{ - return readString(new FileInputStream(file),DEFAULT_ENCODING); + public static String readString(InputStream inputStream) throws IOException{ + ParameterChecker.notNull(inputStream); + return readString(inputStream,StandardCharsets.UTF_8.name()); } - + /** - * 读取一个文本文件的字符内容 - * @param file 文件名 - * @param encoding 文件字符编码 - * @param newLine 文本换行符 + * 获取文件内容 + * @param inputStream 输入流 + * @param encoding 编码 * @return 文件内容 - * @throws FileNotFoundException 违例 - * @throws UnsupportedEncodingException 违例 * @throws IOException 违例 */ - public static String readString(String file,String encoding,String newLine) throws FileNotFoundException,UnsupportedEncodingException,IOException{ - return readString(new File(file),encoding,newLine); + public static String readString(InputStream inputStream, String encoding) throws IOException{ + ParameterChecker.notNull(inputStream); + ParameterChecker.notTrimEmpty(encoding); + String result = StreamUtils.copyToString(inputStream, StandardCharsets.UTF_8); + inputStream.close(); + return result; } - + /** - * 从文本文件中读取所有文本 - * @param file 文件对象 - * @param encoding 文件字符编码 + * 获取文件内容 + * @param url 文件 url * @return 文件内容 - * @throws FileNotFoundException 违例 - * @throws UnsupportedEncodingException 违例 * @throws IOException 违例 */ - public static String readString(File file,String encoding) throws FileNotFoundException,UnsupportedEncodingException,IOException{ - return readString(new FileInputStream(file),encoding); + public static List readStringAsList(String url) throws IOException{ + ParameterChecker.notTrimEmpty(url); + return readStringAsList(getInputStream(url),StandardCharsets.UTF_8.name()); } - + /** - * 从文本文件中读取所有文本 - * @param file 文件对象 - * @param encoding 文件字符编码 - * @param newLine 换行符 + * 获取文件内容 + * @param url 文件 url + * @param encoding 编码 * @return 文件内容 - * @throws UnsupportedEncodingException 违例 * @throws IOException 违例 */ - public static String readString(File file,String encoding,String newLine) throws UnsupportedEncodingException,IOException{ - return readString(new FileInputStream(file),encoding,newLine); + public static List readStringAsList(String url,String encoding) throws IOException{ + ParameterChecker.notTrimEmpty(url); + ParameterChecker.notTrimEmpty(encoding); + return readStringAsList(getInputStream(url),encoding); } - - /** - * 从文本输入流中读取所有文本 - * @param inputstream 文本输入流 - * @return 输入流中文本内容 - * @throws UnsupportedEncodingException 违例 - * @throws IOException 违例 - */ - public static String readString(InputStream inputstream) throws UnsupportedEncodingException,IOException{ - return readString(inputstream,DEFAULT_ENCODING,NEW_LINE); - } - - /** - * 从文本输入流中读取所有文本 - * @param inputstream 文本输入流 - * @param encoding 文件字符编码 - * @return 输入流中文本内容 - * @throws UnsupportedEncodingException 违例 - * @throws IOException 违例 - */ - public static String readString(InputStream inputstream,String encoding) throws UnsupportedEncodingException,IOException{ - return readString(inputstream,encoding,NEW_LINE); - } - + /** - * 从文本输入流中读取所有文本 - * @param inputstream 文本输入流 - * @param encoding 文件字符编码 - * @param newLine 换行符 - * @return 输入流中文本内容 - * @throws UnsupportedEncodingException 违例 + * 获取文件内容 + * @param inputStream 输入流 + * @return 文件内容列表 * @throws IOException 违例 */ - public static String readString(InputStream inputstream,String encoding,String newLine) throws UnsupportedEncodingException,IOException{ - return readString(inputstream,encoding,NEW_LINE,true); + public static List readStringAsList(InputStream inputStream) throws IOException{ + ParameterChecker.notNull(inputStream); + return readStringAsList(inputStream,StandardCharsets.UTF_8.name()); } - + /** - * 从文本输入流中读取所有文本 - * @param inputstream 文本输入流 - * @param encoding 文件字符编码 - * @param newLine 换行符 - * @param isCloseInputStream 读取完毕后是否关闭输入流 - * @return 输入流中文本内容 - * @throws UnsupportedEncodingException 违例 + * 获取文件内容 + * @param inputStream 输入流 + * @param encoding 编码 + * @return 文件内容列表 * @throws IOException 违例 */ - public static String readString(InputStream inputstream,String encoding,String newLine,boolean isCloseInputStream) throws UnsupportedEncodingException,IOException{ - StringBuilder sb = new StringBuilder(); - BufferedReader br =null; - try { - br = new BufferedReader(new InputStreamReader(inputstream,encoding)); + public static List readStringAsList(InputStream inputStream, String encoding) throws IOException{ + ParameterChecker.notNull(inputStream); + ParameterChecker.notTrimEmpty(encoding); + List result =new ArrayList<>(); + try(BufferedReader br =new BufferedReader(new InputStreamReader(inputStream, encoding));){ String dataLine = ""; while (null != (dataLine = br.readLine())){ - sb.append(dataLine); - sb.append(newLine==null?NEW_LINE:newLine); - } - return sb.toString(); - } catch (UnsupportedEncodingException e) { - throw e; - } catch (IOException e) { - throw e; - }finally{ - sb =null; - if(isCloseInputStream){ - if(br!=null){ - try { - br.close(); - } catch (IOException e) {} - } + result.add(dataLine); } + return result; } } - - /** - * 采用默认字符编码从文件中读取所有文本列表,列表中每个元素为一行 - * @param file 文件名 - * @return 所有文本列表 - * @throws IOException 违例 - */ - public static List readStringAsList(String file) throws IOException{ - return readStringAsList(new File(file),DEFAULT_ENCODING); - } - - /** - * 采用指定字符编码从文件中读取所有文本列表,列表中每个元素为一行 - * @param file 文件名 - * @param encoding 字符编码 - * @return 所有文本列表 - * @throws IOException 违例 - */ - public static List readStringAsList(String file,String encoding) throws IOException{ - return readStringAsList(new File(file),encoding); - } - - /** - * 采用默认字符编码从文件中读取所有文本列表,列表中每个元素为一行 - * @param file 文件对象 - * @return 所有文本列表 - * @throws IOException 违例 - */ - public static List readStringAsList(File file) throws IOException{ - return readStringAsList(new FileInputStream(file),DEFAULT_ENCODING); - } - - /** - * 采用指定字符编码从文件中读取所有文本列表,列表中每个元素为一行 - * @param file 文件对象 - * @param encoding 字符编码 - * @return 所有文本列表 - * @throws IOException 违例 - */ - public static List readStringAsList(File file,String encoding) throws IOException{ - return readStringAsList(new FileInputStream(file),encoding); - } - + /** - * 采用默认字符编码从文本输入流中读取所有文本列表,列表中每个元素为一行 - * @param inputstream 文本输入流 - * @return 所有文本列表 + * 获取文件内容(按照 urls 数组顺序访问文件,返回第一个找到的文件内容) + * @param urls 文件 url 数组 + * @return 第一个找到的文件内容 * @throws IOException 违例 */ - public static List readStringAsList(InputStream inputstream) throws IOException{ - return readStringAsList(inputstream,DEFAULT_ENCODING); + public static String readString(String[] urls) throws IOException { + ParameterChecker.notNull(urls); + return readString(urls,StandardCharsets.UTF_8.name()); } - + /** - * 采用指定字符编码从文本输入流中读取所有文本列表,列表中每个元素为一行 - * @param inputstream 文本输入流 - * @param encoding 字符编码 - * @return 所有文本列表 + * 获取文件内容(按照 urls 数组顺序访问文件,返回第一个找到的文件内容) + * @param urls 文件 url 数组 + * @param encoding 编码 + * @return 第一个找到的文件内容 * @throws IOException 违例 */ - public static List readStringAsList(InputStream inputstream,String encoding) throws IOException{ - List result =new ArrayList(); - BufferedReader br =null; - try { - br = new BufferedReader(new InputStreamReader(inputstream,encoding)); - String dataLine = ""; - while (null != (dataLine = br.readLine())){ - result.add(dataLine); - } - return result; - } catch (IOException e) { - throw e; - }finally{ - if(br!=null){ - try { - br.close(); - } catch (IOException e) {} + public static String readString(String[] urls,String encoding) throws IOException { + ParameterChecker.notNull(urls); + ParameterChecker.notTrimEmpty(encoding); + for(String url : urls) { + Resource rs =new DefaultResourceLoader().getResource(url); + if(rs.exists()){ + return readString(url,encoding); } } + return null; } - + /** - * 读取文件最后多行数 - * @param filename 文件名 + * 读取文件后多少行数的文本 + * @param file 文件名 * @param row 行数 - * @return 文件最后多行数 + * @return 文件后多少行数的文本 * @throws Exception 违例 */ - public static String readStringAsLastRow(String filename,int row) throws Exception{ - return readStringAsLastRow(new File(filename),row); + public static String readStringAsLastRow(String file,int row) throws IOException{ + ParameterChecker.notTrimEmpty(file); + return readStringAsLastRow(new File(file),row); } - + /** - * 读取文件最后行数 + * 读取文件后多少行数的文本 * @param file 文件名 - * @param row 行数 - * @return 文件最后行数 - * @throws Exception 违例 + * @param count 行数 + * @return 文件后多少行数的文本 + * @throws IOException 违例 */ - public static String readStringAsLastRow(File file,int row) throws Exception{ - RandomAccessFile rf =null; - try { - rf = new RandomAccessFile(file, "r"); + public static String readStringAsLastRow(File file,int count) throws IOException{ + ParameterChecker.notNull(file); + try(RandomAccessFile rf =new RandomAccessFile(file, "r")){ long len = rf.length(); if (len == 0) { - return ""; + return null; } - int _row = 0; - while (len > 0 && _row < row) { - len--; - rf.seek(len); + int row = 0; + while (len > 0 && row < count) { + rf.seek(--len); if (rf.readByte() == '\n') { - //pos=rf.getFilePointer(); - _row++; + row++; } } - StringBuffer buffer = new StringBuffer(); + StringBuilder sb = new StringBuilder(); String str = ""; while ((str = rf.readLine()) != null) { - buffer.append(new String(str.getBytes("ISO-8859-1"),"UTF-8")).append("\n"); - } - return buffer.toString(); - } catch (Exception e) { - throw e; - } finally{ - if(rf!=null){ - rf.close(); + sb.append(new String(str.getBytes(StandardCharsets.ISO_8859_1),StandardCharsets.UTF_8)).append("\n"); } + return sb.toString(); } } - + /** - * 将字符串以默认编码写入指定的文件中 - * @param file 文件名 - * @param content 写入内容 - * @throws FileNotFoundException 违例 - * @throws UnsupportedEncodingException 违例 + * 写文件 + * @param file 文件 + * @param content 文件内容 * @throws IOException 违例 */ - public static void writeString(String file,String content) throws FileNotFoundException,UnsupportedEncodingException,IOException{ - writeString(file,content,DEFAULT_ENCODING); + public static void writeString(String file,String content) throws IOException { + ParameterChecker.notTrimEmpty(file); + ParameterChecker.notNull(content); + writeString(file,content,StandardCharsets.UTF_8.name(),true); } - + /** - * 将字符串以特定编码写入指定的文件中 - * @param file 文件名 - * @param content 写入内容 - * @param encoding 内容编码 - * @throws FileNotFoundException 违例 - * @throws UnsupportedEncodingException 违例 + * 写文件 + * @param file 文件 + * @param content 文件内容 + * @param encoding 文件编码 * @throws IOException 违例 */ - public static void writeString(String file,String content,String encoding) throws FileNotFoundException,UnsupportedEncodingException,IOException{ - writeString(new File(file),content,encoding); + public static void writeString(String file,String content,String encoding) throws IOException { + ParameterChecker.notTrimEmpty(file); + ParameterChecker.notNull(content); + ParameterChecker.notTrimEmpty(encoding); + writeString(file,content,encoding,true); } - + /** - * 将字符串以特定编码写入指定的文件中 - * @param file 文件对象 - * @param content 写入内容 - * @param encoding 内容编码 - * @throws FileNotFoundException 违例 - * @throws UnsupportedEncodingException 违例 + * 写文件 + * @param file 文件 + * @param content 文件内容 + * @param overwrite 是否覆盖 * @throws IOException 违例 */ - - public static void writeString(File file,String content,String encoding) throws FileNotFoundException,UnsupportedEncodingException,IOException{ - OutputStreamWriter writer =null; - try { - writer =new OutputStreamWriter(new FileOutputStream(file),encoding); - writer.write(content); - } catch (UnsupportedEncodingException e) { - throw e; - } catch (FileNotFoundException e) { - throw e; - } catch (IOException e) { - throw e; - }finally{ - if(writer!=null){ - try { - writer.close(); - } catch (IOException e) {} + public static void writeString(String file,String content,boolean overwrite) throws IOException { + ParameterChecker.notTrimEmpty(file); + ParameterChecker.notNull(content); + writeString(file,content,StandardCharsets.UTF_8.name(),overwrite); + } + + /** + * 写文件 + * @param file 文件 + * @param content 文件内容 + * @param encoding 文件编码 + * @param overwrite 是否覆盖 + * @throws IOException 违例 + */ + public static void writeString(String file,String content,String encoding,boolean overwrite) throws IOException { + ParameterChecker.notTrimEmpty(file); + ParameterChecker.notNull(content); + ParameterChecker.notTrimEmpty(encoding); + File targetFile =new File(file); + boolean needGenerate =true; + if(!overwrite && targetFile.exists() && targetFile.isFile()){ + needGenerate =false; + } + if(needGenerate){ + try(OutputStreamWriter writer =new OutputStreamWriter(new FileOutputStream(file),encoding);){ + writer.write(content); } } } - + + public static void createFixSizeFile(String file, long size) throws IOException { + ParameterChecker.notTrimEmpty(file); + createFixSizeFile(new File(file),size); + } + /** - * 获取某个目录下的所有扩展名为includes的文件 + * 创建固定大小的文件 + * @param file 文件 + * @param size 大小 + */ + public static void createFixSizeFile(File file, long size) throws IOException { + ParameterChecker.notNull(file); + try( + FileOutputStream fos =new FileOutputStream(file); + FileChannel out =fos.getChannel() + ){ + int length =1024*1024; + long index =0; + while(index listAllFile(File dir,String[] includes){ - List result =new ArrayList(); + ParameterChecker.notNull(dir); + ParameterChecker.notNull(includes); + if(!dir.exists()){ + return Collections.emptyList(); + } File[] files =dir.listFiles(); - if(files!=null && files.length>0) { - for(int i=0;i result =new ArrayList<>(); + for(File file : files){ + if (file.isDirectory()) { + result.addAll(listAllFile(file, includes)); + } else { + for (String include : includes) { + if (file.getName().toLowerCase().endsWith("." + include.toLowerCase())) { + result.add(file); + break; } } } } - Collections.sort(result, new Comparator() { - @Override - public int compare(File o1, File o2) { - return o1.getName().compareTo(o2.getName()); - } - }); + Collections.sort(result, (o1,o2) -> o1.getName().compareTo(o2.getName())); return result; } - + /** * 移除目录路径的最后分隔符 * @param path 目录路径 * @return 无文件分隔符的文件路径 */ public static String removePathEndSeparator(String path){ + ParameterChecker.notTrimEmpty(path); char lastChar =path.charAt(path.length()-1); while(lastChar=='\\' || lastChar=='/'){ path =path.substring(0,path.length()-1); @@ -498,138 +360,164 @@ public class FileUtil { } return path; } - + /** * 创建目录,可同时创建多级目录 * @param dir 目录路径能够 */ public static void mkdirs(String dir){ + ParameterChecker.notTrimEmpty(dir); File file =new File(dir); if(!file.exists()){ file.mkdirs(); } } - + /** * 递归删除文件夹及其子文件 * @param dir 文件夹 */ - public static void deldirs(String dir){ + public static void deldirs(String dir) throws IOException { + ParameterChecker.notTrimEmpty(dir); deldirs(new File(dir)); } - + /** * 递归删除文件夹及其子文件 * @param dir 文件夹 */ - public static void deldirs(File dir){ - if(dir.isDirectory()){ - File[] files =dir.listFiles(); - if(files!=null && files.length>0){ - for(File file : files){ - deldirs(file); + public static void deldirs(File dir) throws IOException { + ParameterChecker.notNull(dir); + if(dir.exists()) { + if (dir.isDirectory()) { + File[] files = dir.listFiles(); + if (files != null && files.length > 0) { + for (File file : files) { + deldirs(file); + } } } - dir.delete(); - }else{ - dir.delete(); + Files.delete(dir.toPath()); } } - + /** * 拷贝文件 * @param src 源文件 * @param target 目标文件 * @throws IOException 违例 */ - public static void copyFile(InputStream src,String target) throws IOException{ - copyFile(src,new File(target)); + public static void copyFile(String src, String target) throws IOException{ + ParameterChecker.notTrimEmpty(src); + ParameterChecker.notTrimEmpty(target); + copyFile(new File(src),new File(target)); } - + /** * 拷贝文件 - * @param src 源输入流 + * @param src 源文件对象 * @param target 目标文件对象 * @throws IOException 违例 */ - public static void copyFile(InputStream src,File target) throws IOException{ - File parentFile =target.getParentFile(); - if(!parentFile.exists()){ - parentFile.mkdirs(); - } - OutputStream os =null; - byte[] buf = new byte[1024]; - try { - os = new FileOutputStream(target); - int read =-1; - while ((read = src.read(buf)) != -1) { - os.write(buf, 0, read); - } - } catch (IOException e) { - throw e; - } finally{ - try{if(src!=null)src.close();}catch(Exception e){throw new IOException(e);} - try{if(os!=null)os.close();}catch(Exception e){throw new IOException(e);} - buf =null; - } + public static void copyFile(File src, File target) throws IOException{ + ParameterChecker.notNull(src); + ParameterChecker.notNull(target); + copyFile(new FileInputStream(src),target); } - + /** * 拷贝文件 - * @param src 源输入流 - * @param os 目标输出流 + * @param inputStream 源文件 + * @param target 目标文件 * @throws IOException 违例 */ - public static void copyFile(InputStream src,OutputStream os) throws IOException{ - byte[] buf = new byte[1024]; - try { - int read =-1; - while ((read = src.read(buf)) != -1) { - os.write(buf, 0, read); - } - } catch (IOException e) { - throw e; - } finally{ - try{if(src!=null)src.close();}catch(Exception e){throw new IOException(e);} - try{if(os!=null)os.close();}catch(Exception e){throw new IOException(e);} - buf =null; - } + public static void copyFile(InputStream inputStream,String target) throws IOException{ + ParameterChecker.notNull(inputStream); + ParameterChecker.notTrimEmpty(target); + copyFile(inputStream,new File(target)); } - + /** * 拷贝文件 - * @param src 源文件对象 + * @param inputStream 源输入流 * @param target 目标文件对象 * @throws IOException 违例 */ - public static void copyFile(File src,File target) throws IOException{ + public static void copyFile(InputStream inputStream,File target) throws IOException{ + ParameterChecker.notNull(inputStream); + ParameterChecker.notNull(target); if(!target.getParentFile().exists()){ target.getParentFile().mkdirs(); } - InputStream is =new FileInputStream(src); - OutputStream os =new FileOutputStream(target); + copyFile(inputStream,new FileOutputStream(target)); + } + + /** + * 拷贝文件 + * @param inputStream 源输入流 + * @param outputStream 目标输出流 + * @throws IOException 违例 + */ + public static void copyFile(InputStream inputStream,OutputStream outputStream) throws IOException{ + ParameterChecker.notNull(inputStream); + ParameterChecker.notNull(outputStream); byte[] buf = new byte[40960]; int read =-1; - try { - while ((read = is.read(buf)) != -1) { - os.write(buf, 0, read); - } - } catch (IOException e) { - throw e; - } finally{ - try{if(is!=null)is.close();}catch(Exception e){throw new IOException(e);} - try{if(os!=null)os.close();}catch(Exception e){throw new IOException(e);} - buf =null; + while ((read = inputStream.read(buf)) != -1) { + outputStream.write(buf, 0, read); } } - + /** - * 拷贝文件 - * @param src 源文件 - * @param target 目标文件 - * @throws IOException 违例 + * 获取文件名排序比较器,比较规则: + * 1. 文件排在目录前面 + * 2. 按名称排序 + * @return 文件名排序比较器 */ - public static void copyFile(String src,String target) throws IOException{ - copyFile(new File(src),new File(target)); + public static Comparator getFileNameComparator() { + return (File o1, File o2) -> { + if (o1.isDirectory() && o2.isFile()) + return 1; + if (o1.isFile() && o2.isDirectory()) + return -1; + return o1.getName().compareTo(o2.getName()); + }; + } + + /** + * 获取文件名称 + * @param filePath 文件全路径 + * @return 文件名称 + */ + public static String getFileName(String filePath) { + if(filePath!=null && !"".equals(filePath.trim())) { + String _filePath =filePath.replace('\\', '/'); + return new File(_filePath).getName(); + } + return null; + } + + /** + * 获取文件扩展名 + * @param name 文件名称 + * @return 扩展名 + */ + public static String getFileExtName(String name) { + if(name!=null && !"".equals(name.trim()) && name.lastIndexOf('.')>-1) { + return name.substring(name.lastIndexOf('.')); + } + return null; + } + + /** + * 获取文件基本名 + * @param name 文件名称 + * @return 文件基本名 + */ + public static String getFileBaseName(String name) { + if(name!=null && !"".equals(name.trim()) && name.indexOf('.')>-1) { + return name.substring(0,name.indexOf('.')); + } + return null; } } diff --git a/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/util/ParameterChecker.java b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/util/ParameterChecker.java new file mode 100644 index 00000000..73456e49 --- /dev/null +++ b/io.sc.engine.rule.core/src/main/java/io/sc/engine/rule/core/util/ParameterChecker.java @@ -0,0 +1,94 @@ +package io.sc.engine.rule.core.util; + +/** + * 参数检查器 + */ +public class ParameterChecker { + private ParameterChecker(){} + /** + * 检查参数不能为空 + * @param obj 参数对象 + * @return 参数对象 + * @param 参数类型 + */ + public static T notNull(T obj) { + if (obj == null) + throw new NullPointerException(); + return obj; + } + + /** + * 检查参数不能为空 + * @param obj 参数对象 + * @message obj 错误消息 + * @return 参数对象 + * @param 参数类型 + */ + public static T notNull(T obj, String message) { + if (obj == null) + throw new NullPointerException(message); + return obj; + } + + /** + * 检查参数不能为空,也不能为空字符串 + * @param obj 参数对象 + * @return 参数对象 + */ + public static String notEmpty(String obj) { + if (obj == null) { + throw new NullPointerException(); + } + if("".equals(obj)){ + throw new IllegalArgumentException("parameter is empty"); + } + return obj; + } + + /** + * 检查参数不能为空,也不能为空字符串 + * @param obj 参数对象 + * @param message 错误消息 + * @return 参数对象 + */ + public static String notEmpty(String obj,String message) { + if (obj == null) { + throw new NullPointerException(); + } + if("".equals(obj)){ + throw new IllegalArgumentException(message); + } + return obj; + } + + /** + * 检查参数不能为空,也不能为空字符串,同时 trim 也不能为空 + * @param obj 参数对象 + * @return 参数对象 + */ + public static String notTrimEmpty(String obj) { + if (obj == null) { + throw new NullPointerException(); + } + if("".equals(obj.trim())){ + throw new IllegalArgumentException("parameter is empty or empty after trim()"); + } + return obj; + } + + /** + * 检查参数不能为空,也不能为空字符串,同时 trim 也不能为空 + * @param obj 参数对象 + * @param message 错误消息 + * @return 参数对象 + */ + public static String notTrimEmpty(String obj,String message) { + if (obj == null) { + throw new NullPointerException(); + } + if("".equals(obj.trim())){ + throw new IllegalArgumentException(message); + } + return obj; + } +} diff --git a/io.sc.engine.rule.frontend/package.json b/io.sc.engine.rule.frontend/package.json index 73d49465..abf259de 100644 --- a/io.sc.engine.rule.frontend/package.json +++ b/io.sc.engine.rule.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.2", "pinia": "2.2.2", "pinia-undo": "0.2.4", - "platform-core": "8.1.433", + "platform-core": "8.1.434", "quasar": "2.17.0", "svg-path-commander": "2.0.10", "tailwindcss": "3.4.10", diff --git a/io.sc.engine.rule.frontend/src/views/dictionary/dictionary.vue b/io.sc.engine.rule.frontend/src/views/dictionary/dictionary.vue index dec4275a..6e7b79a7 100644 --- a/io.sc.engine.rule.frontend/src/views/dictionary/dictionary.vue +++ b/io.sc.engine.rule.frontend/src/views/dictionary/dictionary.vue @@ -271,11 +271,13 @@ { name: 'javaClassName', label: $t('re.dictionary.grid.entity.javaClassName'), - type: 'w-text', + type: 'w-input-select', + clearable: false, showIf: (arg) => { const type = arg.form.getFieldValue('type'); return type === 'JAVA_CLASS'; }, + options: javaClassNameOptionsRef, }, ], }, @@ -585,7 +587,7 @@ diff --git a/io.sc.engine.rule.frontend/src/views/lib/IndicatorGrid.vue b/io.sc.engine.rule.frontend/src/views/lib/IndicatorGrid.vue index 05175817..7fa33dd8 100644 --- a/io.sc.engine.rule.frontend/src/views/lib/IndicatorGrid.vue +++ b/io.sc.engine.rule.frontend/src/views/lib/IndicatorGrid.vue @@ -150,7 +150,7 @@ data.forEach((item) => { options.push({ label: item.key, value: item.value }); }); - valueTypeVersionRef = options; + valueTypeVersionOptionsRef = options; }); }, }, @@ -158,7 +158,7 @@ name: 'valueTypeVersion', label: $t('re.resources.designer.parameter.grid.entity.valueTypeVersion'), type: 'w-select', - options: valueTypeVersionRef, + options: valueTypeVersionOptionsRef, showIf: (arg) => { const valueType = arg.form.getFieldValue('valueType'); if (valueType) { @@ -253,6 +253,7 @@ import 'tailwindcss/utilities.css'; import { ref, useAttrs, onMounted } from 'vue'; import { axios, Environment, EnumTools, Formater, Options, DialogManager, Tools } from 'platform-core'; +import { ValueTypeUtil } from '@/utils/ValueTypeUtil'; import { IndicatorManager } from '@/views/shared/IndicatorManager'; import ImportDialog from './ImportDialog.vue'; @@ -264,7 +265,7 @@ const props = defineProps({ }); const gridRef = ref(); -const valueTypeVersionRef = ref(); +const valueTypeVersionOptionsRef = ref([]); const refresh = () => { gridRef?.value?.refresh(); diff --git a/io.sc.engine.rule.frontend/src/views/shared/AutoCompletionManager.ts b/io.sc.engine.rule.frontend/src/views/shared/AutoCompletionManager.ts index a2d4c21f..6822af22 100644 --- a/io.sc.engine.rule.frontend/src/views/shared/AutoCompletionManager.ts +++ b/io.sc.engine.rule.frontend/src/views/shared/AutoCompletionManager.ts @@ -42,6 +42,7 @@ class AutoCompletionManager { while (index < names.length) { valueType = this.findValueTypeByProperty(valueType.code, valueType.version, names[index++]); } + console.log(valueType); const options: any[] = []; for (const property of valueType.properties) { diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/common/service/impl/ParameterAndValueTypeServiceImpl.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/common/service/impl/ParameterAndValueTypeServiceImpl.java index 5614bf16..e05ad012 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/common/service/impl/ParameterAndValueTypeServiceImpl.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/common/service/impl/ParameterAndValueTypeServiceImpl.java @@ -1,13 +1,11 @@ package io.sc.engine.rule.server.common.service.impl; -import io.sc.engine.rule.core.enums.DictionaryType; -import io.sc.engine.rule.core.util.ExpressionReplacer; import io.sc.engine.rule.server.common.service.ParameterAndValueTypeService; import io.sc.engine.rule.server.common.service.support.Parameter; import io.sc.engine.rule.server.common.service.support.ParameterAndValueType; import io.sc.engine.rule.server.common.service.support.Property; import io.sc.engine.rule.server.common.service.support.ValueType; -import io.sc.engine.rule.server.dictionary.entity.ReleasableDictionaryEntity; +import io.sc.engine.rule.server.dictionary.entity.JavaClassDictionaryEntity; import io.sc.engine.rule.server.dictionary.entity.UserDefinedJavaClassDictionaryEntity; import io.sc.engine.rule.server.dictionary.entity.UserDefinedJavaClassFieldEntity; import io.sc.engine.rule.server.dictionary.service.DictionaryService; @@ -22,12 +20,17 @@ import io.sc.engine.rule.server.model.entity.parameter.OutParameterEntity; import io.sc.engine.rule.server.model.service.ParameterProcessorService; import io.sc.engine.rule.server.model.service.ParameterService; import io.sc.platform.core.support.KeyValue; +import io.sc.platform.core.util.CollectionUtil; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.MessageSource; import org.springframework.stereotype.Service; import org.springframework.util.StringUtils; +import java.lang.reflect.Field; +import java.lang.reflect.ParameterizedType; +import java.lang.reflect.Type; import java.util.ArrayList; +import java.util.Collection; import java.util.List; import java.util.Locale; @@ -98,6 +101,7 @@ public class ParameterAndValueTypeServiceImpl implements ParameterAndValueTypeSe ParameterAndValueType parameterAndValueType =new ParameterAndValueType(); buildParameters(parameterAndValueType,modelEntity); buildPrimaryValueTypes(parameterAndValueType,locale); + buildJavaClassValueTypes(parameterAndValueType,locale); buildUserDefinedJavaClassDictionaryValueTypes(parameterAndValueType); return parameterAndValueType; } @@ -125,6 +129,7 @@ public class ParameterAndValueTypeServiceImpl implements ParameterAndValueTypeSe parameterAndValueType.addParameter(parameter); } buildPrimaryValueTypes(parameterAndValueType,locale); + buildJavaClassValueTypes(parameterAndValueType,locale); buildUserDefinedJavaClassDictionaryValueTypes(parameterAndValueType); return parameterAndValueType; } @@ -167,6 +172,70 @@ public class ParameterAndValueTypeServiceImpl implements ParameterAndValueTypeSe } } + private void buildJavaClassValueTypes(ParameterAndValueType parameterAndValueType,Locale locale) throws Exception { + if(parameterAndValueType==null){ + return; + } + List entities =dictionaryService.getRepository().findAllJavaClassDictionaries(); + if(entities==null || entities.isEmpty()){ + return; + } + for(JavaClassDictionaryEntity entity : entities){ + String className =entity.getJavaClassName(); + if(!StringUtils.hasText(className)){ + continue; + } + Class clazz =Class.forName(className); + if(io.sc.engine.rule.core.enums.ValueType.isBase(clazz)) { + continue; + } + recursionbuildJavaClassValueTypes(parameterAndValueType,clazz,entity.getCode(),entity.getName(),entity.getVersion(),locale); + } + } + + private void recursionbuildJavaClassValueTypes(ParameterAndValueType parameterAndValueType,Class clazz,String valueTypeCode, String valueTypeName,Integer valueTypeVersion,Locale locale) throws Exception { + if(io.sc.engine.rule.core.enums.ValueType.isBase(clazz)) { + return; + } + ValueType valueType =new ValueType(); + valueType.setPrimary(false); + valueType.setCode(StringUtils.hasText(valueTypeCode)?valueTypeCode:clazz.getName()); + valueType.setName(StringUtils.hasText(valueTypeName)?valueTypeName:messageSource.getMessage(clazz.getName(), new Object[]{}, clazz.getName(), locale)); + valueType.setVersion(valueTypeVersion); + parameterAndValueType.addValueType(valueType); + + Field[] fields =clazz.getDeclaredFields(); + for(Field field : fields){ + Class fieldTypeClass =field.getType(); + Property property = new Property(); + if(io.sc.engine.rule.core.enums.ValueType.isBase(fieldTypeClass)) { + property.setCode(field.getName()); + String nameI18nKey =clazz.getPackage().getName() + "." + field.getName().toUpperCase(); + String name=messageSource.getMessage(nameI18nKey, new Object[]{}, nameI18nKey, locale); + property.setName(name); + property.setValueType(fieldTypeClass.getName()); + property.setValueTypeVersion(null); + }else if(io.sc.engine.rule.core.enums.ValueType.isList(fieldTypeClass)){ + Type elementType =CollectionUtil.getListElementJavaType(field.getGenericType()); + property.setCode(field.getName()); + String nameI18nKey =elementType.getTypeName(); + String name=messageSource.getMessage(nameI18nKey, new Object[]{}, nameI18nKey, locale); + property.setName(name); + property.setValueType(elementType.getTypeName()); + property.setValueTypeVersion(valueTypeVersion); + }else{ + property.setCode(field.getName()); + String nameI18nKey =fieldTypeClass.getPackage().getName() + "." + fieldTypeClass.getSimpleName(); + String name=messageSource.getMessage(nameI18nKey, new Object[]{}, nameI18nKey, locale); + property.setName(name); + property.setValueType(fieldTypeClass.getName()); + property.setValueTypeVersion(valueTypeVersion); + } + valueType.addProperty(property); + recursionbuildJavaClassValueTypes(parameterAndValueType,fieldTypeClass,null,null,valueTypeVersion,locale); + } + } + private void buildUserDefinedJavaClassDictionaryValueTypes(ParameterAndValueType parameterAndValueType){ if(parameterAndValueType==null){ return; diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/controller/DictionaryWebController.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/controller/DictionaryWebController.java index 345a40c0..3a927af6 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/controller/DictionaryWebController.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/controller/DictionaryWebController.java @@ -31,7 +31,6 @@ import java.util.*; /** * 数据字典管理器 Controller - * @author wangshaoping * */ @RestController("io.sc.engine.rule.server.dictionary.controller.DictionaryWebController" /* 避免和 io.sc.platform.system.dictionary.controller.DictionaryWebController 冲突 */) @@ -155,8 +154,7 @@ public class DictionaryWebController extends RestCrudController listDictionaryExampleContributionItems(HttpServletRequest request,HttpServletResponse response,Locale locale) throws Exception{ List items = PluginManager.getInstance().getDictionaryExampleItemEntries(); if(items!=null && items.size()>0) { @@ -193,8 +190,7 @@ public class DictionaryWebController extends RestCrudController contributionIds) throws Exception{ service.createExample(contributionIds); } @@ -205,9 +201,13 @@ public class DictionaryWebController extends RestCrudController listJavaClassNames(){ + return PluginManager.getInstance().getDictionaryItemEntries(); + } } diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/DictionaryEntityConverter.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/DictionaryEntityConverter.java index 3809127e..b6259927 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/DictionaryEntityConverter.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/DictionaryEntityConverter.java @@ -20,7 +20,6 @@ import io.sc.engine.rule.server.dictionary.entity.UserDefinedJavaClassFieldEntit /** * 数据字典实体转换器,用于实现持久化实体和PO对象之间的互相转换 - * @author wangshaoping * */ public class DictionaryEntityConverter { diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/EnumItemConverter.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/EnumItemConverter.java index 072c0f13..6e31c361 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/EnumItemConverter.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/EnumItemConverter.java @@ -8,7 +8,6 @@ import io.sc.engine.rule.server.dictionary.entity.EnumItemEntity; /** * 枚举项转换器,用于实现持久化实体和PO对象之间的互相转换 - * @author wangshaoping * */ public class EnumItemConverter { diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/UserDefinedJavaClassFieldConverter.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/UserDefinedJavaClassFieldConverter.java index f9f84aa3..03a1c9c1 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/UserDefinedJavaClassFieldConverter.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/converter/UserDefinedJavaClassFieldConverter.java @@ -8,7 +8,6 @@ import io.sc.engine.rule.server.dictionary.entity.UserDefinedJavaClassFieldEntit /** * 用户定义 Java Class 字段转换器,用于实现持久化实体和PO对象之间的互相转换 - * @author wangshaoping * */ public class UserDefinedJavaClassFieldConverter { diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/entity/UserDefinedJavaClassDictionaryEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/entity/UserDefinedJavaClassDictionaryEntity.java index a52fb48b..cde62644 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/entity/UserDefinedJavaClassDictionaryEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/entity/UserDefinedJavaClassDictionaryEntity.java @@ -13,7 +13,6 @@ import java.util.List; /** * 用户自定义 Java Class 类型数据字典实体类 - * @author wangshaoping * */ @Entity diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/repository/DictionaryRepository.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/repository/DictionaryRepository.java index 2a07ed1f..7ad886d1 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/repository/DictionaryRepository.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/dictionary/repository/DictionaryRepository.java @@ -65,6 +65,9 @@ public interface DictionaryRepository extends DaoRepository findAllJavaClassDictionaries(); + @Query("select e from JavaClassDictionaryEntity e where e.id=:id") public JavaClassDictionaryEntity findJavaClassDictionaryById(@Param("id") String id); diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/controller/IndicatorValidatorWebController.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/controller/IndicatorValidatorWebController.java index f6b8c949..a0f66230 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/controller/IndicatorValidatorWebController.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/controller/IndicatorValidatorWebController.java @@ -10,7 +10,6 @@ import org.springframework.web.bind.annotation.RestController; /** * 指标验证器 Controller - * @author wangshaoping * */ @RestController("io.sc.engine.rule.server.lib.controller.IndicatorValidatorWebController") diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/controller/LibWebController.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/controller/LibWebController.java index 9ca09f62..f7496aac 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/controller/LibWebController.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/controller/LibWebController.java @@ -30,7 +30,6 @@ import java.util.*; /** * 指标库管理器 Controller - * @author wangshaoping * */ @RestController("io.sc.engine.rule.server.lib.controller.LibWebController") diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/FolderLibEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/FolderLibEntity.java index aa8dba88..cf78f0e1 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/FolderLibEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/FolderLibEntity.java @@ -9,7 +9,6 @@ import javax.persistence.Entity; /** * 文件夹实体类 - * @author wangshaoping * */ @Entity diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/IndicatorEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/IndicatorEntity.java index b4feba7b..660addb9 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/IndicatorEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/IndicatorEntity.java @@ -25,7 +25,6 @@ import java.util.List; /** * 指标实体类 - * @author wangshaoping * */ @Entity diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/IndicatorProcessorEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/IndicatorProcessorEntity.java index e26e658d..3f63d170 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/IndicatorProcessorEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/IndicatorProcessorEntity.java @@ -19,7 +19,7 @@ import java.util.Map; /** * 指标处理器实体类 - * @author wangshaoping + * */ @Entity diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/processor/WhenThenIndicatorProcessorEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/processor/WhenThenIndicatorProcessorEntity.java index 63761cb6..4edf8f1c 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/processor/WhenThenIndicatorProcessorEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/lib/entity/processor/WhenThenIndicatorProcessorEntity.java @@ -15,7 +15,6 @@ import java.util.Map; /** * 指标处理器(WhenThen操作)实体类 - * @author wangshaoping * */ @Entity diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/migration/controller/MigrationWebController.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/migration/controller/MigrationWebController.java index 6f2767b0..c4efe164 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/migration/controller/MigrationWebController.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/migration/controller/MigrationWebController.java @@ -21,7 +21,6 @@ import java.util.Locale; /** * 配置迁移 Controller - * @author wangshaoping * */ @RestController("io.sc.engine.rule.server.migration.controller.MigrationWebController") diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/ParameterEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/ParameterEntity.java index d22627a8..8e0fec27 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/ParameterEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/ParameterEntity.java @@ -23,7 +23,6 @@ import java.util.List; /** * 模型参数实体 - * @author wangshaoping * */ @Entity(name="io.sc.engine.rule.server.model.entity.ParameterEntity" /* 避免和其他同名Bean冲突 */) diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/processor/ExecutionFlowParameterProcessorEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/processor/ExecutionFlowParameterProcessorEntity.java index 373c2341..10e2c8c5 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/processor/ExecutionFlowParameterProcessorEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/entity/processor/ExecutionFlowParameterProcessorEntity.java @@ -13,7 +13,6 @@ import java.util.Map; /** * 模型参数处理器(执行流)实体类 - * @author wangshaoping * */ @Entity diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ModelJsonSerializer.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ModelJsonSerializer.java index 220805bc..bfd20bca 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ModelJsonSerializer.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ModelJsonSerializer.java @@ -13,7 +13,6 @@ import com.fasterxml.jackson.databind.jsontype.TypeSerializer; /** * 模型 Json 序列化器 - * @author wangshaoping * */ public class ModelJsonSerializer extends JsonSerializer{ diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterInOptionItemJsonSerializer.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterInOptionItemJsonSerializer.java index 7b843b7e..a3ec8a3e 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterInOptionItemJsonSerializer.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterInOptionItemJsonSerializer.java @@ -12,7 +12,6 @@ import com.fasterxml.jackson.databind.SerializerProvider; /** * 参数选项实体 Json 序列化器 - * @author wangshaoping * */ public class ParameterInOptionItemJsonSerializer extends JsonSerializer{ diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterJsonSerializer.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterJsonSerializer.java index 2321e8ea..79a526b0 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterJsonSerializer.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterJsonSerializer.java @@ -12,7 +12,6 @@ import com.fasterxml.jackson.databind.SerializerProvider; /** * 参数实体 Json 序列化器 - * @author wangshaoping * */ public class ParameterJsonSerializer extends JsonSerializer{ diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterProcessorJsonSerializer.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterProcessorJsonSerializer.java index 7d66451c..ad5441f4 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterProcessorJsonSerializer.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterProcessorJsonSerializer.java @@ -12,7 +12,6 @@ import com.fasterxml.jackson.databind.jsontype.TypeSerializer; /** * 模型参数处理器 Json 序列化器 - * @author wangshaoping * */ public class ParameterProcessorJsonSerializer extends JsonSerializer{ diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterValidatorJsonSerializer.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterValidatorJsonSerializer.java index b5d42e6f..2449bd8b 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterValidatorJsonSerializer.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/ParameterValidatorJsonSerializer.java @@ -13,7 +13,6 @@ import com.fasterxml.jackson.databind.jsontype.TypeSerializer; /** * 模型参数验证器 Json 序列化器 - * @author wangshaoping * */ public class ParameterValidatorJsonSerializer extends JsonSerializer{ diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/RangeParameterValidatorJsonSerializer.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/RangeParameterValidatorJsonSerializer.java index 1f31e61c..b2ab4d27 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/RangeParameterValidatorJsonSerializer.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/model/support/RangeParameterValidatorJsonSerializer.java @@ -12,7 +12,6 @@ import com.fasterxml.jackson.databind.jsontype.TypeSerializer; /** * 模型参数范围验证器 Json 序列化器 - * @author wangshaoping * */ public class RangeParameterValidatorJsonSerializer extends JsonSerializer{ diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/plugins/PluginManager.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/plugins/PluginManager.java index 7e8d3ad0..e33aaa93 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/plugins/PluginManager.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/plugins/PluginManager.java @@ -6,6 +6,7 @@ import io.sc.engine.rule.server.plugins.item.LibExampleItem; import io.sc.engine.rule.server.plugins.item.ResourceExampleItem; import io.sc.platform.core.plugins.Plugin; import io.sc.platform.core.plugins.PluginParser; +import io.sc.platform.core.util.CollectionUtil; import java.util.ArrayList; import java.util.Collections; @@ -19,6 +20,7 @@ public class PluginManager { private static final String RESOURCE_EXAMPLE_ITEM_RESOURCE_LOCATION ="META-INF/platform/plugins/rule-engine-sample-resource.json"; private static final String DICTIONARY_EXAMPLE_ITEM_RESOURCE_LOCATION ="META-INF/platform/plugins/rule-engine-sample-dictionary.json"; private static final String LIB_EXAMPLE_ITEM_RESOURCE_LOCATION ="META-INF/platform/plugins/rule-engine-sample-lib.json"; + private static final String DICTIONARY_ITEM_RESOURCE_LOCATION ="META-INF/platform/plugins/rule-engine-dictionary.json"; //决策引擎资源示例贡献项相关 private List>> resourceExampleItems; @@ -32,6 +34,10 @@ public class PluginManager { private List>> libExampleItems; private List libExampleItemEntries; + //数据字典贡献项相关 + private List>> dictionaryItems; + private List dictionaryItemEntries; + /** * 获取单例模式实例 * @return 实例 @@ -49,6 +55,7 @@ public class PluginManager { loadResourceExampleItems(parser); loadDictionaryExampleItems(parser); loadLibExampleItems(parser); + loadDictionaryItems(parser); } /** @@ -99,6 +106,14 @@ public class PluginManager { return libExampleItemEntries; } + public List>> getDictionaryItems() { + return dictionaryItems; + } + + public List getDictionaryItemEntries() { + return dictionaryItemEntries; + } + private void loadResourceExampleItems(PluginParser parser) { List>> items =parser.parse(RESOURCE_EXAMPLE_ITEM_RESOURCE_LOCATION,new TypeReference>(){}); this.resourceExampleItems =items; @@ -173,4 +188,16 @@ public class PluginManager { }); } } + + private void loadDictionaryItems(PluginParser parser){ + List>> items =parser.parse(DICTIONARY_ITEM_RESOURCE_LOCATION,new TypeReference>(){}); + this.dictionaryItems =items; + if(CollectionUtil.hasElements(items)){ + List entries =new ArrayList<>(); + for(Plugin> item : items){ + entries.addAll(item.getValue()); + } + this.dictionaryItemEntries =entries; + } + } } diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/entity/FolderResourceEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/entity/FolderResourceEntity.java index fb062463..9bf5b9ed 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/entity/FolderResourceEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/entity/FolderResourceEntity.java @@ -9,7 +9,6 @@ import javax.persistence.Entity; /** * 文件夹资源实体类 - * @author wangshaoping * */ @Entity diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/exception/FolderAlreadyExistsException.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/exception/FolderAlreadyExistsException.java index 8d6e7493..d2c78b53 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/exception/FolderAlreadyExistsException.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/exception/FolderAlreadyExistsException.java @@ -2,7 +2,6 @@ package io.sc.engine.rule.server.resource.exception; /** * 文件夹已经存在违例类 - * @author wangshaoping * */ public class FolderAlreadyExistsException extends RuntimeException{ diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/exception/ResourceAlreadyExistsException.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/exception/ResourceAlreadyExistsException.java index 1bbf339e..980ead24 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/exception/ResourceAlreadyExistsException.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/exception/ResourceAlreadyExistsException.java @@ -2,7 +2,6 @@ package io.sc.engine.rule.server.resource.exception; /** * 资源已经存在违例类 - * @author wangshaoping * */ public class ResourceAlreadyExistsException extends RuntimeException{ diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/repository/ResourceRepository.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/repository/ResourceRepository.java index 2354c114..ed4dbe41 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/repository/ResourceRepository.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/repository/ResourceRepository.java @@ -21,21 +21,9 @@ public interface ResourceRepository extends DaoRepository @Query("select entity from ResourceEntity entity where entity.parent.id is null") public List findRootResources(); -// @Query("select entity from ResourceEntity entity where entity.code=:code and entity.name=:name") -// public List findResourceByCodeAndName(@Param("code")String code,@Param("name")String name); - -// @Query("select max(entity.order)+1 from ResourceEntity entity where entity.parent.id=:parentId") -// public Integer getNextOrder(@Param("parentId") String parentId); - -// @Query("select max(entity.order)+1 from ResourceEntity entity where entity.parent.id is null") -// public Integer getNextOrder(); - //==================================================================================== // ResourceEntity <-- FolderResourceEntity //==================================================================================== -// @Query("select entity from FolderResourceEntity entity where entity.id=:id") -// public FolderResourceEntity findFolderById(@Param("id") String id); - @Query("select entity from FolderResourceEntity entity where entity.parent.id=:parentId and entity.name=:name") public List findFolderByNameWithParentId(@Param("name") String name,@Param("parentId") String parentId); @@ -56,10 +44,7 @@ public interface ResourceRepository extends DaoRepository @Query("select entity from ReleasableResourceEntity entity where entity.id=:id") public ReleasableResourceEntity findReleasableResourceById(@Param("id") String id); - -// @Query("select entity from ReleasableResourceEntity entity where entity.code=:code and entity.name=:name") -// public List findReleasableResourceByCodeAndName(@Param("code")String code,@Param("name")String name); - + @Query("select entity from ReleasableResourceEntity entity where entity.code=:code or entity.name=:name") public List findReleasableResourceByCodeOrName(@Param("code")String code,@Param("name")String name); @@ -68,13 +53,7 @@ public interface ResourceRepository extends DaoRepository @Query("select entity from ReleasableResourceEntity entity where entity.code=:code and entity.version=:version") public ReleasableResourceEntity findReleasableResourceByCodeAndVersion(@Param("code")String code,@Param("version")Integer version); - -// @Query("select entity from ReleasableResourceEntity entity where entity.code=:code order by entity.version") -// public List findReleasableResourceByCodeOrderByVersion(@Param("code")String code); - -// @Query("select entity from ReleasableResourceEntity entity order by entity.version") -// public List findReleasableResourceByOrderByVersion(); - + @Query("select max(entity.version)+1 from ReleasableResourceEntity entity where entity.code=:code") public Integer getReleasableResourceNextVersion(@Param("code") String code); diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/service/ResourceService.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/service/ResourceService.java index 07cfe8d5..b4d4120a 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/service/ResourceService.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/resource/service/ResourceService.java @@ -14,13 +14,11 @@ import io.sc.platform.orm.service.DaoService; /** * 资源服务接口 - * @author wangshaoping - * */ public interface ResourceService extends DaoService{ /** - * 通过资源ID获取资源定义封装对象 + * 通过资源 ID 获取资源定义封装对象 * @param resourceId 资源ID * @return 资源定义封装对象 * @throws Exception 违例 @@ -28,7 +26,7 @@ public interface ResourceService extends DaoService implements ResourceService { - @Autowired - private ApplicationContext applicationContext; - @Autowired - private SystemParameterService systemParameterService; - @Autowired - private ModelService modelService; - @Autowired - private DictionaryService dictionaryService; - @Autowired - private FunctionService functionService; - @Autowired - private LibService libService; - @Autowired - private ResourceQueryService resourceQueryService; - @Autowired - private RoleService roleService; - @Autowired - private JdbcTemplate jdbcTemplate; - @Autowired - private AttachmentService attachmentService; - @Autowired - private ProcessEngine processEngine; + @Autowired private ApplicationContext applicationContext; + @Autowired private SystemParameterService systemParameterService; + @Autowired private ModelService modelService; + @Autowired private DictionaryService dictionaryService; + @Autowired private FunctionService functionService; + @Autowired private LibService libService; + @Autowired private ResourceQueryService resourceQueryService; + @Autowired private RoleService roleService; + @Autowired private JdbcTemplate jdbcTemplate; + @Autowired private AttachmentService attachmentService; + @Autowired private ProcessEngine processEngine; @Override public String[] getDefaultSortBy() { @@ -660,12 +650,12 @@ public class ResourceServiceImpl extends DaoServiceImpl0) { + if(CollectionUtil.hasElements(folderEntities)){ return true; } break; case UPDATE: - if(folderEntities!=null && folderEntities.size()>0) { + if(CollectionUtil.hasElements(folderEntities)){ for(FolderResourceEntity folder : folderEntities) { if(!folder.getId().equals(entity.getId())) { return true; @@ -688,7 +678,7 @@ public class ResourceServiceImpl extends DaoServiceImpl resources =repository.findReleasableResourceByCodeOrName(entity.getCode(), entity.getName()); - if(resources!=null && resources.size()>0) { + if(CollectionUtil.hasElements(resources)){ for(ReleasableResourceEntity resource : resources) { if(resource.getCode().equals(entity.getCode()) && resource.getName().equals(entity.getName())) {//代码和名称都相同 if(isNotInSameFolder(resource,entity)) {//不属于同一个文件夹 diff --git a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/ResourceTestCaseEntity.java b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/ResourceTestCaseEntity.java index aa5afc29..cdb35cef 100644 --- a/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/ResourceTestCaseEntity.java +++ b/io.sc.engine.rule.server/src/main/java/io/sc/engine/rule/server/testcase/entity/ResourceTestCaseEntity.java @@ -16,7 +16,6 @@ import javax.persistence.*; /** * 模型测试用例实体类 - * @author wangshaoping * */ @Entity diff --git a/io.sc.engine.st.frontend/package.json b/io.sc.engine.st.frontend/package.json index 2db1197a..0bf7ff5d 100644 --- a/io.sc.engine.st.frontend/package.json +++ b/io.sc.engine.st.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.2", "pinia": "2.2.2", "pinia-undo": "0.2.4", - "platform-core": "8.1.433", + "platform-core": "8.1.434", "quasar": "2.17.0", "svg-path-commander": "2.0.10", "tailwindcss": "3.4.10", diff --git a/io.sc.platform.core.frontend/package.json b/io.sc.platform.core.frontend/package.json index c78cb09b..22a98283 100644 --- a/io.sc.platform.core.frontend/package.json +++ b/io.sc.platform.core.frontend/package.json @@ -1,6 +1,6 @@ { "name": "platform-core", - "version": "8.1.433", + "version": "8.1.434", "description": "前端核心包,用于快速构建前端的脚手架", "//main": "库的主文件", "main": "dist/platform-core.js", diff --git a/io.sc.platform.core.frontend/template-project/package.json b/io.sc.platform.core.frontend/template-project/package.json index a4b0ee4f..711b6589 100644 --- a/io.sc.platform.core.frontend/template-project/package.json +++ b/io.sc.platform.core.frontend/template-project/package.json @@ -1,6 +1,6 @@ { "name": "platform-core", - "version": "8.1.433", + "version": "8.1.434", "description": "前端核心包,用于快速构建前端的脚手架", "private": false, "keywords": [], @@ -110,7 +110,7 @@ "mockjs": "1.1.0", "node-sql-parser": "5.3.2", "pinia": "2.2.2", - "platform-core": "8.1.433", + "platform-core": "8.1.434", "quasar": "2.17.0", "svg-path-commander": "2.0.10", "vue": "3.5.10", diff --git a/io.sc.platform.core/src/main/java/io/sc/platform/core/util/CollectionUtil.java b/io.sc.platform.core/src/main/java/io/sc/platform/core/util/CollectionUtil.java index 1fcc3eba..62ce3673 100644 --- a/io.sc.platform.core/src/main/java/io/sc/platform/core/util/CollectionUtil.java +++ b/io.sc.platform.core/src/main/java/io/sc/platform/core/util/CollectionUtil.java @@ -6,9 +6,7 @@ import org.springframework.beans.BeanWrapper; import org.springframework.beans.BeanWrapperImpl; import org.springframework.util.StringUtils; -import java.lang.reflect.Field; -import java.lang.reflect.InvocationTargetException; -import java.lang.reflect.Method; +import java.lang.reflect.*; import java.util.*; /** @@ -35,6 +33,19 @@ public class CollectionUtil { return arrays!=null && arrays.length>0; } + /** + * 获取 List 集合元素的类型 + * @param type + * @return + */ + public static Type getListElementJavaType(Type type){ + if(type instanceof ParameterizedType){ + ParameterizedType parameterizedType =(ParameterizedType)type; + return parameterizedType.getActualTypeArguments()[0]; + } + return null; + } + /** * 将对象列表转换成 Map * class User { diff --git a/io.sc.platform.core/src/main/java/io/sc/platform/core/util/FileUtil.java b/io.sc.platform.core/src/main/java/io/sc/platform/core/util/FileUtil.java index 2c77fff5..ff45f397 100644 --- a/io.sc.platform.core/src/main/java/io/sc/platform/core/util/FileUtil.java +++ b/io.sc.platform.core/src/main/java/io/sc/platform/core/util/FileUtil.java @@ -368,12 +368,13 @@ public class FileUtil { * 创建目录,可同时创建多级目录 * @param dir 目录路径能够 */ - public static void mkdirs(String dir){ + public static String mkdirs(String dir){ ParameterChecker.notTrimEmpty(dir); File file =new File(dir); if(!file.exists()){ file.mkdirs(); } + return dir; } /** diff --git a/io.sc.platform.core/src/main/java/io/sc/platform/core/util/ObjectMapper4Xml.java b/io.sc.platform.core/src/main/java/io/sc/platform/core/util/ObjectMapper4Xml.java new file mode 100644 index 00000000..356177f4 --- /dev/null +++ b/io.sc.platform.core/src/main/java/io/sc/platform/core/util/ObjectMapper4Xml.java @@ -0,0 +1,19 @@ +package io.sc.platform.core.util; + +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.databind.*; +import com.fasterxml.jackson.dataformat.xml.XmlMapper; + +public class ObjectMapper4Xml { + private ObjectMapper4Xml(){} + + public static ObjectMapper getMapper() { + XmlMapper mapper =new XmlMapper(); + mapper.configure(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES,false); + mapper.configure(SerializationFeature.WRAP_ROOT_VALUE,false); + mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); + //mapper.setPropertyNamingStrategy(PropertyNamingStrategies.UPPER_CAMEL_CASE); + mapper.enable(MapperFeature.USE_STD_BEAN_NAMING); + return mapper; + } +} diff --git a/io.sc.platform.core/src/main/java/io/sc/platform/core/util/StringUtil.java b/io.sc.platform.core/src/main/java/io/sc/platform/core/util/StringUtil.java index 8e4b692a..5a4fd037 100644 --- a/io.sc.platform.core/src/main/java/io/sc/platform/core/util/StringUtil.java +++ b/io.sc.platform.core/src/main/java/io/sc/platform/core/util/StringUtil.java @@ -15,6 +15,7 @@ public class StringUtil { private static final String[] commaStyleUnits =new String[] {"K","M","G","T","P"}; private static final char[] HEX ={'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; private static final Set REGULAR_EXPRESSION_KEY_WORDS =new HashSet<>(Arrays.asList('$', '(', ')', '*', '+', '.', '[', ']', '?', '\\', '^', '{', '}', '|')); + private static final Pattern formaterPattern =Pattern.compile("\\$\\{\\d+\\}"); /** * 判断字符串是否为 null 或者 空 @@ -1457,4 +1458,29 @@ public class StringUtil { .replace("?", "\\?") .replace("*", "\\*"); } + + public static String capitalize(String str){ + if(str==null || str.length()==0){ + return str; + } + char[] chars =str.toCharArray(); + char firstChar =chars[0]; + if(firstChar>=97 && firstChar<=122){ + chars[0] ^=32; + } + return String.valueOf(chars); + } + + public static String format(String pattern,Object ... arguments){ + Matcher m =formaterPattern.matcher(pattern); + while(m.find()){ + String p =m.group(); + int index =Integer.valueOf(p.substring(2,p.length()-1)); + Object o =arguments[index]; + if(o!=null) { + pattern = pattern.replace("${" + index + "}", o.toString()); + } + } + return pattern; + } } diff --git a/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words.properties b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words.properties index b0a4eafe..ef3f38e4 100644 --- a/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words.properties +++ b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words.properties @@ -242,4 +242,5 @@ upload=Upload result=Result weight=Weight message=Message -reload=Reload \ No newline at end of file +reload=Reload +constraint=Constraint \ No newline at end of file diff --git a/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words_tw_CN.properties b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words_tw_CN.properties index fbcf971c..999dd864 100644 --- a/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words_tw_CN.properties +++ b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words_tw_CN.properties @@ -242,4 +242,5 @@ upload=\u4E0A\u50B3 result=\u7D50\u679C weight=\u6B0A\u91CD message=\u6D88\u606F -reload=\u91CD\u65B0\u52A0\u8F09 \ No newline at end of file +reload=\u91CD\u65B0\u52A0\u8F09 +constraint=\u7D04\u675F \ No newline at end of file diff --git a/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words_zh_CN.properties b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words_zh_CN.properties index 165ce381..7e0d1978 100644 --- a/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words_zh_CN.properties +++ b/io.sc.platform.core/src/main/resources/io/sc/platform/core/i18n/words_zh_CN.properties @@ -242,4 +242,5 @@ upload=\u4E0A\u4F20 result=\u7ED3\u679C weight=\u6743\u91CD message=\u6D88\u606F -reload=\u91CD\u65B0\u52A0\u8F7D \ No newline at end of file +reload=\u91CD\u65B0\u52A0\u8F7D +constraint=\u7EA6\u675F \ No newline at end of file diff --git a/io.sc.platform.developer.doc/package.json b/io.sc.platform.developer.doc/package.json index 9f6a9011..08af4bf5 100644 --- a/io.sc.platform.developer.doc/package.json +++ b/io.sc.platform.developer.doc/package.json @@ -28,7 +28,7 @@ "vuepress": "2.0.0-rc.15" }, "dependencies": { - "platform-core": "8.1.433", + "platform-core": "8.1.434", "quasar": "2.17.0", "vue": "3.5.10", "vue-i18n": "10.0.3" diff --git a/io.sc.platform.developer.frontend/package.json b/io.sc.platform.developer.frontend/package.json index 0b06be6a..4890d754 100644 --- a/io.sc.platform.developer.frontend/package.json +++ b/io.sc.platform.developer.frontend/package.json @@ -111,7 +111,7 @@ "node-sql-parser": "5.3.2", "pinia": "2.2.2", "pinia-undo": "0.2.4", - "platform-core": "8.1.433", + "platform-core": "8.1.434", "quasar": "2.17.0", "svg-path-commander": "2.0.10", "tailwindcss": "3.4.10", diff --git a/io.sc.platform.developer.frontend/src/views/frontend/Icons.vue b/io.sc.platform.developer.frontend/src/views/frontend/Icons.vue index 89af8d58..54f20239 100644 --- a/io.sc.platform.developer.frontend/src/views/frontend/Icons.vue +++ b/io.sc.platform.developer.frontend/src/views/frontend/Icons.vue @@ -1,8 +1,8 @@ @@ -77,6 +80,9 @@ + + + @@ -97,6 +103,7 @@ import TradeFinanceProduct from './standard/TradeFinanceProduct.vue'; import BussinessProduct from './standard/BussinessProduct.vue'; import Collateral from './standard/Collateral.vue'; import Bond from './standard/Bond.vue'; +import CreditReport from './standard/CreditReport.vue'; const splitterModelRef = ref(15); const selectedTabRef = ref('Industry'); diff --git a/io.sc.standard.frontend/src/views/standard/CreditReport.vue b/io.sc.standard.frontend/src/views/standard/CreditReport.vue new file mode 100644 index 00000000..0672f020 --- /dev/null +++ b/io.sc.standard.frontend/src/views/standard/CreditReport.vue @@ -0,0 +1,107 @@ + + diff --git a/io.sc.standard/build.gradle b/io.sc.standard/build.gradle index 6d3e9522..99aa667c 100644 --- a/io.sc.standard/build.gradle +++ b/io.sc.standard/build.gradle @@ -3,6 +3,7 @@ dependencies { project(":io.sc.platform.orm"), project(":io.sc.standard.api"), project(":io.sc.standard.frontend"), + project(":io.sc.platform.poi"), project(":io.sc.platform.system"), ) } diff --git a/io.sc.standard/src/main/java/A.java b/io.sc.standard/src/main/java/A.java new file mode 100644 index 00000000..b34af976 --- /dev/null +++ b/io.sc.standard/src/main/java/A.java @@ -0,0 +1,181 @@ +import com.opencsv.CSVWriterBuilder; +import com.opencsv.ICSVWriter; +import io.sc.platform.core.util.WriterUtil; +import io.sc.standard.api.enums.CreditReportType; +import org.apache.poi.ss.usermodel.Row; +import org.apache.poi.xssf.usermodel.XSSFSheet; +import org.apache.poi.xssf.usermodel.XSSFWorkbook; + +import java.io.BufferedWriter; +import java.io.IOException; +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; + +public class A { + private static final String TABLE_NAME ="SD_CR_DEF"; + private static final String INPUT ="/standard/二代个人征信接口结构化数据详细说明.xlsx"; + private static final String OUTPUT ="/Users/wangshaoping/wspsc/workspace/wangshaoping/v8/platform/io.sc.standard/src/main/resources/io/sc/standard/liquibase/data/sd_cr_def.csv"; + + public static void main(String[] args) throws IOException { + XSSFWorkbook workbook = new XSSFWorkbook(A.class.getResourceAsStream(INPUT)); + + BufferedWriter writer = WriterUtil.bufferedWriter(OUTPUT); + ICSVWriter csvWriter = new CSVWriterBuilder(writer).build(); + csvWriter.writeNext(new String[]{ + TABLE_NAME, //0,code + null, //1,name + null, //2,type + null, //3,value type + null, //4,level + null, //5,description + null, //6,constraint + null, //7,order + null, //8,parent + null, //9,jap_version + null, //10,data_come_from + null, //11,creator + null, //12,createDate + null, //13,lastModifier + null, //14,lastModifyDate + }); + csvWriter.writeNext(new String[]{ + "ID_", //0 + "CODE_", //1 + "NAME_", //2 + "TYPE_", //3 + "VALUE_TYPE_", //4 + "LEVEL_", //5 + "DESCRIPTION_", //6 + "CONSTRAINT_", //7 + "ORDER_", //8 + "PARENT_ID_", //9 + "JPA_VERSION_", //10 + "DATA_COME_FROM_", //11 + "CREATOR_", //12 + "CREATE_DATE_", //13 + "LAST_MODIFIER_", //14 + "LAST_MODIFYDATE_", //15 + }); + csvWriter.writeNext(new String[]{ + "ID", //0 + "代码", //1 + "名称", //2 + "类型", //3 + "值类型", //4 + "层级", //5 + "说明", //6 + "约束", //7 + "顺序", //8 + "父代ID", //9 + "JPA乐观锁版本", //10 + "数据来源(INPUT:手工录入,IMPORT:系统自动导入)", //11 + "创建人", //12 + "创建日期", //13 + "最后修改人", //14 + "最后修改日期", //15 + }); + csvWriter.writeNext(new String[]{ + "VARCHAR", //0 + "VARCHAR", //1 + "VARCHAR", //2 + "VARCHAR", //3 + "VARCHAR", //4 + "INTEGER", //5 + "VARCHAR", //6 + "VARCHAR", //7 + "INTEGER", //8 + "VARCHAR", //9 + "INTEGER", //10 + "VARCHAR", //11 + "VARCHAR", //12 + "TIMESTAMP", //13 + "VARCHAR", //14 + "TIMESTAMP", //15 + }); + csvWriter.writeNext(new String[]{ + "java.lang.String", //0 + "java.lang.String", //1 + "java.lang.String", //2 + "java.lang.String", //3 + "java.lang.String", //4 + "java.lang.Integer", //5 + "java.lang.String", //6 + "java.lang.String", //7 + "java.lang.Integer", //8 + "java.lang.String", //9 + "java.lang.Integer", //10 + "java.lang.String", //11 + "java.lang.String", //12 + "java.sql.Timestamp", //13 + "java.lang.String", //14 + "java.sql.Timestamp", //15 + }); + + generate(csvWriter,workbook,CreditReportType.PERSON,0); + generate(csvWriter,workbook,CreditReportType.COMPANY,1); + + csvWriter.close(); + workbook.close(); + } + + private static void generate(ICSVWriter csvWriter,XSSFWorkbook workbook,CreditReportType type,int sheetNumber) throws IOException{ + Map codeAndIdMapping =new HashMap<>(); + XSSFSheet sheet = workbook.getSheetAt(sheetNumber); + int maxRow = sheet.getLastRowNum(); + for(int rowIndex=2; rowIndex<=maxRow;rowIndex++) { + String[] csv =new String[16]; + Row row = sheet.getRow(rowIndex); + csv[0] = UUID.randomUUID().toString(); //id + csv[1] =replace(row.getCell(1).getStringCellValue());//code + csv[2] =replace(row.getCell(3).getStringCellValue(),true);//name + csv[3] =type.toString(); //type + csv[4] =javaType(row.getCell(2).getStringCellValue());//value type + csv[5] =replace(row.getCell(0).getStringCellValue());//level + csv[6] =replace(row.getCell(4).getStringCellValue());//description + csv[7] =replace(row.getCell(5).getStringCellValue());//constraint + csv[8] ="" + rowIndex;//order + csv[9] =codeAndIdMapping.get(row.getCell(6).getStringCellValue());//parent + csv[10] ="1"; + csv[11] ="INPUT"; + csv[12] ="platform"; + csv[13] ="2024-07-10 09:18:29.0"; + csv[14] ="platform"; + csv[15] ="2024-07-10 09:18:29.0"; + + codeAndIdMapping.put(csv[1],csv[0]); + csvWriter.writeNext(csv); + } + } + + private static String replace(String value){ + String str =value; + str =str.replace("\uF0D8",""); + str =str.replace("\uF0FC",""); + str =str.replace("→",""); + return str; + } + + private static String replace(String value,boolean replaceCRLF){ + String str =value; + if(replaceCRLF) { + str = str.replace("\r", ""); + str = str.replace("\n", ""); + } + return replace(str); + } + + private static String javaType(String type){ + if( type.startsWith("N") || type.startsWith("AN") || type.startsWith("Enum") || type.startsWith("Month")){ + return "String"; + }else if(type.startsWith("Int") || type.startsWith("uInt") || type.startsWith("Year")){ + return "String";//""Integer"; + }else if(type.startsWith("Date") || type.startsWith("Time")){ + return "Date"; + }else if(type.startsWith("Float")){ + return "Double"; + }else{ + return type; + } + } +} diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/AdminDivisionWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/AdminDivisionWebController.java index 3e1d302b..d4a5a71f 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/controller/AdminDivisionWebController.java +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/AdminDivisionWebController.java @@ -2,7 +2,7 @@ package io.sc.standard.controller; import io.sc.platform.mvc.controller.support.RestCrudController; import io.sc.platform.orm.service.support.QueryParameter; -import io.sc.standard.api.AdminDivisionVo; +import io.sc.standard.api.vo.AdminDivisionVo; import io.sc.standard.jpa.entity.AdminDivisionEntity; import io.sc.standard.jpa.repository.AdminDivisionRepository; import io.sc.standard.service.AdminDivisionService; diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/BondWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/BondWebController.java index 464311e1..3378b6c5 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/controller/BondWebController.java +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/BondWebController.java @@ -2,7 +2,7 @@ package io.sc.standard.controller; import io.sc.platform.mvc.controller.support.RestCrudController; import io.sc.platform.orm.service.support.QueryParameter; -import io.sc.standard.api.BondVo; +import io.sc.standard.api.vo.BondVo; import io.sc.standard.jpa.entity.BondEntity; import io.sc.standard.jpa.repository.BondRepository; import io.sc.standard.service.BondService; diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/BussinessProductWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/BussinessProductWebController.java index 5415cde4..53a6911e 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/controller/BussinessProductWebController.java +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/BussinessProductWebController.java @@ -2,7 +2,7 @@ package io.sc.standard.controller; import io.sc.platform.mvc.controller.support.RestCrudController; import io.sc.platform.orm.service.support.QueryParameter; -import io.sc.standard.api.BussinessProductVo; +import io.sc.standard.api.vo.BussinessProductVo; import io.sc.standard.jpa.entity.BussinessProductEntity; import io.sc.standard.jpa.repository.BussinessProductRepository; import io.sc.standard.service.BussinessProductService; diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/CollateralWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/CollateralWebController.java index 705f6f89..d54ce9f6 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/controller/CollateralWebController.java +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/CollateralWebController.java @@ -2,7 +2,7 @@ package io.sc.standard.controller; import io.sc.platform.mvc.controller.support.RestCrudController; import io.sc.platform.orm.service.support.QueryParameter; -import io.sc.standard.api.CollateralVo; +import io.sc.standard.api.vo.CollateralVo; import io.sc.standard.jpa.entity.CollateralEntity; import io.sc.standard.jpa.repository.CollateralRepository; import io.sc.standard.service.CollateralService; diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/CounterpartyWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/CounterpartyWebController.java index 32c315a0..08662a5a 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/controller/CounterpartyWebController.java +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/CounterpartyWebController.java @@ -2,8 +2,7 @@ package io.sc.standard.controller; import io.sc.platform.mvc.controller.support.RestCrudController; import io.sc.platform.orm.service.support.QueryParameter; -import io.sc.standard.api.AdminDivisionVo; -import io.sc.standard.api.CounterpartyVo; +import io.sc.standard.api.vo.CounterpartyVo; import io.sc.standard.jpa.entity.CounterpartyEntity; import io.sc.standard.jpa.repository.CounterpartyRepository; import io.sc.standard.service.CounterpartyService; diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/CountryWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/CountryWebController.java index fff71eee..54d96a75 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/controller/CountryWebController.java +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/CountryWebController.java @@ -2,8 +2,7 @@ package io.sc.standard.controller; import io.sc.platform.mvc.controller.support.RestCrudController; import io.sc.platform.orm.service.support.QueryParameter; -import io.sc.standard.api.CounterpartyVo; -import io.sc.standard.api.CountryVo; +import io.sc.standard.api.vo.CountryVo; import io.sc.standard.jpa.entity.CountryEntity; import io.sc.standard.jpa.repository.CountryRepository; import io.sc.standard.service.CountryService; diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/CreditReportWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/CreditReportWebController.java new file mode 100644 index 00000000..680fa0ba --- /dev/null +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/CreditReportWebController.java @@ -0,0 +1,24 @@ +package io.sc.standard.controller; + +import io.sc.platform.core.annotation.IgnoreResponseBodyAdvice; +import io.sc.platform.mvc.controller.support.RestCrudController; +import io.sc.standard.api.vo.CreditReportVo; +import io.sc.standard.jpa.entity.CreditReportEntity; +import io.sc.standard.jpa.repository.CreditReportRepository; +import io.sc.standard.service.CreditReportService; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +@RestController("io.sc.standard.controller.CreditReportWebController") +@RequestMapping("/api/standard/creditReport") +public class CreditReportWebController extends RestCrudController { + @PostMapping("generateCode") + @IgnoreResponseBodyAdvice + public void generateCode(HttpServletRequest request, HttpServletResponse response) throws Exception { + service.generateCode(request,response); + } +} diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/CurrencyWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/CurrencyWebController.java index 8d32fd98..3888c402 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/controller/CurrencyWebController.java +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/CurrencyWebController.java @@ -2,7 +2,7 @@ package io.sc.standard.controller; import io.sc.platform.mvc.controller.support.RestCrudController; import io.sc.platform.orm.service.support.QueryParameter; -import io.sc.standard.api.CurrencyVo; +import io.sc.standard.api.vo.CurrencyVo; import io.sc.standard.jpa.entity.CurrencyEntity; import io.sc.standard.jpa.repository.CurrencyRepository; import io.sc.standard.service.CurrencyService; diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/IndustryWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/IndustryWebController.java index f22ebd3e..7d48538e 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/controller/IndustryWebController.java +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/IndustryWebController.java @@ -2,19 +2,16 @@ package io.sc.standard.controller; import io.sc.platform.mvc.controller.support.RestCrudController; import io.sc.platform.orm.service.support.QueryParameter; -import io.sc.standard.api.CounterpartyVo; -import io.sc.standard.api.IndustryVo; +import io.sc.standard.api.vo.IndustryVo; import io.sc.standard.jpa.entity.IndustryEntity; import io.sc.standard.jpa.repository.IndustryRepository; import io.sc.standard.service.IndustryService; import org.springframework.data.domain.Page; -import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; -import java.util.List; @RestController("io.sc.standard.controller.IndustryWebController") @RequestMapping("/api/standard/industry") diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/LoanProductWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/LoanProductWebController.java index 21f8d4df..1dcbf369 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/controller/LoanProductWebController.java +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/LoanProductWebController.java @@ -2,7 +2,7 @@ package io.sc.standard.controller; import io.sc.platform.mvc.controller.support.RestCrudController; import io.sc.platform.orm.service.support.QueryParameter; -import io.sc.standard.api.LoanProductVo; +import io.sc.standard.api.vo.LoanProductVo; import io.sc.standard.jpa.entity.LoanProductEntity; import io.sc.standard.jpa.repository.LoanProductRepository; import io.sc.standard.service.LoanProductService; diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/PerformanceStatusWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/PerformanceStatusWebController.java index 0d79bd5e..a20ffdda 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/controller/PerformanceStatusWebController.java +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/PerformanceStatusWebController.java @@ -2,19 +2,16 @@ package io.sc.standard.controller; import io.sc.platform.mvc.controller.support.RestCrudController; import io.sc.platform.orm.service.support.QueryParameter; -import io.sc.standard.api.CounterpartyVo; -import io.sc.standard.api.PerformanceStatusVo; +import io.sc.standard.api.vo.PerformanceStatusVo; import io.sc.standard.jpa.entity.PerformanceStatusEntity; import io.sc.standard.jpa.repository.PerformanceStatusRepository; import io.sc.standard.service.PerformanceStatusService; import org.springframework.data.domain.Page; -import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; -import java.util.List; @RestController("io.sc.standard.controller.PerformanceStatusWebController") @RequestMapping("/api/standard/performanceStatus") diff --git a/io.sc.standard/src/main/java/io/sc/standard/controller/TradeFinanceProductWebController.java b/io.sc.standard/src/main/java/io/sc/standard/controller/TradeFinanceProductWebController.java index 8c37345b..a7d2b943 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/controller/TradeFinanceProductWebController.java +++ b/io.sc.standard/src/main/java/io/sc/standard/controller/TradeFinanceProductWebController.java @@ -2,7 +2,7 @@ package io.sc.standard.controller; import io.sc.platform.mvc.controller.support.RestCrudController; import io.sc.platform.orm.service.support.QueryParameter; -import io.sc.standard.api.TradeFinanceProductVo; +import io.sc.standard.api.vo.TradeFinanceProductVo; import io.sc.standard.jpa.entity.TradeFinanceProductEntity; import io.sc.standard.jpa.repository.TradeFinanceProductRepository; import io.sc.standard.service.TradeFinanceProductService; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/AdminDivisionEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/AdminDivisionEntity.java index 3fd89b2e..75d85b39 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/AdminDivisionEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/AdminDivisionEntity.java @@ -1,7 +1,7 @@ package io.sc.standard.jpa.entity; import io.sc.platform.orm.entity.AuditorEntity; -import io.sc.standard.api.AdminDivisionVo; +import io.sc.standard.api.vo.AdminDivisionVo; import javax.persistence.*; import javax.validation.constraints.Size; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/BondEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/BondEntity.java index ad876e78..3d0f97ab 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/BondEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/BondEntity.java @@ -1,7 +1,7 @@ package io.sc.standard.jpa.entity; import io.sc.platform.orm.entity.AuditorEntity; -import io.sc.standard.api.BondVo; +import io.sc.standard.api.vo.BondVo; import javax.persistence.*; import javax.validation.constraints.Size; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/BussinessProductEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/BussinessProductEntity.java index 71b32c4f..11ce0ae5 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/BussinessProductEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/BussinessProductEntity.java @@ -1,7 +1,7 @@ package io.sc.standard.jpa.entity; import io.sc.platform.orm.entity.AuditorEntity; -import io.sc.standard.api.BussinessProductVo; +import io.sc.standard.api.vo.BussinessProductVo; import javax.persistence.*; import javax.validation.constraints.Size; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CollateralEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CollateralEntity.java index 6d0f76a6..d24e6d7e 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CollateralEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CollateralEntity.java @@ -1,7 +1,7 @@ package io.sc.standard.jpa.entity; import io.sc.platform.orm.entity.AuditorEntity; -import io.sc.standard.api.CollateralVo; +import io.sc.standard.api.vo.CollateralVo; import javax.persistence.*; import javax.validation.constraints.Size; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CounterpartyEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CounterpartyEntity.java index 65336eaa..bc040e07 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CounterpartyEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CounterpartyEntity.java @@ -1,7 +1,7 @@ package io.sc.standard.jpa.entity; import io.sc.platform.orm.entity.AuditorEntity; -import io.sc.standard.api.CounterpartyVo; +import io.sc.standard.api.vo.CounterpartyVo; import javax.persistence.Column; import javax.persistence.Entity; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CountryEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CountryEntity.java index 2cb0b44a..7ceb086d 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CountryEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CountryEntity.java @@ -2,8 +2,7 @@ package io.sc.standard.jpa.entity; import io.sc.platform.orm.converter.NumericBooleanConverter; import io.sc.platform.orm.entity.AuditorEntity; -import io.sc.platform.system.org.jpa.entity.OrgEntity; -import io.sc.standard.api.CountryVo; +import io.sc.standard.api.vo.CountryVo; import javax.persistence.*; import javax.validation.constraints.Size; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CreditReportEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CreditReportEntity.java new file mode 100644 index 00000000..b939194d --- /dev/null +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CreditReportEntity.java @@ -0,0 +1,177 @@ +package io.sc.standard.jpa.entity; + +import io.sc.platform.orm.entity.AuditorEntity; +import io.sc.standard.api.enums.CreditReportType; +import io.sc.standard.api.vo.CreditReportVo; +import io.sc.standard.api.vo.PersonCreditReportVo; +import org.hibernate.annotations.GenericGenerator; + +import javax.persistence.*; +import javax.validation.constraints.Size; +import java.util.ArrayList; +import java.util.List; + +/** + * 人行个人征信报告定义 + */ +@Entity(name="io.sc.standard.jpa.entity.CreditReportEntity") +@Table(name="SD_CR_DEF") +public class CreditReportEntity extends AuditorEntity { + //主键 + @Id + @GeneratedValue(generator = "system-uuid") + @GenericGenerator(name = "system-uuid", strategy = "uuid2") + @Column(name="ID_", length=36) + @Size(max=36) + private String id; + + @Column(name="CODE_", length=255) + @Size(max=255) + private String code; + + @Column(name="NAME_", length=255) + @Size(max=255) + private String name; + + @Column(name="TYPE_") + @Enumerated(EnumType.STRING) + private CreditReportType type; + + @Column(name="VALUE_TYPE_", length=255) + @Size(max=255) + private String valueType; + + @Column(name="LEVEL_") + private Integer level; + + @Column(name="DESCRIPTION_", length=1024) + @Size(max=1024) + private String description; + + @Column(name="CONSTRAINT_", length=255) + @Size(max=255) + private String constraint; + + @Column(name="ORDER_") + private Integer order; + + @ManyToOne(fetch=FetchType.LAZY) + @JoinColumn(name="PARENT_ID_") + protected CreditReportEntity parent; + + //直接孩子 + @OneToMany(mappedBy="parent") + @OrderBy("order") + protected List children =new ArrayList<>(); + + @Override + public CreditReportVo toVo() { + CreditReportVo vo =new CreditReportVo(); + super.toVo(vo); + vo.setId(this.getId()); + vo.setCode(this.getCode()); + vo.setName(this.getName()); + vo.setType(this.getType()); + vo.setValueType(this.getValueType()); + vo.setLevel(this.getLevel()); + vo.setDescription(this.getDescription()); + vo.setConstraint(this.getConstraint()); + vo.setOrder(this.getOrder()); + vo.setParent(this.getParent()==null?null:this.getParent().getId()); + return vo; + } + + public CreditReportEntity(){} + public CreditReportEntity(String id){ + this.id =id; + } + + + public @Size(max = 36) String getId() { + return id; + } + + public void setId(@Size(max = 36) String id) { + this.id = id; + } + + public @Size(max = 255) String getCode() { + return code; + } + + public void setCode(@Size(max = 255) String code) { + this.code = code; + } + + public @Size(max = 255) String getName() { + return name; + } + + public void setName(@Size(max = 255) String name) { + this.name = name; + } + + public CreditReportType getType() { + return type; + } + + public void setType(CreditReportType type) { + this.type = type; + } + + public @Size(max = 255) String getValueType() { + return valueType; + } + + public void setValueType(@Size(max = 255) String valueType) { + this.valueType = valueType; + } + + public Integer getLevel() { + return level; + } + + public void setLevel(Integer level) { + this.level = level; + } + + public @Size(max = 1024) String getDescription() { + return description; + } + + public void setDescription(@Size(max = 1024) String description) { + this.description = description; + } + + public @Size(max = 255) String getConstraint() { + return constraint; + } + + public void setConstraint(@Size(max = 255) String constraint) { + this.constraint = constraint; + } + + public Integer getOrder() { + return order; + } + + public void setOrder(Integer order) { + this.order = order; + } + + public CreditReportEntity getParent() { + return parent; + } + + public void setParent(CreditReportEntity parent) { + this.parent = parent; + } + + public List getChildren() { + return children; + } + + public void setChildren(List children) { + this.children = children; + } +} diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CurrencyEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CurrencyEntity.java index 2bb7b240..0aa39425 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CurrencyEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/CurrencyEntity.java @@ -1,8 +1,7 @@ package io.sc.standard.jpa.entity; -import io.sc.platform.orm.converter.NumericBooleanConverter; import io.sc.platform.orm.entity.AuditorEntity; -import io.sc.standard.api.CurrencyVo; +import io.sc.standard.api.vo.CurrencyVo; import javax.persistence.*; import javax.validation.constraints.Size; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/IndustryEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/IndustryEntity.java index da232d18..d3a57ad5 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/IndustryEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/IndustryEntity.java @@ -1,7 +1,7 @@ package io.sc.standard.jpa.entity; import io.sc.platform.orm.entity.AuditorEntity; -import io.sc.standard.api.IndustryVo; +import io.sc.standard.api.vo.IndustryVo; import javax.persistence.*; import javax.validation.constraints.Size; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/LoanProductEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/LoanProductEntity.java index f336732b..1d330678 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/LoanProductEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/LoanProductEntity.java @@ -1,8 +1,7 @@ package io.sc.standard.jpa.entity; import io.sc.platform.orm.entity.AuditorEntity; -import io.sc.standard.api.IndustryVo; -import io.sc.standard.api.LoanProductVo; +import io.sc.standard.api.vo.LoanProductVo; import javax.persistence.*; import javax.validation.constraints.Size; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/PerformanceStatusEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/PerformanceStatusEntity.java index 67288020..bb9edfce 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/PerformanceStatusEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/PerformanceStatusEntity.java @@ -1,8 +1,7 @@ package io.sc.standard.jpa.entity; import io.sc.platform.orm.entity.AuditorEntity; -import io.sc.standard.api.AdminDivisionVo; -import io.sc.standard.api.PerformanceStatusVo; +import io.sc.standard.api.vo.PerformanceStatusVo; import javax.persistence.Column; import javax.persistence.Entity; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/TradeFinanceProductEntity.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/TradeFinanceProductEntity.java index b1b04043..3f64ee9a 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/TradeFinanceProductEntity.java +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/entity/TradeFinanceProductEntity.java @@ -1,8 +1,7 @@ package io.sc.standard.jpa.entity; import io.sc.platform.orm.entity.AuditorEntity; -import io.sc.standard.api.LoanProductVo; -import io.sc.standard.api.TradeFinanceProductVo; +import io.sc.standard.api.vo.TradeFinanceProductVo; import javax.persistence.*; import javax.validation.constraints.Size; diff --git a/io.sc.standard/src/main/java/io/sc/standard/jpa/repository/CreditReportRepository.java b/io.sc.standard/src/main/java/io/sc/standard/jpa/repository/CreditReportRepository.java new file mode 100644 index 00000000..a96fc64b --- /dev/null +++ b/io.sc.standard/src/main/java/io/sc/standard/jpa/repository/CreditReportRepository.java @@ -0,0 +1,14 @@ +package io.sc.standard.jpa.repository; + +import io.sc.platform.orm.repository.DaoRepository; +import io.sc.standard.jpa.entity.CreditReportEntity; +import org.springframework.data.jpa.repository.Query; +import org.springframework.stereotype.Repository; + +import java.util.List; + +@Repository("io.sc.standard.jpa.repository.CreditReportRepository") +public interface CreditReportRepository extends DaoRepository { + @Query("select e from io.sc.standard.jpa.entity.CreditReportEntity e where e.parent is null") + public List findRoot(); +} diff --git a/io.sc.standard/src/main/java/io/sc/standard/service/CreditReportService.java b/io.sc.standard/src/main/java/io/sc/standard/service/CreditReportService.java new file mode 100644 index 00000000..abff556b --- /dev/null +++ b/io.sc.standard/src/main/java/io/sc/standard/service/CreditReportService.java @@ -0,0 +1,12 @@ +package io.sc.standard.service; + +import io.sc.platform.orm.service.DaoService; +import io.sc.standard.jpa.entity.CreditReportEntity; +import io.sc.standard.jpa.repository.CreditReportRepository; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +public interface CreditReportService extends DaoService { + public void generateCode(HttpServletRequest request, HttpServletResponse response) throws Exception; +} diff --git a/io.sc.standard/src/main/java/io/sc/standard/service/IndustryService.java b/io.sc.standard/src/main/java/io/sc/standard/service/IndustryService.java index aa4495e2..c984229b 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/service/IndustryService.java +++ b/io.sc.standard/src/main/java/io/sc/standard/service/IndustryService.java @@ -1,12 +1,9 @@ package io.sc.standard.service; import io.sc.platform.orm.service.DaoService; -import io.sc.standard.api.IndustryVo; import io.sc.standard.jpa.entity.IndustryEntity; import io.sc.standard.jpa.repository.IndustryRepository; -import java.util.List; - public interface IndustryService extends DaoService { } diff --git a/io.sc.standard/src/main/java/io/sc/standard/service/impl/CreditReportServiceImpl.java b/io.sc.standard/src/main/java/io/sc/standard/service/impl/CreditReportServiceImpl.java new file mode 100644 index 00000000..7ad4ad57 --- /dev/null +++ b/io.sc.standard/src/main/java/io/sc/standard/service/impl/CreditReportServiceImpl.java @@ -0,0 +1,181 @@ +package io.sc.standard.service.impl; + +import io.sc.platform.core.DirectoryManager; +import io.sc.platform.core.Environment; +import io.sc.platform.core.util.CollectionUtil; +import io.sc.platform.core.util.FileUtil; +import io.sc.platform.core.util.StringUtil; +import io.sc.platform.orm.service.impl.DaoServiceImpl; +import io.sc.standard.api.enums.CreditReportType; +import io.sc.standard.jpa.entity.CreditReportEntity; +import io.sc.standard.jpa.repository.CreditReportRepository; +import io.sc.standard.service.CreditReportService; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import org.springframework.util.StringUtils; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; +import java.text.MessageFormat; +import java.util.Formatter; +import java.util.List; + +@Service("io.sc.standard.service.impl.CreditReportServiceImpl") +public class CreditReportServiceImpl extends DaoServiceImpl implements CreditReportService { + private static final Logger log = LoggerFactory.getLogger(CreditReportServiceImpl.class); + private static final String PROJECT_NAME ="io.sc.creditreport.core"; + + @Autowired private CreditReportService creditReportService; + + @Override + public void generateCode(HttpServletRequest request, HttpServletResponse response) throws Exception { + //String homePath =DirectoryManager.getInstance().getByName("dir.work.web.export") + "/" + PROJECT_NAME; + String homePath ="/Users/wangshaoping/wspsc/workspace/wangshaoping/v8/platform/io.sc.creditreport.core"; + FileUtil.mkdirs(homePath); + + String mainJavaPath =FileUtil.mkdirs(homePath + "/src/main/java"); + String mainResourcesPath =FileUtil.mkdirs(homePath + "/src/main/resources"); + String testJavaPath =FileUtil.mkdirs(homePath + "/src/test/java"); + String testResourcesPath =FileUtil.mkdirs(homePath + "/src/test/resources"); + String i18nMessagesPath =FileUtil.mkdirs(mainResourcesPath + "/io/sc/creditreport/core/i18n"); + String mainJavaCorePath =FileUtil.mkdirs(mainJavaPath + "/io/sc/creditreport/core"); + + // 生成 src/main/java/io/sc/creditreport/core/person 个人征信报告相关类 + // 生成 src/main/java/io/sc/creditreport/core/company 企业征信报告相关类 + List roots =creditReportService.getRepository().findRoot(); + if(CollectionUtil.hasElements(roots)){ + for(CreditReportEntity root : roots){ + generateCreditReportClasses(root,mainJavaCorePath,i18nMessagesPath); + } + } + + // 生成 src/main/java/io/sc/creditreport/core/CreditReportParser.java + generateCreditReportParserClass(mainJavaCorePath); + +// ZipUtil.zip(targetPath,targetPath + ".zip",false); +// +// try(FileInputStream ins =new FileInputStream(targetPath + ".zip")){ +// FileDownloader.download(request, response, PROJECT_NAME + ".zip", ins); +// }catch (Exception e){ +// log.error("",e); +// throw e; +// } + } + + private void generateCreditReportClasses(CreditReportEntity entity,String mainJavaCorePath,String i18nMessagesPath) throws IOException { + String targetPath =mainJavaCorePath + "/" + entity.getType().toString().toLowerCase(); + FileUtil.deldirs(targetPath); + FileUtil.mkdirs(targetPath); + + StringBuilder sb =new StringBuilder(); + StringBuilder gsSb =new StringBuilder(); + + sb.append(f("package io.sc.creditreport.core.model.${0};\n\n",entity.getType().toString().toLowerCase())); + sb.append("import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper;\n"); + sb.append("import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;\n"); + sb.append("import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;\n\n"); + sb.append("import java.util.ArrayList;\n"); + sb.append("import java.util.Date;\n"); + sb.append("import java.util.List;\n\n"); + + if(entity.getParent()==null) { + sb.append(f("@JacksonXmlRootElement(localName =\"${0}\")\n",entity.getCode())); + } + sb.append(f("public class ${0} {\n",entity.getCode())); + + List children =entity.getChildren(); + if(CollectionUtil.hasElements(children)){ + for(CreditReportEntity child : children){ + sb.append(f("\t//${0}\n",child.getName())); + if(StringUtils.hasText(child.getValueType())) { + sb.append(f("\t@JacksonXmlProperty(localName = \"${0}\")\n",child.getCode())); + sb.append(f("\tprivate ${0} ${1};\n",child.getValueType(),child.getCode().toLowerCase())); + gsSb.append(generateGetterAndSetter(child.getCode().toLowerCase(),child.getValueType())); + }else if(isList(child.getConstraint())){ + sb.append(f("\t@JacksonXmlElementWrapper(useWrapping = false)\n")); + sb.append(f("\t@JacksonXmlProperty(localName = \"${0}\")\n",child.getCode())); + sb.append(f("\tprivate List<${0}> ${1} =new ArrayList<>();\n",child.getCode(),child.getCode().toLowerCase())); + gsSb.append(generateGetterAndSetter(child.getCode().toLowerCase(),"List<" + child.getCode() + ">")); + generateCreditReportClasses(child,mainJavaCorePath,i18nMessagesPath); + }else{ + sb.append(f("\t@JacksonXmlProperty(localName = \"${0}\")\n",child.getCode())); + sb.append(f("\tprivate ${0} ${1};\n",child.getCode(),child.getCode().toLowerCase())); + gsSb.append(generateGetterAndSetter(child.getCode().toLowerCase(),child.getCode())); + generateCreditReportClasses(child,mainJavaCorePath,i18nMessagesPath); + } + sb.append("\n"); + } + sb.append(gsSb.toString()); + } + sb.append("}").append("\n"); + FileUtil.writeString(targetPath + "/" + entity.getCode() + ".java",sb.toString(), Environment.DEFAULT_CHARSET_NAME); + } + + private void generateCreditReportParserClass(String targetPath)throws IOException { + StringBuilder sb =new StringBuilder(); + sb.append("package io.sc.creditreport.core;\n\n"); + sb.append("import com.fasterxml.jackson.annotation.JsonInclude;\n"); + sb.append("import com.fasterxml.jackson.core.JsonProcessingException;\n"); + sb.append("import com.fasterxml.jackson.databind.DeserializationFeature;\n"); + sb.append("import com.fasterxml.jackson.databind.MapperFeature;\n"); + sb.append("import com.fasterxml.jackson.databind.SerializationFeature;\n"); + sb.append("import com.fasterxml.jackson.dataformat.xml.XmlMapper;\n\n"); + sb.append("public class CreditReportParser {\n"); + sb.append("\t").append("private static XmlMapper mapper =new XmlMapper();\n\n"); + sb.append("\t").append("static {\n"); + sb.append("\t\t").append("mapper.configure(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES,false);\n"); + sb.append("\t\t").append("mapper.configure(SerializationFeature.WRAP_ROOT_VALUE,false);\n"); + sb.append("\t\t").append("mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);\n"); + sb.append("\t\t").append("mapper.enable(MapperFeature.USE_STD_BEAN_NAMING);\n"); + sb.append("\t").append("}\n\n"); + + sb.append("\t").append("public static io.sc.creditreport.core.model.person.Document parsePersonCreditReport(String xml) throws JsonProcessingException {\n"); + sb.append("\t\t").append("return mapper.readValue(xml, io.sc.creditreport.core.model.person.Document.class);\n"); + sb.append("\t").append("}\n\n"); + sb.append("\t").append("public static io.sc.creditreport.core.model.company.Document parseCompanyCreditReport(String xml) throws JsonProcessingException {\n"); + sb.append("\t\t").append("return mapper.readValue(xml, io.sc.creditreport.core.model.company.Document.class);\n"); + sb.append("\t").append("}\n"); + sb.append("}\n"); + + FileUtil.writeString(targetPath + "/CreditReportParser.java",sb.toString(), Environment.DEFAULT_CHARSET_NAME); + } + + private String generateGetterAndSetter(String fieldName,String type){ + StringBuilder sb =new StringBuilder(); + sb.append(f("\tpublic ${0} get${1}(){\n",type,StringUtil.capitalize(fieldName))); + sb.append(f("\t\treturn this.${0};\n",fieldName)); + sb.append(f("\t}\n")); + sb.append(f("\tpublic void set${0}(${1} ${2}){\n",StringUtil.capitalize(fieldName),type,fieldName)); + sb.append(f("\t\tthis.${0} =${0};\n",fieldName)); + sb.append(f("\t}\n")); + return sb.toString(); + } + + private String f(String pattern, Object ... arguments){ + return StringUtil.format(pattern,arguments); + } + + private boolean isList(String constraint){ + if(StringUtils.hasText(constraint)){ + String[] splits =constraint.split(":"); + if(splits!=null && splits.length==2){ + String number =splits[1]; + if("*".equals(number)){ + return true; + } + if(Integer.parseInt(number)>1){ + return true; + } + } + } + return false; + } + + public static void main(String[] args) { + System.out.println(MessageFormat.format("{0},{1}","x","y")); + //System.out.println(new Formatter().format("{a},{b}","x","y").toString()); + } +} diff --git a/io.sc.standard/src/main/java/io/sc/standard/service/impl/IndustryServiceImpl.java b/io.sc.standard/src/main/java/io/sc/standard/service/impl/IndustryServiceImpl.java index 22d33e7d..0f2a8084 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/service/impl/IndustryServiceImpl.java +++ b/io.sc.standard/src/main/java/io/sc/standard/service/impl/IndustryServiceImpl.java @@ -1,15 +1,11 @@ package io.sc.standard.service.impl; import io.sc.platform.orm.service.impl.DaoServiceImpl; -import io.sc.platform.orm.util.EntityVoUtil; -import io.sc.standard.api.IndustryVo; import io.sc.standard.jpa.entity.IndustryEntity; import io.sc.standard.jpa.repository.IndustryRepository; import io.sc.standard.service.IndustryService; import org.springframework.stereotype.Service; -import java.util.List; - @Service("io.sc.standard.service.impl.IndustryServiceImpl") public class IndustryServiceImpl extends DaoServiceImpl implements IndustryService { diff --git a/io.sc.standard/src/main/java/io/sc/standard/service/impl/PerformanceStatusServiceImpl.java b/io.sc.standard/src/main/java/io/sc/standard/service/impl/PerformanceStatusServiceImpl.java index 4ca1195b..ede5e4a4 100644 --- a/io.sc.standard/src/main/java/io/sc/standard/service/impl/PerformanceStatusServiceImpl.java +++ b/io.sc.standard/src/main/java/io/sc/standard/service/impl/PerformanceStatusServiceImpl.java @@ -1,15 +1,11 @@ package io.sc.standard.service.impl; import io.sc.platform.orm.service.impl.DaoServiceImpl; -import io.sc.platform.orm.util.EntityVoUtil; -import io.sc.standard.api.PerformanceStatusVo; import io.sc.standard.jpa.entity.PerformanceStatusEntity; import io.sc.standard.jpa.repository.PerformanceStatusRepository; import io.sc.standard.service.PerformanceStatusService; import org.springframework.stereotype.Service; -import java.util.List; - @Service("io.sc.standard.service.impl.PerformanceStatusServiceImpl") public class PerformanceStatusServiceImpl extends DaoServiceImpl implements PerformanceStatusService { diff --git a/io.sc.standard/src/main/resources/io/sc/standard/liquibase/data/sd_cr_def.csv b/io.sc.standard/src/main/resources/io/sc/standard/liquibase/data/sd_cr_def.csv new file mode 100644 index 00000000..0323045c --- /dev/null +++ b/io.sc.standard/src/main/resources/io/sc/standard/liquibase/data/sd_cr_def.csv @@ -0,0 +1,2681 @@ +"SD_CR_DEF",,,,,,,,,,,,,, +"ID_","CODE_","NAME_","TYPE_","VALUE_TYPE_","LEVEL_","DESCRIPTION_","CONSTRAINT_","ORDER_","PARENT_ID_","JPA_VERSION_","DATA_COME_FROM_","CREATOR_","CREATE_DATE_","LAST_MODIFIER_","LAST_MODIFYDATE_" +"ID","代码","名称","类型","值类型","层级","说明","约束","顺序","父代ID","JPA乐观锁版本","数据来源(INPUT:手工录入,IMPORT:系统自动导入)","创建人","创建日期","最后修改人","最后修改日期" +"VARCHAR","VARCHAR","VARCHAR","VARCHAR","VARCHAR","INTEGER","VARCHAR","VARCHAR","INTEGER","VARCHAR","INTEGER","VARCHAR","VARCHAR","TIMESTAMP","VARCHAR","TIMESTAMP" +"java.lang.String","java.lang.String","java.lang.String","java.lang.String","java.lang.String","java.lang.Integer","java.lang.String","java.lang.String","java.lang.Integer","java.lang.String","java.lang.Integer","java.lang.String","java.lang.String","java.sql.Timestamp","java.lang.String","java.sql.Timestamp" +"8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","Document","个人信用报告接口查询","PERSON","","1","根元素","1:1","2",,"1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8339bc5b-7c33-43fe-89b5-d40b4e415a4f","PRH","报告头","PERSON","","2","报告头信息单元","1:1","3","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"77cb35d6-7214-4e52-a544-6d2133c781eb","PA01","报告头信息单元","PERSON","","3","描述一份信用报告的标识信息。","1:1","4","8339bc5b-7c33-43fe-89b5-d40b4e415a4f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d1bcc2a2-a943-4b95-966a-5e6172a921f0","PA01A","报告标识信息段","PERSON","","4","描述一份信用报告的标识信息。","1:1","5","77cb35d6-7214-4e52-a544-6d2133c781eb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ab35faab-3fe4-4d04-9081-ae2cb90422bc","PA01AI01","报告编号","PERSON","String","5","标识一份个人信用报告的唯一编码,由查询日期和查询顺序号组成。","1:1","6","d1bcc2a2-a943-4b95-966a-5e6172a921f0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"682cd6d6-9bd9-415c-a85b-5c6cb8d220f8","PA01AR01","报告时间","PERSON","Date","5","生成个人信用报告的时间。","1:1","7","d1bcc2a2-a943-4b95-966a-5e6172a921f0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"443a179a-9267-4e5f-aef7-dcb223b0c504","PA01B","本次查询请求信息段","PERSON","","4","描述被查询人及报告交付对象的相关信息。","1:1","8","77cb35d6-7214-4e52-a544-6d2133c781eb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ce0a98bd-b5ba-4639-9232-b3f98cda9d0e","PA01BQ01","被查询者姓名","PERSON","String","5","本次查询中被查询者(信息主体)姓名。","1:1","9","443a179a-9267-4e5f-aef7-dcb223b0c504","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f7309640-d726-4483-85ac-56a65fe8a726","PA01BD01","被查询者证件类型","PERSON","String","5","被查询者证件类型。代码表如下: +1-户口簿 +2-护照 +5-港澳居民来往内地通行证 +6-台湾同胞来往内地通行证 +8-外国人居留证 +9-警官证 +A-香港身份证 +B-澳门身份证 +C-台湾身份证 +X-其他证件 +10-身份证(居民身份证及其他以公民身份证号为标识的证件) +20-军人身份证件","1:1","10","443a179a-9267-4e5f-aef7-dcb223b0c504","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fc7081fb-b350-44bf-a614-e8983100e771","PA01BI01","被查询者证件号码","PERSON","String","5","被查询者证件号码。","1:1","11","443a179a-9267-4e5f-aef7-dcb223b0c504","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"59a7fe90-3f0e-48d9-bf24-1a9b4224bb89","PA01BI02","查询机构代码","PERSON","String","5","发起本次查询请求的机构在征信系统中的身份编码。","1:1","12","443a179a-9267-4e5f-aef7-dcb223b0c504","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b749a8bc-8362-46bb-9c46-6220aee68985","PA01BD02","查询原因代码","PERSON","String","5","说明执行此次查询操作的查询原因代码。 +采用查询原因代码表,详见附录。","1:1","13","443a179a-9267-4e5f-aef7-dcb223b0c504","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5abd8c95-4f9e-4b0f-9c88-f6a2eb5b049e","PA01C","其他身份标识信息段","PERSON","","4","描述除查询请求所含身份证件外的其他身份证件信息。","0:1","14","77cb35d6-7214-4e52-a544-6d2133c781eb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"99a740c7-19e8-4ee5-94d9-2afdb7b6d742","PA01CS01","身份标识个数","PERSON","String","5","除查询请求所含身份证件外的其他身份证件个数。","1:1","15","5abd8c95-4f9e-4b0f-9c88-f6a2eb5b049e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a267d6ee-1d32-4c92-bc97-7931c6184971","PA01CH","身份信息","PERSON","","5","段标:后为下级元素","1:99","16","5abd8c95-4f9e-4b0f-9c88-f6a2eb5b049e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"65bd4a4f-b718-4b63-a743-1602c72fc301","PA01CD01","证件类型","PERSON","String","6","除查询请求所含身份证件外的其他身份证件类型及对应的证件号码。采用个人证件类型代码表,详见附录。","1:1","17","a267d6ee-1d32-4c92-bc97-7931c6184971","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4603fc89-822a-471a-be71-ff6462ae8952","PA01CI01","证件号码","PERSON","String","6","","1:1","18","a267d6ee-1d32-4c92-bc97-7931c6184971","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b68c7d1a-5036-489c-a547-cbd23de64562","PA01D","防欺诈警示信息段","PERSON","","4","描述信息主体是否添加了防欺诈警示信息,以及预留的防欺诈联系电话、防欺诈信息的有效时限。","1:1","19","77cb35d6-7214-4e52-a544-6d2133c781eb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"16a62d91-c1e4-4c28-9357-e84649554ac7","PA01DQ01","防欺诈警示标志","PERSON","String","5","描述信用报告是否添加了防欺诈警示信息。代码表如下: +0-否(代表没有防欺诈警示信息) +1-是(代表存在防欺诈警示信息) + 当防欺诈警示标志为“0-否”时,该信息段中的其他数据项返回空值。 ","1:1","20","b68c7d1a-5036-489c-a547-cbd23de64562","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"077475ea-a422-4cdb-a9c9-de937589216b","PA01DQ02","防欺诈警示联系电话","PERSON","String","5","返回防欺诈警示说明及预留的防欺诈联系电话(最多返回两个电话号码,电话间由“/”分隔)。例如:信息主体申请设置防欺诈要求,联系电话“***”。","1:1","21","b68c7d1a-5036-489c-a547-cbd23de64562","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dc41fe6c-c9ce-458a-916c-59595f0248d6","PA01DR01","防欺诈警示生效日期","PERSON","Date","5","防欺诈警示信息开始生效的日期。 ","1:1","22","b68c7d1a-5036-489c-a547-cbd23de64562","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d138709a-28b1-4b9e-a51c-a3ba3e8b14fa","PA01DR02","防欺诈警示截止日期","PERSON","Date","5","防欺诈警示信息失效的日期。 ","1:1","23","b68c7d1a-5036-489c-a547-cbd23de64562","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f7b48ab4-a1e9-4909-a5bf-2212bf501d21","PA01E","异议提示信息段","PERSON","","4","提示报告阅读者注意的异议标注条数信息。","1:1","24","77cb35d6-7214-4e52-a544-6d2133c781eb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"00802158-7c60-44a9-9bd4-69dd32463cc0","PA01ES01","异议标注数目","PERSON","String","5","该数据项是指信息报告中异议标注的数量。 + 异议标注数目为“0”时,代表没有正在处理的异议。 ","1:1","25","f7b48ab4-a1e9-4909-a5bf-2212bf501d21","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"71c1d371-f1b0-48dd-8f98-1ab2d87ceee3","PIM","身份信息","PERSON","","2","身份信息单元","1:1","26","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f47cc23c-44c6-484e-bee0-dc8bd9804cc2","PB01","身份信息单元","PERSON","","3","","0:1","27","71c1d371-f1b0-48dd-8f98-1ab2d87ceee3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7eaf3a48-512e-450b-b7f2-d4ce1ac550c5","PB01A","基本概况信息段","PERSON","","4","描述信息主体性别、出生日期、教育信息、户籍、国籍等身份的信息。","0:1","28","f47cc23c-44c6-484e-bee0-dc8bd9804cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7bc60af4-c0e0-44f9-9390-74d91a57388e","PB01AD01","性别","PERSON","String","5","说明信息主体的性别属性。 +采用国标《个人基本信息分类与代码第 1 部分:人的性别代码》 +(GB/T2261.1-2003)规定的代码表,具体如下: +0-未知 +1-男 +2-女 +9-未说明","1:1","29","7eaf3a48-512e-450b-b7f2-d4ce1ac550c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"36502d17-b6d8-4cbc-8a6b-6fc5db5343c2","PB01AR01","出生日期","PERSON","Date","5","信息主体的出生日期。","1:1","30","7eaf3a48-512e-450b-b7f2-d4ce1ac550c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"300c00d1-c4d4-4f88-9b9d-df8eaeedb0ee","PB01AD02","学历","PERSON","String","5","信息主体取得的最高学历。 +代码表参照《学历代码》(GB/T 4658-2006)编制,具体如下: 10-研究生 +20-本科 +30-大专 +40-中专、职高、技校 +60-高中 +90-其他 +91-初中及以下 +99-未知","1:1","31","7eaf3a48-512e-450b-b7f2-d4ce1ac550c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e644aea8-348e-44da-821d-a8465c780788","PB01AD03","学位","PERSON","String","5","信息主体取得的最高学位。 +代码表参照国标《中华人民共和国学位代码》(GB/T 6864-2003)编制, 具体如下: +0-其他 +1-名誉博士 +2-博士 +3-硕士 +4-学士 +5-无 +9-未知","1:1","32","7eaf3a48-512e-450b-b7f2-d4ce1ac550c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1019f94d-56f5-4a1b-ab80-aa35a010560a","PB01AD04","就业状况","PERSON","String","5","说明信息主体当前的就业状况信息。 +代码表参照国标《个人基本信息分类与代码第 4 部分:从业状况(个人身份)代码》(GB/T2261.4-2003)编制,具体如下: +11-国家公务员 +13-专业技术人员 +17-职员 +21-企业管理人员 +24-工人 +27-农民 +31-学生 +37-现役军人 +51-自由职业者 +54-个体经营者 +70-无业人员 +80-退(离)休人员 +90-其他 +91-在职 +99-未知","1:1","33","7eaf3a48-512e-450b-b7f2-d4ce1ac550c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"516bc593-647b-4ade-b601-203b99640aae","PB01AQ01","电子邮箱","PERSON","String","5","信息主体的电子邮箱。","1:1","34","7eaf3a48-512e-450b-b7f2-d4ce1ac550c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a46c0415-19bf-4a39-9693-439867e5b54f","PB01AQ02","通讯地址","PERSON","String","5","信息主体办理业务时所提供的通讯地址。","1:1","35","7eaf3a48-512e-450b-b7f2-d4ce1ac550c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"87af0926-20aa-418d-b6ba-6c156f07119c","PB01AD05","国籍","PERSON","String","5","信息主体的国籍信息。 +代码表参照国标《世界各国和地区名称代码》(GB/T 2659-2000)编制, 详见附录。","1:1","36","7eaf3a48-512e-450b-b7f2-d4ce1ac550c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d3e02480-683a-4c45-9947-d6b2d62a7b37","PB01AQ03","户籍地址","PERSON","String","5","信息主体办理业务时所提供的户籍信息。","1:1","37","7eaf3a48-512e-450b-b7f2-d4ce1ac550c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2fdbfd70-82cc-4afb-bc02-8c9be315000a","PB01B","手机号码信息段","PERSON","","4","描述手机号码及手机号更新日期。","0:1","38","f47cc23c-44c6-484e-bee0-dc8bd9804cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"12404122-84ea-48c0-ae71-8e805cd5dbe1","PB01BS01","手机号码个数","PERSON","String","5","信息主体的手机号码个数。","1:1","39","2fdbfd70-82cc-4afb-bc02-8c9be315000a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"50a3602a-66a3-41fb-8f94-aa34c178edec","PB01BH","手机号码信息","PERSON","","5","段标:后为下级元素","1:5","40","2fdbfd70-82cc-4afb-bc02-8c9be315000a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b7fffc1e-8bb3-486c-90ae-04fcd02183d7","PB01BQ01","手机号码","PERSON","String","6","信息主体的手机号码。 ","1:1","41","50a3602a-66a3-41fb-8f94-aa34c178edec","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"58f8631e-339c-4218-831b-df75386d3450","PB01BR01","信息更新日期","PERSON","Date","6","信息在数据源系统中的最近一次更新的日期。 ","1:1","42","50a3602a-66a3-41fb-8f94-aa34c178edec","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c7ad5411-c30f-4878-883b-7d26471f710a","PMM","婚姻信息","PERSON","","2","婚姻信息单元","1:1","43","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"07cf75a8-a2b8-4df6-b350-a5cd94b507f3","PB02","婚姻信息单元","PERSON","","3","","0:1","44","c7ad5411-c30f-4878-883b-7d26471f710a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c0917dcf-0b7c-40ad-8431-4c9b20d1e03d","PB020D01","婚姻状况","PERSON","String","4","反映信息主体婚姻状况的代码。 +代码表参照国标《个人基本信息分类与代码第 2 部分:婚姻状况代码》 +(GB/T 2261.2-2003)编制,具体如下: 10-未婚 +20-已婚 +30-丧偶 +40-离婚 +91-单身 +99-未知 + 当婚姻状况不为“已婚”,该信息段的其他数据项返回空值。","1:1","45","07cf75a8-a2b8-4df6-b350-a5cd94b507f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c7c3e507-5faa-45ae-adc1-232c777f1043","PB020Q01","配偶姓名","PERSON","String","4","信息主体配偶的姓名。","1:1","46","07cf75a8-a2b8-4df6-b350-a5cd94b507f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b5c4e2cf-4a56-477c-9ad6-cbf5018f181d","PB020D02","配偶证件类型","PERSON","String","4","信息主体配偶的证件类型。 +采用个人证件类型代码表,详见附录。","1:1","47","07cf75a8-a2b8-4df6-b350-a5cd94b507f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d9bbbbd6-51a1-4062-973e-56802d648a67","PB020I01","配偶证件号码","PERSON","String","4","信息主体配偶的证件号码。","1:1","48","07cf75a8-a2b8-4df6-b350-a5cd94b507f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c53d1ba2-1732-4546-a94b-eb63970ac553","PB020Q02","配偶工作单位","PERSON","String","4","信息主体配偶工作单位的名称。","1:1","49","07cf75a8-a2b8-4df6-b350-a5cd94b507f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2ca67fcf-7e33-4a63-b1af-c765d566cbec","PB020Q03","配偶联系电话","PERSON","String","4","信息主体配偶的联系电话。","1:1","50","07cf75a8-a2b8-4df6-b350-a5cd94b507f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0636d854-6527-42c4-9a19-1a1af5d40328","PRM","居住信息","PERSON","","2","居住信息单元","1:1","51","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e4a04e4a-75f6-42c7-bb42-ba2d01229ff9","PB03","居住信息单元","PERSON","","3","","0:5","52","0636d854-6527-42c4-9a19-1a1af5d40328","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d2752cf8-9460-4637-8fb0-d0cc917feb8d","PB030D01","居住状况","PERSON","String","4","说明信息主体住所性质的代码。代码表如下: +1-自置 +2-按揭 +3-亲属楼宇 +4-集体宿舍 +5-租房 +6-共有住宅 +7-其他 +11-自有 +12-借住 +9-未知","1:1","53","e4a04e4a-75f6-42c7-bb42-ba2d01229ff9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d25c4117-3126-4496-9019-7a570fe70685","PB030Q01","居住地址","PERSON","String","4","信息主体居住的详细地址。","1:1","54","e4a04e4a-75f6-42c7-bb42-ba2d01229ff9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1a9618e2-b5b7-417c-bef5-d560fc5e1cbd","PB030Q02","住宅电话","PERSON","String","4","信息主体住宅电话号码。","1:1","55","e4a04e4a-75f6-42c7-bb42-ba2d01229ff9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5a4e9720-19cb-4dfe-bcf4-8cc74ee89361","PB030R01","信息更新日期","PERSON","Date","4","信息在数据源系统中的最近一次更新的日期。","1:1","56","e4a04e4a-75f6-42c7-bb42-ba2d01229ff9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7b48eb02-bfa3-4a19-93d0-423500eb30ab","POM","职业信息","PERSON","","2","职业信息单元","1:1","57","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7daf7c0a-e6e6-4125-80d1-295952654685","PB04","职业信息单元","PERSON","","3","","0:5","58","7b48eb02-bfa3-4a19-93d0-423500eb30ab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"374a3ab8-d9aa-4a50-b571-9a651d66dca6","PB040D01","就业状况","PERSON","String","4","说明信息主体的就业状况信息的代码。代码表如下: +91-在职","1:1","59","7daf7c0a-e6e6-4125-80d1-295952654685","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"de953086-f5dc-4ff9-8f7a-31102acf2bc3","PB040Q01","工作单位","PERSON","String","4","信息主体工作单位的名称。","1:1","60","7daf7c0a-e6e6-4125-80d1-295952654685","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"504dca09-3794-4352-802e-d158a5d95181","PB040D02","单位性质","PERSON","String","4","说明信息主体就职单位的单位性质。代码表如下: +10-机关、事业单位 +20-国有企业 +30-外资企业 +40-个体、私营企业 +50-其他(包括三资企业、民营企业、民间团体等) +99-未知","1:1","61","7daf7c0a-e6e6-4125-80d1-295952654685","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"36cca64e-9ef4-4a74-a187-b9b84f619246","PB040D03","行业","PERSON","String","4","信息主体工作单位所属的行业。 +代码表参照国标《国民经济行业分类》(GB/T 4754-2017)编制,具体如下: +A-农、林、牧、渔业 +B-采矿业 +C-制造业 +D-电力、热力、燃气及水生产和供应业 +E-建筑业 +F-批发和零售业 +G-交通运输、仓储和邮储业 +H-住宿和餐饮业 +I-信息传输、软件和信息技术服务业 +J-金融业 +K-房地产业 +L-租赁和商务服务业 +M-科学研究和技术服务业 +N-水利、环境和公共设施管理业 +O-居民服务、修理和其他服务业 +P-教育 +Q-卫生和社会工作 +R-文化、体育和娱乐业 +S-公共管理、社会保障和社会组织 +T-国际组织 +9-未知","1:1","62","7daf7c0a-e6e6-4125-80d1-295952654685","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8f94142c-eb90-4afe-a9b4-ce0833b76763","PB040Q02","单位地址","PERSON","String","4","信息主体工作单位的地址。","1:1","63","7daf7c0a-e6e6-4125-80d1-295952654685","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"984ca492-e374-463b-ac2d-5b408bfa5797","PB040Q03","单位电话","PERSON","String","4","信息主体工作单位的电话号码。","1:1","64","7daf7c0a-e6e6-4125-80d1-295952654685","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ee2afe5a-cc1b-4eee-8fd1-556cf4339a87","PB040D04","职业","PERSON","String","4","信息主体的相关职业信息。 +代码表参照国标《职业分类与代码》(GB/T 6565-2009)编制,具体如下: +0-国家机关、党群组织、企业、事业单位负责人 +1-专业技术人员 +3-办事人员和有关人员 +4-商业、服务业人员 +5-农、林、牧、渔、水利业生产人员 +6-生产、运输设备操作人员及有关人员 +X-军人 +Y-不便分类的其他从业人员 +Z-未知","1:1","65","7daf7c0a-e6e6-4125-80d1-295952654685","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c1420b69-1d9f-4b68-9545-c58f33a64215","PB040D05","职务","PERSON","String","4","信息主体在单位的相关职务信息。代码表如下: +1-高级领导 +2-中级领导 +3-一般员工 +4-其他 +9-未知","1:1","66","7daf7c0a-e6e6-4125-80d1-295952654685","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b2fc128d-f596-4a05-96ab-9322fa11b946","PB040D06","职称","PERSON","String","4","信息主体的相关职称信息。代码表如下: +0-无 +1-高级 +2-中级 +3-初级 +9-未知","1:1","67","7daf7c0a-e6e6-4125-80d1-295952654685","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8b223e64-43ea-4d1c-bcb2-95221b8894d5","PB040R01","进入本单位年份","PERSON","String","4","信息主体在本单位开始工作的年份。","1:1","68","7daf7c0a-e6e6-4125-80d1-295952654685","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"25fa686e-276d-4e86-84eb-1f673116971f","PB040R02","信息更新日期","PERSON","Date","4","信息在数据源系统中的最近一次更新的日期。","1:1","69","7daf7c0a-e6e6-4125-80d1-295952654685","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2bf1bb6a-db01-461c-bc3a-d82acf8d8c44","PSM","评分信息","PERSON","","2","评分信息单元","1:1","70","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0a0116c9-5622-4333-b6f8-ccd890235421","PC01","评分信息单元","PERSON","","3","","1:1","71","2bf1bb6a-db01-461c-bc3a-d82acf8d8c44","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"968474bb-363b-48cc-ac1d-6867c2d8edf9","PC010Q01","数字解读","PERSON","String","4","个人信用评分分值(取值范围 0-1000)。 + 当无法评分时,该数据项返回“-1”。","0:1","72","0a0116c9-5622-4333-b6f8-ccd890235421","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"06a28309-b399-4ec5-800a-9547a703f914","PC010Q02","相对位置","PERSON","String","4","信息主体个人信用评分在总体评分人群中的位置。 +取值为 0 到 90 之间的整数,当取值为 N 时,说明相对位置大于 N%。 + 当无法评分时,该数据项返回“-1”。","0:1","73","0a0116c9-5622-4333-b6f8-ccd890235421","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f84ac761-ca69-4d05-94e5-b42eed26f6c2","PC010S01","分数说明条数","PERSON","String","4","用于说明数字解读的分数影响因素或无法评分时的原因说明条数。","0:1","74","0a0116c9-5622-4333-b6f8-ccd890235421","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"61db3a64-01fb-4c73-ae71-bf6c1ff55143","PC010D01","分数说明","PERSON","String","4","说明分数影响因素的代码。代码表如下: +00-无影响因素 +01-存在逾期还款记录 +02-存在展期记录 +03-当前债务相对较多 +04-当前信用卡债务笔数相对较多 +05-当前债务笔数相对较多 +06-当前信用卡额度使用率相对较高 +07-信用历史较短 +08-信用卡历史较短 +09-近期新增债务笔数较多 +10-近期硬查询次数较多 +11-近期没有信用活动 +12-信用活动相对较为单一 +13-近期信用卡信息相对不足 +14-近期贷款信息相对不足 +15-近期信用信息相对不足 +16-债务种类相对不够丰富 +91-无信贷记录 +92-信用历史小于 3 个月 +93-缺少近两年的信贷信息 +99-其他","0:2","75","0a0116c9-5622-4333-b6f8-ccd890235421","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d0a5d00d-2f78-4539-8dd5-06f7027783af","PCO","信贷交易信息概要","PERSON","","2","信贷交易信息概要信息单元","1:1","76","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dd746b2f-dcdc-4d6a-90c4-a25445db72ab","PC02","信贷交易信息概要信息单元","PERSON","","3","","0:1","77","d0a5d00d-2f78-4539-8dd5-06f7027783af","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bd9acec0-2481-4e18-82b5-c61bd264f9d6","PC02A","信贷交易提示信息段","PERSON","","4","主要提示信息主体的信贷交易信息构成情况,包括各类信贷业务的账户数和首笔业务发放月份等信息。 ","0:1","78","dd746b2f-dcdc-4d6a-90c4-a25445db72ab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5a033b87-15bd-4e20-9f23-3ce8d7820334","PC02AS01","账户数合计","PERSON","String","5","说明信贷交易业务的合计账户数。","1:1","79","bd9acec0-2481-4e18-82b5-c61bd264f9d6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5eb05032-6c73-4740-9add-27413a921f49","PC02AS02","业务类型数量","PERSON","String","5","说明信贷交易业务种类的个数(业务类型数量=业务类型数)。","1:1","80","bd9acec0-2481-4e18-82b5-c61bd264f9d6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3c4ce276-5338-4f98-91a5-7258d125aa45","PC02AH","信贷交易提示信息","PERSON","","5","段标:后为下级元素","1:6","81","bd9acec0-2481-4e18-82b5-c61bd264f9d6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4c54a64d-cb31-461c-828f-641a1e767610","PC02AD01","业务类型","PERSON","String","6","说明业务种类的代码。代码表如下: +11-个人住房贷款 +12-个人商用房(包括商住两用房)贷款 +19-其他类贷款 +21-贷记卡 +22-准贷记卡 +99-其他","1:1","82","3c4ce276-5338-4f98-91a5-7258d125aa45","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2eb29451-98ff-487e-b5d8-aca3ddde0ad0","PC02AD02","业务大类","PERSON","String","6","说明业务种类的代码。代码表如下: +11-个人住房贷款 +12-个人商用房(包括商住两用房)贷款 +19-其他类贷款 +21-贷记卡 +22-准贷记卡 +99-其他","1:1","83","3c4ce276-5338-4f98-91a5-7258d125aa45","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cec03044-8303-4aa0-a075-43edf6d0acbb","PC02AS03","账户数","PERSON","String","6","信息主体名下该业务类型对应的账户数合计。","1:1","84","3c4ce276-5338-4f98-91a5-7258d125aa45","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fed31c15-ef05-43af-b429-40a09f86bb10","PC02AR01","首笔业务发放月份","PERSON","String","6","该业务类型下首笔业务发放月份。","1:1","85","3c4ce276-5338-4f98-91a5-7258d125aa45","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b327b172-0e8f-4c54-ad46-03e4d236e9bd","PC02B","被追偿汇总信息段","PERSON","","4","描述信息主体名下被追偿业务账户数、追偿金额等汇总信息。","0:1","86","dd746b2f-dcdc-4d6a-90c4-a25445db72ab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"474d86f3-f658-4745-807d-ba800226f6ca","PC02BS01","账户数合计","PERSON","String","5","被追偿业务账户数合计。","1:1","87","b327b172-0e8f-4c54-ad46-03e4d236e9bd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fec68b7b-d7fc-4631-9011-172bb42bf1ee","PC02BJ01","余额合计","PERSON","String","5","被追偿业务余额合计。","1:1","88","b327b172-0e8f-4c54-ad46-03e4d236e9bd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b6db0b80-2459-467b-803b-c746e8101ea8","PC02BS02","业务类型数量","PERSON","String","5","被追偿业务种类数量(业务类型数量=业务类型数)。","1:1","89","b327b172-0e8f-4c54-ad46-03e4d236e9bd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fb42af05-83ef-4d38-93ed-d8b7e3636f54","PC02BH","被追偿汇总信息","PERSON","","5","段标:后为下级元素","1:2","90","b327b172-0e8f-4c54-ad46-03e4d236e9bd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b566e16a-6aac-4f69-bd00-0696ca54fa63","PC02BD01","业务类型","PERSON","String","6","说明被追偿业务种类的代码。代码表如下: +1-资产处置业务 +2-垫款业务","1:1","91","fb42af05-83ef-4d38-93ed-d8b7e3636f54","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a0071904-71ac-4d34-a5bf-3e5e85749979","PC02BS03","账户数","PERSON","String","6","该被追偿业务账户数合计。","1:1","92","fb42af05-83ef-4d38-93ed-d8b7e3636f54","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a4c1e4cf-7396-4b8c-baf4-8ae907d08cd3","PC02BJ02","余额","PERSON","String","6","该被追偿业务余额合计。","1:1","93","fb42af05-83ef-4d38-93ed-d8b7e3636f54","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8e68a473-74b0-416f-863d-3ab50716c722","PC02C","呆账汇总信息段","PERSON","","4","描述信息主体名下处于呆账状态的账户数、呆账金额等汇总信息。","0:1","94","dd746b2f-dcdc-4d6a-90c4-a25445db72ab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ee8c94cb-7515-4707-8964-0f280ca38151","PC02CS01","账户数","PERSON","String","5","呆账账户数合计。","1:1","95","8e68a473-74b0-416f-863d-3ab50716c722","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"786c2075-7fad-48d8-9b69-409c1817dad1","PC02CJ01","余额","PERSON","String","5","呆账余额合计。","1:1","96","8e68a473-74b0-416f-863d-3ab50716c722","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4a86deba-d7ad-4d05-9d9f-78f73c837b5b","PC02D","逾期(透支)汇总信息段","PERSON","","4","描述信息主体名下处于逾期(透支)状态账户的汇总信息。","0:1","97","dd746b2f-dcdc-4d6a-90c4-a25445db72ab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2ecc40eb-cc6d-4ff2-baa6-5d69518fb2a2","PC02DS01","账户类型数量","PERSON","String","5","说明处于逾期(透支)状态的账户类型数量。","1:1","98","4a86deba-d7ad-4d05-9d9f-78f73c837b5b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b02cc3df-b691-4129-82e8-56b5e7c6d444","PC02DH","逾期(透支)汇总信息","PERSON","","5","段标:后为下级元素","1:6","99","4a86deba-d7ad-4d05-9d9f-78f73c837b5b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f4eac828-1f17-4d94-9bc2-303b5b2c0828","PC02DD01","账户类型","PERSON","String","6","说明业务类型的代码。 +1-非循环贷账户 +2-循环额度下分账户 +3-循环贷账户 +4-贷记卡账户 +5-准贷记卡账户","1:1","100","b02cc3df-b691-4129-82e8-56b5e7c6d444","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"45324146-b0d6-4025-bc74-f135a001e23f","PC02DS02","账户数","PERSON","String","6","该业务类型最近 5 年内发生过逾期(透支)的账户数合计。","1:1","101","b02cc3df-b691-4129-82e8-56b5e7c6d444","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bd87f06f-e3df-49bf-9404-b4c9080e514c","PC02DS03","月份数","PERSON","String","6","该业务类型最近 5 年内发生过逾期的月份数合计。","1:1","102","b02cc3df-b691-4129-82e8-56b5e7c6d444","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7273813d-0854-4fbb-b04f-1933720102e3","PC02DJ01","单月最高逾期(透支)总额","PERSON","String","6","该业务类型最近 5 年内当前逾期(透支)总额之和的最大值。","1:1","103","b02cc3df-b691-4129-82e8-56b5e7c6d444","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2de23899-4e91-4d01-9a25-afa4115fdb6d","PC02DS04","最长逾期(透支)月数","PERSON","String","6","该业务类型最近 5 年内拖欠时间最长的一笔逾期(透支)月数。","1:1","104","b02cc3df-b691-4129-82e8-56b5e7c6d444","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5626c896-1719-4cb5-90a0-5e1ce1fdc8bf","PC02E","非循环贷账户汇总信息段","PERSON","","4","描述信息主体名下未结清的非循环贷账户的授信和负债汇总信息。","0:1","105","dd746b2f-dcdc-4d6a-90c4-a25445db72ab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ccb12a09-ad10-4f67-b9af-bffc04934b4d","PC02ES01","管理机构数","PERSON","String","5","信息主体所有未结清的非循环贷账户所属法人机构数。","1:1","106","5626c896-1719-4cb5-90a0-5e1ce1fdc8bf","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b4b19fc2-cc48-4604-9b70-1f8e79837802","PC02ES02","账户数","PERSON","String","5","信息主体所有未结清的非循环贷账户数。","1:1","107","5626c896-1719-4cb5-90a0-5e1ce1fdc8bf","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"46e40313-9d72-430d-ba43-76a50b67d3bf","PC02EJ01","授信总额","PERSON","String","5","信息主体所有未结清的非循环贷账户累计借出资金总额。","1:1","108","5626c896-1719-4cb5-90a0-5e1ce1fdc8bf","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2857e5bc-0a9a-4322-8c27-9e7229aa9aff","PC02EJ02","余额","PERSON","String","5","信息主体所有未结清的非循环贷账户本金余额合计。","1:1","109","5626c896-1719-4cb5-90a0-5e1ce1fdc8bf","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"be728758-66dc-4160-8b9e-ec9b6c6bd47f","PC02EJ03","最近 6 个月平均应还款","PERSON","String","5","所有非循环贷账户最近 6 个月内平均应还款金额合计。","1:1","110","5626c896-1719-4cb5-90a0-5e1ce1fdc8bf","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fb7cee7f-1c65-4a6f-9f17-d13aef167f85","PC02F","循环额度下分账户汇总信息段","PERSON","","4","描述信息主体名下未结清的循环额度下分账户的授信和负债汇总信息。","0:1","111","dd746b2f-dcdc-4d6a-90c4-a25445db72ab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f048f8d2-cc27-471c-a1d7-8c46da8d33d5","PC02FS01","管理机构数","PERSON","String","5","信息主体所有未结清的循环额度下分账户所属法人机构数。","1:1","112","fb7cee7f-1c65-4a6f-9f17-d13aef167f85","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dd9e1dac-bda2-464b-b9a5-ba841563a3a0","PC02FS02","账户数","PERSON","String","5","信息主体所有未结清的循环额度下分账户数。","1:1","113","fb7cee7f-1c65-4a6f-9f17-d13aef167f85","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5d9d97fb-42c3-41e2-9877-202987d4f156","PC02FJ01","授信总额","PERSON","String","5","信息主体所有未结清的循环额度下分账户对应的授信额度汇总,多个账户的共享授信额度不重复计算。","1:1","114","fb7cee7f-1c65-4a6f-9f17-d13aef167f85","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c6a63df7-4d95-4789-960e-78166117141b","PC02FJ02","余额","PERSON","String","5","信息主体所有未结清循环额度下分账户的本金余额合计。","1:1","115","fb7cee7f-1c65-4a6f-9f17-d13aef167f85","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e32468da-3054-45ee-94f7-d31a0fc3dc3a","PC02FJ03","最近 6 个月平均应还款","PERSON","String","5","所有未结清的循环额度下分账户最近 6 个月内平均应还款合计。","1:1","116","fb7cee7f-1c65-4a6f-9f17-d13aef167f85","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3f316de6-9c88-44b1-a779-e80e4eb9dab0","PC02G","循环贷账户汇总信息段","PERSON","","4","描述信息主体名下未销户的循环贷账户的授信和负债汇总信息。","0:1","117","dd746b2f-dcdc-4d6a-90c4-a25445db72ab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dd79c732-0514-449a-9259-ca72cecf4b5d","PC02GS01","管理机构数","PERSON","String","5","信息主体所有未销户的循环贷账户所属管理机构(法人)数。","1:1","118","3f316de6-9c88-44b1-a779-e80e4eb9dab0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0b683497-caed-4765-93ad-102410388000","PC02GS02","账户数","PERSON","String","5","信息主体所有未销户的循环贷账户数。","1:1","119","3f316de6-9c88-44b1-a779-e80e4eb9dab0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fc8fe4ce-fc43-49f9-96b9-51793f00282c","PC02GJ01","授信总额","PERSON","String","5","信息主体所有未销户的循环贷账户对应的授信额度汇总,多个账户的共享授信额度不重复计算。","1:1","120","3f316de6-9c88-44b1-a779-e80e4eb9dab0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9be53775-becd-4955-908b-97514f92404a","PC02GJ02","余额","PERSON","String","5","所有未销户的循环贷账户本金余额合计。","1:1","121","3f316de6-9c88-44b1-a779-e80e4eb9dab0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fd7adc04-d633-4ac8-bd21-83222b38228b","PC02GJ03","最近 6 个月平均应还款","PERSON","String","5","所有未销户的循环贷账户最近 6 个月内平均应还款金额合计。","1:1","122","3f316de6-9c88-44b1-a779-e80e4eb9dab0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"571c901e-c256-4856-9e54-d8b59ac9baf1","PC02H","贷记卡账户汇总信息段","PERSON","","4","描述信息主体名下未销户的贷记卡账户的授信和负债汇总信息。","0:1","123","dd746b2f-dcdc-4d6a-90c4-a25445db72ab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f24803e3-d330-45d5-abf4-052c653e29f2","PC02HS01","发卡机构数","PERSON","String","5","信息主体所有未销户的贷记卡账户所属发卡机构(法人)数。","1:1","124","571c901e-c256-4856-9e54-d8b59ac9baf1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dd3a52d0-9bb3-4fc6-bd0f-90596d10dac1","PC02HS02","账户数","PERSON","String","5","信息主体所有未销户的贷记卡账户数。","1:1","125","571c901e-c256-4856-9e54-d8b59ac9baf1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3b4beca3-682f-473e-9236-ba71529a08ff","PC02HJ01","授信总额","PERSON","String","5","所有未销户的贷记卡账户对应的授信额度汇总,多个账户的共享授信额度不重复计算。","1:1","126","571c901e-c256-4856-9e54-d8b59ac9baf1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"92f5b137-a28a-483f-a19b-1e155758bc14","PC02HJ02","单家行最高授信额","PERSON","String","5","各发卡机构给信息主体授信额度中的最高值。","1:1","127","571c901e-c256-4856-9e54-d8b59ac9baf1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6511e2e5-2fbb-400a-8289-a3b336b00ec1","PC02HJ03","单家行最低授信额","PERSON","String","5","各发卡机构给信息主体授信额度中的最低值。","1:1","128","571c901e-c256-4856-9e54-d8b59ac9baf1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d0a9b75d-d660-4728-97d1-66ed0a972eb4","PC02HJ04","已用额度","PERSON","String","5","所有未销户贷记卡账户的已用额度合计。","1:1","129","571c901e-c256-4856-9e54-d8b59ac9baf1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7ace9eca-d5db-42c4-89e8-5751dd00f91e","PC02HJ05","最近 6 个月平均使用额度","PERSON","String","5","所有未销户的贷记卡账户最近 6 个月内平均使用额度合计。","1:1","130","571c901e-c256-4856-9e54-d8b59ac9baf1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fef6cfff-946b-441d-874e-f073d7ec1ad6","PC02I","准贷记卡账户汇总信息段","PERSON","","4","描述信息主体名下未销户的准贷记卡账户的授信和负债汇总信息。","0:1","131","dd746b2f-dcdc-4d6a-90c4-a25445db72ab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8e807b34-fa46-4eb1-93a0-6093d0562774","PC02IS01","发卡机构数","PERSON","String","5","信息主体所有未销户的准贷记卡所属发卡机构(法人)数。","1:1","132","fef6cfff-946b-441d-874e-f073d7ec1ad6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e8824e38-f6dc-47eb-a760-db82242996ff","PC02IS02","账户数","PERSON","String","5","信息主体所有未销户的准贷记卡账户数。","1:1","133","fef6cfff-946b-441d-874e-f073d7ec1ad6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d826e7b1-8ac8-4428-8fa1-dd0d311d5087","PC02IJ01","授信总额","PERSON","String","5","所有未销户的准贷记卡账户对应的授信额度汇总,多个账户的共享授信额度不重复计算。","1:1","134","fef6cfff-946b-441d-874e-f073d7ec1ad6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9189e839-5897-4e23-9039-a6e3b74af4d1","PC02IJ02","单家行最高授信额","PERSON","String","5","各发卡机构给信息主体授信额度中的最高值。","1:1","135","fef6cfff-946b-441d-874e-f073d7ec1ad6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0d961450-80ad-48af-93be-eb51a7faa234","PC02IJ03","单家行最低授信额","PERSON","String","5","各发卡机构给信息主体授信额度中的最低值。","1:1","136","fef6cfff-946b-441d-874e-f073d7ec1ad6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d210a19f-ae82-4e00-b74b-210dfb66fe2b","PC02IJ04","透支余额","PERSON","String","5","所有未销户准贷记卡账户的已用额度合计。","1:1","137","fef6cfff-946b-441d-874e-f073d7ec1ad6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6598c8a9-8ac0-450a-aa30-5f83a60d98d3","PC02IJ05","最近 6 个月平均透支余额","PERSON","String","5","所有未销户准贷记卡账户的最近 6 个月内平均透支余额合计。","1:1","138","fef6cfff-946b-441d-874e-f073d7ec1ad6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c7c8ce89-3fc2-42e4-99fa-9b81f4ce4f67","PC02K","相关还款责任汇总信息段","PERSON","","4","描述信息主体为个人或企业承担相关还款责任的信息,包括但不限于保证人等。","0:1","139","dd746b2f-dcdc-4d6a-90c4-a25445db72ab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ce08f32c-1450-4f22-9aa7-715b45e8f105","PC02KS01","相关还款责任个数","PERSON","String","5","说明相关还款责任汇总信息的个数(相关还款责任个数=借款人身份类别数*相关还款责任类型数)。","1:1","140","c7c8ce89-3fc2-42e4-99fa-9b81f4ce4f67","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ca3a0ef7-8bef-40ef-a6aa-1ec43cbf7e52","PC02KH","相关还款责任汇总信息","PERSON","","5","段标:后为下级元素","1:4","141","c7c8ce89-3fc2-42e4-99fa-9b81f4ce4f67","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1fb7565d-19ca-4069-bf72-26fef0cc38be","PC02KD01","借款人身份类别","PERSON","String","6","说明相关还款责任所对应的借款人身份类别代码。代码表如下: +1-自然人 +2-组织机构","1:1","142","ca3a0ef7-8bef-40ef-a6aa-1ec43cbf7e52","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9ede802e-769c-4cf0-bd12-03098b11b92a","PC02KD02","还款责任类型","PERSON","String","6","说明相关还款责任类型的代码。代码表如下: +1-担保责任 +9-其他相关还款责任","1:1","143","ca3a0ef7-8bef-40ef-a6aa-1ec43cbf7e52","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1b1d3ffa-66a6-41f3-b65f-9d550da95028","PC02KS02","账户数","PERSON","String","6","信息主体为个人/企业承担相关还款责任的笔数合计。","1:1","144","ca3a0ef7-8bef-40ef-a6aa-1ec43cbf7e52","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3518d9bb-7fbd-497c-9f86-f2c5962122b4","PC02KJ01","还款责任金额","PERSON","String","6","信息主体为个人/企业承担相关还款责任的金额合计。","1:1","145","ca3a0ef7-8bef-40ef-a6aa-1ec43cbf7e52","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"78116f2e-6f88-4e98-8bc7-e67135656b01","PC02KJ02","余额","PERSON","String","6","信息主体为个人/企业承担相关还款责任的余额合计。","1:1","146","ca3a0ef7-8bef-40ef-a6aa-1ec43cbf7e52","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bdce6b4b-96db-43c1-a2ea-299b754a2ca3","PNO","非信贷交易信息概要","PERSON","","2","后付费业务欠费信息汇总信息单元","1:1","147","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b7c7f17d-4b81-4391-89f8-3a4599225851","PC03","后付费业务欠费信息汇总信息单元","PERSON","","3","","0:1","148","bdce6b4b-96db-43c1-a2ea-299b754a2ca3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6c8e2716-51c5-4be4-97e4-158685070c4b","PC030S01","后付费业务类型数量","PERSON","String","4","说明后付费业务类型的数量。","1:1","149","b7c7f17d-4b81-4391-89f8-3a4599225851","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ec89b1d8-dfcd-4468-a40d-cce3e2220634","PC030H","后付费业务欠费信息汇总信息","PERSON","","4","段标:后为下级元素","1:1","150","b7c7f17d-4b81-4391-89f8-3a4599225851","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e3c8800a-1743-4f18-9a01-724b7e989cb7","PC030D01","后付费业务类型","PERSON","String","5","说明后付费业务类型的代码。代码表如下: +1-电信业务","1:1","151","ec89b1d8-dfcd-4468-a40d-cce3e2220634","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"772b5c52-6c67-41cb-b3e2-96cd8f8fdd8e","PC030S02","欠费账户数","PERSON","String","5","信息主体最近 5 年内在该类业务下的欠费账户数总和。","1:1","152","ec89b1d8-dfcd-4468-a40d-cce3e2220634","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"412390ef-7e8e-4c0a-85eb-c1a52e2401e5","PC030J01","欠费金额","PERSON","String","5","信息主体最近 5 年之内该类业务欠费金额总和。","1:1","153","ec89b1d8-dfcd-4468-a40d-cce3e2220634","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7278bb44-e28f-4747-aa7a-d51fddf07d08","PPO","公共信息概要","PERSON","","2","公共信息概要信息单元","1:1","154","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"effa2871-2261-4741-a0f8-8ccb86de8948","PC04","公共信息概要信息单元","PERSON","","3","","0:1","155","7278bb44-e28f-4747-aa7a-d51fddf07d08","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4d51a90d-2b2d-4e81-89b4-c6834f390af3","PC040S01","公共信息类型数量","PERSON","String","4","说明公共信息类型的数量。","1:1","156","effa2871-2261-4741-a0f8-8ccb86de8948","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c7f49928-709d-448c-a352-bf45ec69ec80","PC040H","公共信息概要信息","PERSON","","4","段标:后为下级元素","1:4","157","effa2871-2261-4741-a0f8-8ccb86de8948","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c9874eb6-9eca-4426-8362-8d96158628ec","PC040D01","公共信息类型","PERSON","String","5","说明公共信息类型的代码。代码表如下: +1-欠税信息 +2-民事判决信息 +3-强制执行信息 +4-行政处罚信息","1:1","158","c7f49928-709d-448c-a352-bf45ec69ec80","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c0bd67e5-d639-4350-9429-624af7d627c7","PC040S02","记录数","PERSON","String","5","信息主体最近 5 年内涉及该公共信息类型的信息记录笔数总和。","1:1","159","c7f49928-709d-448c-a352-bf45ec69ec80","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9b9e41f4-1a4a-41e5-a48d-dd3905c033c0","PC040J01","涉及金额","PERSON","String","5","信息主体最近 5 年内在该公共信息类型下所涉及的金额合计。","1:1","160","c7f49928-709d-448c-a352-bf45ec69ec80","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c79ac59e-ed66-4682-8a82-fa4f60886b7c","PQO","查询记录概要","PERSON","","2","查询记录概要信息单元","1:1","161","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0bc0d5b4-9941-4016-89b1-aaa28a9e712d","PC05","查询记录概要信息单元","PERSON","","3","","0:1","162","c79ac59e-ed66-4682-8a82-fa4f60886b7c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0f182a94-71ce-46ba-927b-090e2079548f","PC05A","上一次查询记录信息段","PERSON","","4","描述最近一次查询信用报告的日期、机构和查询原因。 + 仅返回查询原因为“贷款审批”、“信用卡审批”、“担保资格审查”、“融资审批”的上一次查询记录。 ","0:1","163","0bc0d5b4-9941-4016-89b1-aaa28a9e712d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"43602f45-a816-4f89-a725-8528b9d935e3","PC05AR01","上一次查询日期","PERSON","Date","5","最近一次查询信用报告的日期。","1:1","164","0f182a94-71ce-46ba-927b-090e2079548f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a0272279-cc9e-4b2b-ab72-1524582d8448","PC05AD01","上一次查询机构机构类型","PERSON","String","5","业务管理机构所属的机构类型,代码表如下: + 银行业存款类金融机构 +11-商业银行 +12-村镇银行 +14-住房储蓄银行 +15-外资银行 +16-财务公司 + 银行业非存款类金融机构 +21-信托公司 +22-融资租赁公司 +23-汽车金融公司 +24-消费金融公司 +25-贷款公司 +26-金融资产管理公司 + 证券业金融机构 +31-证券公司 + 保险业金融机构 +41-保险公司 + 其他 +51-小额贷款公司 +52-公积金管理中心 +53-融资担保公司 +99-其他机构 +当机构代码无法归入以上类别时,为“99-其他机构”。","1:1","165","0f182a94-71ce-46ba-927b-090e2079548f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d884c3e4-b335-4ddd-aac1-48ab64c54856","PC05AI01","上一次查询机构代码","PERSON","String","5","最近一次查询信用报告的机构代码。 +数据提供机构内部具体负责借款人账户管理、信息核实和相关异议处理的网点/分支机构在征信系统中的唯一编码。 + 当上一次查询机构与本次查询机构属于同一法人机构(顶级机构)时,此数据项为上一次查询机构代码; + 否则,当上一次查询机构与本次查询机构不属于同一法人机构时,该数据项为两位随机大写字母,同一份报告中相同法人机构 +采用相同的字母。","1:1","166","0f182a94-71ce-46ba-927b-090e2079548f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d454ada5-cd3b-41dd-856c-7bcc0efae407","PC05AQ01","上一次查询原因","PERSON","String","5","说明最近一次查询原因的代码。 +采用查询原因代码表,详见附录。","1:1","167","0f182a94-71ce-46ba-927b-090e2079548f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3054027d-f83b-421c-a76b-087686fd0113","PC05B","查询记录汇总信息段","PERSON","","4","描述最近 1 个月内和最近两年内查询信用报告的机构数和查询次数。","1:1","168","0bc0d5b4-9941-4016-89b1-aaa28a9e712d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a15a6062-ab34-46f6-80b8-415962ef4393","PC05BS01","最近 1 个月内的查询机构数(贷款审批)","PERSON","String","5","最近 1 个月内查询原因为“贷款审批”的查询机构数。","1:1","169","3054027d-f83b-421c-a76b-087686fd0113","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"da6d20f7-1333-4028-90d0-9c77fa6d456c","PC05BS02","最近 1 个月内的查询机构数(信用卡审批)","PERSON","String","5","最近 1 个月内查询原因为“信用卡审批”的查询机构数。","1:1","170","3054027d-f83b-421c-a76b-087686fd0113","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cb91f0b7-81f9-4d7c-aacf-41ba431d8312","PC05BS03","最近 1 个月内的查询次数(贷款审批)","PERSON","String","5","最近 1 个月内查询原因为“贷款审批”的查询次数。","1:1","171","3054027d-f83b-421c-a76b-087686fd0113","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ec5fcb1b-648e-4fb6-aa58-d87eeb0c96fb","PC05BS04","最近 1 个月内的查询次数(信用卡审批)","PERSON","String","5","最近 1 个月内查询原因为“信用卡审批”的查询次数。","1:1","172","3054027d-f83b-421c-a76b-087686fd0113","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fa33d92a-3a11-4d17-af49-f68078ab74be","PC05BS05","最近 1 个月内的查询次数(本人查询)","PERSON","String","5","最近 1 个月内查询原因为“本人查询”的查询次数。","1:1","173","3054027d-f83b-421c-a76b-087686fd0113","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d6d3d1b5-d810-40b0-b35f-9f1967ee683c","PC05BS06","最近 2 年内的查询次数(贷后管理)","PERSON","String","5","最近 2 年内查询原因为“贷后管理”的查询次数。","1:1","174","3054027d-f83b-421c-a76b-087686fd0113","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"544a0a1e-35a1-40dc-bc67-721908894181","PC05BS07","最近 2 年内的查询次数(担保资格审查)","PERSON","String","5","最近 2 年内查询原因为“担保资格审查”的查询次数。","1:1","175","3054027d-f83b-421c-a76b-087686fd0113","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"094f490d-5d5f-470f-a677-37796e753e5e","PC05BS08","最近 2 年内的查询次数(特约商户实名审查)","PERSON","String","5","最近 2 年内查询原因为“特约商户实名审查”的查询次数。","1:1","176","3054027d-f83b-421c-a76b-087686fd0113","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4d246a6d-3dfa-4db7-aa95-ef1c2e006e94","PCA","授信协议信息","PERSON","","2","授信协议信息单元","1:1","177","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"aabdffbe-d343-4c61-b687-fa4fdacc1292","PD02","授信协议信息单元","PERSON","","3","","0:*","178","4d246a6d-3dfa-4db7-aa95-ef1c2e006e94","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"57eef25d-e169-4518-97a6-e4f3da971240","PD02A","基本信息段","PERSON","","4","描述授信协议的授信额度、已用额度、币种、期限等信息。","1:1","179","aabdffbe-d343-4c61-b687-fa4fdacc1292","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"21dddfae-3444-47cc-98bc-c46c2f789725","PD02AI01","授信协议编号","PERSON","String","5","征信系统分配给该协议在本报告中的唯一编号,用于关联该授信协议下的账户。","1:1","180","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ae215cc1-3556-4250-bea8-d73b6c281ad5","PD02AD01","业务管理机构类型","PERSON","String","5","业务管理机构所属的机构类型。 +采用机构类型代码表,详见附录。","1:1","181","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e979c4b1-72b9-4575-83b7-28e68ee37b42","PD02AI02","业务管理机构","PERSON","String","5","数据提供机构内部具体负责借款人账户管理、信息核实和相关异议处理的网点/分支机构在征信系统中的唯一编码。 + 当查询机构与业务管理机构属于同一法人机构(顶级机构) 时,此数据项为业务管理机构代码; + 否则,当查询机构与业务管理机构不属于同一法人机构时, 该数据项为两位随机大写字母,同一份报告中相同法人机构采用相同的字母。 ","1:1","182","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c81c69f3-7956-4cd3-9787-6e1b2a13901a","PD02AI03","授信协议标识","PERSON","String","5","在征信系统全局范围内用于唯一识别一份个人授信协议的标识码。 + 当查询机构与业务管理机构属于同一法人机构(顶级机构) 时,此数据项返回该授信协议标识; + 否则,此数据项采用随机一位大写字母和三位阿拉伯数字进行编号,相同授信协议在同一份报告中编号相同且唯一。 +","1:1","183","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"53d807d5-8141-4cca-b4e3-f5cd876197fd","PD02AD02","授信额度用途","PERSON","String","5","说明合同授信额度用途的代码。 +代码表如下: +10-循环贷款额度 +20-非循环贷款额度 +30-信用卡共享额度 +31-信用卡独立额度 ","1:1","184","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5cf03933-f1fe-4be0-b673-1208907748b6","PD02AJ01","授信额度","PERSON","String","5","指授信协议中约定的授信额度。","1:1","185","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"43625222-0072-4f98-9980-90b09e96e14f","PD02AD03","币种","PERSON","String","5","授信协议中约定的币种代码。 +采用《表示货币和资金的代码》(GB/T 12406-2008)中的三位字母型代码,详见附录。 ","1:1","186","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ce04061d-b899-4b30-b0c6-a822c200f756","PD02AR01","生效日期","PERSON","Date","5","授信协议额度的生效日期。","1:1","187","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ce7526fa-2544-43be-9169-855ff5abca95","PD02AR02","到期日期","PERSON","Date","5","授信协议额度的到期日期。","1:1","188","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4c1bfb2f-4ec3-45d2-bdf2-30f407348ec5","PD02AD04","授信协议状态","PERSON","String","5","说明授信额度是否处于有效状态的代码。代码表如下: +1-有效 +2-到期/失效 ","1:1","189","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2d05b9e6-9c69-4c6e-8561-8ef71e1570f1","PD02AJ04","已用额度","PERSON","String","5","截止信息报告日期,该授信协议下已使用额度。 + 对于 D1 账户,已用额度为截至信息报告日期,该授信协议信息下“借款金额”汇总; + 对于 R1、R3 和 R4 账户, 已用额度为截至信息报告日期,该授信协议信息下“余额”汇总; + 对于 R2 账户,已用额度为截至信息报告日期,该授信协议信息下“已使用额度”汇总。 ","1:1","190","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5e9be033-bdab-4b70-903f-6332fdcd0cd5","PD02AJ03","授信限额","PERSON","String","5","在征信系统全局范围内用于唯一识别一份授信限额的标识码。 + 当查询机构与业务管理机构属于同一法人机构(顶级机构) 时,此数据项取值非空; + 否则,此数据项采用随机一位大写字母和三位阿拉伯数字进行编号,相同授信协议在同一份报告中编号相同且唯一。","1:1","191","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3b507ca4-a2cf-4456-9864-f0326cea03f1","PD02AI04","授信限额编号","PERSON","String","5","授信限额是指在授信合同约定的授信额度之外,存在的限定客户在本机构的借款余额上限。 + 授信限额是对某一时点的借款余额起约束作用的额度。 ","1:1","192","57eef25d-e169-4518-97a6-e4f3da971240","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f1b66171-f29f-4276-9217-569b18022e97","PD02Z","标注及声明信息段","PERSON","","4","描述该信息单元中信息的异议标注、特殊标注、声明信息等。 ","0:1","193","aabdffbe-d343-4c61-b687-fa4fdacc1292","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"76df18f0-2b67-494d-8bb6-c82017242135","PD02ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)-20190130删除。","1:1","194","f1b66171-f29f-4276-9217-569b18022e97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c654af41-7e93-4a83-ae6c-f4a8725fed36","PD02ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:9","195","f1b66171-f29f-4276-9217-569b18022e97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a147910e-dd31-48dd-af36-4736aefa90d1","PD02ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","196","c654af41-7e93-4a83-ae6c-f4a8725fed36","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"aaa4a11b-2cff-401e-828c-d9cca61fb40d","PD02ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","197","c654af41-7e93-4a83-ae6c-f4a8725fed36","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f25c4e03-f91a-406c-b97a-9a7f2097b2af","PD02ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","198","c654af41-7e93-4a83-ae6c-f4a8725fed36","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"37c280d0-6799-44b6-add7-88d6ec8e545e","PDA","借贷账户信息","PERSON","","2","借款账户信息单元","1:1","199","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"24465e91-311d-4f4a-b1ee-0867d74af6a4","PD01","借贷账户信息单元","PERSON","","3","","0:*","200","37c280d0-6799-44b6-add7-88d6ec8e545e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"57ea42bc-6e4a-495e-badf-ea6ac3e0924b","PD01A","基本信息段","PERSON","","4","描述账户标识、状态信息,以及与账户对应的业务管理机构、担保和还款情况等信息。","1:1","201","24465e91-311d-4f4a-b1ee-0867d74af6a4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"75423b87-d179-4937-b2a8-d2bfac2fbcea","PD01AI01","账户编号","PERSON","String","5","征信系统分配给该账户在本报告中的唯一编号。","1:1","202","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0a07926e-fc4c-4be0-a655-0275e5536d6e","PD01AD01","账户类型","PERSON","String","5","代码表如下: +D1-非循环贷账户 +R1-循环贷账户 +R2-贷记卡账户 +R3-准贷记卡账户 +R4-循环额度下分账户 +C1-催收账户 ","1:1","203","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"62e4b57b-4b90-45bf-8b7b-4f6506c5e60a","PD01AD02","业务管理机构类型","PERSON","String","5","业务管理机构所属的机构类型。 +采用机构类型代码表,详见附录。","1:1","204","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"65ec593b-e1af-4646-9cc6-ad70e5e89bbc","PD01AI02","业务管理机构代码","PERSON","String","5","数据提供机构内部具体负责借款人账户管理、信息核实和相关异议处理的网点/分支机构在征信系统中的唯一编码。 + 当查询机构与业务管理机构属于同一法人机构 +(顶级机构)时,此数据项为业务管理机构代码; + 否则,当查询机构与业务管理机构不属于同一法人机构时,该数据项为两位随机大写字母,同一份报告中相同法人机构采用相同的字母。 ","1:1","205","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"39323fad-942c-4709-b4dd-7c5ba47b97f0","PD01AI03","账户标识","PERSON","String","5","在征信系统全局范围内用于唯一识别一个借贷账户的标识码。 + 当查询机构与业务管理机构属于同一法人机构(顶级机构)时,此数据项为账户标识; + 否则,当查询机构与业务管理机构不属于同一法人机构时,此数据项取值为空。 ","0:1","206","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2e270122-9c9d-4f19-9f2f-9b744a14cdf5","PD01AI04","授信协议编号","PERSON","String","5","征信系统分配给该协议在本报告中的唯一编号, 用于关联与账户相关的授信协议。 + 对于一次发放的非循环贷款,该授信协议编号返回空值。","0:1","207","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"36a9fc64-9a8a-4d84-bb5d-e3bfae76f9ad","PD01AD03","业务种类","PERSON","String","5","账户对应具体借贷业务的种类细分。 +代码表如下: + 贷款: +11-个人住房商业贷款 +12-个人商用房(含商住两用)贷款 +13-个人住房公积金贷款 +21-个人汽车消费贷款 +31-个人助学贷款 +32-国家助学贷款 +33-商业助学贷款 +41-个人经营性贷款 +51-农户贷款 +52-经营性农户贷款 +53-消费性农户贷款 +91-其他个人消费贷款 +99-其他贷款 + 对于信用卡: +71-准贷记卡 +81-贷记卡 +82-大额专项分期卡 + 证券类融资: +61-约定购回式证券交易 +62-股票质押式回购交易 +63-融资融券业务 +64-其他证券类融资 + 融资租赁: +92-融资租赁业务 + 资产处置: +A1-资产处置 + 垫款 +B1-代偿债务 ","0:1","208","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0efa8bdf-f26c-4abb-b944-a6cc1fff7948","PD01AR01","开立日期","PERSON","Date","5","对于 D1/R1/R4 类账户,指首次放款日期; +对于 R2/R3 类账户,指建立账户的日期; +对于 C1 账户,指接收债权的日期。","1:1","209","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"58e3de45-285e-4dfe-bef0-90424d3a995d","PD01AD04","币种","PERSON","String","5","账户开立和结算实际币种代码。 +采用国标《表示货币和资金的代码》(GB/T +12406-2008)规定的 3 位字母型代码表,详见附录。","0:1","210","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d9cc49c9-5447-4d97-91ec-22ceb38e8276","PD01AJ01","借款金额","PERSON","String","5","对于 D1/R4 类账户,该账户下借款人累计借出的资金总额; +对于 C1 账户,指接收的债权金额。 ","0:1","211","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"61f5b5b7-eaf6-4b92-ab1a-cde2725f355e","PD01AJ02","账户授信额度","PERSON","String","5"," 对于 R1 账户,指该账户对应的循环授信合同上的循环可用额度; + 对于 R2/R3 类账户,指该账户下最高可用的循环借款/透支金额。 ","0:1","212","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dc9efeee-459c-4305-bb9c-5763ab8d4ed3","PD01AJ03","共享授信额度","PERSON","String","5","信用主体在授信机构内的共享授信额度。","0:1","213","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8d247885-37fc-4f86-9ff2-60149bba17b5","PD01AR02","到期日期","PERSON","Date","5"," 对于 D1/R4 类账户,指约定的最后还款日期。贷款发生缩期、展期时,本数据项按照实际情况调整; + 对于 R1 账户,指信用额度的有效截止日期。 + 对于到期日期为“2099-12-31”,代表授信额度长期有效。 ","0:1","214","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5b4672d3-4a92-48ba-a94c-1d35a4b3b2a1","PD01AD05","还款方式","PERSON","String","5","说明信息主体还本付息方式的代码。代码表如下: +11-分期等额本息 +12-分期等额本金 +13-到期还本分期结息 +14-等比累进分期还款 +15-等额累进分期还款 +19-其他类型分期还款 +21-到期一次还本付息 +22-预先付息到期还本 +23-随时还 +29-其他 +31-按期结息,到期还本 +32-按期结息,自由还本 +33-按期计算还本付息 +39-循环贷款下其他还款方式 +90-不区分还款方式 + 若 D1/R1 类账户还款方式为“90-不区分还款方式”,说明此账户为汇总报送的账户,不对还款方式做区分。 ","0:1","215","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"140087d5-9440-42ab-a7ce-3d1827a8d7fb","PD01AD06","还款频率","PERSON","String","5","说明连续两次还款时间间隔的代码。代码表如下: +01-日 +02-周 +03-月 +04-季 +05-半年 +06-年 +07-一次性 +08-不定期 +12-旬 +13-双周 +14-双月 +99-其他 + 当还款方式为“90-不区分还款方式”时,还款频率返回代码“03-月”。","0:1","216","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"13a8d6d2-fa26-4a11-83bb-11ca2ffea6d1","PD01AS01","还款期数","PERSON","String","5"," 对于分期还款的账户,指约定的还款期数; + 对于非分期还款的账户,该数据项返回空值。 + 当还款方式为“90-不区分还款方式”时,还款期数以月为单位进行统计,该数据项返回的是首次放款日至各借据中最晚到期日之间的月份数。 ","0:1","217","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a95b825c-dd29-40f6-a2aa-c7c3b7ba3479","PD01AD07","担保方式","PERSON","String","5","代码表如下: +1-质押 +2-抵押 +3-保证 +4-信用/免担保 +5-组合(含保证) +6-组合(不含保证) +7-农户联保 +9-其他 ","0:1","218","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9f9c08af-baf6-4737-bc9e-66d48249b320","PD01AD08","贷款发放形式","PERSON","String","5","说明金融机构对不同贷款的发放形式进行的分类。代码表如下: +1-新增 +5-其他机构转入","0:1","219","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6ed15b24-7d5a-4997-9875-b9e5e26acb99","PD01AD09","共同借款标志","PERSON","String","5","用于说明该笔信贷业务共同借款人的情况。 +代码表如下: +0-无(无共同借款人) +1-主借款人(有共同借款人,且本报告主体为主借款人) +2-从借款人(有共同借款人,且本报告主体为从借款人) ","0:1","220","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"49a8b704-b3b9-4aef-9a67-74ceeadb3e65","PD01AD10","债权转移时的还款状态","PERSON","String","5"," 对于资产处置业务,取该笔债务的初始债权人转让债权时债务人的还款状态。 + 对于垫款业务,取发生垫款时债务人的履约状态。 +代码表如下: +0-债务人即将违约时自动垫款 +1-逾期 1-30 天 +2-逾期 31-60 天 +3-逾期 61-90 天 +4-逾期 91-120 天 +5-逾期 121-150 天 +6-逾期 151-180 天 +7-逾期 180 天以上 +9-未知","0:1","221","57ea42bc-6e4a-495e-badf-ea6ac3e0924b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"27838f24-20fe-40f1-91e2-fec003d219ba","PD01B","最新表现信息段","PERSON","","4","描述账户当前最新的余额、账户状态、还款日期等还款情况的信息。","1:1","222","24465e91-311d-4f4a-b1ee-0867d74af6a4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"62abb26a-6b7b-472c-b973-c0e0cb1d0728","PD01BD01","账户状态","PERSON","String","5"," 对于 D1 账户,代码表如下: +1-正常 +2-逾期 +3-结清 +4-呆账 +5-转出 +6-担保物不足 +7-强制平仓 +8-司法追偿 + 对于 R1 账户,代码表如下: +1-正常 +2-逾期 +3-结清 +4-呆账 +5-银行止付 +6-担保物不足 +8-司法追偿 + 对于 R2/R3 类账户,代码表如下: +1-正常 +2-冻结 +3-止付 +31-银行止付(由于持卡人信用问题导致商业银行停用其信用卡账户的透支功能) +4-销户 +5-呆账 +6-未激活 +8-司法追偿 + 对于 R4 账户,代码表如下: +1-正常 +2-逾期 +3-结清 +4-呆账 +6-担保物不足 +8-司法追偿 + 对于 C1 账户,代码表如下: +1-催收 +2-结束 + 对于除 C1 以外的账户,当账户活动状态为“持续更新”时,该数据项返回空值。 + +","1:1","223","27838f24-20fe-40f1-91e2-fec003d219ba","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3ced4e47-c073-4f2b-aebf-d45254d22c0c","PD01BR01","关闭日期","PERSON","Date","5"," 当账户状态为“结清/销户/结束”时,该数据项非空;否则,该数据项返回空值。 +数据项非空时,各账户取值含义如下: + 对于 D1/R4 类账户,指贷款结清的日期; + 对于 R1 账户,指额度到期且贷款结清的日期; + 对于 R2/R3 类账户,指账户销户的日期; + 对于 C1 账户,指债权债务关系解除的日期。","1:1","224","27838f24-20fe-40f1-91e2-fec003d219ba","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f9bd1c5f-fe64-4f0b-8686-6faecc7a9146","PD01BR04","转出月份","PERSON","String","5","发生转出的月份。 + 当账户状态为“转出”时,该数据项非空;否则该数据项返回空值。","0:1","225","27838f24-20fe-40f1-91e2-fec003d219ba","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c2678449-12d6-44d0-8ad8-a94957c334ce","PD01BJ01","余额","PERSON","String","5"," 对于 D1/R1/R4 类账户,指本金余额; + 对于 R2 类账户,指该账户下持卡人所有负债, 包含利息、费用等,包含已出单和未出单的部分; + 对于 R3 类账户,指透支余额,包括透支金额和利息; + 对于 C1 类账户,指仍需要归还的全部欠款,包含利息。 + 对于 C1 类账户,当账户活动状态为“关闭”时, +该数据项返回空值。","1:1","226","27838f24-20fe-40f1-91e2-fec003d219ba","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ec6b9509-cd85-4435-bca6-561cab275cf6","PD01BR02","最近一次还款日期","PERSON","Date","5","说明最近一次还款的日期。 + 当账户活动状态为“未激活”、“关闭”时,该数据项返回空值。","1:1","227","27838f24-20fe-40f1-91e2-fec003d219ba","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0ca7180b-a594-43f1-9ad6-b0a0a26cdd7d","PD01BJ02","最近一次还款金额","PERSON","String","5","截至信息报告日期,借款人最近一次实际还款的金额。 + 当账户活动状态不为“持续更新”时,该数据项返回空值。","0:1","228","27838f24-20fe-40f1-91e2-fec003d219ba","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d708a795-d632-4069-b585-10ed23ea359f","PD01BD03","五级分类","PERSON","String","5","持续更新时,该数据项取值为反映五级分类的代码。 +代码表如下: +1-正常 +2-关注 +3-次级 +4-可疑 +5-损失 +9-未分类 + 账户活动状态为“关闭”、“呆账”时,该数据项取值为空。","0:1","229","27838f24-20fe-40f1-91e2-fec003d219ba","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9fb4da80-9c58-4314-99d6-e86625870d9d","PD01BD04","还款状态","PERSON","String","5","持续更新时,该数据项取值非空。对于不同账户代码表如下: + 对于 D1/R4 类账户,采用以下代码表: +*-当月不需要还款且之前没有拖欠 +N-正常还款(表示借款人已经按时归还该月应还款金额的全部,且该账户没有逾期。提前还款但尚未结清, 也归入“N-正常还款”) +D-担保人代还(表示借款人当前欠款已由担保人代还, 账户当前没有逾期,包括全部由担保人代还与由担保人部分代还两种情况) +Z-以资抵债(表示借款人当月的欠款已通过以资抵债的方式还款,账户当前没有逾期) +M-约定还款日后月底前还款(表示截止信息报告日期,借款人已还清所有逾期款项,但是未能在本月的应还款日前还清。对于这种情况,也可以归入“N-正常还款”) +1-逾期 1-30 天 +2-逾期 31-60 天 +3-逾期 61-90 天 +4-逾期 91-120 天 +5-逾期 121-150 天 +6-逾期 151-180 天 +7-逾期 180 天以上 +B-呆账(长期不还款,具体逾期天数未知) +C-结清(借款人该笔贷款全部还清,贷款余额为 0, 包括正常结清、提前结清、以资抵债结清、担保人代还结清等情况) +G-结束(除结清外,其他形式的债权关系解除,如资产剥离) + 对于 R1 账户,采用以下代码表: +*-当月未使用额度且不需要还款(上月余额为 0,且本月没有新增借款) +N-正常还款(表示借款人已经按时归还该月应还款金额的全部,且该账户没有逾期) +D-担保人代还(表示借款人当前欠款已由担保人代还, 且该账户没有逾期,包括全部由担保人代还与由担保人部分代还两种情况) +Z-以资抵债(表示借款人当月的欠款已通过以资抵债的方式还款,且该账户没有逾期) +M-约定还款日后月底前还款(表示截止信息报告日期,借款人已还清所有逾期款项,但是未能在本月的应还日前还清。对于这种情况,也可归入“N-正常还款”) +1-逾期 1-30 天 +2-逾期 31-60 天 +3-逾期 61-90 天 +4-逾期 91-120 天 +5-逾期 121-150 天 +6-逾期 151-180 天 +7-逾期 180 天以上 +B-呆账(长期不还款,具体逾期天数未知) C-正常销户 +G-结束(除正常销户外,其他形式的债权关系解除,如资产剥离) + 对于 R2 账户,采用以下代码表: +*-当月未使用额度且不需要还款(上期账单余额为 0, 且本期没有新增消费) +N-正常还款(持卡人已还清上一账单周期的最低还款额或用卡后处于免息期内) +A-账单日调整,当月不出单 1-逾期 1-30 天 +2-逾期 31-60 天 +3-逾期 61-90 天 +4-逾期 91-120 天 +5-逾期 121-150 天 +6-逾期 151-180 天 +7-逾期 180 天以上 +B-呆账(长期不还款,具体逾期天数未知) C-正常销户 +G-结束(除正常销户外,其他形式的债权关系解除,如资产剥离) + 对于 R3 账户,采用以下代码表: +*-本月没有透支行为且上月该账户没有透支余额N-正常(准贷记卡透支后还清) +1-透支 1-30 天 +2-透支 31-60 天 +3-透支 61-90 天 +4-透支 91-120 天 +5-透支 121-150 天 +6-透支 151-180 天 +7-透支 180 天以上 +B-呆账(长期不还款,具体逾期天数未知) C-正常销户 +G-结束(除正常销户外,其他形式的债权关系解除,如资产剥离) + 特殊情况下此数据项取值为“#”,代表无法获取还款状态。 + 账户活动状态为“未激活”、“关闭”、“呆账”时,该数据项取值为空。","0:1","230","27838f24-20fe-40f1-91e2-fec003d219ba","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4c7ad3f5-2c46-42bd-b4d8-c4ba0d539770","PD01BR03","信息报告日期","PERSON","Date","5","报告所包含信息内容的有效截止日期。 + 当账户活动状态为“持续更新”时,该数据项取值同最近一次月度表现中“信息报告日期”。","1:1","231","27838f24-20fe-40f1-91e2-fec003d219ba","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ea4d98d3-ad16-4b52-8694-40971897234a","PD01C","最近一次月度表现信息段","PERSON","","4","描述最近一个月的账户余额、本月应还和实还、当前逾期情况等信息。如果当月发生账单调整的特殊事件,则该信息段返回最近一次有还款表现的月度表现信息。","0:1","232","24465e91-311d-4f4a-b1ee-0867d74af6a4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"78f052e8-2c23-4e9f-95a2-525659ff6ab3","PD01CR01","月份","PERSON","String","5","说明本段内容记录了账户哪个月的表现。 +格式为 YYYYMM。","1:1","233","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"40508347-3be5-45c6-8842-16108066ba1f","PD01CD01","账户状态","PERSON","String","5","最近一次月度表现时的账户状态。 + 对于 D1 账户,代码表如下: +1-正常 +2-逾期 +3-结清 +4-呆账 +5-转出 +6-担保物不足 +7-强制平仓 +8-司法追偿 + 对于 R1 账户,代码表如下: +1-正常 +2-逾期 +3-结清 +4-呆账 +5-银行止付 +6-担保物不足 +8-司法追偿 + 对于 R2/R3 类账户,代码表如下: +1-正常 +2-冻结 +3-止付 +31-银行止付(由于持卡人信用问题导致商业银行停用其信用卡账户的透支功能) +4-销户 +5-呆账 +6-未激活 +8-司法追偿 + 对于 R4 账户,代码表如下: +1-正常 +2-逾期 +3-结清 +4-呆账 +6-担保物不足 +8-司法追偿","1:1","234","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1fbd617e-04e5-4c2c-9005-e55dcf14981a","PD01CJ01","余额","PERSON","String","5"," 对于 D1/R1/R4 类账户,指本金余额; + 对于 R2 类账户,指该账户下持卡人所有负债, 包含利息、费用等,包含已出单和未出单的部分; + 对于 R3 账户,指透支余额,包括透支金额和利息。","1:1","235","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3fc426ca-018f-47f9-8f6a-b967ca125f75","PD01CJ02","已用额度","PERSON","String","5","指信用卡循环额度下已使用的部分,包括已占用额度但尚未出单的金额。","0:1","236","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6abbc7f8-0717-4136-82a1-a2c93776411c","PD01CJ03","未出单的大额专项分期余额","PERSON","String","5","指还未出单的大额专项分期余额。 + 不存在大额专项分期时,该数据项返回空值。","0:1","237","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d3e32a52-7c30-4936-b7be-2898a28141c4","PD01CD02","五级分类","PERSON","String","5","反映五级分类的代码。 +采用五级分类代码表,详见附录。","0:1","238","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6e58df0e-4abb-48da-8f27-16e5a3a06537","PD01CS01","剩余还款期数","PERSON","String","5"," 对于 D1/R4 类账户,指按照还款计划表仍需归还的期数(不包含以前逾期期数); + 对于 R1 账户,指截至当前时点,仍需归还的期数(不包含以前逾期期数); + 对于 R2 账户,指未出单大额专项分期期数。 + 对于非分期还款的账户,该数据项返回空值。","0:1","239","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"19f8fc5e-7f02-40ff-bd6b-da10f9daf504","PD01CR02","结算/应还款日","PERSON","Date","5"," 对于 D1/R1/R4 类账户,指应还款日; + 对于 R2/R3 类账户,指账单日。","1:1","240","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ef31cf73-2dad-4e10-bb69-ef0ea976c968","PD01CJ04","本月应还款","PERSON","String","5"," 对于 D1/R1/R4 类账户: + 到期日期前各月(含本月):指按照还款计划表,上个月结日(不含)至本月结日(含)之间应归还的累计金额,包括应归还的贷款本金、利息之和,不包括该结算周期之外的未归还欠款; + 到期日期后各月(不含本月):指该账户下当前的所有欠款。 + 对于 R2 账户,指上一个出单日计算出来的最低还款额。上一期没有账单(即第一个出单日),则该数据项为“0”。","0:1","241","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8c34ede3-32cc-4b11-a3e7-7322d03b0d2b","PD01CJ05","本月实还款","PERSON","String","5"," 对于 D1/R1/R4 类账户,指借款人在连续两个月结日之间的实际还款金额总和; + 对于 R2/R3 类账户,指借款人在连续两个出单日期间的实际还款金额总和。","1:1","242","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c3341d8e-8c3c-49a9-b8ad-1729c009636d","PD01CR03","最近一次还款日期","PERSON","Date","5","说明最近一次还款的日期。","1:1","243","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"37c95499-096d-4697-aa45-d76022194964","PD01CS02","当前逾期期数","PERSON","String","5"," 对于 D1/R1/R4 类账户,指截至信息报告日期当前应还未足额归还的贷款期数,到期后不再累计; + 对于 R2 账户,指当前连续未足额归还最低应还款额的次数。若两个账单日期间账户状态曾恢复正常,逾期次数应自恢复正常后重新开始累计。 + 当还款方式为“90-不区分还款方式”时,该数据项返回空值。","0:1","244","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6716578a-f3ce-44bf-bde5-199b422ceb87","PD01CJ06","当前逾期总额","PERSON","String","5","适用于 D1/R1/R2/R4 类账户: + 对于 D1/R1/R4 类账户,指截至信息报告日期, 当前应还未还的欠款金额合计,包括本金和利息; + 对于 R2 账户,指上一期账单的最低还款额中尚未归还的部分。","0:1","245","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ef199424-bd2e-40e0-9813-c7f923073021","PD01CJ07","逾期 31—60 天未还本金","PERSON","String","5","截至当前逾期 31-60 天未归还的欠款本金。","0:1","246","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"339ac16c-ba13-4998-94e4-39671cb8752c","PD01CJ08","逾期 61-90 天未还本金","PERSON","String","5","截至当前逾期 61-90 天未归还的欠款本金。","0:1","247","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"add7ce0a-334e-4aed-8ec4-383fbe616211","PD01CJ09","逾期 91-180 天未还本金","PERSON","String","5","截至当前逾期 91-180 天未归还的欠款本金。","0:1","248","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c23a4ac2-5b8b-4b61-8b67-2e223fff78aa","PD01CJ10","逾期 180 天以上未还本金","PERSON","String","5","截至当前逾期 180 天以上未归还的欠款本金。","0:1","249","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ee40b421-e71d-4c37-b174-57efcc9aea05","PD01CJ11","透支 180 天以上未付余额","PERSON","String","5","截至当前透支 180 天以上未归还的欠款本金。","0:1","250","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7ae10cb1-b36b-45ff-b992-e9614912be8f","PD01CJ12","最近 6 个月平均使用额度","PERSON","String","5","最近 6 个月平均使用额度。","0:1","251","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"08dab6c8-1c1f-4a85-a4dc-27bac7826129","PD01CJ13","最近 6 个月平均透支余额","PERSON","String","5","最近 6 个月平均透支余额","0:1","252","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"32b2a1f3-d2bd-41e3-9551-22d3d495621d","PD01CJ14","最大使用额度","PERSON","String","5","自开立以来的最大使用额度。","0:1","253","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"69b9825a-8798-4080-a190-b15a2b5d7372","PD01CJ15","最大透支余额","PERSON","String","5","自开立以来的最大透支余额。","0:1","254","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d50e55dc-82cc-455e-94bf-e6b82fb1995c","PD01CR04","信息报告日期","PERSON","Date","5","报告所包含信息内容的有效截止日期。即:截至“信息报告日期”,该信息段的有效信息内容如下所示。","1:1","255","ea4d98d3-ad16-4b52-8694-40971897234a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c7f6c926-c67f-4037-be34-2e45ad94965c","PD01D","最近 24 个月还款记录信息段","PERSON","","4","描述最近 24 个月还款状态的信息。","0:1","256","24465e91-311d-4f4a-b1ee-0867d74af6a4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cf9602ce-8fcd-48d8-b903-86a16d6c20c3","PD01DR01","起始年月","PERSON","String","5","24 个月还款状态的起始月份。","1:1","257","c7f6c926-c67f-4037-be34-2e45ad94965c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"24780d26-7485-4c1a-bf76-624b4e8816d2","PD01DR02","截止年月","PERSON","String","5","24 个月还款状态的截止月份。","1:1","258","c7f6c926-c67f-4037-be34-2e45ad94965c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"14986b3e-98ab-42bd-a5ec-8ced041be950","PD01DH","还款状态信息","PERSON","","5","段标:后为下级元素","1:24","259","c7f6c926-c67f-4037-be34-2e45ad94965c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2e807e74-e45a-44f3-a678-3b99219bfcc2","PD01DR03","月份","PERSON","String","6","用于标识 24 个月还款记录的具体月份。","1:1","260","14986b3e-98ab-42bd-a5ec-8ced041be950","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"680991a6-dfd8-4149-9380-31a350e0b95c","PD01DD01","还款状态","PERSON","String","6","用于说明该月份的还款状态。 +各类账户采用相应的个人借贷账户还款状态代码表,详见附录。","1:1","261","14986b3e-98ab-42bd-a5ec-8ced041be950","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cd7b89b9-3a72-4c89-852a-0bcedb4ca052","PD01E","最近 5 年内历史表现信息段","PERSON","","4","以报告生成时间为参照点,最近 5 年内每个月的还款表现和逾期记录(如有)。","0:1","262","24465e91-311d-4f4a-b1ee-0867d74af6a4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8199a5bd-3e2b-43bb-bab6-7130b6d8f210","PD01ER01","起始年月","PERSON","String","5","最近 5 年内的历史表现信息的起始月份。","1:1","263","cd7b89b9-3a72-4c89-852a-0bcedb4ca052","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"de431957-e9f9-43e1-8b64-d06d2750cff3","PD01ER02","截止年月","PERSON","String","5","最近 5 年内的历史表现信息的截止月份。","1:1","264","cd7b89b9-3a72-4c89-852a-0bcedb4ca052","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"70afa85f-5d7e-48d1-90f2-07788ff700e2","PD01ES01","月数","PERSON","String","5","最近 5 年内的历史表现信息的月份数。","1:1","265","cd7b89b9-3a72-4c89-852a-0bcedb4ca052","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3b882ac9-bd49-45dc-aa47-11ebb5a8805b","PD01EH","历史表现信息","PERSON","","5","段标:后为下级元素","1:60","266","cd7b89b9-3a72-4c89-852a-0bcedb4ca052","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cb573459-e9d1-41d7-a425-2536596cb81f","PD01ER03","月份","PERSON","String","6","最近 5 年内的月份。","1:1","267","3b882ac9-bd49-45dc-aa47-11ebb5a8805b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f4e6b04f-0748-4444-b6c9-1cb35976c19d","PD01ED01","还款状态","PERSON","String","6","用于说明该月份的还款状态。 +各类账户采用相应的个人借贷账户还款状态代码表,详见附录。","1:1","268","3b882ac9-bd49-45dc-aa47-11ebb5a8805b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3529d1fa-f33c-4b8a-a18b-08f7f30581bf","PD01EJ01","逾期(透支)总额","PERSON","String","6","","1:1","269","3b882ac9-bd49-45dc-aa47-11ebb5a8805b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f36763d5-7a17-48fc-bad1-7e828307e530","PD01F","特殊交易信息段","PERSON","","4","描述特殊事件类型及发生月份的数据项。","0:1","270","24465e91-311d-4f4a-b1ee-0867d74af6a4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"386730d3-d9cb-4107-bf1e-106bbf464a25","PD01FS01","特殊交易个数","PERSON","String","5","特殊交易的个数(特殊交易个数=特殊交易类型数)-20190130删除。","1:1","271","f36763d5-7a17-48fc-bad1-7e828307e530","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4d854798-375b-4eec-8a65-09d931e68a6c","PD01FH","特殊交易信息","PERSON","","5","段标:后为下级元素","1:999","272","f36763d5-7a17-48fc-bad1-7e828307e530","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3d70973d-502f-4100-9f51-598cb6485026","PD01FD01","特殊交易类型","PERSON","String","6","说明特殊交易类型的代码。代码表如下: +1-展期 +2-担保人(第三方)代偿 +3-以资抵债 +4-提前还款(包括提前归还部分本金、还款期限不变,以及缩短还款期限两种情况) +5-提前结清 +6-强制平仓,未结清 +7-强制平仓,已结清 +8-司法追偿 +9-其他 +11-债务减免 +12-资产剥离 +13-资产转让 +14-信用卡个性化分期 +16-银行主动延期 +17-强制平仓","1:1","273","4d854798-375b-4eec-8a65-09d931e68a6c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"643043ec-97ec-4f1d-8b48-d1d4bc69329b","PD01FR01","特殊交易发生日期","PERSON","Date","6","反映特殊交易发生的日期。","1:1","274","4d854798-375b-4eec-8a65-09d931e68a6c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"53412bef-5ecc-4f48-be62-aa0e623fe5c7","PD01FS02","到期日期变更月数","PERSON","String","6","特殊交易引起的到期日期变更的月数。","1:1","275","4d854798-375b-4eec-8a65-09d931e68a6c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"89815054-c3b0-4820-b414-239a5afcb99c","PD01FJ01","特殊交易发生金额","PERSON","String","6","反映特殊交易相应的发生金额。","1:1","276","4d854798-375b-4eec-8a65-09d931e68a6c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"24700ebd-95d1-415c-b3ab-ab8b1b7c283e","PD01FQ01","特殊交易明细记录","PERSON","String","6","特殊交易详细情况的描述。","1:1","277","4d854798-375b-4eec-8a65-09d931e68a6c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"502f8bb0-465d-4f14-a29d-e0f27eb4bcb7","PD01G","特殊事件说明信息段","PERSON","","4","描述信息主体特殊交易信息的数据项。","0:1","278","24465e91-311d-4f4a-b1ee-0867d74af6a4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"32c3dd0a-6197-4def-9ee1-eee6db5352fd","PD01GS01","特殊事件说明个数","PERSON","String","5","特殊事件说明的个数。","1:1","279","502f8bb0-465d-4f14-a29d-e0f27eb4bcb7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"32325708-9f22-4f3a-8610-b6ba4f39b350","PD01GH","特殊事件说明信息","PERSON","","5","段标:后为下级元素","1:999","280","502f8bb0-465d-4f14-a29d-e0f27eb4bcb7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a284f609-917d-4e4a-a66f-076d7baf5cbc","PD01GR01","特殊事件发生月份","PERSON","String","6","发生特殊事件的月份。","1:1","281","32325708-9f22-4f3a-8610-b6ba4f39b350","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7692cf30-45a7-4539-92ff-1fda96448009","PD01GD01","特殊事件类型","PERSON","String","6","反映特殊操作的事件类型代码。 +代码表如下: +11-信用卡因调整账单日本月不出单 +12-已注销信用卡账户重启 ","1:1","282","32325708-9f22-4f3a-8610-b6ba4f39b350","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"87fe26d8-2d2f-43c2-a0ab-64bd1def0239","PD01H","大额专项分期信息段","PERSON","","4","描述信用卡大额专项分期的授信额度、额度生效日期、额度到期日期、已用分期金额等信息。","0:1","283","24465e91-311d-4f4a-b1ee-0867d74af6a4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"afc4a7e7-0239-41e4-87c4-a24af1092989","PD01HS01","大额专项分期笔数","PERSON","String","5","该账户下专项分期笔数合计。","1:1","284","87fe26d8-2d2f-43c2-a0ab-64bd1def0239","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"09b5062b-06ee-4606-9791-26edf6c3e6c5","PD01HH","大额专项分期信息","PERSON","","5","段标:后为下级元素","1:999","285","87fe26d8-2d2f-43c2-a0ab-64bd1def0239","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a9326bf4-40e9-438b-b7b5-9c39957d0307","PD01HJ01","大额专项分期额度","PERSON","String","6","该账户下大额专项分期的额度。 ","1:1","286","09b5062b-06ee-4606-9791-26edf6c3e6c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0f8f9bde-dba0-4d4f-9d42-c3ebc2b26625","PD01HR01","分期额度生效日期","PERSON","Date","6","该账户下大额专项分期的额度的生效日期。 ","1:1","287","09b5062b-06ee-4606-9791-26edf6c3e6c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b30b3534-744e-4e8e-b926-82418c4cd79a","PD01HR02","分期额度到期日期","PERSON","Date","6","大额专项分期的额度的有效期截止日。 ","1:1","288","09b5062b-06ee-4606-9791-26edf6c3e6c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1f7af8e0-67bb-4dd0-8916-26fc87b84485","PD01HJ02","已用分期金额","PERSON","String","6","已经使用的大额专项分期金额。 ","1:1","289","09b5062b-06ee-4606-9791-26edf6c3e6c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"57eb7740-bc51-4010-a896-e61ec79cebf6","PD01Z","标注及声明信息段","PERSON","","4","说明对该信息单元中信息的异议标注、特殊标注、声明信息等。","0:1","290","24465e91-311d-4f4a-b1ee-0867d74af6a4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6fd229da-5d7a-4e2b-b1f4-4c80bf296a17","PD01ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)-20190130删除。","1:1","291","57eb7740-bc51-4010-a896-e61ec79cebf6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"02b5f66b-e15d-4a1e-a10e-7c35e947199e","PD01ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:9","292","57eb7740-bc51-4010-a896-e61ec79cebf6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"165b4941-7ad0-48ed-8a5e-f5049a8eef68","PD01ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","293","02b5f66b-e15d-4a1e-a10e-7c35e947199e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"17d4d9ae-304f-4c7f-aa4c-079a18043c09","PD01ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","294","02b5f66b-e15d-4a1e-a10e-7c35e947199e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d829ecb8-8ac8-4771-9dd1-b6a54151a2a3","PD01ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","295","02b5f66b-e15d-4a1e-a10e-7c35e947199e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b55949f7-c7aa-40b9-bc16-80e3cdbced0e","PCR","相关还款责任信息","PERSON","","2","相关还款责任信息单元","1:1","296","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"aacb8bee-9adf-4a81-bb85-f84e8263a422","PD03","相关还款责任信息单元","PERSON","","3","","0:*","297","b55949f7-c7aa-40b9-bc16-80e3cdbced0e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4c0c8194-3d55-449b-a650-b5bfbb232cc2","PD03A","相关还款责任信息段","PERSON","","4","描述的是信息主体为个人或企业承担相关还款责任的信息。","1:1","298","aacb8bee-9adf-4a81-bb85-f84e8263a422","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4df3fbbe-babb-4e96-8a79-24218a7c3405","PD03AD08","主借款人身份类别","PERSON","String","5","说明信息主体有相关的那笔债务的主借款人的身份类别。 +采用身份类别代码表,详见附录。","1:1","299","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2fc34c04-0b30-42ea-9c02-d4ba8fa89335","PD03AD01","业务管理机构类型","PERSON","String","5","业务管理机构所属的机构类型。 +采用机构类型代码表,详见附录。","1:1","300","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9c064ec4-0c74-4dad-a00e-e9e4a09d5d34","PD03AQ01","业务管理机构","PERSON","String","5"," 当本次查询机构与主业务的管理机构属于同一法人机构(顶级机构)时,该数据项为主业务的管理机构代码; + 否则,当本次查询机构与主业务的管理机构不属于同一法人机构时,该数据项为随机两位大写字母(同一份报告中相同法人机构采用相同的字母)。","1:1","301","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"51cc1811-5c02-4e9b-9bfe-b220d43ccb9c","PD03AD02","业务种类","PERSON","String","5"," 当身份类别为 1-自然人时,采用个人借贷交易业务种类代码表,详见附录; + 当身份类别为 2-组织机构时,代码表如下: +10-企业债 +11-贷款 +12-贸易融资 +13-保理融资 +14-融资租赁 +15-证券类融资 +16-透支 +21-票据贴现 +31-黄金借贷 +41-垫款 +51-资产处置","1:1","302","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"79345978-706c-459b-88b7-ae4fb6c07164","PD03AR01","开立日期","PERSON","Date","5","被承担相关还款责任的贷款的发放日期。","1:1","303","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0adcc039-5b4e-40cb-9dd3-79a724bb4ae9","PD03AR02","到期日期","PERSON","Date","5","被承担相关还款责任的贷款的到期日期。","1:1","304","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"29d79481-362b-4ae1-aac9-aff57836e5fa","PD03AD03","相关还款责任人类型","PERSON","String","5","信息主体为个人/企业承担相关还款责任类型。代码表如下: +1-共同借款人 +2-保证人 +3-票据承兑人 +4-应收账款债务人 +5-供应链中核心企业 +9-其他","1:1","305","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1c1c2e36-c3e5-4b5a-9c6f-2bb9a614f931","PD03AQ02","保证合同编号","PERSON","String","5","在征信系统全局范围内用于唯一识别一份保证合同的标识码。 + 当本次查询机构与主业务的管理机构属于同一法人机构(顶级机构)时,该数据项为保证合同编号; + 否则,此数据项采用随机一位大写字母和三位阿拉伯数字进行编号,相同保证合同在同一份报告中编号相同且唯一。","1:1","306","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5a7bd5c2-90c6-4a35-8a66-401f59b89c98","PD03AJ01","相关还款责任金额","PERSON","String","5","保证合同约定的担保金额。 + 当主借款人身份类别为“2-组织机构”,相关还款责任人类型为“1-共同借款人”时,该数据项返回空值。","1:1","307","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"37060991-1287-4c22-9b40-2c3237149f6a","PD03AD04","币种","PERSON","String","5","账户开立和结算实际币种代码。 +采用国标《表示货币和资金的代码》(GB/T 12406-2008)规定的3 位字母型代码表,详见附录。","1:1","308","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"54299c52-b1ab-467d-9124-687c231e41f5","PD03AJ02","余额","PERSON","String","5","被承担相关还款责任的贷款本金余额。","1:1","309","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dd6882ea-bcf2-44c9-beab-2af793bcb210","PD03AD05","五级分类","PERSON","String","5","反映五级分类的代码。 +采用五级分类代码表,详见附录。","1:1","310","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0c478a54-9200-458e-afd1-4a6cf53a298d","PD03AD06","账户类型","PERSON","String","5","说明信息主体有相关还款责任的那笔债务对应的账户类型。采用个人借贷账户类型代码表,详见附录。 + 当身份类别为“2-组织机构”时,该数据返回空值。","1:1","311","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"95678425-f2a1-4fcb-8b02-64fafcb100dd","PD03AD07","还款状态","PERSON","String","5","各类账户采用相应的个人借贷账户还款状态代码表,详见附录。 + 当身份类别为“2-组织机构”时,该数据返回空值。","1:1","312","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d0492bea-98d9-4d62-99d7-9b8372fb1d77","PD03AS01","逾期月数","PERSON","String","5","截止信息报告日期被担保的主业务的连续逾期月数。 + 当身份类别为“1-自然人”时,该数据返回空值。","1:1","313","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ec570e9f-6eb9-4284-b3df-91dc09795ac4","PD03AR03","信息报告日期","PERSON","Date","5","本条信息单元所包含信息内容的有效截止日期。","1:1","314","4c0c8194-3d55-449b-a650-b5bfbb232cc2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"95e0f90a-e950-47c4-bc2e-a942c5f3bffb","PD03Z","标注及声明信息段","PERSON","","4","描述该信息单元中信息的异议标注、特殊标注、声明信息等。","0:1","315","aacb8bee-9adf-4a81-bb85-f84e8263a422","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"112f235b-50ea-4b60-b485-5f64ed69ce5b","PD03ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)。","1:1","316","95e0f90a-e950-47c4-bc2e-a942c5f3bffb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8eb2f28d-4b48-4545-aacb-9dcc4a119d34","PD03ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:5","317","95e0f90a-e950-47c4-bc2e-a942c5f3bffb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"de963892-b091-4449-9963-aac31864ab77","PD03ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","318","8eb2f28d-4b48-4545-aacb-9dcc4a119d34","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5e211f89-badd-4cb8-ab00-698775072a1b","PD03ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","319","8eb2f28d-4b48-4545-aacb-9dcc4a119d34","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c6af988d-35d1-47de-9eaa-4da27445c6dc","PD03ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","320","8eb2f28d-4b48-4545-aacb-9dcc4a119d34","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d0895c89-fb3f-4d5b-b473-31759275a665","PND","后付费业务信息","PERSON","","2","后付费业务信息单元","1:1","321","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3c32715b-e274-4bdf-8635-0550fe8c0833","PE01","后付费业务信息单元","PERSON","","3","","0:*","322","d0895c89-fb3f-4d5b-b473-31759275a665","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e24ddec0-ab58-4087-bf35-0e266d0b9243","PE01A","后付费业务信息段","PERSON","","4","描述电信缴费的相应信息。","1:1","323","3c32715b-e274-4bdf-8635-0550fe8c0833","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"70172875-25da-4871-a26b-b11722a1cc9a","PE01AD01","后付费账户类型","PERSON","String","5","用以说明后付费账户类型的代码。对于后付费账户,代码表如下: +TE-电信缴费账户","1:1","324","e24ddec0-ab58-4087-bf35-0e266d0b9243","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"192179f6-4d78-4dd2-9f98-4ae623ecc7f2","PE01AQ01","机构名称","PERSON","String","5","负责报送后付费业务信息的单位名称。","1:1","325","e24ddec0-ab58-4087-bf35-0e266d0b9243","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"98532b8c-5a0e-48f8-b0f9-d684121cb626","PE01AD02","业务类型","PERSON","String","5","后付费业务类型代码。 + 对于电信缴费账户,代码表如下: +1-固定电话 +2-移动电话 (包括小灵通业务;GSM 网络、CDMA 网络、卫星移动网络等类型的手机业务) +3-互联网接入(包括 ADSL 上网、LAN 宽带上网、ISDN 上网、无线上网等业务) +4-数据专线及集群业务 +5-卫星业务(包括卫星广播电视、卫星导航定位等业务) +6-组合业务(指以上两种或多种业务合并计费的情况) +0-其他业务","1:1","326","e24ddec0-ab58-4087-bf35-0e266d0b9243","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d66d7b35-33b5-4ffe-8ecf-ba388db00f61","PE01AR01","业务开通日期","PERSON","Date","5","后付费账户的开立日期。","1:1","327","e24ddec0-ab58-4087-bf35-0e266d0b9243","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"37ec03f2-a8c6-45bf-b91a-74e4cb19f5f9","PE01AD03","当前缴费状态","PERSON","String","5","用以说明后付费账户的当前缴费状态。 +0-欠费 +1-正常","1:1","328","e24ddec0-ab58-4087-bf35-0e266d0b9243","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"76b3302b-258b-446d-a593-81b4c9159767","PE01AJ01","当前欠费金额","PERSON","String","5","数据发生月末的欠费金额。","1:1","329","e24ddec0-ab58-4087-bf35-0e266d0b9243","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6ebcbf4e-ce96-486a-878d-9b289928cce4","PE01AR02","记账年月","PERSON","String","5","后付费账户的缴费账单年月。","1:1","330","e24ddec0-ab58-4087-bf35-0e266d0b9243","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8a7b139a-051e-4e9f-9057-0d7e01bc1c37","PE01AQ02","最近 24 个月缴费记录","PERSON","String","5","后付费账户最近 24 个月内每个月的缴费状态记录。每一表示相应月份的缴费状态。 + 对于电信缴费账户,缴费状态采用电信缴费账户最近 24 个月缴费状态代码表,详见附录。 + 位数不足 24 位时,说明后付费账户开立不足 24 个月。","1:1","331","e24ddec0-ab58-4087-bf35-0e266d0b9243","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ac4c99b0-0ed7-48e4-a250-2cd698a3f5cf","PE01Z","标注及声明信息段","PERSON","","4","对该记录单元中数据项的异议标注内容。","0:1","332","3c32715b-e274-4bdf-8635-0550fe8c0833","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"81299060-6645-4880-a564-e2a3623ea3da","PE01ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)-20190130删除。","1:1","333","ac4c99b0-0ed7-48e4-a250-2cd698a3f5cf","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2d697e26-42e6-4d22-947c-2f030ff0d862","PE01ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:9","334","ac4c99b0-0ed7-48e4-a250-2cd698a3f5cf","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"35791929-8cc7-4e27-a3b5-d99fa94a20e2","PE01ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","335","2d697e26-42e6-4d22-947c-2f030ff0d862","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c357cbb5-74a4-441c-bee9-a36afa83cb3b","PE01ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","336","2d697e26-42e6-4d22-947c-2f030ff0d862","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1a830186-7d89-4926-953f-25fa5c181342","PE01ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","337","2d697e26-42e6-4d22-947c-2f030ff0d862","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b0043b31-a12e-4185-81ce-1e83060ee9c6","POT","欠税记录","PERSON","","2","欠税记录信息单元","1:1","338","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f7303146-a46b-45f6-bcab-10e2b652ac1e","PF01","欠税记录信息单元","PERSON","","3","","0:*","339","b0043b31-a12e-4185-81ce-1e83060ee9c6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ab7a6912-b66e-4a6c-ac37-78ffe09308fc","PF01A","欠税记录信息段","PERSON","","4","描述信息主体的欠税的详细记录信息,包括主管税务机关、欠税总额、欠税统计日期等。","1:1","340","f7303146-a46b-45f6-bcab-10e2b652ac1e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bc80b6b2-2376-42a4-b8ce-8ce60465b345","PF01AQ01","主管税务机关","PERSON","String","5","对纳税人进行税收征收管理的税务机关名称。","1:1","341","ab7a6912-b66e-4a6c-ac37-78ffe09308fc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b4b08d5e-4916-4fac-b284-621f510587c1","PF01AJ01","欠税总额","PERSON","String","5","纳税人当前应缴未缴的税务金额合计。","1:1","342","ab7a6912-b66e-4a6c-ac37-78ffe09308fc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"65730e5f-30ed-487d-b7b4-ef83b632dfa8","PF01AR01","欠税统计日期","PERSON","Date","5","税务机关统计纳税人的税务信息的时间。","1:1","343","ab7a6912-b66e-4a6c-ac37-78ffe09308fc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f0e67f03-5919-4235-958a-bd63fcf648dd","PF01Z","标注及声明信息段","PERSON","","4","对该记录单元中数据项的异议标注内容。","0:1","344","f7303146-a46b-45f6-bcab-10e2b652ac1e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ef241981-001e-4cbb-99a4-cdd154ec74e8","PF01ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)-20190130删除。","1:1","345","f0e67f03-5919-4235-958a-bd63fcf648dd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b3077b94-fcae-405e-a5d5-abc0dd474e6c","PF01ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:9","346","f0e67f03-5919-4235-958a-bd63fcf648dd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"85e5b3d6-5fef-45b1-b474-91563e092cd8","PF01ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","347","b3077b94-fcae-405e-a5d5-abc0dd474e6c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"23dcb453-367d-463a-9b62-2396be56c277","PF01ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","348","b3077b94-fcae-405e-a5d5-abc0dd474e6c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fb5aea6e-a994-4b72-af76-a1f25aade0bb","PF01ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","349","b3077b94-fcae-405e-a5d5-abc0dd474e6c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6a8c1396-8cdf-45b8-9827-87ae83351ab9","PCJ","民事判决记录","PERSON","","2","民事判决记录信息单元","1:1","350","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7bd94537-ec0e-42b9-8f3b-138c88aee437","PF02","民事判决记录信息单元","PERSON","","3","","0:*","351","6a8c1396-8cdf-45b8-9827-87ae83351ab9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c7510b36-994f-43ed-85ab-146a71910214","PF02A","民事判决记录信息段","PERSON","","4","描述信息主体民事判决的详细记录信息,包括案件状态及判决结果信息。","1:1","352","7bd94537-ec0e-42b9-8f3b-138c88aee437","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ad802bc3-7da4-4d37-876c-b1ccb37247f2","PF02AQ01","立案法院","PERSON","String","5","受理诉讼案件申请的人民法院名称。","1:1","353","c7510b36-994f-43ed-85ab-146a71910214","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ae7292fb-077a-49b9-a6d5-3b5d7ee98184","PF02AQ02","案由","PERSON","String","5","诉讼案件的立案原因,即当事人因何事发生纠纷而需要人民法院进行裁决。","1:1","354","c7510b36-994f-43ed-85ab-146a71910214","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"07722f8c-8e32-494a-bc16-65bda59513f4","PF02AR01","立案日期","PERSON","Date","5","诉讼案件的立案日期","1:1","355","c7510b36-994f-43ed-85ab-146a71910214","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f0e26ac7-a199-4b9d-85b2-c15e32897b1b","PF02AD01","结案方式","PERSON","String","5","说明该诉讼案件的结案方式。代码表如下: +1-判决 +2-调解 +3-其他","1:1","356","c7510b36-994f-43ed-85ab-146a71910214","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ad72c166-bf36-441e-b557-1fb4f3be4516","PF02AQ03","判决/调解结果","PERSON","String","5","法院对该诉讼案件的判决或调解结果。","1:1","357","c7510b36-994f-43ed-85ab-146a71910214","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"df35902e-34a9-423f-b503-4984b03ceaeb","PF02AR02","判决/调解生效日期","PERSON","Date","5","该诉讼案件的判决或调解结果生效的日期。","1:1","358","c7510b36-994f-43ed-85ab-146a71910214","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"263d9a0e-6316-48e8-a60b-6f5474893a3a","PF02AQ04","诉讼标的","PERSON","String","5","当事人争议的要求人民法院通过审判予以解决的某一民事法律关系或权利。","1:1","359","c7510b36-994f-43ed-85ab-146a71910214","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"55fb543a-2c71-495e-b7ce-40ffe675d52d","PF02AJ01","诉讼标的金额","PERSON","String","5","与该当事人相关的标的金额。精确到元。","1:1","360","c7510b36-994f-43ed-85ab-146a71910214","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"38d1b68e-86ff-4779-ad5e-62f620615281","PF02Z","标注及声明信息段","PERSON","","4","对该记录单元中数据项的异议标注内容。","0:1","361","7bd94537-ec0e-42b9-8f3b-138c88aee437","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"21769a87-0c56-460c-8cf9-904cf05c8dce","PF02ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)-20190130删除。","1:1","362","38d1b68e-86ff-4779-ad5e-62f620615281","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"826575db-cde8-422d-bb03-a9624ff63ddc","PF02ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:9","363","38d1b68e-86ff-4779-ad5e-62f620615281","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ee2aee1c-608d-4649-885f-d18bf8fe30eb","PF02ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","364","826575db-cde8-422d-bb03-a9624ff63ddc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5f6916ef-f57c-48d0-8362-bc8ec5f90291","PF02ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","365","826575db-cde8-422d-bb03-a9624ff63ddc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"34e8d2ef-0b9d-4540-960e-0e74bff18237","PF02ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","366","826575db-cde8-422d-bb03-a9624ff63ddc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f52cdccf-b3c4-4fa5-8363-ed72365db1c1","PCE","强制执行记录","PERSON","","2","强制执行记录信息单元","1:1","367","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"87729769-5e08-43a5-843a-0e068d6c9b2b","PF03","强制执行记录信息单元","PERSON","","3","","0:*","368","f52cdccf-b3c4-4fa5-8363-ed72365db1c1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a003e516-f70f-473e-8343-47cf4e1fcee4","PF03A","强制执行记录信息段","PERSON","","4","描述信息主体被法院强制执行的详细记录信息。","1:1","369","87729769-5e08-43a5-843a-0e068d6c9b2b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fbbd01fb-c934-4b9b-8f19-20e09fde64ff","PF03AQ01","执行法院","PERSON","String","5","受理执行案件申请的人民法院名称。 ","1:1","370","a003e516-f70f-473e-8343-47cf4e1fcee4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a0b7cfc2-9214-4ff8-8304-be265713f299","PF03AQ02","执行案由","PERSON","String","5","执行案件的案由,即当事人因何事发生纠纷而需要人民法院强制执行案件的判决结果。 ","1:1","371","a003e516-f70f-473e-8343-47cf4e1fcee4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"732b818c-75e4-4b6d-bab2-6db97e4c95af","PF03AR01","立案日期","PERSON","Date","5","执行案件的立案日期。 ","1:1","372","a003e516-f70f-473e-8343-47cf4e1fcee4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"66135c64-2734-4289-9b97-705f31c6c7e7","PF03AD01","结案方式","PERSON","String","5","说明执行案件的结案方式。代码表如下: +001-不予执行 +002-自动履行 +003-和解履行完毕 +004-执行完毕 +005-终结执行 +006-提级执行 +007-指定执行 +255-其他 ","1:1","373","a003e516-f70f-473e-8343-47cf4e1fcee4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6abcb529-500e-4330-8f1c-799fe6f2fab0","PF03AQ03","案件状态","PERSON","String","5","案件的处理状态。 ","1:1","374","a003e516-f70f-473e-8343-47cf4e1fcee4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"adf768cd-fe5a-4763-95b4-bfad3960cb9c","PF03AR02","结案日期","PERSON","Date","5","执行案件的结案日期。","1:1","375","a003e516-f70f-473e-8343-47cf4e1fcee4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f0b9cc74-de09-43b0-a429-9d200efaf019","PF03AQ04","申请执行标的","PERSON","String","5","法院强制执行行为所指向的对象,包括给付方式、物种、数额或要求的给付内容。","1:1","376","a003e516-f70f-473e-8343-47cf4e1fcee4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d5801490-8b58-4d11-b3b0-63f5824649e7","PF03AJ01","申请执行标的金额","PERSON","String","5","申请执行标的的金额。精确到元。","1:1","377","a003e516-f70f-473e-8343-47cf4e1fcee4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"515bfd85-b1c2-41c4-888b-c5e11fe28cb6","PF03AQ05","已执行标的","PERSON","String","5","被执行人已执行的标的,包括物和行为。","1:1","378","a003e516-f70f-473e-8343-47cf4e1fcee4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fbd4bdd4-53f1-4fba-b870-3c8e28b0fde6","PF03AJ02","已执行标的金额","PERSON","String","5","被执行人已执行的标的金额。","1:1","379","a003e516-f70f-473e-8343-47cf4e1fcee4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fd29b217-6adf-47f0-8a2a-c18f0b0c8faa","PF03Z","标注及声明信息段","PERSON","","4","对该记录单元中数据项的异议标注内容。","0:1","380","87729769-5e08-43a5-843a-0e068d6c9b2b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6b40be09-092e-4671-8814-52d2f5179c4d","PF03ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)-20190130删除。","1:1","381","fd29b217-6adf-47f0-8a2a-c18f0b0c8faa","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c2d33d2c-66ae-429a-97ef-04ea687c5772","PF03ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:9","382","fd29b217-6adf-47f0-8a2a-c18f0b0c8faa","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9d1c455a-2d83-4183-be9d-6f29f976bd7f","PF03ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","383","c2d33d2c-66ae-429a-97ef-04ea687c5772","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"76a176b2-8568-4a19-a9f6-67aab2073b4f","PF03ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","384","c2d33d2c-66ae-429a-97ef-04ea687c5772","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1ba2500b-751d-4e7b-bd6c-a5a9efa99936","PF03ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","385","c2d33d2c-66ae-429a-97ef-04ea687c5772","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"28530176-8aef-47cc-8e88-39238b2aa632","PAP","行政处罚记录","PERSON","","2","行政处罚记录信息单元","1:1","386","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f2205fe5-ca64-4533-acfd-de1aad9528ed","PF04","行政处罚记录信息单元","PERSON","","3","","0:*","387","28530176-8aef-47cc-8e88-39238b2aa632","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"64495c58-7bdc-43fb-813c-4d29aa48a1f8","PF04A","行政处罚记录信息段","PERSON","","4","描述信息主体受到行政处罚的详细记录信息。","1:1","388","f2205fe5-ca64-4533-acfd-de1aad9528ed","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3abd665c-287e-4d9f-8e9f-8aa1d7b07af6","PF04AQ01","处罚机构","PERSON","String","5","对当事人进行处罚的机构名称。","1:1","389","64495c58-7bdc-43fb-813c-4d29aa48a1f8","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"06cf167a-c49a-4132-bf0e-aa21661a24b5","PF04AQ02","处罚内容","PERSON","String","5","处罚机构对当事人进行处罚的具体内容。","1:1","390","64495c58-7bdc-43fb-813c-4d29aa48a1f8","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fea6a984-28b9-4e2c-9f76-2c091c945b3c","PF04AJ01","处罚金额","PERSON","String","5","处罚机构对当事人的处罚金额。","1:1","391","64495c58-7bdc-43fb-813c-4d29aa48a1f8","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f3dfe583-43d3-4437-b370-f696f47c42ad","PF04AR01","处罚生效日期","PERSON","String","5","处罚机构对当事人处罚的生效起始日期。 + “0000-00”表示奖励/处罚终身有效。","1:1","392","64495c58-7bdc-43fb-813c-4d29aa48a1f8","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"84eac7d0-934f-432f-af17-a8aa64b46c8e","PF04AR02","处罚截止日期","PERSON","String","5","处罚机构对当事人处罚的结束日期。 + “0000-00”表示奖励/处罚终身有效。","1:1","393","64495c58-7bdc-43fb-813c-4d29aa48a1f8","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"83701629-9871-4569-8e37-a5c4d9ed2b3f","PF04AQ03","行政复议结果","PERSON","String","5","","1:1","394","64495c58-7bdc-43fb-813c-4d29aa48a1f8","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7b3bbb8c-55e9-4827-98f3-198477404b5c","PF04Z","标注及声明信息段","PERSON","","4","对该记录单元中数据项的异议标注内容。","0:1","395","f2205fe5-ca64-4533-acfd-de1aad9528ed","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a6156aa5-e070-485b-8c91-735f5a15b00b","PF04ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)-20190130删除。","1:1","396","7b3bbb8c-55e9-4827-98f3-198477404b5c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7ad99e64-fa7d-4d62-b730-4a635ed243e5","PF04ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:9","397","7b3bbb8c-55e9-4827-98f3-198477404b5c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"364428bf-0414-4fa6-8140-089240f45200","PF04ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","398","7ad99e64-fa7d-4d62-b730-4a635ed243e5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0432849a-5a1e-45be-99a5-14d0a9db0d6c","PF04ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","399","7ad99e64-fa7d-4d62-b730-4a635ed243e5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5c190d1b-eba2-4da8-826d-4d28bd4a349a","PF04ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","400","7ad99e64-fa7d-4d62-b730-4a635ed243e5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"545c25d2-dfae-4e89-88db-d34b9de2dd85","PHF","住房公积金参缴记录","PERSON","","2","住房公积金参缴记录信息单元","1:1","401","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"97d00b03-542b-4404-bcaa-0a01773186e1","PF05","住房公积金参缴记录信息单元","PERSON","","3","","0:*","402","545c25d2-dfae-4e89-88db-d34b9de2dd85","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c6927c71-8dba-45a6-aa45-b3a77462c68c","PF05A","住房公积金参缴记录信息段","PERSON","","4","描述信息主体住房公积金参缴情况的详细记录信息。","1:1","403","97d00b03-542b-4404-bcaa-0a01773186e1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"76d65640-82a6-4088-8451-f228bafdac0b","PF05AQ01","参缴地","PERSON","String","5","客户住房公积金缴存账户的所在地。","1:1","404","c6927c71-8dba-45a6-aa45-b3a77462c68c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"80d2e67f-9c1b-4a05-9cb6-30bb43570b58","PF05AR01","参缴日期","PERSON","Date","5","公积金缴存账户的开户日期。","1:1","405","c6927c71-8dba-45a6-aa45-b3a77462c68c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5c8c5a93-c189-472c-983a-c3c4769e3c79","PF05AD01","缴费状态","PERSON","String","5","说明客户公积金当前的缴费状态。代码表如下: +1-缴交(指该账户处于活动状态) +2-封存 +3-销户","1:1","406","c6927c71-8dba-45a6-aa45-b3a77462c68c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f67ccad6-45e2-4307-b9f7-0bf7b50a3b6d","PF05AR02","初缴月份","PERSON","String","5","公积金缴存账户第一次存在余额的年月。 + “0000-00”表示已开户但暂无余额。","1:1","407","c6927c71-8dba-45a6-aa45-b3a77462c68c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b641a02a-bd14-454e-979e-b4ab2a638010","PF05AR03","缴至月份","PERSON","String","5","公积金缴存账户的公积金目前缴存到哪个月为止。 + “0000-00”表示开户后没有缴款历史。","1:1","408","c6927c71-8dba-45a6-aa45-b3a77462c68c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"26a07fe6-826d-4576-a49e-2469360d74ce","PF05AQ02","单位缴存比例","PERSON","String","5","缴费单位为客户缴存公积金的比例(%)。该数据项不包含%。","1:1","409","c6927c71-8dba-45a6-aa45-b3a77462c68c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"746401f8-1286-44fe-959d-bf042c263a8e","PF05AQ03","个人缴存比例","PERSON","String","5","客户本人缴存公积金的比例。","1:1","410","c6927c71-8dba-45a6-aa45-b3a77462c68c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7d77752c-12de-4483-808e-b00de3160e29","PF05AJ01","月缴存额","PERSON","String","5","单位和个人每月缴存的公积金之和。","1:1","411","c6927c71-8dba-45a6-aa45-b3a77462c68c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"75566e21-9bc5-419e-a594-fd0f3812adf3","PF05AQ04","缴费单位","PERSON","String","5","为客户缴存公积金的工作单位。","1:1","412","c6927c71-8dba-45a6-aa45-b3a77462c68c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1ee87400-326c-499b-9624-a5ab1d3506ac","PF05AR04","信息更新日期","PERSON","Date","5","公积金缴存账户信息的数据发生日期。","1:1","413","c6927c71-8dba-45a6-aa45-b3a77462c68c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a5d96fa5-bba5-4ebc-8de3-d703769844b5","PF05Z","标注及声明信息段","PERSON","","4","对该记录单元中数据项的异议标注内容。","0:1","414","97d00b03-542b-4404-bcaa-0a01773186e1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5e67018e-a392-4fd6-9a06-c76d8ec75c82","PF05ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)-20190130删除。","1:1","415","a5d96fa5-bba5-4ebc-8de3-d703769844b5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"edd875ac-252c-49d0-a3e4-eb7570f3c904","PF05ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:9","416","a5d96fa5-bba5-4ebc-8de3-d703769844b5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6af150eb-f294-403e-9ccb-9c0627360523","PF05ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","417","edd875ac-252c-49d0-a3e4-eb7570f3c904","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"826cd6da-748a-4269-ac3e-7b3639799ce5","PF05ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","418","edd875ac-252c-49d0-a3e4-eb7570f3c904","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cf394da5-a384-479a-8564-785452a589d7","PF05ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","419","edd875ac-252c-49d0-a3e4-eb7570f3c904","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ead91d9b-65da-4a4c-b451-7c16772ceb1f","PBS","低保救助记录","PERSON","","2","低保救助记录信息单元","1:1","420","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ed5dcff1-7323-47b3-9aed-7e33572bfdbc","PF06","低保救助记录信息单元","PERSON","","3","","0:*","421","ead91d9b-65da-4a4c-b451-7c16772ceb1f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"aadbf8fa-50c0-4219-91db-80e8bc48da33","PF06A","低保救助记录信息段","PERSON","","4","描述信息主体低保救助情况的详细记录信息。","1:1","422","ed5dcff1-7323-47b3-9aed-7e33572bfdbc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4043e946-b73f-44b8-bdc5-780348614541","PF06AD01","人员类别","PERSON","String","5","低保救助户主的人员类别。代码表如下: +1-在职职工 +2-离岗 +3-失业 +4-离退休人员 +5-三无人员 +6-居民 +7-学生","1:1","423","aadbf8fa-50c0-4219-91db-80e8bc48da33","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"25c0ed73-7adf-472f-92cb-f7b4d234fa0f","PF06AQ01","所在地","PERSON","String","5","户主所在地。","1:1","424","aadbf8fa-50c0-4219-91db-80e8bc48da33","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ff54ba79-a26f-4110-9fa1-02fe6c7cfc2a","PF06AQ02","工作单位","PERSON","String","5","户主工作单位名称。","1:1","425","aadbf8fa-50c0-4219-91db-80e8bc48da33","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0de09e1b-b32c-466e-8e79-394b93a37603","PF06AQ03","家庭月收入","PERSON","String","5","申请低保救助时填写的家庭月收入。","1:1","426","aadbf8fa-50c0-4219-91db-80e8bc48da33","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"821f2b9e-531c-424b-a00f-ba64c979a9ed","PF06AR01","申请日期","PERSON","Date","5","提交低保救助申请的日期。","1:1","427","aadbf8fa-50c0-4219-91db-80e8bc48da33","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c85a28cc-b341-4be0-956f-d115334adbd2","PF06AR02","批准日期","PERSON","Date","5","通过低保救助审批,获得低保救助资格的日期。 ","1:1","428","aadbf8fa-50c0-4219-91db-80e8bc48da33","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c6b4c9ee-f0c1-48b6-b536-b3f38ee8ba8b","PF06AR03","信息更新日期","PERSON","Date","5","低保救助信息的数据发生日期。 ","1:1","429","aadbf8fa-50c0-4219-91db-80e8bc48da33","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c1259fa6-ee28-4597-8759-80f000d48c9f","PF06Z","标注及声明信息段","PERSON","","4","对该记录单元中数据项的异议标注内容。","0:1","430","ed5dcff1-7323-47b3-9aed-7e33572bfdbc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cce9b1ba-6ad9-47ae-9764-f84d7d288a6f","PF06ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)-20190130删除。","1:1","431","c1259fa6-ee28-4597-8759-80f000d48c9f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c657e329-11f7-4778-b066-0a8afdcf552b","PF06ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:9","432","c1259fa6-ee28-4597-8759-80f000d48c9f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1f2e65f9-f2f5-479b-be5e-2c93234ac31f","PF06ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","433","c657e329-11f7-4778-b066-0a8afdcf552b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a65138b7-e27d-447c-a94e-4d9249f23c27","PF06ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","434","c657e329-11f7-4778-b066-0a8afdcf552b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f06fa3b7-11d5-4a21-9e65-7d94d23e23c2","PF06ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","435","c657e329-11f7-4778-b066-0a8afdcf552b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3bd698ed-6ddd-4482-b6ba-1205dc9ecc67","PPQ","执业资格记录","PERSON","","2","执业资格记录信息单元","1:1","436","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"91070990-08cf-4f20-9e47-7826eb7819ec","PF07","执业资格记录信息单元","PERSON","","3","","0:*","437","3bd698ed-6ddd-4482-b6ba-1205dc9ecc67","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a0199833-9b45-4da5-b92b-bdfe865edf72","PF07A","执业资格记录信息段","PERSON","","4","描述信息主体执业资格的详细记录信息。","1:1","438","91070990-08cf-4f20-9e47-7826eb7819ec","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0e2d6d37-5150-4ce0-ac4f-358fb7af9a8d","PF07AQ01","执业资格名称","PERSON","String","5","执业资格证书的名称。 ","1:1","439","a0199833-9b45-4da5-b92b-bdfe865edf72","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"74d294b9-3c0d-493f-b3da-1592c3d7f958","PF07AQ02","颁发机构","PERSON","String","5","颁发执业资格证书的机构名称。","1:1","440","a0199833-9b45-4da5-b92b-bdfe865edf72","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c1e28eda-1433-442b-871f-e847396df684","PF07AD01","等级","PERSON","String","5","说明执业资格证书的等级。代码表如下: +1-国家级机构或行业协会颁发的执业资格证书 +2-省市级机构或行业协会颁发的执业资格证书 +3-地市级机构或行业协会颁发的执业资格证书 +4-独立行业协会或制订行业标准的企业颁发的执业资格证书 +5-其他机构颁发的执业资格证书","1:1","441","a0199833-9b45-4da5-b92b-bdfe865edf72","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3ae7e885-d945-4495-a2d1-64e550420418","PF07AD02","机构所在地","PERSON","String","5","发放执业资格证书的机关所在地的行政区划代码,编码采用 GB/T2260-2007《中华人民共和国行政区划代码》的数字型代码。","1:1","442","a0199833-9b45-4da5-b92b-bdfe865edf72","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3656e6cb-b6b3-40b1-8987-8e2488e690de","PF07AR01","获得年月","PERSON","String","5","授予当事人执业资格证书的年月。","1:1","443","a0199833-9b45-4da5-b92b-bdfe865edf72","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3a30788c-1016-4e78-81a4-aeda27d7777b","PF07AR02","到期年月","PERSON","String","5","执业资格证书有效期的截至年月。 + “0000-00”表示执业资格证书终身有效。","1:1","444","a0199833-9b45-4da5-b92b-bdfe865edf72","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4e68090e-6519-489d-bd78-c2fd5502d85c","PF07AR03","吊销年月","PERSON","String","5","吊销执业资格证书的年月。 + “0000-00”表示未吊销。 ","1:1","445","a0199833-9b45-4da5-b92b-bdfe865edf72","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0c7a4952-e34c-4c9e-bf20-b17aec0df08a","PF07Z","标注及声明信息段","PERSON","","4","对该记录单元中数据项的异议标注内容。","0:1","446","91070990-08cf-4f20-9e47-7826eb7819ec","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"528178f9-a799-4aec-b4b7-b2b2a3b981ad","PF07ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)-20190130删除。","1:1","447","0c7a4952-e34c-4c9e-bf20-b17aec0df08a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f64bf32a-e5ea-4ed7-be1c-f8158c95a044","PF07ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:9","448","0c7a4952-e34c-4c9e-bf20-b17aec0df08a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"03055ac4-f591-4c52-8cc3-d6ed90e4d94c","PF07ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","449","f64bf32a-e5ea-4ed7-be1c-f8158c95a044","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a272661d-a1a1-48e2-bd48-f8189175fb09","PF07ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","450","f64bf32a-e5ea-4ed7-be1c-f8158c95a044","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4d5560d0-93d1-4fc0-8e42-4774c96c809c","PF07ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","451","f64bf32a-e5ea-4ed7-be1c-f8158c95a044","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5694d2aa-7a2f-4d13-8857-81981d356988","PAH","行政奖励记录","PERSON","","2","行政奖励记录信息单元","1:1","452","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6e557c12-0f1e-4ca0-98a9-c149d7bb4c70","PF08","行政奖励记录信息单元","PERSON","","3","","0:*","453","5694d2aa-7a2f-4d13-8857-81981d356988","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f6421e72-8558-4d7a-a81d-4d1ad9fca00f","PF08A","行政奖励记录信息段","PERSON","","4","描述信息主体执业资格的详细记录信息。","1:1","454","6e557c12-0f1e-4ca0-98a9-c149d7bb4c70","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7a3bc6cb-e15d-4651-a1b6-2d8318e88b21","PF08AQ01","奖励机构","PERSON","String","5","颁发奖励文书的机构名称。 ","1:1","455","f6421e72-8558-4d7a-a81d-4d1ad9fca00f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"16aa8086-2598-4600-9147-b501b462e439","PF08AQ02","奖励内容","PERSON","String","5","奖励机构对当事人奖励的具体内容。 ","1:1","456","f6421e72-8558-4d7a-a81d-4d1ad9fca00f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6383ff9e-c5bd-4b7f-9d7b-b59ddd887e5d","PF08AR01","生效年月","PERSON","String","5","奖励机构对当事人的奖励的生效起始年月。 + “0000-00”表示终身有效。 ","1:1","457","f6421e72-8558-4d7a-a81d-4d1ad9fca00f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"34858464-9b1c-4981-a8cc-81d1b2b93900","PF08AR02","截止年月","PERSON","String","5","奖励机构对当事人的奖励的结束年月。 + “0000-00”表示终身有效。 ","1:1","458","f6421e72-8558-4d7a-a81d-4d1ad9fca00f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4d463069-34f5-4e22-be95-f88553fd533f","PF08Z","标注及声明信息段","PERSON","","4","对该记录单元中数据项的异议标注内容。","0:1","459","6e557c12-0f1e-4ca0-98a9-c149d7bb4c70","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"34136298-57b1-4e31-b945-24817ad10b38","PF08ZS01","标注及声明个数","PERSON","String","5","该借贷账户的标注及声明个数(标注及声明个数=标注及声明类型数)-20190130删除。","1:1","460","4d463069-34f5-4e22-be95-f88553fd533f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3e9b31a7-5c2a-43fd-bedd-0d49e2af1fe9","PF08ZH","标注及声明信息","PERSON","","5","段标:后为下级元素","1:9","461","4d463069-34f5-4e22-be95-f88553fd533f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1d0b9c0c-74d3-4405-8fbb-2712cc708a8b","PF08ZD01","标注及声明类型","PERSON","String","6","说明标注及声明类型代码。 +代码表如下: +1-异议标注 +2-特殊标注 +3-本人声明 +4-机构说明 +5-征信中心说明 ","1:1","462","3e9b31a7-5c2a-43fd-bedd-0d49e2af1fe9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f5d9a4af-0285-48e8-914c-13822a062df1","PF08ZQ01","标注或声明内容","PERSON","String","6","异议标注或声明信息的内容。 ","1:1","463","3e9b31a7-5c2a-43fd-bedd-0d49e2af1fe9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"886d6623-9872-4967-895a-0e68103a841a","PF08ZR01","添加日期","PERSON","Date","6","标注或声明的添加日期。 ","1:1","464","3e9b31a7-5c2a-43fd-bedd-0d49e2af1fe9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a9b06a25-f548-4e54-a2c0-d31286dcbe5c","POS","其他标注及声明信息","PERSON","","2","标注及声明信息单元","1:1","465","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"65649441-f382-4914-a0d1-1a9de528b756","PG01","标注及声明信息单元","PERSON","","3","","0:*","466","a9b06a25-f548-4e54-a2c0-d31286dcbe5c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"886b847e-6004-4ec2-9f55-3ec155e87f71","PG010D01","对象类型","PERSON","String","4","说明其他异议标注及声明对象的类型代码。代码表如下: +1-报告 +2-数据块 ","1:1","467","65649441-f382-4914-a0d1-1a9de528b756","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bef23df7-6a02-41b2-ab09-c39e83e1cdf3","PG010D02","对象标识","PERSON","String","4","说明其他异议标注及声明对象的标识代码。代码表如下: +当对象类型为“1-报告”时,代码表为: +1-报告 +当对象类型为“2-数据块”时,代码表为: +201-身份信息 +202-婚姻信息 +203-居住信息 +204-职业信息 + 当报告内容缺失,或对信息概要、查询记录的标注及声明信息, 对应于“1-报告”。","1:1","468","65649441-f382-4914-a0d1-1a9de528b756","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"840c955a-82aa-45f1-8d73-6f71a6954a00","PG010S01","标注及声明类型个数","PERSON","String","4","说明标注及声明类型的数量。","1:1","469","65649441-f382-4914-a0d1-1a9de528b756","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"097d03c8-0b0d-4898-915e-a5def811b382","PG010H","标注及声明信息","PERSON","","4","段标:后为下级元素","1:5","470","65649441-f382-4914-a0d1-1a9de528b756","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5af82384-c2a2-444b-bcdc-61e900c6083b","PG010D03","标注及声明类型","PERSON","String","5","说明标注及声明类型代码。 +采用标注及声明类型代码表,详见附录。 ","1:1","471","097d03c8-0b0d-4898-915e-a5def811b382","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0812664c-13ed-4669-8006-9240174fa46c","PG010Q01","标注或声明内容","PERSON","String","5","异议标注或声明信息的内容。 ","1:1","472","097d03c8-0b0d-4898-915e-a5def811b382","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"571f9fe5-8811-438c-bb66-8d327051c462","PG010R01","添加日期","PERSON","Date","5","标注或声明的添加日期。 ","1:1","473","097d03c8-0b0d-4898-915e-a5def811b382","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b7581b5a-de88-4b98-875a-c2b2b5d1726f","POQ","查询记录","PERSON","","2","查询记录信息单元","1:1","474","8f2ec3e0-b39f-4f3b-8792-a78d5a607f71","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d07285ce-76c4-4ea4-8467-d5fd1c4a5769","PH01","查询记录信息单元","PERSON","","3","","0:*","475","b7581b5a-de88-4b98-875a-c2b2b5d1726f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"08062df0-5613-4bcd-94b6-39cd8819200e","PH010R01","查询日期","PERSON","Date","4","信用报告查询日期。反映了信息主体信用报告被查询的历史记录,显示何机构或何人在何时以何种理由查询过信息主体的信用报告。","1:1","476","d07285ce-76c4-4ea4-8467-d5fd1c4a5769","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dbfc0ab7-3c45-47b9-a81b-3600a9f0e2fe","PH010D01","查询机构类型","PERSON","String","4","发起查询请求的机构所属的机构类型。 +采用机构类型代码表,详见附录。","1:1","477","d07285ce-76c4-4ea4-8467-d5fd1c4a5769","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"62937027-dea4-4a9b-9576-e144419ff268","PH010Q02","查询机构","PERSON","String","4"," 如果本次查询机构与历史上的查询机构属于同一法人机构,该数据项为查询机构代码; + 如果本次查询机构与历史上的查询机构不属于同一法人机构,该数据项为两位大写随机字母(同一份报告中相同法人机构采用相同的字母)。 ","1:1","478","d07285ce-76c4-4ea4-8467-d5fd1c4a5769","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"86dfc51c-81a6-4651-a8d3-20cc06838c2d","PH010Q03","查询原因","PERSON","String","4","信用报告查询原因。","1:1","479","d07285ce-76c4-4ea4-8467-d5fd1c4a5769","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","Document","企业信用报告接口查询","COMPANY","","1","根元素","1:1","2",,"1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"eccf13b5-7115-4e26-b15a-9f8e665ecc49","EAA","报告头","COMPANY","","2","","1:1","3","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2b214d3c-8870-41bd-a1f7-ef91d155e31e","EA01","报告头信息单元","COMPANY","","3","内容包括报告编号、报告生成时间、查询请求信息、身份标识信息、异议提示信息等。","1:1","4","eccf13b5-7115-4e26-b15a-9f8e665ecc49","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e0523037-336a-41e2-b5ab-d49a27b44b68","EA01A","报告标识信息段","COMPANY","","4","描述报告编号、报告生成时间等信息。","1:1","5","2b214d3c-8870-41bd-a1f7-ef91d155e31e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a2db08a7-2a57-4509-aed4-9fc738946b06","EA01AI01","报告编号","COMPANY","String","5","标识一份企业信用报告的唯一编码,由查询日期和查询顺序号组 +成。","1:1","6","e0523037-336a-41e2-b5ab-d49a27b44b68","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c913b262-a55b-4b64-a750-c10ec97ec8c2","EA01AR01","报告生成时间","COMPANY","Date","5","生成企业信用报告的时间。","1:1","7","e0523037-336a-41e2-b5ab-d49a27b44b68","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"61a0bda3-44bc-413d-9a47-d9fab3664eaf","EA01B","查询请求信息段","COMPANY","","4","描述查询机构、查询员和查询原因信息。","1:1","8","2b214d3c-8870-41bd-a1f7-ef91d155e31e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"66aa4d5c-a6cc-4656-bc28-3d7986501bde","EA01BI01","查询机构代码","COMPANY","String","5","发起本次查询请求的机构在征信系统中的身份编码。","1:1","9","61a0bda3-44bc-413d-9a47-d9fab3664eaf","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8b521015-fc01-4b58-9ab2-9c459e786419","EA01BD02","查询原因","COMPANY","String","5","发起本次查询请求的原因。 +代码表详见附录 A。","1:1","10","61a0bda3-44bc-413d-9a47-d9fab3664eaf","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"63804753-f937-4048-86ee-acb72d8d358d","EA01C","身份标识信息段","COMPANY","","4","描述被查询企业的标识信息。","1:1","11","2b214d3c-8870-41bd-a1f7-ef91d155e31e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5d6aee11-4a84-44f0-89d5-e672e0d45d4a","EA01CQ01","企业名称","COMPANY","String","5","被查询企业的名称。","1:1","12","63804753-f937-4048-86ee-acb72d8d358d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bf256403-41b1-4019-bd67-7a49e0a115e4","EA01CS01","企业身份标识个数","COMPANY","String","5","身份标识的个数。","1:1","13","63804753-f937-4048-86ee-acb72d8d358d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e1b0b950-e8bd-4f41-8c86-9b69173efe43","EA01CH","企业身份信息","COMPANY","","5","段标:后为下级元素","0:*","14","63804753-f937-4048-86ee-acb72d8d358d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"05ff02ed-0be7-42d3-9f3a-b3ca8774ba80","EA01CD01","企业身份标识类型","COMPANY","String","6","被查询企业的身份标识类型。 +代码表详见附录 A。","1:1","15","e1b0b950-e8bd-4f41-8c86-9b69173efe43","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3930b4a6-7e92-41d4-8b8b-5927a48da693","EA01CI01","企业身份标识号码","COMPANY","String","6","被查询企业的身份标识号码。","1:1","16","e1b0b950-e8bd-4f41-8c86-9b69173efe43","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f281e49e-ee22-4a69-9f79-2195c1d1e4a2","EA01D","异议提示信息段","COMPANY","","4","描述异议提示信息。","1:1","17","2b214d3c-8870-41bd-a1f7-ef91d155e31e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ae7b0e05-2d9d-49e5-b47d-55a321063248","EA01DS01","异议标注数目","COMPANY","String","5","信息报告中异议标注的数量。 + 异议标注数目为“0”时,代表没有正在处理的异议。","1:1","18","f281e49e-ee22-4a69-9f79-2195c1d1e4a2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"652d13d9-eda6-4b92-a451-0a60f892f55f","EA01E","汇率说明信息段","COMPANY","","4","描述当前有效汇率信息。","0:1","19","2b214d3c-8870-41bd-a1f7-ef91d155e31e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"52291a42-a40e-4045-8b9b-895e5817e8f4","EA01EQ01","美元折人民币汇率","COMPANY","Double","5","当前有效的美元折人民币的汇率。","1:1","20","652d13d9-eda6-4b92-a451-0a60f892f55f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"36534f2b-950a-4fe3-8c4e-fe86294e1aa3","EA01ER01","汇率有效日期","COMPANY","String","5","当前汇率的有效日期。","1:1","21","652d13d9-eda6-4b92-a451-0a60f892f55f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6389feb1-82c1-4879-ab6d-a2110632966c","EBA","信用提示信息","COMPANY","","2","","1:1","22","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e479d751-19aa-4786-8236-52152fb383fb","EB01","信用提示信息单元","COMPANY","","3","内容包括信贷交易历史长度、信贷交易账户数量、非信贷交易账户数量、公共记录条数等信息。 ","1:1","23","6389feb1-82c1-4879-ab6d-a2110632966c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"41e04738-8e5a-4428-945d-1baacf6b2b2e","EB01A","信贷交易提示信息段","COMPANY","","4","描述信贷交易的提示信息。","0:1","24","e479d751-19aa-4786-8236-52152fb383fb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"82724a18-fce4-4a54-a0bc-deea649e89f1","EB01AR01","首次有信贷交易的年份","COMPANY","String","5","该信息主体首次发生借贷业务或担保业务的年份。 + 对于信息主体没有发生过借贷业务或担保业务,返回空值。","1:1","25","41e04738-8e5a-4428-945d-1baacf6b2b2e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8bc8d897-15d5-47c7-96d0-b46389cc10d0","EB01AR02","首次有相关还款责任的年份","COMPANY","String","5","该信息主体首次为借贷业务或担保业务承担相关还款责任的年份。 + 对于信息主体没有为借贷业务或担保业务承担过相关还款责任,返回空值。","1:1","26","41e04738-8e5a-4428-945d-1baacf6b2b2e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"72a4a73c-29d5-4b10-a9c3-dcc966290cdb","EB01AS01","发生信贷交易的机构数","COMPANY","String","5","与信息主体之间有借贷交易、担保交易的法人机构数量。","1:1","27","41e04738-8e5a-4428-945d-1baacf6b2b2e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2d1b3e47-4209-40bb-8833-2b837bca7df4","EB01AS02","当前有未结清信贷交易的机构数","COMPANY","String","5","与信息主体之间的借贷交易、担保交易仍未结清的法人机构数量。 ","1:1","28","41e04738-8e5a-4428-945d-1baacf6b2b2e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8eb69b25-2206-4248-a728-8ac87bbf3025","EB01AJ01","借贷交易余额","COMPANY","String","5","借贷交易业务的余额。 ","1:1","29","41e04738-8e5a-4428-945d-1baacf6b2b2e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ccfef69e-edcc-40a9-a9f8-c2f7d644232a","EB01AJ02","被追偿的借贷交易余额","COMPANY","String","5","当前未结清的借贷交易中,处于被追偿状态的业务余额汇总(即C1 类账户的余额汇总)。 ","1:1","30","41e04738-8e5a-4428-945d-1baacf6b2b2e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"43c83252-c57f-479c-a92f-e505069adb0d","EB01AJ03","关注类借贷交易余额","COMPANY","String","5","C1 账户以外的其他未结清借贷交易账户中,关注类借款的余额。 ","1:1","31","41e04738-8e5a-4428-945d-1baacf6b2b2e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c44c7ec9-b08b-453c-86f8-7a4bd3814be3","EB01AJ04","不良类借贷交易余额","COMPANY","String","5","C1 账户以外的其他未结清借贷交易账户中,不良类借款的余额。 ","1:1","32","41e04738-8e5a-4428-945d-1baacf6b2b2e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e97607e1-121a-4f64-88d8-20ffa777ded3","EB01AJ05","担保交易余额","COMPANY","String","5","担保交易的余额汇总。 ","1:1","33","41e04738-8e5a-4428-945d-1baacf6b2b2e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"739aab20-aaf0-46bf-9cad-a98f72cbfbea","EB01AJ06","关注类担保交易余额","COMPANY","String","5","当前未结清的担保交易账户中关注类交易的余额。 ","1:1","34","41e04738-8e5a-4428-945d-1baacf6b2b2e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2f6ffb0c-d73c-4212-8a5b-3f1225091295","EB01AJ07","不良类担保交易余额","COMPANY","String","5","当前未结清的担保交易账户中不良类交易的余额。 ","1:1","35","41e04738-8e5a-4428-945d-1baacf6b2b2e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2acaf4e1-9f4e-4b5b-a748-7c2b30c6319f","EB01B","非信贷交易及公共信息提示信息段","COMPANY","","4","描述非信贷交易以及公共记录的提示信息。","0:1","36","e479d751-19aa-4786-8236-52152fb383fb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"941fb419-fb3a-4df4-a1e1-83af6bfbe831","EB01BS01","非信贷交易账户数","COMPANY","String","5","公用事业缴费账户以及其他后付费业务的账户数汇总。","1:1","37","2acaf4e1-9f4e-4b5b-a748-7c2b30c6319f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"43a9dad6-3bdf-41c2-881a-903b57f80ac8","EB01BS02","欠税记录条数 ","COMPANY","String","5","欠税记录的条数。 ","1:1","38","2acaf4e1-9f4e-4b5b-a748-7c2b30c6319f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5fd245a7-284a-4787-a566-48a2143798c1","EB01BS03","民事判决记录条数 ","COMPANY","String","5","民事判决记录的条数。 ","1:1","39","2acaf4e1-9f4e-4b5b-a748-7c2b30c6319f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2924955b-79fe-4d4b-9b6e-b7e029cd9b99","EB01BS04","强制执行记录条数 ","COMPANY","String","5","强制执行的记录条数。 ","1:1","40","2acaf4e1-9f4e-4b5b-a748-7c2b30c6319f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0d0a014f-aea2-4591-99f0-916b4dc04031","EB01BS05","行政处罚记录条数 ","COMPANY","String","5","行政处罚的记录条数。 ","1:1","41","2acaf4e1-9f4e-4b5b-a748-7c2b30c6319f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"24ef122d-c754-4ef3-837e-55bbcd4acb32","EBB","借贷交易汇总信息","COMPANY","","2","","1:1","42","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"248ace00-66aa-448a-aef0-ed98f2fb77ed","EB02","借贷交易汇总信息单元","COMPANY","","3","内容包括借贷交易账户按是否结清、业务类型、五级分类的汇总信息,过去12个季度的季末负债汇总信息。 ","0:1","43","24ef122d-c754-4ef3-837e-55bbcd4acb32","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1c8eee58-2c6e-4a65-828b-fc63c4e77283","EB02A","未结清借贷交易汇总信息段","COMPANY","","4","描述信息主体未结清的借贷交易汇总信息。","1:1","44","248ace00-66aa-448a-aef0-ed98f2fb77ed","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b7c9684c-71d3-4a0f-9257-90601206e9ef","EB02AS01","资产处置业务账户数","COMPANY","String","5","资产处置业务的未结清账户数合计。","1:1","45","1c8eee58-2c6e-4a65-828b-fc63c4e77283","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"38f06b3b-569c-418a-b730-8e99c7a9f941","EB02AJ01","资产处置业务余额","COMPANY","String","5","资产处置业务的余额合计。","1:1","46","1c8eee58-2c6e-4a65-828b-fc63c4e77283","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d4de5b7b-9837-4785-8e4d-007e5e7caaa3","EB02AR01","最近一次处置日期","COMPANY","Date","5","指最近一次资产处置的日期。 + 当未结清的资产处置业务账户数为“0”时,返回空值。","1:1","47","1c8eee58-2c6e-4a65-828b-fc63c4e77283","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fefe92fe-722c-417a-948a-49896d31e849","EB02AS02","垫款业务账户数","COMPANY","String","5","垫款业务的未结清账户数合计。","1:1","48","1c8eee58-2c6e-4a65-828b-fc63c4e77283","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"111d3515-79d8-4d84-9dc8-22a965af5bd0","EB02AJ02","垫款业务余额","COMPANY","String","5","垫款业务的余额合计。","1:1","49","1c8eee58-2c6e-4a65-828b-fc63c4e77283","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ea423d5a-7238-4204-a6a2-d2431d1f9c21","EB02AR02","垫款最近一次还款日期","COMPANY","Date","5","指最近一次归还垫款的日期。 + 当未结清的垫款业务账户数为“0”时,返回空值。","1:1","50","1c8eee58-2c6e-4a65-828b-fc63c4e77283","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0ad8c0b8-b9c0-4fe0-931a-cae5177fddd7","EB02AJ03","逾期总额","COMPANY","String","5","逾期总额的合计。","1:1","51","1c8eee58-2c6e-4a65-828b-fc63c4e77283","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c874fb78-c229-4a6c-a152-7e55219f39c4","EB02AJ04","逾期本金","COMPANY","String","5","逾期本金的合计。","1:1","52","1c8eee58-2c6e-4a65-828b-fc63c4e77283","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6ddd61f1-8b9c-4eea-bc3b-7bc4fec8ccbb","EB02AJ05","逾期利息及其他","COMPANY","String","5","逾期利息及其他的合计。","1:1","53","1c8eee58-2c6e-4a65-828b-fc63c4e77283","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"247ab605-aefa-4ba0-aefc-cd7c83eb5e93","EB02AS03","其他借贷交易分类汇总条目数量","COMPANY","String","5","其他借贷交易分类汇总条目数量=业务类型数量乘以资产质量分类数量的值。 +此数据项用于标明以下 4 个数据项重复出现的次数。 + 如果此数据项为“0”,则后面的数据项不出现。","1:1","54","1c8eee58-2c6e-4a65-828b-fc63c4e77283","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2b0b09c7-2220-4d4f-8e4c-5061003a4869","EB02AH","其他借贷交易分类汇总信息","COMPANY","","5","段标:后为下级元素","0:20","55","1c8eee58-2c6e-4a65-828b-fc63c4e77283","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6efd7936-6036-443b-8a74-2dd236056903","EB02AD01","业务类型","COMPANY","String","6","代码表如下: +1-中长期借款 +2-短期借款 +3-循环透支 +4-贴现 +0-合计(中长期借款、短期借款、循环透支和贴现业务的汇总)","1:1","56","2b0b09c7-2220-4d4f-8e4c-5061003a4869","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"21d4e8f4-1c55-4ae0-aea3-060024cb26f0","EB02AD02","资产质量分类","COMPANY","String","6","代码表如下: +1-正常类(五级分类为正常或五级分类为“未分类”且逾期天数为0 的业务) +2-关注类(五级分类为关注或者五级分类为“未分类”且逾期 0 至90 天的业务) +3-不良类(五级分类为后四类或者五级分类为“未分类”且逾期 90天以上的业务) +0-合计(正常类、关注类和不良类的合计)","1:1","57","2b0b09c7-2220-4d4f-8e4c-5061003a4869","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8312badd-e83e-46c6-8a09-dcf5f649842c","EB02AS04","账户数","COMPANY","String","6","该业务类型与资产质量的组合分类下,未结清的账户数的合计。","1:1","58","2b0b09c7-2220-4d4f-8e4c-5061003a4869","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9a783104-703d-423b-a399-92ca25f3efd2","EB02AJ06","余额","COMPANY","String","6","该业务类型与资产质量的组合分类下,未结清的账户余额合计。","1:1","59","2b0b09c7-2220-4d4f-8e4c-5061003a4869","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"365ad28e-baff-46ae-a5b3-35869c04785e","EB02B","已结清借贷交易汇总信息段","COMPANY","","4","描述信息主体已结清的借贷交易汇总信息。","1:1","60","248ace00-66aa-448a-aef0-ed98f2fb77ed","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b4a10f92-a19a-42fa-b05f-23a8abf642b3","EB02BS01","资产处置业务账户数","COMPANY","String","5","指已结清的资产处置业务账户数。","1:1","61","365ad28e-baff-46ae-a5b3-35869c04785e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7d904588-52ea-49f8-8bbf-c37266524084","EB02BJ01","资产处置业务金额","COMPANY","String","5","指已结清的资产处置业务的债权金额合计。","1:1","62","365ad28e-baff-46ae-a5b3-35869c04785e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ac606165-d046-4994-9437-07174faa7b1a","EB02BR01","处置完成日期","COMPANY","Date","5","指已结清的资产处置业务的最后一次实际还款日期。 + 如果没有已结清资产处置业务,返回空值。","1:1","63","365ad28e-baff-46ae-a5b3-35869c04785e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f62245d3-a6b4-40cd-aaa3-69fef4fae49f","EB02BR02","结清日期","COMPANY","Date","5","指该垫款业务的结清日期。 + 如果没有垫款业务,返回空值。","1:1","64","365ad28e-baff-46ae-a5b3-35869c04785e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e924c2cb-3d61-4fbc-af47-e42a0c43f846","EB02BS02","垫款业务账户数","COMPANY","String","5","指已结清的垫款业务账户数合计。","1:1","65","365ad28e-baff-46ae-a5b3-35869c04785e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"81d981d8-d9d5-41b5-b7a6-eda458412223","EB02BJ02","垫款业务金额","COMPANY","String","5","指已结清的垫款业务的垫款金额合计。","1:1","66","365ad28e-baff-46ae-a5b3-35869c04785e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"06c27233-68e5-4284-829d-08b317698fba","EB02BS03","其他借贷交易分类汇总条目数量","COMPANY","String","5","其他借贷交易分类汇总条目数量=已结清借贷交易业务类型数量乘以资产质量分类数量的值。 +如果此数值为“0”,则后面的数据项不出现。","1:1","67","365ad28e-baff-46ae-a5b3-35869c04785e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2d679bfd-ab7b-49a3-b96c-bec5849a3e96","EB02BH","其他借贷交易分类汇总信息","COMPANY","","5","段标:后为下级元素","0:20","68","365ad28e-baff-46ae-a5b3-35869c04785e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2917ba65-ed55-4d4d-99bb-4a1e599f3417","EB02BD01","业务类型","COMPANY","String","6","代码表如下: +1-中长期借款 +2-短期借款 +3-循环透支 +4-贴现 +0-合计(中长期借款、短期借款、循环透支和贴现业务的汇总)","1:1","69","2d679bfd-ab7b-49a3-b96c-bec5849a3e96","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c860788d-8c0e-4c84-a2d5-5ff71fb571a1","EB02BD02","资产质量分类","COMPANY","String","6","代码表如下: +1-正常类(五级分类为正常或五级分类为“未分类”且逾期天数为 +0 的业务) +2-关注类(五级分类为关注或者五级分类为“未分类”且逾期 0 至 +90 天的业务) +3-不良类(五级分类为后四类或者五级分类为“未分类”且逾期 90 +天以上的业务) +0-合计(正常类、关注类和不良类的汇总)","1:1","70","2d679bfd-ab7b-49a3-b96c-bec5849a3e96","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"177b1bb0-c3cc-436e-aaa8-9372dd7e630e","EB02BS04","账户数","COMPANY","String","6","该业务类型与资产质量的组合分类下,已结清的账户数的合计。","1:1","71","2d679bfd-ab7b-49a3-b96c-bec5849a3e96","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7ccf97f0-1d8f-4e38-8fca-77113d41c6ba","EB02C","负债历史汇总信息段 ","COMPANY","","4","描述信息主体在过去 12 季度(3 年)各季度末的历史负债情况。(该信息主体名下所有借贷交易账户在历史时点的汇总信息)","0:1","72","248ace00-66aa-448a-aef0-ed98f2fb77ed","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2b4af7f1-8b56-4b74-996a-5c3e3582f699","EB02CS01","月份数","COMPANY","String","5","用于说明信用报告中包含的历史负债条目数量。(最多 12 条,最少1 条。)","1:1","73","7ccf97f0-1d8f-4e38-8fca-77113d41c6ba","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"00aaf78b-d99e-4544-b385-289baa231210","EB02CH","负债历史汇总信息","COMPANY","","5","段标:后为下级元素","0:12","74","7ccf97f0-1d8f-4e38-8fca-77113d41c6ba","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e9f11252-2c01-40c6-859b-0f7413985466","EB02CR01","月份","COMPANY","String","6","描述了信息主体近 3 年来各个季度末表内信贷余额的变化情况,反映了年度负债规模的变化趋势。用于标明以下 10 个指标的汇总时点。","1:1","75","00aaf78b-d99e-4544-b385-289baa231210","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9e5c788c-78f9-481c-a4f1-fc4a000c2486","EB02CS02","全部负债账户数","COMPANY","String","6","信息主体在汇总时点的全部借贷交易账户数合计。","1:1","76","00aaf78b-d99e-4544-b385-289baa231210","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c66cd6ac-344f-4279-8040-5b75e1a72555","EB02CJ01","全部负债余额","COMPANY","String","6","信息主体在汇总时点的全部借贷交易账户余额合计。","1:1","77","00aaf78b-d99e-4544-b385-289baa231210","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"474af636-c291-4d08-846c-670b3cdd2fcd","EB02CS03","关注类负债账户数","COMPANY","String","6","信息主体在汇总时点的关注类借贷交易账户数合计。","1:1","78","00aaf78b-d99e-4544-b385-289baa231210","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3601205f-8446-4c5a-8139-1b5d300c0897","EB02CJ02","关注类负债余额","COMPANY","String","6","信息主体在汇总时点的关注类借贷交易账户余额合计。","1:1","79","00aaf78b-d99e-4544-b385-289baa231210","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"28c10ea4-6fe8-4d86-9bc6-a203fae5c332","EB02CS04","不良类负债账户数","COMPANY","String","6","信息主体在汇总时点的不良类借贷交易账户数合计。","1:1","80","00aaf78b-d99e-4544-b385-289baa231210","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ee151078-e727-4ff7-b0c2-79f0a4c632c4","EB02CJ03","不良类负债余额","COMPANY","String","6","信息主体在汇总时点的不良类借贷交易账户余额合计。","1:1","81","00aaf78b-d99e-4544-b385-289baa231210","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c0b45342-9039-4589-aeca-1bebfc878c1a","EB02CS05","逾期账户数","COMPANY","String","6","信息主体在汇总时点的逾期借贷账户数合计。","1:1","82","00aaf78b-d99e-4544-b385-289baa231210","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5e1bd943-a8fa-4fa2-83c3-5cd65032e114","EB02CJ04","逾期总额","COMPANY","String","6","信息主体在汇总时点的逾期借贷账户的逾期金额合计。","1:1","83","00aaf78b-d99e-4544-b385-289baa231210","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5e965d38-f524-42da-a17f-607bf9879c2b","EB02CS06","逾期本金账户数","COMPANY","String","6","信息主体在汇总时点的逾期本金借贷账户数合计。","1:1","84","00aaf78b-d99e-4544-b385-289baa231210","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a21d03c7-edea-4e81-ab3f-ce284be9cc76","EB02CJ05","逾期本金","COMPANY","String","6","信息主体在汇总时点的逾期本金借贷账户的逾期本金合计。","1:1","85","00aaf78b-d99e-4544-b385-289baa231210","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f2aed86f-d2d4-424f-b46a-1f2f980bb95d","EBC","担保交易汇总信息","COMPANY","","2","","1:1","86","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"82924682-da8b-4ac5-9391-9ad8567af83b","EB03","担保交易汇总信息单元","COMPANY","","3","内容包括担保交易账户按是否结清、业务类型、五级分类的汇总信息。 ","0:1","87","f2aed86f-d2d4-424f-b46a-1f2f980bb95d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"51cd86e1-abd0-4786-811d-e8e64bf8c953","EB03A","未结清担保交易汇总信息段","COMPANY","","4","描述信息主体未结清担保交易的汇总信息。","1:1","88","82924682-da8b-4ac5-9391-9ad8567af83b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"aff43e8b-fc3f-4a75-b888-bba1e62222b5","EB03AS01","担保交易分类汇总条目数量","COMPANY","String","5","担保交易分类汇总条目数量=未结清担保交易业务类型的数量乘以资产质量分类数量的值。 + 如果此数据项为“0”,则后面的数据项不出现。","1:1","89","51cd86e1-abd0-4786-811d-e8e64bf8c953","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c2665ac8-c329-40e9-8a1e-0b74abb5da97","EB03AH","未结清担保交易汇总信息","COMPANY","","5","段标:后为下级元素","0:16","90","51cd86e1-abd0-4786-811d-e8e64bf8c953","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"05320510-451e-487d-b77c-5d0675df6478","EB03AD01","业务类型","COMPANY","String","6","说明业务类型的代码。代码表如下: +1-银行承兑汇票 +2-信用证 +3-银行保函 +9-其他","1:1","91","c2665ac8-c329-40e9-8a1e-0b74abb5da97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3985cb3e-cf9c-4874-81f0-9d062deed3c1","EB03AD02","资产质量分类","COMPANY","String","6","该业务类型的五级分类或逾期天数的状态。代码表如下: +1-正常类(五级分类为正常或五级分类为“未分类”且逾期天数为 0的业务) +2-关注类(五级分类为关注或者五级分类为“未分类”且逾期 0 至 90天的业务) +3-不良类(五级分类为后四类或者五级分类为“未分类”且逾期 90 天以上的业务) +0-合计(正常类、关注类和不良类业务类型的汇总)","1:1","92","c2665ac8-c329-40e9-8a1e-0b74abb5da97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"687fcca6-a77b-4808-9c30-ff44688324c8","EB03AS02","账户数","COMPANY","String","6","该业务类型与资产质量的组合分类下,未结清的账户数的合计。","1:1","93","c2665ac8-c329-40e9-8a1e-0b74abb5da97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b07d0d1b-911c-47e7-ba2f-df4f836f2fc1","EB03AJ01","余额","COMPANY","String","6","该业务类型与资产质量的组合分类下,未结清的账户余额合计。","1:1","94","c2665ac8-c329-40e9-8a1e-0b74abb5da97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a15e1245-c64b-4e71-8ec4-0191d1a55516","EB03B","已结清担保交易汇总信息段","COMPANY","","4","描述信息主体已结清担保交易的汇总信息。","1:1","95","82924682-da8b-4ac5-9391-9ad8567af83b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3d55bac9-b9bd-4c91-a983-5a5ee5dd7509","EB03BS01","担保交易分类汇总条目数量","COMPANY","String","5","担保交易分类汇总条目数量=已结清担保交易业务类型的数量乘以资产质量分类数量的值。 + 如果此数据项为“0”,则后面的数据项不出现。","1:1","96","a15e1245-c64b-4e71-8ec4-0191d1a55516","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"acfb2c6f-27eb-49ee-b15b-9ad473bdcfc5","EB03BH","已结清担保交易汇总信息","COMPANY","","5","段标:后为下级元素","0:16","97","a15e1245-c64b-4e71-8ec4-0191d1a55516","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9296a63c-ed87-49b2-84e6-374d85ded338","EB03BD01","业务类型","COMPANY","String","6","说明业务类型的代码。 +1-银行承兑汇票 +2-信用证 +3-银行保函 +9-其他","1:1","98","acfb2c6f-27eb-49ee-b15b-9ad473bdcfc5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"947f1f12-1df1-410a-b813-ac77d16d55cb","EB03BD02","资产质量分类","COMPANY","String","6","该业务类型的五级分类或逾期天数的状态。代码表如下: +1-正常类(五级分类为正常或五级分类为“未分类”且逾期天数为 0 +的业务) +2-关注类(五级分类为关注或者五级分类为“未分类”且逾期 0 至 90天的业务) +3-不良类(五级分类为后四类或者五级分类为“未分类”且逾期 90天以上的业务) +0-合计(正常类、关注类和不良类业务类型的汇总)","1:1","99","acfb2c6f-27eb-49ee-b15b-9ad473bdcfc5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b6c6943a-a686-45df-9710-e6ab7fa86ff0","EB03BS02","账户数","COMPANY","String","6","该业务类型与资产质量的组合分类下,已结清的账户数的合计。","1:1","100","acfb2c6f-27eb-49ee-b15b-9ad473bdcfc5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"14775c25-cb26-4071-a7e6-17bb320691c5","EBD","授信协议汇总信息","COMPANY","","2","","1:1","101","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"76d7a83d-8664-40ab-af8c-92385541a809","EB04","授信协议汇总信息记录","COMPANY","","3","内容包括非循环额度、循环额度及其使用情况汇总信息。 ","0:1","102","14775c25-cb26-4071-a7e6-17bb320691c5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"50a72169-a9ca-45e3-bf42-0c02da0b63a5","EB040J01","非循环信用额度合计","COMPANY","String","4","指不可循环使用的授信额度合计。","1:1","103","76d7a83d-8664-40ab-af8c-92385541a809","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"544e2772-07be-4937-a1ec-895ee1eb5095","EB040J02","已使用的非循环信用额度合计","COMPANY","String","4","指非循环信用额度已使用部分的合计。","1:1","104","76d7a83d-8664-40ab-af8c-92385541a809","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c1e15405-5325-45ef-9d5f-73869cf36f75","EB040J03","剩余可用的非循环额度合计","COMPANY","String","4","指非循环信用额度剩余可用部分的合计。","1:1","105","76d7a83d-8664-40ab-af8c-92385541a809","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4502dbb5-e19a-4e03-891a-af1fc020c084","EB040J04","循环信用额度合计","COMPANY","String","4","指可循环使用的授信额度合计。","1:1","106","76d7a83d-8664-40ab-af8c-92385541a809","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9c58e2fa-df95-4564-97d8-7c38e2d29266","EB040J05","已使用的循环信用额度合计","COMPANY","String","4","指循环信用额度已使用部分的合计。","1:1","107","76d7a83d-8664-40ab-af8c-92385541a809","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"205f288d-176f-413d-8610-a28dbc92a752","EB040J06","剩余可用的循环额度合计","COMPANY","String","4","指循环信用额度剩余可用部分的合计。","1:1","108","76d7a83d-8664-40ab-af8c-92385541a809","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"27325363-fdf3-4080-b7d0-6fcc1b32a6cd","EB040D01","是否包含授信限额","COMPANY","String","4","代码表如下: +0-否(汇总中不包含授信限额的情况) +1-是(汇总中包含授信限额的情况)","1:1","109","76d7a83d-8664-40ab-af8c-92385541a809","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e78997c2-11ce-4a28-8c25-b3c19a949f45","EBE","相关还款责任汇总信息","COMPANY","","2","","1:1","110","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"08a49730-741f-4616-83be-827173278e33","EB05","相关还款责任汇总信息单元","COMPANY","","3","内容包括为其他借款人的借贷交易、担保交易承担的相关还款责任的汇总信息。 ","0:1","111","e78997c2-11ce-4a28-8c25-b3c19a949f45","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ac45e3fa-4be0-4dcb-ab14-ade7f098727f","EB05A","借贷交易相关还款责任汇总信息段","COMPANY","","4","描述信息主体为其他借款人的未结清借贷交易承担的相关还款责任的 +汇总信息。","0:1","112","08a49730-741f-4616-83be-827173278e33","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4af86d0d-b96b-4b80-8940-92b44e3286e9","EB05AS01","还款责任类型数量","COMPANY","String","5","责任类型的数量。","1:1","113","ac45e3fa-4be0-4dcb-ab14-ade7f098727f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e52dc494-20a6-4153-8ff0-fb3448c51de0","EB05AH","借贷交易相关还款责任汇总信息","COMPANY","","5","段标:后为下级元素","0:4","114","ac45e3fa-4be0-4dcb-ab14-ade7f098727f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bb5f606a-1488-47ef-b284-3d0a780aa69b","EB05AD01","责任类型","COMPANY","String","6","说明相关还款责任类型的代码。代码表如下: +1-个人信贷交易共同还款人/共同债务人 +2-保证人 +9-其他 +0-合计(如上情况的汇总)","1:1","115","e52dc494-20a6-4153-8ff0-fb3448c51de0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"92c7bd83-dfe0-4939-badb-760028419a69","EB05AJ01","被追偿账户的还款责任金额","COMPANY","String","6","该责任类型下,信息主体为其他借款人未结清的 C1 账户承担的还款责任金额合计。","1:1","116","e52dc494-20a6-4153-8ff0-fb3448c51de0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"efa8f62e-6a14-47e6-9ff8-5a3428778813","EB05AS02","被追偿账户数","COMPANY","String","6","该责任类型下,信息主体承担还款责任的其他借款人未结清 C1 账户的数量。","1:1","117","e52dc494-20a6-4153-8ff0-fb3448c51de0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"775a9cc9-381e-4d5f-884e-70790bfcdef1","EB05AJ02","被追偿账户余额","COMPANY","String","6","该责任类型下,信息主体承担还款责任的其他借款人 C1 账户的余额合计。","1:1","118","e52dc494-20a6-4153-8ff0-fb3448c51de0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8991d29c-8c09-424e-8306-14381f440139","EB05AJ03","其他借贷交易的还款责任金额","COMPANY","String","6","该责任类型下,信息主体为其他借款人未结清的其他借贷交易账户承担的还款责任金额合计。","1:1","119","e52dc494-20a6-4153-8ff0-fb3448c51de0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ceb26b4e-0d11-4478-8604-5c40636164f5","EB05AS03","其他借贷交易账户数","COMPANY","String","6","该责任类型下,信息主体承担还款责任的其他借款人未结清的其他借贷交易账户的数量。","1:1","120","e52dc494-20a6-4153-8ff0-fb3448c51de0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3bba93a9-cf7d-4ba6-ab35-c52f5935a567","EB05AJ04","其他借贷交易账户余额","COMPANY","String","6","该责任类型下,信息主体承担还款责任的其他借款人其他借贷交易账户的余额合计。","1:1","121","e52dc494-20a6-4153-8ff0-fb3448c51de0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"67b1f43c-f3db-49eb-b4bb-2e0b329958b3","EB05AJ05","其他借贷交易账户关注类余额","COMPANY","String","6","该责任类型下,信息主体承担还款责任的其他借款人其他借贷交易账户的关注类余额合计。","1:1","122","e52dc494-20a6-4153-8ff0-fb3448c51de0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"df8fb75c-962b-4d87-acb6-6d1068a9c86e","EB05AJ06","其他借贷交易账户不良类余额","COMPANY","String","6","该责任类型下,信息主体承担还款责任的其他借款人其他借贷交易账户的不良类余额合计。","1:1","123","e52dc494-20a6-4153-8ff0-fb3448c51de0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9d36de7a-38f6-4bf0-a9f5-478132c19e75","EB05B","担保交易相关还款责任汇总信息段","COMPANY","","4","描述信息主体为其他借款人的未结清担保交易承担的的相关还款责任 +的汇总信息。","0:1","124","08a49730-741f-4616-83be-827173278e33","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4a0155f1-55c8-4d48-b1fe-99eaf0ed1798","EB05BS01","还款责任类型数量","COMPANY","String","5","责任类型的数量。","1:1","125","9d36de7a-38f6-4bf0-a9f5-478132c19e75","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"23c96312-3f6a-4aaa-a8e9-3658d7692c0d","EB05BH","担保交易相关还款责任汇总信息","COMPANY","","5","说明相关还款责任人类型的代码。代码表如下: +1-个人担保交易的共同债务人 +2-反担保人 +9-其他 +0-合计(如上情况的汇总)","0:4","126","9d36de7a-38f6-4bf0-a9f5-478132c19e75","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"de47a77d-07bb-4e23-a72f-54908dec3d34","EB05BD01","责任类型","COMPANY","String","6","该责任类型下,信息主体为其他债务人未结清的担保交易承担的还款责任金额。","1:1","127","23c96312-3f6a-4aaa-a8e9-3658d7692c0d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4e16c29b-0519-47c3-84d5-f007912c25ee","EB05BJ01","还款责任金额","COMPANY","String","6","该责任类型下,信息主体为其他债务人未结清的担保交易承担的还款责任金额。","1:1","128","23c96312-3f6a-4aaa-a8e9-3658d7692c0d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5a8d42db-b667-4b86-a39e-340665eb49e1","EB05BS02","账户数","COMPANY","String","6","该责任类型下,信息主体承担还款责任的其他债务人担保交易的账户数合计。","1:1","129","23c96312-3f6a-4aaa-a8e9-3658d7692c0d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"453f0248-6d25-40f0-acf8-034f18b919c2","EB05BJ02","余额","COMPANY","String","6","该责任类型下,信息主体承担还款责任的其他债务人担保交易账户的余额合计。","1:1","130","23c96312-3f6a-4aaa-a8e9-3658d7692c0d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a54d6ee3-89b3-4d41-866a-45850d0efefa","EB05BJ03","关注类余额","COMPANY","String","6","该责任类型下,信息主体承担还款责任的其他债务人担保交易账户务的关注类余额合计。","1:1","131","23c96312-3f6a-4aaa-a8e9-3658d7692c0d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b43c5829-15e6-42dc-aa1a-bf8835855ea5","EB05BJ04","不良类余额","COMPANY","String","6","该责任类型下,信息主体承担还款责任的其他债务人担保交易账户的不良类余额合计。","1:1","132","23c96312-3f6a-4aaa-a8e9-3658d7692c0d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ba0b6258-c08f-440d-ab9a-989c0a75aa48","ECA","基本信息","COMPANY","","2","","1:1","133","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"820193eb-f318-48e0-a7bb-c26a2c2a1fe2","EC01","基本概况信息单元","COMPANY","","3","内容包括经济类型、组织机构类型、企业规模、所属行业、登记地址、成立年份、登记证书有效截止日期、办公/经营地址和存续状态等。","0:1","134","ba0b6258-c08f-440d-ab9a-989c0a75aa48","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f0b6bf1d-0391-4d15-b457-6cad6e4e73f8","EC010D01","经济类型","COMPANY","String","4","采用国标《经济类型分类与代码》(GB/T12402―2000)中规定的代码 +表,详见附录 A。","1:1","135","820193eb-f318-48e0-a7bb-c26a2c2a1fe2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3a966fe2-5a38-49d8-8aae-a16e0b1d5e2a","EC010D02","组织机构类型","COMPANY","String","4","参照国标《组织机构类型》(GB/T 20091-2006),详见附录 A。","1:1","136","820193eb-f318-48e0-a7bb-c26a2c2a1fe2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cff840d1-e375-4772-b107-e508b5315e2d","EC010D03","企业规模","COMPANY","String","4","依据工业和信息化部、国家统计局、发展改革委、财政部联合印发的《中小企业划型标准规定》(工信部联企业〔2011〕300 号)划分的企业规模。 +代码表详见附录 A。","1:1","137","820193eb-f318-48e0-a7bb-c26a2c2a1fe2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7fac587b-6545-4200-8c7c-ff25f86195c7","EC010D04","所属行业","COMPANY","String","4","参照国标《国民经济行业分类》(GB/T4754―2017)规定的代码表,细化到小类,详见附录 A。","1:1","138","820193eb-f318-48e0-a7bb-c26a2c2a1fe2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"30e1f053-ff4d-4f76-a68f-ae0b15a3f392","EC010Q01","登记地址","COMPANY","String","4","企业在境内的登记注册地址。","1:1","139","820193eb-f318-48e0-a7bb-c26a2c2a1fe2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"50b1693d-f214-4dc0-8e33-df6965d077a7","EC010R01","成立年份","COMPANY","String","4","机构成立的日期。 ","1:1","140","820193eb-f318-48e0-a7bb-c26a2c2a1fe2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"511bb0e7-4fe4-45e1-9137-e1e05abb5b6b","EC010R02","登记证书有效截止日期","COMPANY","Date","4","法定登记机关颁发的登记证书上记载的有效期最终到期日。 + 当返回值为“2099-12-31”时,代表“长期有效”。","1:1","141","820193eb-f318-48e0-a7bb-c26a2c2a1fe2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"497b03ec-9b57-4808-9de8-a749f6dc8f17","EC010Q02","办公/经营地址","COMPANY","String","4"," 对于境内企业,指企业在境内的办公/经营的所在地; + 对于境外企业,统一返回空值。 ","1:1","142","820193eb-f318-48e0-a7bb-c26a2c2a1fe2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"260fd0f8-2717-4710-9b42-a0abb02b4023","EC010D05","存续状态","COMPANY","String","4","说明企业当前存续状态的代码。代码表如下: +1-正常(处于正常经营状态) +2-注销 +9-其他 +X-未知(无法获得企业存续状态的情况) ","1:1","143","820193eb-f318-48e0-a7bb-c26a2c2a1fe2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1505e687-5c34-4228-8e6e-d3a8a044e92e","EC02","注册资本及主要出资人信息单元","COMPANY","","3","内容包括注册资本,以及出资比例5%以上的主要出资人身份标识和出资比例信息等。","0:1","144","ba0b6258-c08f-440d-ab9a-989c0a75aa48","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"11a42e6c-5eaf-4174-9cec-9b298e65c394","EC020J01","注册资本(折人民币合计)","COMPANY","String","4"," 对于企业,指注册资本; + 对于事业单位、民办非企业,指开办资金; + 对于社会团体,指活动资金; + 对于基金会,指原始基金数额; + 对于合伙企业和个人独资企业,指出资额。","1:1","145","1505e687-5c34-4228-8e6e-d3a8a044e92e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"374fd65f-215d-4a0b-987a-d89e57a56dc0","EC020S01","主要出资人个数","COMPANY","String","4","持股或出资比例占比 5%以上的自然人和组织机构的个数。","1:1","146","1505e687-5c34-4228-8e6e-d3a8a044e92e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ded736e4-62a6-4f88-9faa-36781a7a3221","EC020H","出资人信息","COMPANY","","4","段标:后为下级元素","0:*","147","1505e687-5c34-4228-8e6e-d3a8a044e92e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"90bb3d02-9840-4639-8e2e-3c9f4be72c77","EC020D01","出资人类型","COMPANY","String","5","代码表如下: +10-股东 +21-普通合伙人 +22-有限合伙人 +30-个体工商户参与经营者 ","1:1","148","ded736e4-62a6-4f88-9faa-36781a7a3221","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"87648334-6e95-4e1f-bfc1-a730d67775c2","EC020D02","出资人身份类别","COMPANY","String","5","代码表如下: +1-自然人 +2-组织机构 ","1:1","149","ded736e4-62a6-4f88-9faa-36781a7a3221","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"19644201-3c79-4719-a80f-425f92f58586","EC020Q01","出资人名称","COMPANY","String","5"," 对于自然人,指姓名。 + 对于组织机构,指登记注册名称。","1:1","150","ded736e4-62a6-4f88-9faa-36781a7a3221","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0082871c-df25-43a5-8b5d-e202c7ea5709","EC020D03","出资人身份标识类型","COMPANY","String","5"," 对于自然人,指个人证件类型代码,代码表见附录 A。 + 对于组织机构,指企业身份标识类型,代码表见附录 A。","1:1","151","ded736e4-62a6-4f88-9faa-36781a7a3221","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ee6f034d-266f-4a09-b5e3-dda2dbff7d97","EC020I01","出资人身份标识号码","COMPANY","String","5"," 对于自然人,指个人证件号码。 + 对于组织机构,指企业身份标识号码。","1:1","152","ded736e4-62a6-4f88-9faa-36781a7a3221","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b6a18773-fef0-4520-95d6-25b9c08539eb","EC020Q02","出资比例","COMPANY","Double","5","计量单位“%”。","1:1","153","ded736e4-62a6-4f88-9faa-36781a7a3221","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e8493b1f-2931-425e-8509-7ebbc017733e","EC020R01","更新日期","COMPANY","Date","4","信息在数据源系统中的最近一次更新的日期。","1:1","154","ded736e4-62a6-4f88-9faa-36781a7a3221","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0da56429-ccbf-465a-a1d7-97f58d92a7e8","EC03","主要组成人员信息单元","COMPANY","","3","内容包括企业法定代表人、总经理、董事、监事等主要高级管理人员的身份标识信息等。 ","0:1","155","ba0b6258-c08f-440d-ab9a-989c0a75aa48","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"64f656c1-5e23-4208-91bf-3c6be06423d9","EC030S01","主要组成人员个数","COMPANY","String","4","主要组成人员指企业的法定代表人、董事长、监事长以及高级管 +理人员。","1:1","156","0da56429-ccbf-465a-a1d7-97f58d92a7e8","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d71af4fb-391a-47de-954c-44d790ad7389","EC030H","主要组成人员信息","COMPANY","","4","段标:后为下级元素","0:*","157","0da56429-ccbf-465a-a1d7-97f58d92a7e8","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b627ceae-000a-4b5d-92b6-39e890ffcb84","EC030Q01","姓名","COMPANY","String","5"," 对于中国人,指中文名; + 对于外国人,指英文名。","1:1","158","d71af4fb-391a-47de-954c-44d790ad7389","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"db95dccf-a6a1-42c8-981e-3fdff968e241","EC030D01","证件类型","COMPANY","String","5","代码表详见附录 A“个人证件类型代码表”。","1:1","159","d71af4fb-391a-47de-954c-44d790ad7389","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"eb9f5e13-8257-4522-9d16-f779f7a26723","EC030I01","证件号码","COMPANY","String","5","主要组成人员的证件号码。 ","1:1","160","d71af4fb-391a-47de-954c-44d790ad7389","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"05c269c4-7689-4313-8cd3-f5edfbdbaa19","EC030D02","职位","COMPANY","String","5","说明组成人员在企业担任职务的代码。代码表如下: +1-法定代表人/非法人组织负责人 +2-总经理/主要负责人 +3-财务负责人 +4-董事长/执行董事 +5-监事长/执行监事 +9-其他董事、监事及高级管理人员","1:1","161","d71af4fb-391a-47de-954c-44d790ad7389","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b7a3841a-f021-4904-87be-a2b635310080","EC030R01","更新日期","COMPANY","Date","4","信息在数据源系统中的最近一次更新的日期。","1:1","162","d71af4fb-391a-47de-954c-44d790ad7389","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9b3d5c02-e106-49e0-ae3b-b9c9e56b3496","EC04","上级机构信息单元","COMPANY","","3","内容包括上级机构的身份标识信息等。","0:1","163","ba0b6258-c08f-440d-ab9a-989c0a75aa48","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c0bf8b93-edfc-4c21-b3c0-81bf04079365","EC040D01","上级机构类型","COMPANY","String","4","代码表如下: +1-集团母公司 +2-总部机构","1:1","164","9b3d5c02-e106-49e0-ae3b-b9c9e56b3496","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"90463041-0387-4201-ad55-ddd99cb8dca3","EC040Q01","上级机构名称","COMPANY","String","4","上级机构在登记机关依法登记的名称。","1:1","165","9b3d5c02-e106-49e0-ae3b-b9c9e56b3496","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b01711d2-46d4-4457-9d6a-486a776f15ff","EC040D02","上级机构身份标识类型","COMPANY","String","4","上级机构的身份标识类型,代码表详见附录 A“企业身份标识类型代码表”。","1:1","166","9b3d5c02-e106-49e0-ae3b-b9c9e56b3496","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"16971e9a-ae1e-4997-bb9b-f7ebff3222a9","EC040I01","上级机构身份标识号码","COMPANY","String","4","上级机构的身份标识项号码。","1:1","167","9b3d5c02-e106-49e0-ae3b-b9c9e56b3496","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ab97d735-c71a-405b-a3f8-1cab3a1982f1","EC040R01","更新日期","COMPANY","Date","4","信息在数据源系统中的最近一次更新的日期。","1:1","168","9b3d5c02-e106-49e0-ae3b-b9c9e56b3496","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b4844745-380b-499b-a547-473d7f1cce0a","EC05","实际控制人信息单元","COMPANY","","3","内容包括实际控制人的身份标识信息等。","0:1","169","ba0b6258-c08f-440d-ab9a-989c0a75aa48","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5feb0980-72c0-41e5-a186-687150f234ff","EC050S01","实际控制人个数","COMPANY","String","4","通过投资关系、协议或者其他安排,能够实际支配公司行为的自然人或者组织机构的个数。","1:1","170","b4844745-380b-499b-a547-473d7f1cce0a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3aac0f3b-ef8c-4993-885c-6375d558b4ca","EC050H","实际控制人信息","COMPANY","","4","段标:后为下级元素","0:*","171","b4844745-380b-499b-a547-473d7f1cce0a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"037853cb-6e19-46f8-bd55-0e64f62d0c43","EC050D01","实际控制人身份类型","COMPANY","String","5","实际控制人身份类型。代码表如下: +1-自然人 +2-组织机构","1:1","172","3aac0f3b-ef8c-4993-885c-6375d558b4ca","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"eda23f73-9ab2-4f4c-8892-ccf7f177bb39","EC050Q01","实际控制人名称","COMPANY","String","5"," 对于自然人,指姓名; + 对于组织机构,指登记注册名称。","1:1","173","3aac0f3b-ef8c-4993-885c-6375d558b4ca","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a917d3fb-d4ad-4bc4-967e-7b7f34d130df","EC050D02","实际控制人身份标识类型","COMPANY","String","5"," 对于自然人,指个人证件类型代码,代码表详见附录 A; + 对于组织机构,指企业身份标识类型,代码表详见附录 A。","1:1","174","3aac0f3b-ef8c-4993-885c-6375d558b4ca","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a6a19c26-9c03-4682-8982-378087521bad","EC050I01","实际控制人身份标识号码","COMPANY","String","5"," 对于自然人,指个人证件号码; + 对于组织机构,指企业身份标识号码。","1:1","175","3aac0f3b-ef8c-4993-885c-6375d558b4ca","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"07a7d62b-b7f6-46cf-a17b-179f897c9a62","EC050R01","更新日期","COMPANY","Date","4","信息在数据源系统中的最近一次更新的日期。","1:1","176","3aac0f3b-ef8c-4993-885c-6375d558b4ca","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"766e7938-a452-4d5b-aa32-a8641d4d1b89","EDA","借贷账户信息","COMPANY","","2","","1:1","177","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"754bc64e-9890-43ea-a8e3-56a7ef71656a","ED01","借贷账户信息单元","COMPANY","","3","每个借贷账户对应一个信息单元。 +每个信息单元的内容包括:账户的基本情况、最新表现、历史还款表现等信息。","0:*","178","766e7938-a452-4d5b-aa32-a8641d4d1b89","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"15b3ecde-8eac-4afc-acb6-750202da20bb","ED01A","基本信息段","COMPANY","","4","描述账户编号、账户类型、借款期限、业务管理机构、借款金额 +(信用额度)、业务种类、担保方式以及账户活动状态等信息。","1:1","179","754bc64e-9890-43ea-a8e3-56a7ef71656a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2b5d48f2-b233-495a-8652-20fa93f026c9","ED01AI01","借贷账户编号","COMPANY","String","5","征信系统分配给该账户在本报告中的唯一编号。","1:1","180","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f40ef5ba-a18a-49ea-a21a-b584fed0dd8d","ED01AD01","账户活动状态","COMPANY","String","5","代码表如下: +1-未结清 +2-已结清 已结清时,基本信息段中的“担保方式”、“发放形式”、“其他还款保证方式”、“授信协议编号”、“信息报告日期”的数据项标签返回空值。","1:1","181","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2cfb2955-8019-4c87-a9ca-f1501e2e2ff9","ED01AD02","借贷账户类型","COMPANY","String","5","代码表如下: +D1-非循环贷账户 +D2-贴现账户 +R1-循环贷账户 +R4-循环额度下分账户 +C1-催收账户","1:1","182","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d279744f-2b82-4a97-9a82-43a693a85225","ED01AD03","借款期限","COMPANY","Date","5","代码表如下: +10-短期(借款期限 1 年以内(含 1 年)的借款) +20-中期(借款期限 1 年以上 5 年(含)以下的借款) +30-长期(借款期限 5 年(不含)以上的借款)","0:1","183","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"72ce9675-471a-48cf-bbb3-8328a0a46c04","ED01AD04","业务管理机构类型","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型 +代码,代码表详见附录 A。","1:1","184","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"504b7ad2-1293-4544-b467-2f4e8029d78a","ED01AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","185","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c41c47c0-b553-423a-83e1-940f93eef2e0","ED01AI03","授信协议编号","COMPANY","String","5","征信系统为该账户对应的授信协议在本报告中分配的唯一编号,用于关联与账户相关的授信协议。 + 对于没有账户对应的授信协议,返回空值。","0:1","186","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2636d225-d498-420f-bf68-27259c645be8","ED01AD05","借贷业务种类大类","COMPANY","String","5","代码表如下: +10-企业债 +11-贷款 +12-贸易融资 +13-保理融资 +14-融资租赁 +15-证券类融资 +16-透支 +21-票据贴现 +31-黄金借贷 +41-垫款 +51-资产处置","1:1","187","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"341edcf3-a617-4f6d-923b-7c1c1340c34c","ED01AD06","借贷业务种类细分","COMPANY","String","5","代码表详见附录 A。","1:1","188","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b4bfe283-6ace-4682-b4cd-d91f80fbb26f","ED01AR01","开户日期","COMPANY","Date","5"," 对于 D1/R1/R4 类账户,指首次放款日期。 + 对于 D2 账户,指建立账户的日期。 + 对于 C1 账户,指接收债权的日期。","1:1","189","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"eb81a08e-1a41-468e-8175-09bb46158699","ED01AD07","币种","COMPANY","String","5","账户开立和结算实际币种代码。 +采用国标《表示货币和资金的代码》(GB/T 12406-2008)规定的 3 位字母型代码表,代码表详见附录 A。","1:1","190","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1cc8dd72-c0d7-4a8f-ab6e-e82c69e32ba4","ED01AJ01","借款金额","COMPANY","String","5"," 对于 D1/R4/类账户,指该账户下借款人累计借出的资金总额; + 对于 D2 账户,指贴现金额; + 对于 C1 账户,指接收的债权金额。","0:1","191","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0ec87f2a-7e01-451d-a9d7-320a000b2c02","ED01AJ02","信用额度","COMPANY","String","5","仅适用于 R1 账户。 +指该账户对应的循环授信合同上的循环可用额度。","0:1","192","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9839ce22-e65d-42f9-8524-2e41b9b11ec2","ED01AR02","到期日期","COMPANY","Date","5"," 对于 D1/R4 类账户,指约定的最后还款日期,贷款发生缩期、展期时,本数据项按照实际情况调整; + 对于 D2 账户,指贴现到期日; + 对于 R1 账户,指信用额度的有效期截止日。 + 当该数据项为“2099-12-31”时,代表“长期有效”。","0:1","193","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"de6dc551-a1cb-4017-a527-3b84a9e20120","ED01AD08","担保方式","COMPANY","String","5","代码表如下: +0-信用/免担保 +1-保证 +2-质押 +3-抵押 +4-组合","0:1","194","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a10fa351-d576-4e47-b6d8-f97ebe3e3ef0","ED01AD09","其他还款保证方式","COMPANY","String","5","代码表如下: +0-无 +1-保证金 +2-第三方付款承诺 +9-其他","0:1","195","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9332bbfc-79e7-4533-85aa-2ed7561c8396","ED01AD10","发放形式","COMPANY","String","5","代码表如下: + 对于贷款业务: +1-新增 +2-收回再贷 +3-借新还旧 +4-资产重组 +5-其他机构转入 + 对于其他业务: +9-其他","0:1","196","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3edee0ae-8aff-4ae3-b3c9-eefba0d0059e","ED01AD11","共同借款标识","COMPANY","String","5","代码表如下: +0-无共同借款人 +1-有共同借款人,且本报告主体为主借款人 +2-有共同借款人,且本报告主体为从借款人","1:1","197","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"29c0e306-37d4-460a-8507-baaf55235ace","ED01AR03","关闭日期","COMPANY","Date","5"," 对于 D1/R4/C1 类账户,指贷款结清的日期; + 对于 D2 账户,指票据贴现或票据承兑的日期; + 对于 R1 账户,指额度到期且贷款结清的日期。 + 对于未结清账户,返回空值。","1:1","198","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"72573975-72b2-4314-bf0b-d78d31bcdf03","ED01AR04","信息报告日期","COMPANY","Date","5","本条信息单元所包含信息内容的有效截止日期。","1:1","199","15b3ecde-8eac-4afc-acb6-750202da20bb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"555c93fc-1fa5-41e7-ad35-2558d6d88fd3","ED01B","还款表现信息段","COMPANY","","4","描述借贷交易账户自开立以来的负债及还款表现相关信息。","1:1","200","754bc64e-9890-43ea-a8e3-56a7ef71656a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d3a01cde-b956-44da-83cc-2bcebdb0ad83","ED01BS01","还款表现记录条数","COMPANY","String","5","该借贷账户自开立以来的还款表现记录条数。","1:1","201","555c93fc-1fa5-41e7-ad35-2558d6d88fd3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c09efe9e-4f9d-4c90-84e0-20532a7614a0","ED01BH","还款表现信息","COMPANY","","5","段标:后为下级元素","0:*","202","555c93fc-1fa5-41e7-ad35-2558d6d88fd3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e70a414d-d1ad-4454-aeb0-7924e8a73a31","ED01BR01","信息报告日期","COMPANY","Date","6","本条还款表现记录所包含信息内容的有效截止日期。 ","1:1","203","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0d82702e-5c7b-452b-9277-8816cc526a58","ED01BJ01","余额","COMPANY","String","6"," 对于 D1/R1/R4 类账户,指本金; + 对于 D2 账户,指贴现金额; + 对于 C1 类账户,指仍需要归还的全部欠款, 包含利息。","1:1","204","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6509bccd-37fe-4afa-af97-468002e15adf","ED01BR02","余额变化日期","COMPANY","Date","6","指余额发生变化的日期。","1:1","205","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"861da785-ab51-4d86-8b68-f48ccadbd705","ED01BD01","五级分类","COMPANY","String","6","代码表详见附录 A。","1:1","206","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"53182dc5-9f11-4928-acc5-f851f90c7596","ED01BR03","五级分类认定日期","COMPANY","Date","6","最近一次认定五级分类的日期。","1:1","207","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7759985a-3b70-44e4-a63a-f16a2d13df8f","ED01BR04","最近一次实际还款日期","COMPANY","Date","6","借款人最近一次实际还款的日期。","1:1","208","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6730d7d9-50bc-46f0-a14e-6c00f133aeb8","ED01BJ02","最近一次实际还款总额","COMPANY","String","6","借款人在最近一次实际还款日的还款总额。","1:1","209","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2f10539f-5c70-4697-8ff5-ff9fe434232a","ED01BD02","最近一次还款形式","COMPANY","String","6","代码表如下: +10-正常还款 +21-担保代偿 +22-政策性还款 +31-资产重组 +32-减免 +41-债权转让 +42-债权置换 +43-资产剥离 +51-债转股 +52-以资抵债 +61-诉讼追偿 +62-破产清偿 +63-委托处置 +99-其他","1:1","210","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3f3e1683-59be-45c1-8eba-c89f92b7b495","ED01BR05","最近一次约定还款日期","COMPANY","Date","6","还款计划表中在信息报告日期之前最晚的约定还款日。","0:1","211","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"916d5c2a-58b2-4499-94e7-ef0b2a20e262","ED01BJ03","最近一次应还总额","COMPANY","String","6","按照还款计划表,借款人应在最近一次约定还款日归还的总额。","0:1","212","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"51b5e3dd-ccb8-46e7-9074-a7e5f93069ae","ED01BJ04","逾期总额","COMPANY","String","6","指截至信息报告日期,当前应还未还的欠款金额合计,包括本金、利息各项费用等。","0:1","213","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"762b7680-a526-4dc5-90ac-56a12ea9ead1","ED01BJ05","逾期本金","COMPANY","String","6","指截至信息报告日期,当前应还未还的欠款本金。","0:1","214","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"03503c26-5212-4f76-bf4e-c1d5972728bf","ED01BS02","逾期月数","COMPANY","String","6","指截至信息报告日期,逾期持续的月数。","0:1","215","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"abd10d92-dc5d-4940-83a2-4efbc0888c8e","ED01BS03","剩余还款月数","COMPANY","String","6","从当前时点至最晚一笔借据到期日所在月(含)有多少个月仍需归还欠款。","0:1","216","c09efe9e-4f9d-4c90-84e0-20532a7614a0","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3f950e5f-2d68-49f3-91f7-d64141731dab","ED01C","特定交易信息段","COMPANY","","4","描述展期特定交易信息。 +仅当借贷账户未结清且有特定交易时,才返回此段。","0:1","217","754bc64e-9890-43ea-a8e3-56a7ef71656a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"39b51086-d024-47d6-9c8f-8a915dd77091","ED01CS01","特定交易个数","COMPANY","String","5","特定交易的个数。","1:1","218","3f950e5f-2d68-49f3-91f7-d64141731dab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3cc7fef0-8c4b-4400-85a9-ea1526d1a97f","ED01CH","特定交易信息","COMPANY","","5","段标:后为下级元素","0:*","219","3f950e5f-2d68-49f3-91f7-d64141731dab","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ea795a80-c3bf-4490-8c0c-7d5aaf2f60b8","ED01CD01","交易类型","COMPANY","String","6","代码表如下: +01-展期 +02-提前还款","1:1","220","3cc7fef0-8c4b-4400-85a9-ea1526d1a97f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2a7fc3dc-3a62-4590-926d-4dfa8906405f","ED01CR01","交易日期","COMPANY","Date","6","指特定交易发生的日期。","1:1","221","3cc7fef0-8c4b-4400-85a9-ea1526d1a97f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a90f1a23-aa39-47e8-bb7b-5b3cc0e8c35e","ED01CJ01","交易金额","COMPANY","String","6"," “特定交易类型”为“展期”时,表示展期金额(通常为展期时的贷款余额); + “特定交易类型”为“提前还款”时,表示提前归还的本金;","1:1","222","3cc7fef0-8c4b-4400-85a9-ea1526d1a97f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4407c664-76e4-43ab-8938-60681bd1e0d4","ED01CS02","到期日期变更月数","COMPANY","String","6"," 对于展期,指展期延长的月数; + 对于提前还款,指提前还款的月数。","1:1","223","3cc7fef0-8c4b-4400-85a9-ea1526d1a97f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"22e74433-510f-4dfe-a388-50e6a4e08f2e","ED01CQ01","交易明细信息","COMPANY","String","6","特定交易详细情况的描述。","1:1","224","3cc7fef0-8c4b-4400-85a9-ea1526d1a97f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3801036f-6999-48b8-9215-afd4ec555dff","ED02","贴现账户分机构汇总信息单元","COMPANY","","3","同一机构、同一业务种类、同一五级分类的贴现账户汇总信息对应一个信息单元。 +设计该单元主要是鉴于:当企业的票据贴现业务笔数太多时, 系统因技术限制无法在报告中返回所有贴现账户明细,但可以通过提供该类信息单元帮助报告使用者了解企业贴现业务的整体情况。 ","0:*","225","766e7938-a452-4d5b-aa32-a8641d4d1b89","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f8b773fc-e3f6-4717-83d4-7fee57f52be5","ED020I01","贴现账户分机构汇总信息编号","COMPANY","String","4","系统为该条贴现账户分机构汇总信息在本报告中分配的唯一编号。","1:1","226","3801036f-6999-48b8-9215-afd4ec555dff","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ae037224-ff41-4529-89a3-972e37651e8c","ED020D01","业务管理机构类型","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录 A。","1:1","227","3801036f-6999-48b8-9215-afd4ec555dff","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"961134b5-0736-4252-b7d5-69980acdaba3","ED020I02","业务管理机构代码","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","228","3801036f-6999-48b8-9215-afd4ec555dff","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d2f8ef2b-e9e8-4c5f-a85b-3749e6c16145","ED020D02","业务种类","COMPANY","String","4","代码表如下: +10-有追索权的银行承兑汇票贴现 +20-有追索权的商业承兑汇票贴现","1:1","229","3801036f-6999-48b8-9215-afd4ec555dff","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c9fa3b5c-9f83-4239-871c-cbf2e72563aa","ED020D03","五级分类","COMPANY","String","4","代码表详见附录 A。","1:1","230","3801036f-6999-48b8-9215-afd4ec555dff","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4d21e2db-323f-4cdb-a258-ebc797793b6d","ED020S01","未结清账户数","COMPANY","String","4","按业务管理机构(法人)、业务种类、五级分类的组合分类汇总的未结清账户数。","1:1","231","3801036f-6999-48b8-9215-afd4ec555dff","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"35ab248c-cd86-4c20-905e-b525fb453bd3","ED020J01","余额合计","COMPANY","String","4","按业务管理机构(法人)、业务种类、五级分类的组合分类汇总的未结清账户余额合计。","1:1","232","3801036f-6999-48b8-9215-afd4ec555dff","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"38aaa9ff-27ba-4ca6-b638-23eef1b8b1db","ED020J02","逾期总额合计","COMPANY","String","4","按业务管理机构(法人)、业务种类、五级分类的组合分类汇总的未结清账户逾期总额合计。","1:1","233","3801036f-6999-48b8-9215-afd4ec555dff","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"08d128f1-a0d4-4680-b4ec-b571724ddad3","ED020J03","逾期本金合计","COMPANY","String","4","按业务管理机构(法人)、业务种类、五级分类的组合分类汇总的未结清账户逾期本金合计。","1:1","234","3801036f-6999-48b8-9215-afd4ec555dff","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ea0fbe70-69e2-464e-99eb-4f02442d7c04","ED020S02","已结清账户数","COMPANY","String","4","按业务管理机构(法人)、业务种类、五级分类的组合分类汇总的已结清账户数。","1:1","235","3801036f-6999-48b8-9215-afd4ec555dff","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0cdc1745-c19a-4725-a68f-210181257f63","ED020J04","已结清账户贴现金额合计","COMPANY","String","4","按业务管理机构(法人)、业务种类、五级分类的组合分类汇总的已结清账户贴现金额合计。","1:1","236","3801036f-6999-48b8-9215-afd4ec555dff","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"24d4598a-3be5-4d29-b8a0-98b28375e484","ED03","欠息信息单元","COMPANY","","3","每条欠息记录对应一个信息单元。 +每个信息单元的内容包括:欠息余额、欠息类型、余额变化日期等信息。 ","0:*","237","766e7938-a452-4d5b-aa32-a8641d4d1b89","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0b2956ca-8fa7-47c6-8ff4-387ab5a4cc06","ED030I01","欠息信息编号","COMPANY","String","4","系统为该欠息记录在本报告中分配的唯一编号。","1:1","238","24d4598a-3be5-4d29-b8a0-98b28375e484","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e86bbf61-8d71-4aff-a636-b255fb7c4448","ED030D01","业务管理机构类型","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录 A。 ","1:1","239","24d4598a-3be5-4d29-b8a0-98b28375e484","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7a56b12b-6d21-4f5b-b852-ca458eb9810e","ED030I02","业务管理机构代码","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据 +项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。 ","1:1","240","24d4598a-3be5-4d29-b8a0-98b28375e484","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e628c25e-0e6f-48ad-b518-ba2464461027","ED030D02","币种","COMPANY","String","4","采用国标《表示货币和资金的代码》(GB/T 12406-2008)规定的 3 位字母型代码表,代码表详见附录 A。","1:1","241","24d4598a-3be5-4d29-b8a0-98b28375e484","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ad0fec2c-c195-4ea6-a3f0-52b758831e7d","ED030J01","欠息余额","COMPANY","String","4","欠息的余额。","1:1","242","24d4598a-3be5-4d29-b8a0-98b28375e484","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a0503ee6-8c2d-494e-806e-2fdd8e6a4237","ED030R01","余额变化日期","COMPANY","Date","4","欠息余额变化的日期。 ","1:1","243","24d4598a-3be5-4d29-b8a0-98b28375e484","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d44200f8-4ceb-45b6-a5ef-63758ddbb115","ED030D03","欠息类型","COMPANY","String","4","代码表如下: +1-表内 +2-表外","1:1","244","24d4598a-3be5-4d29-b8a0-98b28375e484","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ea8e203f-cf1c-4c46-a91b-a71e0bd74859","ED030R02","信息报告日期","COMPANY","Date","4","本条信息单元所包含信息内容的有效截止日期。","1:1","245","24d4598a-3be5-4d29-b8a0-98b28375e484","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"010bdb24-b4a8-42c0-800a-9eac31d56047","EDB","担保账户信息","COMPANY","","2","","1:1","246","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7fd4f899-81e0-4892-9c1e-c581e70c3aed","ED04","担保账户信息单元","COMPANY","","3","每个担保账户对应一个信息单元。 +每个信息单元的内容包括:担保账户基本情况、担保人的当前在保责任信息。 ","0:*","247","010bdb24-b4a8-42c0-800a-9eac31d56047","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4766ea45-0754-453c-9103-00b55478d6d2","ED04A","基本信息段","COMPANY","","4","述账户编号、账户类型、业务管理机构、业务种类、担保金额、保证金比例等信息。","1:1","248","7fd4f899-81e0-4892-9c1e-c581e70c3aed","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"73693239-13f7-408f-bb13-c149ff3a078f","ED04AI01","担保账户编号","COMPANY","String","5","征信系统分配给该账户在本报告中的唯一编号。","1:1","249","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bc9dfd7a-778f-4fd2-9272-0466a3db32fe","ED04AD01","担保账户类型","COMPANY","String","5","代码表如下: +G1-融资担保账户 +G2-非融资担保账户 +G3-支付担保账户","1:1","250","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a2ac437d-6acb-4197-9677-8576f9d308e6","ED04AD02","业务管理机构类型","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。 +","1:1","251","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"43124f4b-6f65-4cfa-8149-5ef25b3419c2","ED04AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","252","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"50ce6239-39d7-4667-8b75-d1370d5dd84a","ED04AI03","授信协议编号","COMPANY","String","5","征信系统为该账户对应的授信协议在本报告中分配的唯一编号,用于关联与账户相关的授信协议。 + 对于没有账户对应的授信协议,返回空值。","1:1","253","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"32378089-1785-4db8-a54b-cab5015e5f08","ED04AD03","担保交易业务种类细分","COMPANY","String","5","代码表如下: +01-贷款担保 +02-票据承兑担保 +03-贸易融资担保 +04-项目融资担保 +05-信用证担保 +06-其他融资担保 +10-债券发行担保 +07-诉讼保全担保 +08-履约担保 +09-其他非融资担保 +11-再担保 +12-贷款保证保险 +51-信用证 +61-银行承兑汇票 +62-商业承兑汇票 +71-融资类银行保函 +72-非融资类银行保函","1:1","254","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f752a530-85d6-495e-8808-63590c2d380c","ED04AR01","开立日期","COMPANY","Date","5","指担保交易生效日期。","1:1","255","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2536d507-bd35-46c8-9205-fb9109cce985","ED04AD04","币种","COMPANY","String","5","账户开立和结算实际币种代码。 +采用国标《表示货币和资金的代码》(GB/T 12406-2008)规定的 3 位字母型代码表,代码表详见附录 A。","1:1","256","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"afc33fbc-1125-458a-8ff2-443d69cf4af9","ED04AJ01","金额","COMPANY","String","5"," 对于融资担保,指融资担保合同签订时的融资保证金额; + 对于信用证,指信用证开立时银行承诺担保付款的金额; + 对于承兑汇票,指承兑汇票票面标识的金额; + 对于银行保函,指保函开具时的合同金额; + 对于非融资担保,指非融资担保开立时的合同金额; + 对于再担保,指再担保合同中签订时约定的由再担保机构承担担保责任的金额; + 对于保证保险,指保证保险合同签订时的担保责任金额。","1:1","257","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2a11bb7d-f170-4f92-8831-3512f6258999","ED04AR02","到期日期","COMPANY","Date","5","担保合同约定的担保机构承担担保责任期间的终止日期。 + 对于融资担保,指融资担保合同签订到期日; + 对于信用证,指信用证有效日期或付款日期; + 对于承兑汇票,指承兑汇票到期日期或付款日期; + 对于银行保函,指保函合同到期日; + 对于非融资担保,指非融资担保合同到期日; + 对于再担保,指再担保合同到期日; + 对于保证保险,指保证保险合同到期日。","1:1","258","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"be4d161f-3cb1-470f-8686-6a07197cc5a6","ED04AD05","反担保方式","COMPANY","String","5","代码表如下: +0-信用/免担保 +1-保证 +2-质押 +3-抵押 +4-组合","1:1","259","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"98f1e6d3-edf4-4417-b64a-cafe7f17d597","ED04AD06","其他还款保证方式","COMPANY","String","5","代码表如下: +0-无 +1-保证金 +2-第三方付款承诺 +9-其他","1:1","260","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3be698b3-784e-4a7b-b0e9-185ef956ee9b","ED04AQ01","保证金比例","COMPANY","String","5","保证金占信用额度的百分比(保证金*100/信用额度),1 代表1%。 +采取向下取整的原则,取值为“0”时,代表保证金比例不足1%;取值为“100”时,代表已全额还款。","1:1","261","4766ea45-0754-453c-9103-00b55478d6d2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2bfdd0b2-73d7-4a84-b428-dc1133d6317c","ED04B","在保责任信息段","COMPANY","","4","描述账户活动状态、在保余额、五级分类等信息。","1:1","262","7fd4f899-81e0-4892-9c1e-c581e70c3aed","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"42952a4d-152f-4531-b3d0-ff232c9b901b","ED04BR01","信息报告日期","COMPANY","Date","5","本条信息单元所包含信息内容的有效截止日期。","1:1","263","2bfdd0b2-73d7-4a84-b428-dc1133d6317c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"905dd7f6-e8f9-4569-a481-6516c3e18dd4","ED04BD01","账户活动状态","COMPANY","String","5","代码表如下: +1-未结清 为未结清时,“代偿(垫款)标志”的数据项标签返回空值。当“账户活动状态”为已结清时,“反担保方式”、“其他还款保证方式”、“保证金比例”、“余额”、“风险敞口”、“信息报告日期”、“授信协议编号”的数据项标签返回空值。 +2-已结清","1:1","264","2bfdd0b2-73d7-4a84-b428-dc1133d6317c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ad4fd984-1045-4f69-892e-497dc09552ee","ED04BJ01","余额","COMPANY","String","5","担保机构承担的在保责任余额。 + 对于融资担保,指融资担保合同未履行的融资保证金额; + 对于信用证,指信用证开立时银行承诺担保付款的余额; + 对于承兑汇票,指承兑汇票未承兑部分的金额; + 对于银行保函,指保函履约所剩的余额; + 对于非融资担保,指非融资担保未履行的合同金额; + 对于再担保,指再担保合同中签订后未履行的金额; + 对于保证保险,指保证保险合同签订后未履行的担保责任金额。","1:1","265","2bfdd0b2-73d7-4a84-b428-dc1133d6317c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c5034fe7-50fe-42ac-b3eb-84fed3f979ec","ED04BD02","五级分类","COMPANY","String","5","代码表详见附录 A。","1:1","266","2bfdd0b2-73d7-4a84-b428-dc1133d6317c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"86b6fc9b-ae4d-4f7d-9a32-9e71afd91a9e","ED04BJ02","风险敞口","COMPANY","String","5","债务人违约行为导致授信机构的可能承受的风险金额。","1:1","267","2bfdd0b2-73d7-4a84-b428-dc1133d6317c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ebe20234-415c-494b-9777-f5174ed32932","ED04BD03","代偿(垫款)标志","COMPANY","String","5","标志该担保账户是否发生了垫款或代偿。 +代码表如下: +0-否 +1-是","1:1","268","2bfdd0b2-73d7-4a84-b428-dc1133d6317c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"751868d4-1575-44c0-ab47-273cfa7cefb7","ED04BD04","共同债务标识","COMPANY","String","5","代码表如下: +0-无共同债务人 +1-有共同债务人,且本报告主体为主债务人 +2-有共同债务人,且本报告主体为从债务人","1:1","269","2bfdd0b2-73d7-4a84-b428-dc1133d6317c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f7181a2a-b9ea-4ac0-ba84-3cbab0748985","ED04BR02","关闭日期","COMPANY","Date","5","合同终止、或发生垫款的日期。 + 如果账户未结清,返回空值。","1:1","270","2bfdd0b2-73d7-4a84-b428-dc1133d6317c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"04365055-3cdf-4385-993a-bb98cce47d4e","ED05","担保账户分机构汇总信息单元","COMPANY","","3","同一机构、同一业务种类、同一五级分类的担保业务汇总信息对应一个信息单元。 +设计该单元主要是鉴于:当企业的银行承兑汇票、信用证、保函等业务笔数太多时,系统因技术限制无法在报告中返回所有业务明细,但可以通过提供该类信息单元帮助报告使用者了解这些业务的整体情况。 ","0:*","271","010bdb24-b4a8-42c0-800a-9eac31d56047","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"38f21ece-4dcf-4d03-ad0d-cc3dab72ce37","ED050I01","担保账户分机构汇总信息编号","COMPANY","String","4","系统为该条汇总信息在本报告中分配的唯一编号。","1:1","272","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a4f8793d-22e7-460c-9e4d-4baef77dcd00","ED050D01","业务管理机构类型","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。 ","1:1","273","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6141eedb-2ecc-4613-9c9d-a6071dbbcece","ED050I02","业务管理机构代码","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编 码。 ","1:1","274","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d3412220-1748-4fbb-9076-0b594f704aee","ED050D02","担保交易业务种类细分","COMPANY","String","4","代码表详见附录 A。","1:1","275","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ec19dca5-1fa0-453f-acc1-2a83a7d190f5","ED050D03","五级分类","COMPANY","String","4","代码表详见附录 A。","1:1","276","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4cdcdb4c-849c-45ec-8bcb-e54431779dc5","ED050S01","未结清账户数","COMPANY","String","4","按业务管理机构(法人)、业务种类、五级分类的组合分类汇总的未结清账户数量。","1:1","277","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b5970c41-77d9-496a-b33b-22fcdafc8d55","ED050J01","余额","COMPANY","String","4","按业务管理机构(法人)、业务种类、五级分类的组合分类汇总的账户余额。","1:1","278","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"73932c1c-65da-4a8f-981d-8db2779bc65d","ED050J02","30天内到期的余额","COMPANY","String","4"," 对于承兑汇票和信用证业务,指按业务管理机构(法 人)、业务种类、五级分类的组合分类汇总的到期日在30 天(含)以内的账户余额。 + 对于其他业务,该数据项返回空值。","1:1","279","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a5455710-c5e1-4ed6-bc77-03d0deb72336","ED050J03","60天内到期的余额","COMPANY","String","4"," 对于承兑汇票和信用证业务,指按业务管理机构(法 人)、业务种类、五级分类的组合分类汇总的到期日在30 天(不含)-60 天(含)之间的账户余额。 + 对于其他业务,该数据项返回空值。","1:1","280","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"42309159-f4fe-4a74-84f2-6b9b833cc006","ED050J04","90天内到期的余额","COMPANY","String","4"," 对于承兑汇票和信用证业务,指按业务管理机构(法人)、业务种类、五级分类的组合分类汇总的到期日在 60天(不含)-90 天(含)之间的账户余额。 + 对于其他业务,该数据项返回空值。","1:1","281","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bacd9cae-4e6d-4e7d-9286-b0af6f1de1d4","ED050J05","90天后到期的余额","COMPANY","String","4"," 对于承兑汇票和信用证业务,指按业务管理机构(法人)、业务种类、五级分类的组合分类汇总的到期日在 90天(不含)以上的账户余额。 + 对于其他业务,该数据项返回空值。","1:1","282","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5621976f-44d9-472d-b325-cee334fe3ee2","ED050S02","已结清账户数","COMPANY","String","4","按业务管理机构(法人)、业务种类、五级分类的组合分类汇总的已结清账户数量。","1:1","283","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2f9319d3-b180-4354-9294-6830951d724b","ED050D04","垫款标志","COMPANY","String","4","用于说明在业务管理机构(法人)、业务种类、五级分类的组合分类下有无发生过垫款的担保账户。 +代码表: +0-否 +1-是","1:1","284","04365055-3cdf-4385-993a-bb98cce47d4e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"34d41e34-be55-4ce5-b4e7-025415a6eb39","EDC","授信协议信息","COMPANY","","2","","1:1","285","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d1392467-32fb-4c1a-9849-0c262a75531e","ED06","授信协议信息单元","COMPANY","","3","每个授信协议对应一个信息单元。 +每一个信息单元的内容包括:授信额度、额度类型、额度循环标志、已用额度、生效日期、终止日期等信息。","0:*","286","34d41e34-be55-4ce5-b4e7-025415a6eb39","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dcc16449-0748-4ca9-bff2-8f3f87fc836e","ED060I01","授信协议编号","COMPANY","String","4","征信系统分配给该协议在本报告中的唯一编号。","1:1","287","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"983649b5-ab3f-40fd-b2fe-a4efff97f7f6","ED060D01","业务管理机构类型","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录 A。 ","1:1","288","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0c56b762-84f1-4726-b4bf-dbeeff190207","ED060I02","业务管理机构代码","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","289","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f2e79154-8837-478a-8b09-b8613044d507","ED060D02","授信额度类型","COMPANY","String","4","反映合同授信额度用途的代码。代码表如下: +11-贷款 +12-贸易融资 +13-保理融资 +15-证券类融资 +16-透支 +31-黄金借贷 +40-融资租赁 +41-信用证额度 +51-承兑汇票额度","1:1","290","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4830f1a1-5cd0-4de5-b4a6-2d2a63593916","ED060D03","额度循环标志","COMPANY","String","4","代码表如下: +0-否 +1-是","1:1","291","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ac724d9f-64fa-4a44-a095-f9cbeb02760f","ED060D04","币种","COMPANY","String","4","授信协议中约定的币种代码。 +采用《表示货币和资金的代码》(GB/T 12406-2008)中的三位字母型代码,代码表详见附录 A。 ","1:1","292","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"64cf3f6c-2def-4540-bd82-ea5a28d8c041","ED060J01","授信额度","COMPANY","String","4","指授信协议中约定的授信额度。","1:1","293","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f5a5f6ac-6dfd-4cd1-b0f3-9d8659c4babd","ED060J04","已用额度","COMPANY","String","4","截止信息报告日期,授信协议下的已用额度。 + 如果授信协议下没有对应的账户,返回空值。","1:1","294","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"eb0e4724-c80f-4c7b-b46d-bf7e3f440574","ED060J03","授信限额","COMPANY","String","4","指除具体产品合同约定的授信额度外,存在的限定客户的借款余额上限。 + 如果没有授信限额的约定,返回空值。","1:1","295","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"599bd934-d4ec-4b24-b2fc-738117a6986e","ED060I03","授信限额编号","COMPANY","String","4","征信系统为该授信限额在本报告中分配的唯一编号。 + 如果没有授信限额的约定,返回空值。","1:1","296","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d1305c33-54d0-4aa1-866c-53f03239e65c","ED060R01","生效日期","COMPANY","Date","4","授信协议额度的生效日期。","1:1","297","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dd6bbf6f-3c92-4b7e-a2d2-ee4978bf5c7f","ED060R02","终止日期","COMPANY","Date","4","授信协议额度的到期日期。","1:1","298","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5054a92b-5744-429b-be43-a1318fa63bd5","ED060R03","信息报告日期","COMPANY","Date","4","本条信息单元所包含信息内容的有效截止日期。","1:1","299","d1392467-32fb-4c1a-9849-0c262a75531e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0a47a313-f773-409d-9b3a-38cfc2cd0c8c","EDD","相关还款责任信息","COMPANY","","2","","1:1","300","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"29f28fc6-3847-45fc-89b2-8215b497f4bc","ED07","相关还款责任借贷账户(不含贴现)信息单元","COMPANY","","3","每个相关还款责任账户对应一个信息单元。 +每个信息单元的内容包括:相关还款责任人类型、责任金额、业务种类、开立日期、到期日期、余额、五级分类、逾期等信息。 ","0:*","301","0a47a313-f773-409d-9b3a-38cfc2cd0c8c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ae2e8306-62a1-40fb-9728-4f5967739d89","ED070I01","账户编号","COMPANY","String","4","征信系统分配给信息主体承担相关还款责任的个人借贷账户、企业借贷账户(不含贴现)在本报告中的唯一编号。","1:1","302","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b4d3ed56-3186-4805-9077-0c57107c40d7","ED070D01","主借款人身份类别","COMPANY","String","4","代码表如下: +1-自然人 +2-组织机构","1:1","303","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b8da1c9b-eb73-483d-9295-597573da36d1","ED070D02","账户类型","COMPANY","String","4"," 当主借款人身份类别是“自然人”,代码表详见附录 A“个人借贷账户类型代码表”; + 当主借款人身份类别是“组织机构”,代码表详见附录 A +“企业借贷账户类型代码表”。","1:1","304","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f551bb09-220b-4bcc-beb8-5a69ca17db19","ED070D03","相关还款责任人类型","COMPANY","String","4","代码表如下: +1-个人信贷交易共同还款人 +2-保证人 +3-票据承兑人 +4-应收账款债务人 +5-供应链中核心企业 +9-其他","1:1","305","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"55e4672e-59af-47b3-afb7-945719664672","ED070D10","币种(相关还款责任金额)","COMPANY","String","4","相关还款责任金额对应的币种代码。 +采用国标《表示货币和资金的代码》(GB/T 12406-2008)规定的3 位字母型代码表,代码表详见附录 A。","1:1","306","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7199d100-e705-42f7-bf6d-6e915b299cc5","ED070J01","相关还款责任金额","COMPANY","String","4","指信息主体为个人/企业承担相关还款责任的金额。 + 当相关还款责任类型为“个人信贷交易共同还款人” ,返回空值。","1:1","307","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1945da2d-0d97-46ed-a085-60a2765d4e24","ED070D04","业务管理机构类型","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录 A。","1:1","308","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c26521c5-8ba9-40ee-8a24-a96ad8b4bf11","ED070I02","业务管理机构代码","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","309","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e994305d-5448-4123-bab8-204ac8019a0b","ED070D05","业务种类","COMPANY","String","4"," 当主借款人为个人时,代码表详见附录 A“个人借贷业务大类代码表”; + 当主借款人为企业时,代码表详见附录 A“企业借贷业务大类代码表”。 ","1:1","310","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9f22329e-4ea6-485c-8949-ce25d8de58dc","ED070D06","业务种类细分","COMPANY","String","4"," 当主借款人为个人时,代码表详见附录 A“个人借贷业务种类细分代码表”; + 当主借款人为企业时,代码表详见附录 A“企业借贷业务种类细分代码表”。","1:1","311","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"79396e6d-40c9-4b33-945f-95671d0c5e99","ED070R01","开立日期","COMPANY","Date","4","账户的开立日期。","1:1","312","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d3ff0ee9-ea08-4d8e-964e-bf435e77840b","ED070R02","到期日期","COMPANY","Date","4","账户的到期日期。","1:1","313","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"39ee9968-7792-4e2c-87bc-01c431a0214c","ED070D07","币种","COMPANY","String","4","账户开立和结算实际币种代码。 +采用国标《表示货币和资金的代码》(GB/T 12406-2008)规定的3 位字母型代码表,代码表详见附录 A。","1:1","314","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9557e7cf-fdc7-4521-9442-842cd2b12ab2","ED070J02","余额","COMPANY","String","4","账户的当前余额。","1:1","315","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ce5cc101-1c7d-41f8-a233-6bfcc32d8805","ED070J05","借款金额","COMPANY","String","4"," 对于 R1、R2 和 R3 账户,返回空值; + 对于 D1、R4 和 C1 账户,指账户的借款金额。","1:1","316","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3b93c93c-2adc-4cd2-84bf-c6199aacb8a0","ED070J06","信用额度","COMPANY","String","4"," 对于 D1、R4 和 C1 账户,返回空值; + 对于 R1、R2 和 R3 账户,指账户的信用额度。","1:1","317","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"942d136b-eccc-4097-a1e2-f5196203092b","ED070I03","保证合同编号","COMPANY","String","4","征信系统为该相关还款责任人对应的保证合同在本报告中分配的唯一编号。 + 如果没有对应的保证合同,返回空值。","1:1","318","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"55a14622-e266-4a6f-8623-8adbccf0b4da","ED070D08","五级分类","COMPANY","String","4","代码表详见附录 A。","1:1","319","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"98f0d3ea-d6ea-4e3d-abf3-b0f55a3efbf7","ED070J03","逾期总额","COMPANY","String","4"," 对于 C1 和 R3 账户,返回空值; + 对于其他账户,指账户当前的逾期总额。 ","1:1","320","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"57e66496-4ba1-41e8-83e7-720018eff100","ED070J04","逾期本金","COMPANY","String","4"," 对于 C1、R2、R3 账户,返回空值; + 对于其他账户,指账户当前的逾期本金。","1:1","321","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9f3c8c4f-2840-4805-bfc7-190f64f1f4d0","ED070S01","逾期月数","COMPANY","String","4"," 当主借款人为个人时,返回空值。 + 当主借款人为企业时,指该账户逾期持续的月份数。","1:1","322","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f64e64a8-9a5a-4be7-a9b2-e1ccfaf81e1c","ED070D09","还款状态","COMPANY","String","4"," 对于 C1 账户,返回空值; + 当主借款人为企业时,返回空值; + 对于个人的其他账户,指该账户当前的还款状态,代码表详见附录 A。","1:1","323","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"50934297-0afa-44bd-a07d-89c8791dfcc9","ED070S02","剩余还款月数","COMPANY","String","4"," 对于 R1 账户,指从当前时点至最晚一笔借据到期日所在月(含)之间有多少个月份。 + 对于其他账户,返回空值。","1:1","324","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"01a99aaf-1a32-47ee-a640-73e58e32189e","ED070R03","信息报告日期","COMPANY","Date","4","本条信息单元所包含信息内容的有效截止日期。","1:1","325","29f28fc6-3847-45fc-89b2-8215b497f4bc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8635af44-d245-4cd5-a804-679827f7b42c","ED08","相关还款责任贴现账户分机构汇总信息单元","COMPANY","","3","同一还款责任类型、同一机构、同一业务种类、同一五级分类、同一个保证合同编号的贴现账户汇总信息对应一个信息单元。 +每个信息单元的内容包括:相关还款责任人类型、责任金额、 +业务种类、五级分类、账户数、余额、逾期等信息。 ","0:*","326","0a47a313-f773-409d-9b3a-38cfc2cd0c8c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f3b902fc-711b-4690-ae97-f6a201128695","ED080I01","贴现账户分机构汇总信息编号","COMPANY","String","4","征信系统分配给该条汇总信息在本报告中的唯一编号。","1:1","327","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"97b2a976-4d23-42bb-bf4e-ff7e8d2e4dfb","ED080D01","相关还款责任类型","COMPANY","String","4","代码表详见附录 A。","1:1","328","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ef4e08b1-f918-4b60-bece-f5c0b56c15ad","ED080D02","业务管理机构类型","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录 A。","1:1","329","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e921c713-ad7a-4679-bc22-4afdb5f70c92","ED080I02","业务管理机构代码","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","330","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5e0d766d-6769-4481-8b40-11d53a742cf0","ED080D03","业务种类细分","COMPANY","String","4","业务种类细分 代码表详见附录 A“企业借贷业务种类细分代码表(票据贴现)”","1:1","331","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"248820c0-03ff-4bd9-8b93-a41be8b1c14f","ED080D04","五级分类","COMPANY","String","4","代码表详见附录 A。","1:1","332","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3b4973ea-31df-4e9b-8e0b-7dd32c84a5d8","ED080I03","保证合同编号","COMPANY","String","4","征信系统为该相关还款责任人对应的保证合同在本报告中分配的唯一编号。 + 如果没有对应的保证合同,返回空值。","1:1","333","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8e68d6c8-3506-4090-84dd-79fbabf0dd27","ED080J01","相关还款责任金额","COMPANY","String","4","按相关还款责任类型、业务管理机构(法人)、业务种类、五级分类、保证合同编号的组合分类汇总的相关还款责任金额。","1:1","334","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b79456bc-bbe0-4c40-9b29-55485b97c454","ED080S01","账户数","COMPANY","String","4","按相关还款责任类型、业务管理机构(法人)、业务种类、五级分类、保证合同编号的组合分类汇总的未结清贴现账户数。","1:1","335","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c0e3fb77-c5e5-446d-bedf-fdb8ca32ecca","ED080J02","余额","COMPANY","String","4","按相关还款责任类型、业务管理机构(法人)、业务种类、五级分类、保证合同编号的组合分类汇总的贴现账户余额。","1:1","336","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2101a55a-4ab0-466b-9a80-5a4b65ca4b41","ED080J03","逾期总额","COMPANY","String","4","按相关还款责任类型、业务管理机构(法人)、业务种类、五级分类、保证合同编号的组合分类汇总的借款金额。","1:1","337","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"45b21099-dc0a-4d26-9b53-ba80b875c595","ED080J04","逾期本金","COMPANY","String","4","按相关还款责任类型、业务管理机构(法人)、业务种类、五级分类的组合分类汇总的贴现账户逾期总额。","1:1","338","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2f2cb579-ac77-442f-98f6-899897fd053b","ED080J05","借款金额","COMPANY","String","4","按相关还款责任类型、业务管理机构(法人)、业务种类、五级分类的组合分类汇总的贴现账户逾期本金。","1:1","339","8635af44-d245-4cd5-a804-679827f7b42c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e06ad2a6-4b5f-4477-941a-d3fe36dd9337","ED09","相关还款责任担保账户分机构汇总信息单元","COMPANY","","3","同一还款责任类型、同一机构、同一业务种类、同一五级分类、同一个保证合同编号的担保账户汇总信息对应一个信息单元。 +每个信息单元的内容包括:相关还款责任人类型、责任金额、业务种类、五级分类、账户数、余额等信息。","0:*","340","0a47a313-f773-409d-9b3a-38cfc2cd0c8c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cbe7adb1-c397-4e80-a6e8-f2a3b53d9dc1","ED090I01","担保账户分机构汇总信息编号","COMPANY","String","4","征信系统分配给该条汇总信息在本报告中的唯一编号。","1:1","341","e06ad2a6-4b5f-4477-941a-d3fe36dd9337","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c81d7f3d-61e2-41c7-825e-ce31565e6d6a","ED090D01","相关还款责任类型","COMPANY","String","4","代码表详见附录 A。","1:1","342","e06ad2a6-4b5f-4477-941a-d3fe36dd9337","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f787f3e6-3c31-4df2-a19d-2810e0be4d76","ED090D02","业务管理机构类型","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 +当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录 A。","1:1","343","e06ad2a6-4b5f-4477-941a-d3fe36dd9337","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d068753a-f4a4-491a-b93e-2606f8bb59b9","ED090I02","业务管理机构代码","COMPANY","String","4"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","344","e06ad2a6-4b5f-4477-941a-d3fe36dd9337","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f8626d3f-bb4b-4fc3-ba7e-14d8c76367e1","ED090D03","业务种类细分","COMPANY","String","4","代码表详见附录 A“担保业务种类细分代码表”。","1:1","345","e06ad2a6-4b5f-4477-941a-d3fe36dd9337","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"59ab4fde-ea07-4aba-8659-4f4388a5da02","ED090D04","五级分类","COMPANY","String","4","代码表详见附录 A。","1:1","346","e06ad2a6-4b5f-4477-941a-d3fe36dd9337","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8799c107-82e6-4229-8dbf-4390d1a32f80","ED090I03","保证合同编号","COMPANY","String","4","征信系统为该相关还款责任人对应的保证合同在本报告中分配的唯一编号。 + 如果没有对应的保证合同,返回空值。","1:1","347","e06ad2a6-4b5f-4477-941a-d3fe36dd9337","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8b1bb1b8-4e39-435c-a28d-842e88750522","ED090J01","相关还款责任金额","COMPANY","String","4","按相关还款责任类型、业务管理机构(法人)、业务种类、五级分类、保证合同编号的组合分类汇总的相关还款责任金额。","1:1","348","e06ad2a6-4b5f-4477-941a-d3fe36dd9337","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2c0480f6-6774-422e-a273-57874aeb4c35","ED090S01","账户数","COMPANY","String","4","按相关还款责任类型、业务管理机构(法人)、业务种类、五级分类、保证合同编号的组合分类汇总的未结清账户数量。","1:1","349","e06ad2a6-4b5f-4477-941a-d3fe36dd9337","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b08975a5-71b7-4ffd-a37f-0e9ff85d9135","ED090J02","余额","COMPANY","String","4","按相关还款责任类型、业务管理机构(法人)、业务种类、五级分类、保证合同编号的组合分类汇总的账户余额。","1:1","350","e06ad2a6-4b5f-4477-941a-d3fe36dd9337","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d9379e71-1ed9-472c-92cf-55741ade2f6a","ED090J03","担保金额","COMPANY","String","4","按相关还款责任类型、业务管理机构(法人)、业务种类、五级分类、保证合同编号的组合分类汇总的担保金额。","1:1","351","e06ad2a6-4b5f-4477-941a-d3fe36dd9337","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d4da44e7-c2e5-4e9d-b44c-c729be0b3bb1","EEA","公共事业缴费账户信息","COMPANY","","2","","1:1","352","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ee1138b2-b689-4163-be48-dd2399c6846a","EE01","公共事业缴费账户信息单元","COMPANY","","3","每个电信、公用事业缴费账户对应一个信息单元。 +每个信息单元的内容包括:公共事业单位名称、业务类型、缴费状态、累计欠费金额、统计年月以及过去 24 个月的缴费记录等信息。 ","0:*","353","d4da44e7-c2e5-4e9d-b44c-c729be0b3bb1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"65d41770-2c21-44bf-bccd-a6ab68347a2a","EE01A","基本信息段","COMPANY","","4","描述公共事业名称、业务类型、统计年月、缴费状态、累计欠费金额等信息。","1:1","354","ee1138b2-b689-4163-be48-dd2399c6846a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8f39ff6d-4d39-4a0a-969d-2d46ac3ee899","EE01AI01","公用事业缴费账户编号","COMPANY","String","5","系统分配给该账户在本报告中的唯一编号。","1:1","355","65d41770-2c21-44bf-bccd-a6ab68347a2a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c0174a13-7c46-410b-a55c-a4b520254282","EE01AQ01","公用事业单位名称","COMPANY","String","5","","1:1","356","65d41770-2c21-44bf-bccd-a6ab68347a2a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5192b96a-7354-4d27-bb24-80c92778dfe2","EE01AD01","业务类型","COMPANY","String","5","代码表如下: +1-电信 +2-公用事业 +20190130:公用事业业务类型代码表,“1-电信;2-公用事业”调整为“00-电信缴费;01-电费信息;02-水费信息;03-燃气费信息;04-有线电视收视费;99-其他”。","1:1","357","65d41770-2c21-44bf-bccd-a6ab68347a2a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"385b22ee-7c07-4d57-bb8d-9938405e17c8","EE01AD02","缴费状态","COMPANY","String","5","账户当前最新的缴费状态。 + 当业务类型为电信时,代码表详见附录 A“电信缴费状态代码表”, +代码表如下: 1-正常缴费 +2-欠费 + 当业务类型为公共事业时,代码表详见附录 A“公用事业缴费状态代码表”, +代码表如下: 1-正常缴费 +2-欠缴费用 +3-预缴费用 +4-补缴费用 ","1:1","358","65d41770-2c21-44bf-bccd-a6ab68347a2a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"69691633-8fd0-4715-963e-e240e4b66976","EE01AJ01","累计欠费金额","COMPANY","String","5","账户当前累计的欠费金额。","1:1","359","65d41770-2c21-44bf-bccd-a6ab68347a2a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9daca3c7-bf80-44fd-940e-e7d812a9166c","EE01AR01","统计年月","COMPANY","String","5","当前的截止时点。","1:1","360","65d41770-2c21-44bf-bccd-a6ab68347a2a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"440b8128-476c-49c9-bbd1-7204343afecb","EE01B","过去 24 个月缴费情况信息段","COMPANY","","4","描述公共事业单位过去 24 个月的缴费情况。","1:1","361","ee1138b2-b689-4163-be48-dd2399c6846a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c30e128f-f64a-450c-a6f6-1da9459c8f10","EE01BS01","缴费记录条数","COMPANY","String","5","最近 24 个月的缴费记录的总条数合计。","1:1","362","440b8128-476c-49c9-bbd1-7204343afecb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9d64c178-e50e-419a-9a6d-ff6788911730","EE01BH","缴费情况信息","COMPANY","","5","段标:后为下级元素","0:24","363","440b8128-476c-49c9-bbd1-7204343afecb","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"107a1fc8-9b19-468c-9973-89f554271fd4","EE01BR01","统计年月","COMPANY","String","6","公共事业缴费信息的数据统计年月。","1:1","364","9d64c178-e50e-419a-9a6d-ff6788911730","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"64d4500e-cf3d-421b-9677-f219efe26e67","EE01BD01","缴费状态","COMPANY","String","6"," 当业务类型为“电信”时,代码表详见附录 A“电信缴费状态代码表”; + 当业务类型为“公共事业”时,代码表详见附录 A“公用事业缴费状态代码表”。 ","1:1","365","9d64c178-e50e-419a-9a6d-ff6788911730","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f2204b19-3459-4b69-a2c1-dcebbba1d0c2","EE01BJ01","本月应缴金额","COMPANY","String","6","公共事业缴费信息的本月应缴金额。 ","1:1","366","9d64c178-e50e-419a-9a6d-ff6788911730","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"54a2c76b-e7ec-416f-8b30-4cb21f38d6a4","EE01BJ02","本月实缴金额","COMPANY","String","6","公共事业缴费信息的本月实缴金额。 ","1:1","367","9d64c178-e50e-419a-9a6d-ff6788911730","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"239796b1-97d6-429f-a1fa-646b0f5d2120","EE01BJ03","累计欠费金额","COMPANY","String","6","公共事业缴费信息的累计欠费金额。 ","1:1","368","9d64c178-e50e-419a-9a6d-ff6788911730","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d3becffd-3d10-4898-a878-8af37798608e","EFA","欠税信息","COMPANY","","2","","1:1","369","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1c751ab4-1546-4cb4-bfff-79732b8ddf79","EF01","欠税记录信息单元","COMPANY","","3","每条欠税记录对应一个信息单元。 ","0:*","370","d3becffd-3d10-4898-a878-8af37798608e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"463bfa65-5c8b-48bc-85d8-00507a1ab509","EF010I01","欠税记录编号","COMPANY","String","4","系统分配给该条欠税信息在本报告中的唯一编号。","1:1","371","1c751ab4-1546-4cb4-bfff-79732b8ddf79","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"068001fd-9126-4862-bd65-c440ed9fcfbf","EF010Q01","主管税务机关名称","COMPANY","String","4","对纳税人进行税收征收管理的税务机关的名称。","1:1","372","1c751ab4-1546-4cb4-bfff-79732b8ddf79","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"25c0be9a-dc9a-467b-ac84-3fbc3dff7da0","EF010J01","欠税总额","COMPANY","Date","4","纳税人当前应缴未缴的税务金额合计。","1:1","373","1c751ab4-1546-4cb4-bfff-79732b8ddf79","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1e1609b9-0d02-43fa-81e4-2230064cf016","EF010R01","欠税统计时间","COMPANY","String","4","纳税人当前应缴未缴的税务统计时间。","1:1","374","1c751ab4-1546-4cb4-bfff-79732b8ddf79","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"525e96f0-fdd5-4810-b677-6ee26b16f759","EFB","法院信息","COMPANY","","2","","1:1","375","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0dedd7ef-43b1-4bbb-a26f-f02add239a74","EF02","民事判决记录信息单元","COMPANY","","3","每条判决记录对应一个信息单元。","0:*","376","525e96f0-fdd5-4810-b677-6ee26b16f759","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5b18894a-ee45-43d8-b8ac-8fdc28b216b1","EF020I01","民事判决记录编号","COMPANY","String","4","系统分配给该条民事判决记录在本报告中的唯一编号。","1:1","377","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a315f4ed-607e-4970-ac41-9024a14c5ff0","EF020Q01","立案法院名称","COMPANY","String","4","受理诉讼案件申请的人民法院名称。","1:1","378","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"213b98b3-ec8b-47ca-b8c9-bc33d988b901","EF020I02","案号","COMPANY","String","4","","1:1","379","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6787fe2f-0a5b-4c8d-95f3-ae2553fd4019","EF020R01","立案日期","COMPANY","Date","4","","1:1","380","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7019fe64-a434-4f83-8651-7581fb188aa0","EF020Q02","案由","COMPANY","String","4","诉讼案件的立案原因,即当事人因何事发生纠纷而需要人民法院进行裁决。","1:1","381","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e07dd54f-d0c6-4060-af34-8fff6bb5d6f1","EF020D01","诉讼地位","COMPANY","String","4","当事人的诉讼地位。代码表详见附录 A。","1:1","382","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d67fa85f-bde5-4a4e-a7c0-2d0fc0a45bc3","EF020D02","审判程序","COMPANY","String","4","该诉讼案件的审判程序。代码表详见附录 A。","1:1","383","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"00153a7e-5ec8-4e89-9914-c55734410591","EF020Q03","诉讼标的","COMPANY","String","4","当事人争议的要求人民法院通过审判予以解决的某一民事法律关系或权利。","1:1","384","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9b8fd10c-8dcb-4411-9496-729494e9c650","EF020J01","诉讼标的金额","COMPANY","String","4","","1:1","385","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"71ff7664-d0a3-4407-92f2-e426497e46cf","EF020D03","结案方式","COMPANY","String","4","该诉讼案件的结案方式,包括判决、调解等。代码表详见附录 A。","1:1","386","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"95483813-db61-498e-a6f9-fe80e8d676d7","EF020R02","判决/调解生效日期","COMPANY","Date","4","该诉讼案件的判决或调解结果生效的日期。","1:1","387","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3fdf2b70-f5d9-4e0f-9d48-773c4c7ba2ba","EF020Q04","判决/调解结果","COMPANY","String","4","该诉讼案件的判决/调解结果。","1:1","388","0dedd7ef-43b1-4bbb-a26f-f02add239a74","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fcee7ba6-7764-44d4-95f5-837d97624889","EF03","强制执行记录信息单元","COMPANY","","3","每条强制执行记录对应一个信息单元。","0:*","389","525e96f0-fdd5-4810-b677-6ee26b16f759","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6521f79f-84b7-4eca-b011-9fbb80d3d302","EF030I01","强制执行记录编号","COMPANY","String","4","系统分配给该条强制执行记录在本报告中的唯一编号。","1:1","390","fcee7ba6-7764-44d4-95f5-837d97624889","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4be89335-6921-4d34-983b-186d32d2229d","EF030Q01","执行法院名称","COMPANY","String","4","受理执行案件申请的人民法院名称。 ","1:1","391","fcee7ba6-7764-44d4-95f5-837d97624889","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9e1420da-d078-4551-b640-4f92f9312f0d","EF030I02","案号","COMPANY","String","4"," ","1:1","392","fcee7ba6-7764-44d4-95f5-837d97624889","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8881dacd-5cae-4fe2-a999-ada23bdde2f8","EF030R01","立案日期","COMPANY","Date","4"," ","1:1","393","fcee7ba6-7764-44d4-95f5-837d97624889","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0e01ecb7-52bf-408c-9cfa-39f27f26d83e","EF030Q02","执行案由","COMPANY","String","4","执行案件的案由,即当事人因何事发生纠纷而需要人民法院强制执行案件的判决结果。 ","1:1","394","fcee7ba6-7764-44d4-95f5-837d97624889","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e094fe9b-683f-46b1-a10e-96123fd4c61c","EF030Q03","申请执行标的","COMPANY","String","4","被执行人申请执行的标的,包括物和行为。 ","1:1","395","fcee7ba6-7764-44d4-95f5-837d97624889","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"33d9fba3-3bf3-4d39-90d5-91249c6c3d1c","EF030J01","申请执行标的金额","COMPANY","String","4"," ","1:1","396","fcee7ba6-7764-44d4-95f5-837d97624889","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bc6b6622-d897-4f56-817d-11ca13edb428","EF030Q04","案件状态","COMPANY","String","4","案件目前的状态情况。 ","1:1","397","fcee7ba6-7764-44d4-95f5-837d97624889","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"49b95d9f-d2bf-47d5-a975-4ba1a207e168","EF030D01","结案方式","COMPANY","String","4","执行案件的结案方式,包括不予执行、自动履行、执行完毕等。代码表详见附录 A。 ","1:1","398","fcee7ba6-7764-44d4-95f5-837d97624889","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cc52407c-2396-4cc0-a91c-3376cc6ce4de","EF030Q05","已执行标的","COMPANY","String","4","被执行人已执行的标的,包括物和行为。 ","1:1","399","fcee7ba6-7764-44d4-95f5-837d97624889","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0839fc12-e4eb-4f4a-b8bd-b78c8d8cb379","EF030J02","已执行标的金额","COMPANY","String","4"," ","1:1","400","fcee7ba6-7764-44d4-95f5-837d97624889","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"669d30d7-167b-4076-a1e1-79010c497edc","EFC","行政处罚信息","COMPANY","","2","","1:1","401","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"45a8732d-d69e-45c8-a865-f2c43b3bca2c","EF04","行政处罚信息单元","COMPANY","","3","每条行政处罚记录对应一个信息单元。 ","0:*","402","669d30d7-167b-4076-a1e1-79010c497edc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f259be03-8fd1-4d92-8eff-367ed320e341","EF040I01","行政处罚记录编号","COMPANY","String","4","系统分配给该条行政处罚记录在本报告中的唯一编号。","1:1","403","45a8732d-d69e-45c8-a865-f2c43b3bca2c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ee1c3397-1602-44d7-9ac0-6d0d6d6a109b","EF040Q01","处罚机构名称","COMPANY","String","4","对当事人进行处罚的机构名称。 ","1:1","404","45a8732d-d69e-45c8-a865-f2c43b3bca2c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c2327a42-58ec-41bd-8185-f32d0e6973a1","EF040I02","处罚决定书文号","COMPANY","String","4","处罚文书的编号。 ","1:1","405","45a8732d-d69e-45c8-a865-f2c43b3bca2c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a66e850f-cb77-4889-9c1d-dc1af28c6f8a","EF040Q02","违法行为","COMPANY","String","4","处罚机构对当事人违法行为的描述。 ","1:1","406","45a8732d-d69e-45c8-a865-f2c43b3bca2c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bf876800-4321-4469-ae38-8cb24f978dba","EF040Q03","处罚决定","COMPANY","String","4","处罚机构对违法行为做出处罚的具体描述。 ","1:1","407","45a8732d-d69e-45c8-a865-f2c43b3bca2c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6c96bee7-7daf-464f-9388-7bf2df51f384","EF040R01","处罚日期","COMPANY","Date","4"," ","1:1","408","45a8732d-d69e-45c8-a865-f2c43b3bca2c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"14cf977b-91ad-4f29-b7bf-6f2ee8111365","EF040J01","处罚金额","COMPANY","String","4"," ","1:1","409","45a8732d-d69e-45c8-a865-f2c43b3bca2c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"21c6ec92-8a56-4987-b3c9-f29850fcb10a","EF040Q04","处罚执行情况","COMPANY","String","4"," ","1:1","410","45a8732d-d69e-45c8-a865-f2c43b3bca2c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f79d1ccd-6f65-4b59-b954-c1534665fc39","EF040Q05","行政复议结果","COMPANY","String","4","复议机关复议后的结论。 ","1:1","411","45a8732d-d69e-45c8-a865-f2c43b3bca2c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"abbef88f-c6e3-4709-8703-2e530a89046f","EFD","住房公积金参缴信息","COMPANY","","2","","1:1","412","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f8ccc644-deea-4a87-8002-5c23443634e6","EF05","住房公积金参缴信息单元","COMPANY","","3","每个公积金缴存账户对应一个信息单元。","0:*","413","abbef88f-c6e3-4709-8703-2e530a89046f","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e2400669-b504-44f1-8889-1e7ddae60833","EF05A","基本信息段","COMPANY","","4","描述统计年月、职工人数、缴费基数、缴费状态、累计欠费金额等信息。","1:1","414","f8ccc644-deea-4a87-8002-5c23443634e6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"003866c9-a0bc-4ce4-96a6-6566b897c739","EF05AI01","账户编号","COMPANY","String","5","系统分配给该公积金账户在本报告中的唯一编号。","1:1","415","e2400669-b504-44f1-8889-1e7ddae60833","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9c797495-fef1-42ce-a126-f63502811c16","EF05AR01","初缴年月","COMPANY","String","5","公积金缴存账户第一次存在余额的年月。 + “0000-00”表示已经开户但暂无余额。 ","1:1","416","e2400669-b504-44f1-8889-1e7ddae60833","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5cd687b6-db8c-4706-abfe-b5edb1bfcfa8","EF05AS01","职工人数","COMPANY","String","5","信息主体企业的职工人数信息。 ","1:1","417","e2400669-b504-44f1-8889-1e7ddae60833","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2b852eb3-7056-499c-90fc-8dacfd51d43a","EF05AJ01","缴费基数","COMPANY","String","5","公积金当前的缴费基数。 ","1:1","418","e2400669-b504-44f1-8889-1e7ddae60833","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"895c9758-ced1-4d98-9d4a-484fa4eee069","EF05AR02","最近一次缴费日期","COMPANY","Date","5","企业最近一次缴存公积金的日期。 + “0000-00-00”表示在开户后没有缴款历史。 ","1:1","419","e2400669-b504-44f1-8889-1e7ddae60833","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7e19ab78-354d-401e-a591-4bab37100e46","EF05AR03","缴至年月","COMPANY","String","5","公积金目前缴存到哪个月为止。 + “0000-00”表示在开户后没有缴款历史。 ","1:1","420","e2400669-b504-44f1-8889-1e7ddae60833","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0ba65249-98f2-45cd-abba-7437c0c9a79a","EF05AD01","缴费状态","COMPANY","String","5","代码表详见附录 A“住房公积金缴费状态代码表”。 ","1:1","421","e2400669-b504-44f1-8889-1e7ddae60833","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d5c8e3d9-7579-4873-969b-d84fa482006c","EF05AJ02","累计欠费金额","COMPANY","String","5","当前的累计欠缴金额。 ","1:1","422","e2400669-b504-44f1-8889-1e7ddae60833","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"77166430-5c4a-4cd0-a18e-599b8dbbbc5f","EF05AR04","统计年月","COMPANY","String","5","公积金缴存账户信息的数据统计年月。 ","1:1","423","e2400669-b504-44f1-8889-1e7ddae60833","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"702f164d-e143-4130-bbf0-7ff77d18502e","EF05B","过去 24 个月缴费情况信息段","COMPANY","","4","描述过去 24 个月的缴费情况。","1:1","424","f8ccc644-deea-4a87-8002-5c23443634e6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"22899469-520f-4806-81cb-f7898fd71b9c","EF05BS01","缴费记录条数","COMPANY","String","5","最近 24 个月的缴费记录的总条数合计。 ","1:1","425","702f164d-e143-4130-bbf0-7ff77d18502e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7e65de42-d3b9-4df3-91d3-2710b0ac5a93","EF05BH","缴费情况信息","COMPANY","","5","段标:后为下级元素","0:24","426","702f164d-e143-4130-bbf0-7ff77d18502e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3655a195-a8c9-4eb5-a0fa-1b1c42ff6b82","EF05BR01","统计年月","COMPANY","String","6","公积金缴存账户信息的数据统计年月。 ","1:1","427","7e65de42-d3b9-4df3-91d3-2710b0ac5a93","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a24f74bc-3ea4-4763-8875-af9e3474703c","EF05BD01","缴费状态","COMPANY","String","6","代码表详见附录 A“住房公积金缴费状态代码表”。 ","1:1","428","7e65de42-d3b9-4df3-91d3-2710b0ac5a93","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"de342086-e224-4ee3-abe8-e24d8dbe7def","EF05BJ01","本月应缴金额","COMPANY","String","6","当月(统计年月)应该缴纳的金额。 ","1:1","429","7e65de42-d3b9-4df3-91d3-2710b0ac5a93","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"19bc7aed-ca91-469b-b1a2-5bf4169fb982","EF05BJ02","本月实缴金额","COMPANY","String","6","当月(统计年月)实际缴纳的金额。 ","1:1","430","7e65de42-d3b9-4df3-91d3-2710b0ac5a93","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8362911e-3432-4fa3-9e97-0fb5fe824477","EF05BJ03","累计欠费金额","COMPANY","String","6","截至统计年月的累计欠费金额。 ","1:1","431","7e65de42-d3b9-4df3-91d3-2710b0ac5a93","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a8feebe5-13d3-40a4-aa11-ea4c262e467c","EFE","获得认证/奖励相关信息","COMPANY","","2","","1:1","432","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d908375e-943a-4fe9-911b-849c39d13c76","EF06","获得许可记录信息单元","COMPANY","","3","每条许可记录对应一个信息单元。 ","0:*","433","a8feebe5-13d3-40a4-aa11-ea4c262e467c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f419a472-5100-42c1-a42b-8d19663d27a7","EF060I01","许可记录编号","COMPANY","String","4","系统分配给该条许可记录在本报告中的唯一编号。 ","1:1","434","d908375e-943a-4fe9-911b-849c39d13c76","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"66f3fe7d-a021-49f8-8e6e-133b43b3dd63","EF060Q01","许可部门名称","COMPANY","String","4","向信息主体颁发许可的部门。 ","1:1","435","d908375e-943a-4fe9-911b-849c39d13c76","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0db29825-ce82-4325-8fae-3bfc545ba6d0","EF060Q02","许可类型","COMPANY","String","4","认可的名称。 ","1:1","436","d908375e-943a-4fe9-911b-849c39d13c76","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"49ad56ff-1e6d-41b8-942e-094d2ac99443","EF060R01","许可日期","COMPANY","Date","4","认可部门批准/评定该认可的日期。 ","1:1","437","d908375e-943a-4fe9-911b-849c39d13c76","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"50217f7a-2daa-4234-a925-4e9de9612e22","EF060R02","截止日期","COMPANY","Date","4","许可有效期的截至时间。 ","1:1","438","d908375e-943a-4fe9-911b-849c39d13c76","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1cc60d07-f418-484d-ad1e-f672140a4501","EF060Q03","许可内容","COMPANY","String","4","许可部门对信息主体做出可的具体内容,包括许事项名称。 ","1:1","439","d908375e-943a-4fe9-911b-849c39d13c76","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d988361a-ae43-4067-b15f-c85ed7c4294e","EF07","获得认证记录信息单元","COMPANY","","3","每条认证记录对应一个信息单元。 ","0:*","440","a8feebe5-13d3-40a4-aa11-ea4c262e467c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8e1f3d81-39ac-4fbc-a9cf-803b309cec50","EF070I01","认证记录编号","COMPANY","String","4","系统分配给该条认证记录在本报告中的唯一编号。 ","1:1","441","d988361a-ae43-4067-b15f-c85ed7c4294e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"51b37a0c-05f9-4ddf-9551-1e6aa0513e54","EF070Q01","认证部门名称","COMPANY","String","4","批准认证的具体行政机构的名称。 ","1:1","442","d988361a-ae43-4067-b15f-c85ed7c4294e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b11559af-62d4-4e80-9beb-8a29a3202a62","EF070Q02","认证类型","COMPANY","String","4","认证的名称。 ","1:1","443","d988361a-ae43-4067-b15f-c85ed7c4294e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6d8d27bf-d01d-4b5d-b2d8-c3e95edca134","EF070R01","认证日期","COMPANY","Date","4","认证部门批准/评定该认证的日期。 ","1:1","444","d988361a-ae43-4067-b15f-c85ed7c4294e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0477a332-bed7-4dd4-8a8c-687d8bf4e948","EF070R02","截止日期","COMPANY","Date","4","认证部门对认证规定的有效期截止日。 ","1:1","445","d988361a-ae43-4067-b15f-c85ed7c4294e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e8e0af43-75f2-44ca-840c-c0842f1f7ef9","EF070Q03","认证内容","COMPANY","String","4","认证部门对信息主体被允许从事的具体行业或事项的描述。 ","1:1","446","d988361a-ae43-4067-b15f-c85ed7c4294e","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"27c2a6b1-b7e9-40ac-afc7-2a0a682a082d","EF08","获得资质记录信息单元","COMPANY","","3","每条获得资质的记录对应一个信息单元。","0:*","447","a8feebe5-13d3-40a4-aa11-ea4c262e467c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"22e6cc6e-3ef3-4803-8662-53c9be640cf2","EF080I01","资质记录编号 ","COMPANY","String","4","系统分配给该条记录在本报告中的唯一编号。 ","1:1","448","27c2a6b1-b7e9-40ac-afc7-2a0a682a082d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8a1a54b7-bc7d-4f23-b6e4-8405e5c828a1","EF080Q01","认定部门名称 ","COMPANY","String","4","对信息主体进行资质认定的机构的名称。 ","1:1","449","27c2a6b1-b7e9-40ac-afc7-2a0a682a082d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7eb6367f-546a-4510-9632-ba09af5fd696","EF080Q02","资质类型 ","COMPANY","String","4","信息主体所获得资质的名称。 ","1:1","450","27c2a6b1-b7e9-40ac-afc7-2a0a682a082d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5d0a146a-3474-4b1f-aff4-722f9e603af9","EF080R01","批准日期 ","COMPANY","Date","4","信息主体取得资质的日期。 ","1:1","451","27c2a6b1-b7e9-40ac-afc7-2a0a682a082d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4b70549e-51af-42bc-8585-cc0fb84dd47f","EF080R02","截止日期 ","COMPANY","Date","4","资质有效期的截止日。 ","1:1","452","27c2a6b1-b7e9-40ac-afc7-2a0a682a082d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2303db05-c6d1-478c-b5f2-245be66a5c40","EF080Q03","资质内容 ","COMPANY","String","4","认定部门对信息主体所获得的资质的具体描述。 ","1:1","453","27c2a6b1-b7e9-40ac-afc7-2a0a682a082d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c0b45a07-ffb3-4daf-af9f-742579ec0cb2","EF09","获得奖励记录信息单元","COMPANY","","3","每条获得奖励的记录对应一个信息单元。 ","0:*","454","a8feebe5-13d3-40a4-aa11-ea4c262e467c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5614b4ce-8a22-4d79-a018-40566416fcc5","EF090I01","奖励记录编号","COMPANY","String","4","系统分配给该条记录在本报告中的唯一编号。 ","1:1","455","c0b45a07-ffb3-4daf-af9f-742579ec0cb2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"aa679241-8a11-491e-9d64-96ae3945915e","EF090Q01","奖励部门名称","COMPANY","String","4","向信息主体颁发奖励的机构的名称。 ","1:1","456","c0b45a07-ffb3-4daf-af9f-742579ec0cb2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7b4bae27-1974-4211-b684-c92768674fb8","EF090Q02","奖励名称","COMPANY","String","4","信息主体所获得奖励的称号。 ","1:1","457","c0b45a07-ffb3-4daf-af9f-742579ec0cb2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"349d392c-8df4-4328-9b3c-a47d4ad3e138","EF090R01","授予日期","COMPANY","Date","4","信息主体获得奖励的日期。 ","1:1","458","c0b45a07-ffb3-4daf-af9f-742579ec0cb2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8f36f78f-11ac-42d7-aa88-b243a81ea683","EF090R02","截止日期","COMPANY","Date","4","奖励有效期的截止日。 ","1:1","459","c0b45a07-ffb3-4daf-af9f-742579ec0cb2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"14597a70-786b-42f6-8d81-18068d63b4d9","EF090Q03","奖励事实","COMPANY","String","4","奖励内容的具体描述。 ","1:1","460","c0b45a07-ffb3-4daf-af9f-742579ec0cb2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5f145239-58a5-4c6c-aca8-a90d1fe23000","EF10","拥有专利情况信息单元","COMPANY","","3","每条拥有专利的记录对应一个信息单元。 ","0:*","461","a8feebe5-13d3-40a4-aa11-ea4c262e467c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"124115e5-a103-4648-8870-1c6647692f3c","EF100I01","信息编号","COMPANY","String","4","系统分配给该条信息在本报告中的唯一编号。 ","1:1","462","5f145239-58a5-4c6c-aca8-a90d1fe23000","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"eea3aad0-dd2a-4357-a53b-9d4717e02a09","EF100Q01","专利名称","COMPANY","String","4"," ","1:1","463","5f145239-58a5-4c6c-aca8-a90d1fe23000","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2d5cac73-8650-4b51-bcaa-130a663da030","EF100I02","专利号","COMPANY","String","4"," ","1:1","464","5f145239-58a5-4c6c-aca8-a90d1fe23000","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2961c37b-da0a-4f6f-b8c8-7c689ba31298","EF100R01","申请日期","COMPANY","Date","4"," ","1:1","465","5f145239-58a5-4c6c-aca8-a90d1fe23000","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a7a80906-f41a-4e4a-a341-3fa7c7e01901","EF100R02","授予日期","COMPANY","Date","4"," ","1:1","466","5f145239-58a5-4c6c-aca8-a90d1fe23000","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2c390aff-aa30-4c3e-9974-be0923d8097c","EF100S01","专利有效期","COMPANY","String","4","以年为单位。 ","1:1","467","5f145239-58a5-4c6c-aca8-a90d1fe23000","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f98c9747-d103-4781-a142-406746a4afde","EFF","进出口检验相关信息","COMPANY","","2","","1:1","468","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"801691e5-fdea-495c-92ce-a7e7bf89d807","EF11","出入境检验疫绿色通道信息单元","COMPANY","","3","每条出入境检验检疫绿色通道记录对应一个信息单元。","0:*","469","f98c9747-d103-4781-a142-406746a4afde","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d65af0a8-4120-4db2-ab2a-52a8a815d40a","EF110I01","信息编号","COMPANY","String","4","系统分配给该条信息在本报告中的唯一编号。 ","1:1","470","801691e5-fdea-495c-92ce-a7e7bf89d807","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"85aeba43-60b1-4684-8f56-d40566a378a9","EF110Q01","批准部门名称","COMPANY","String","4","批准进入出入境检验检疫绿色通道的部门。","1:1","471","801691e5-fdea-495c-92ce-a7e7bf89d807","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7924634c-38b2-469d-a00b-3ded846ced53","EF110Q02","出口商品名称","COMPANY","String","4","","1:1","472","801691e5-fdea-495c-92ce-a7e7bf89d807","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f39d0e1b-dd96-4964-a39d-0f5a14a3b92c","EF110R01","生效日期","COMPANY","Date","4","","1:1","473","801691e5-fdea-495c-92ce-a7e7bf89d807","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"78202f0c-f510-4d0c-986e-66baf17ca9b1","EF12","进出口商品免验信息单元","COMPANY","","3","每条进出口商品免验记录对应一个信息单元。","0:*","474","f98c9747-d103-4781-a142-406746a4afde","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d0f47d2e-0e30-49b6-be46-6edfb64de5e8","EF120I01","信息编号","COMPANY","String","4","系统分配给该条信息在本报告中的唯一编号。 ","1:1","475","78202f0c-f510-4d0c-986e-66baf17ca9b1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"90def690-a8a3-49ba-9549-12a0a214bb6b","EF120Q01","批准部门名称","COMPANY","String","4","批准进出口商品免验的部门的名称。 ","1:1","476","78202f0c-f510-4d0c-986e-66baf17ca9b1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"40327a40-b16a-4e34-824b-ea42751c8846","EF120Q02","免验商品名称","COMPANY","String","4"," ","1:1","477","78202f0c-f510-4d0c-986e-66baf17ca9b1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5a351982-e1f5-43af-8f11-467f5921175e","EF120I02","免验号","COMPANY","String","4"," ","1:1","478","78202f0c-f510-4d0c-986e-66baf17ca9b1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"426a643e-9440-4cb8-8b70-3e9e2bdbc644","EF120R02","截至日期","COMPANY","Date","4"," ","1:1","479","78202f0c-f510-4d0c-986e-66baf17ca9b1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8c9de785-624a-456a-b884-57ec9840f08d","EF13","进出口商品检验分类监管信息单元","COMPANY","","3","每条进出口商品检验分类监管记录对应一个信息单元。","0:*","480","f98c9747-d103-4781-a142-406746a4afde","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3e076712-5f24-49a2-8ad7-573c152bb82c","EF130I01","信息编号","COMPANY","String","4","系统分配给该条信息在本报告中的唯一编号。 ","1:1","481","8c9de785-624a-456a-b884-57ec9840f08d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"77512c17-887f-4dcf-b64a-93f105814000","EF130Q01","监管部门名称","COMPANY","String","4","对进出口商品进行分类检验的监管部门。 ","1:1","482","8c9de785-624a-456a-b884-57ec9840f08d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"877fb74b-181f-4e9c-b08d-c84dfe15dad1","EF130Q02","管辖直属局","COMPANY","String","4","负责对生产企业进行分类并实施检验监督管理的各直属检验检疫局。 ","1:1","483","8c9de785-624a-456a-b884-57ec9840f08d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"facfb8eb-57d4-41ea-ae08-67b52700251f","EF130D01","监管级别","COMPANY","String","4","代码表详见附录 A。","1:1","484","8c9de785-624a-456a-b884-57ec9840f08d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c552a29e-67f8-4f52-a173-a9a876a66cb4","EF130R01","生效日期","COMPANY","Date","4"," ","1:1","485","8c9de785-624a-456a-b884-57ec9840f08d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4b1bcd9d-9793-4b51-b527-3e951b39c2bf","EF130R02","截至日期","COMPANY","Date","4"," ","1:1","486","8c9de785-624a-456a-b884-57ec9840f08d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0db17edd-d14f-4ab7-bfc0-16a12cb50ec4","EFG","融资规模控制信息","COMPANY","","2","","1:1","487","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c13bdcbf-49c9-40de-867e-4d280fd0d1a6","EF14","融资规模控制信息单元","COMPANY","","3","每条融资规模控制记录对应一个信息单元。","0:*","488","0db17edd-d14f-4ab7-bfc0-16a12cb50ec4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a6b783c7-959e-4e7b-95cd-3d0b2dcd4a84","EF140I01","信息编号","COMPANY","String","4","系统分配给该条信息在本报告中的唯一编号。 ","1:1","489","c13bdcbf-49c9-40de-867e-4d280fd0d1a6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"28015e72-a2dc-4220-9c9c-d8bb79f6a09a","EF140D01","所属名录","COMPANY","String","4","代码表如下: +1-土地储备机构名录","1:1","490","c13bdcbf-49c9-40de-867e-4d280fd0d1a6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e8184243-b1a9-4a79-82ed-9778ba1475f2","EF140D02","融资控制类型","COMPANY","String","4","代码表如下: +1-年度可融资规模","1:1","491","c13bdcbf-49c9-40de-867e-4d280fd0d1a6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"83a67e5b-65f2-455e-84c1-c02501f0fba1","EF140R01","年度","COMPANY","String","4","融资控制年度信息。","1:1","492","c13bdcbf-49c9-40de-867e-4d280fd0d1a6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d9590acb-7beb-49e2-b5d6-bd62c840451b","EF140J01","规模","COMPANY","String","4","融资规模的控制金额上限。","1:1","493","c13bdcbf-49c9-40de-867e-4d280fd0d1a6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"577dafc3-4fcc-4e2e-8717-366d0c48cf2d","EGA","财务信息","COMPANY","","2","","1:1","494","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"60cc67b7-2289-4751-9d23-5398defab454","EG01","企业资产负债表(2002版)信息单元","COMPANY","","3","每张财务报表对应一个信息单元。","0:56","495","577dafc3-4fcc-4e2e-8717-366d0c48cf2d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"634f7910-9266-45da-ac15-4862631d6dca","EG01A","基础段","COMPANY","","4","描述财务报表的报送标识等。","1:1","496","60cc67b7-2289-4751-9d23-5398defab454","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"19ca2619-aab8-40e7-a06d-0cd7d967c299","EG01AI01","财务报表编号","COMPANY","String","5","系统分配给该财务报表在本报告中的唯一编号。","1:1","497","634f7910-9266-45da-ac15-4862631d6dca","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8f92e5f3-9657-482a-980c-c970355168cc","EG01AD01","业务管理机构","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。","1:1","498","634f7910-9266-45da-ac15-4862631d6dca","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3eea994c-fa6e-41e0-9ce3-e429de29667d","EG01AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","499","634f7910-9266-45da-ac15-4862631d6dca","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"837b5fb6-7f00-47c2-9505-910e16adc7a8","EG01AR01","报表年份","COMPANY","String","5","财务报表所属的年份。","1:1","500","634f7910-9266-45da-ac15-4862631d6dca","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"11e29a05-3464-48e1-9ce1-c6656c03cedb","EG01AD02","报表类型","COMPANY","String","5","代码表详见附录 A“财报报表类型代码表”。 ","1:1","501","634f7910-9266-45da-ac15-4862631d6dca","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e75e54fb-d3eb-4328-bdfe-ad74513dcc0e","EG01AD03","报表类型细分","COMPANY","String","5","代码表详见附录 A“财报报表类型细分代码表”。","1:1","502","634f7910-9266-45da-ac15-4862631d6dca","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"83c12e4b-a591-424c-8e34-4a46c2f582c4","EG01B","企业资产负债表(2002 版)段","COMPANY","","4","描述依据《2002 年度会计报表编制手册》(中华人民共和国财政部统计评价司编,ISBN 7-5058-3258-1,经济科学出版社)制 +定的资产负债表信息。","1:1","503","60cc67b7-2289-4751-9d23-5398defab454","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fbca738f-ee95-44db-b8aa-ae632271a871","EG01BJ01","货币资金","COMPANY","String","5","","1:1","504","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"af365ab5-e4d1-4abe-9471-e2c0e2a3336a","EG01BJ02","短期投资","COMPANY","String","5","","1:1","505","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"525c4516-864e-4f6f-96a0-630be71e35a6","EG01BJ03","应收票据","COMPANY","String","5","","1:1","506","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0e501bc4-5375-4133-8f72-d6049c448b99","EG01BJ04","应收股利","COMPANY","String","5","","1:1","507","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ccaffb14-daa4-4e09-ad80-073e2dfdf5e5","EG01BJ05","应收利息","COMPANY","String","5","","1:1","508","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"57146abb-d525-4170-83a0-15244b761613","EG01BJ06","应收账款","COMPANY","String","5","","1:1","509","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2cc161ad-7000-4366-b69e-f9e804263e0d","EG01BJ07","其他应收款","COMPANY","String","5","","1:1","510","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5a4d758c-7020-465a-b924-3b50f3775de9","EG01BJ08","预付账款","COMPANY","String","5","","1:1","511","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"864a0939-ec2b-4c5c-94e0-841273f4ca9e","EG01BJ09","期货保证金","COMPANY","String","5","","1:1","512","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"33772243-fb76-4a40-ae92-6c05f080008c","EG01BJ10","应收补贴款","COMPANY","String","5","","1:1","513","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5ca036f0-2c18-4063-b1ca-d5a02122ab39","EG01BJ11","应收出口退税","COMPANY","String","5","","1:1","514","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"08f20f86-15b8-4329-80d9-4f3e2f601c9e","EG01BJ12","存货","COMPANY","String","5","","1:1","515","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"24a387f2-b471-4c2f-9678-13e2c56683ad","EG01BJ13","存货原材料","COMPANY","String","5","","1:1","516","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"052ae390-2f28-4e95-b5fd-886bb1cffdb9","EG01BJ14","存货产成品","COMPANY","String","5","","1:1","517","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ae9981e1-002f-4640-859f-e773b2036e8c","EG01BJ15","待摊费用","COMPANY","String","5","","1:1","518","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ccdc9e28-d951-4529-956d-f6b8c7085e4a","EG01BJ16","待处理流动资产净损失","COMPANY","String","5","","1:1","519","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9502843a-2a1b-4118-8210-20f0fd3cb1f4","EG01BJ17","一年内到期的长期债权投资","COMPANY","String","5","","1:1","520","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"73de36d1-c369-4294-bb86-ca0f20f798a0","EG01BJ18","其他流动资产","COMPANY","String","5","","1:1","521","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"53af1c93-7835-44c2-9ca7-07472b7384ce","EG01BJ19","流动资产合计","COMPANY","String","5","","1:1","522","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"77fe6f42-0bda-4cef-9811-2d7e67980853","EG01BJ20","长期投资","COMPANY","String","5","","1:1","523","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b48e7b9a-25f8-4d7c-88e7-486eaf602c15","EG01BJ21","长期股权投资","COMPANY","String","5","","1:1","524","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f1571c03-b823-4668-8e88-7245937a507c","EG01BJ22","长期债权投资","COMPANY","String","5","","1:1","525","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"65c14098-7a62-430d-841b-e6dc71f4e300","EG01BJ23","合并价差","COMPANY","String","5","","1:1","526","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4bc09e29-49c4-4c8a-b8cd-194fbaa6d9de","EG01BJ24","长期投资合计","COMPANY","String","5","","1:1","527","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"97ee5551-98b9-40ec-9342-4a70faf986d5","EG01BJ25","固定资产原价","COMPANY","String","5","","1:1","528","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d71fa70f-4a5c-409d-b712-b744ddf982f8","EG01BJ26","累计折旧","COMPANY","String","5","","1:1","529","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5cd770e6-59ac-4a74-a0c5-2307310545c7","EG01BJ27","固定资产净值","COMPANY","String","5","","1:1","530","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f13d0b52-2d5a-42d0-95d9-d822efd326b6","EG01BJ28","固定资产值减值准备","COMPANY","String","5","","1:1","531","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8027672a-ef1d-479d-86d8-deed060c0147","EG01BJ29","固定资产净额","COMPANY","String","5","","1:1","532","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fa243697-5764-4f07-acb6-80b008816af0","EG01BJ30","固定资产清理","COMPANY","String","5","","1:1","533","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"961c808c-9b5f-4180-aa8b-c3b7e3239b08","EG01BJ31","工程物资","COMPANY","String","5","","1:1","534","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a6e41b70-3514-4db6-b5f8-a01589c138ca","EG01BJ32","在建工程","COMPANY","String","5","","1:1","535","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"75507c44-49e6-4c27-bfa3-4c1c3a80e28e","EG01BJ33","待处理固定资产净损失","COMPANY","String","5","","1:1","536","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e6f963d1-ef89-4f74-bd97-44a45b23d123","EG01BJ34","固定资产合计","COMPANY","String","5","","1:1","537","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d15448f1-2b03-408f-b4bb-cf4e83cc7a83","EG01BJ35","无形资产","COMPANY","String","5","","1:1","538","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"27867758-592d-4a1a-b99c-ff683e2f7684","EG01BJ36","(无形资产科目下)土地使用权","COMPANY","String","5","","1:1","539","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ad0da87f-cf9c-46de-94c2-e5444c1f9baa","EG01BJ37","递延资产","COMPANY","String","5","","1:1","540","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0f34be78-76df-48b6-91fa-f09da8313cf1","EG01BJ38","(递延资产科目下)固定资产修理","COMPANY","String","5","","1:1","541","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"54d6fcb3-272f-4c99-85c2-a21f1d1bdb78","EG01BJ39","(递延资产科目下)固定资产改良支出","COMPANY","String","5","","1:1","542","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9a8e9c21-ca92-465a-821c-216325b80750","EG01BJ40","其他长期资产","COMPANY","String","5","","1:1","543","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"23ecce31-ad72-42b8-a2ce-c06af0141877","EG01BJ41","(其他长期资产科目下)特准储备物资","COMPANY","String","5","","1:1","544","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d8e40dd1-2286-4c42-84a6-fb6f3ba76c74","EG01BJ42","无形及其他资产合计","COMPANY","String","5","","1:1","545","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bed340f6-3c4e-40b8-8405-f7f1bcc28c42","EG01BJ43","递延税款借项","COMPANY","String","5","","1:1","546","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"92bc20df-1046-4a02-8817-07a3a4fd0097","EG01BJ44","资产总计","COMPANY","String","5","","1:1","547","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"00c68a90-1009-4557-8b0b-1044566d4a11","EG01BJ45","短期借款","COMPANY","String","5","","1:1","548","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2556aca7-fdc3-4287-a51f-7f7c915f3cdb","EG01BJ46","应付票据","COMPANY","String","5","","1:1","549","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"704c5cbf-cda2-413d-a90b-ba11cc587b8d","EG01BJ47","应付账款","COMPANY","String","5","","1:1","550","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3034bba8-ba3c-4938-9f67-0f6e5bc954e8","EG01BJ48","预收账款","COMPANY","String","5","","1:1","551","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b1b31942-3d0f-40fe-b2f9-44ecd88ca6e2","EG01BJ49","应付工资","COMPANY","String","5","","1:1","552","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"21952dde-81aa-4439-85b2-f5a090417e98","EG01BJ50","应付福利费","COMPANY","String","5","","1:1","553","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a90bc76e-722c-426e-a98f-c464ebb9fbe3","EG01BJ51","应付利润","COMPANY","String","5","","1:1","554","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6c4aec20-3375-4c2b-9927-5fc376b5f56b","EG01BJ52","应交税金","COMPANY","String","5","","1:1","555","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"149c3a16-56a7-46a2-bc8e-da7e287ec086","EG01BJ53","其他应交款","COMPANY","String","5","","1:1","556","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"74ba832b-8698-4cab-9851-9f17350effec","EG01BJ54","其他应付款","COMPANY","String","5","","1:1","557","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bab77eaf-cda9-431f-b7d6-cedf00671bd4","EG01BJ55","预提费用","COMPANY","String","5","","1:1","558","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"56569599-cf4d-405a-a4f1-d0752b6d626a","EG01BJ56","预计负债","COMPANY","String","5","","1:1","559","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"97944fa3-55da-43e1-9f45-ce7decd6c9f1","EG01BJ57","一年内到期的长期负债","COMPANY","String","5","","1:1","560","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"058f1c9f-4f1e-4bd7-8df6-af9a099e7aa2","EG01BJ58","其他流动负债","COMPANY","String","5","","1:1","561","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e53d030c-c495-4e92-8ffd-28bea7c5fa0b","EG01BJ59","流动负债合计","COMPANY","String","5","","1:1","562","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"90895688-052a-44c3-89ae-cace4f88b0b1","EG01BJ60","长期借款","COMPANY","String","5","","1:1","563","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"89426a3b-50cb-4a50-ab0e-277b85ca1c08","EG01BJ61","应付债券","COMPANY","String","5","","1:1","564","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7c64eec5-b590-4061-a4f5-4f139bdfd3aa","EG01BJ62","长期应付款","COMPANY","String","5","","1:1","565","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"85b0c151-0a28-437e-8738-c4cc8e9b9b71","EG01BJ63","专项应付款","COMPANY","String","5","","1:1","566","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ae1efbb2-d85e-4e2e-8f24-2a45ae97a04f","EG01BJ64","其他长期负债","COMPANY","String","5","","1:1","567","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"673d5b73-60a2-4d53-b298-173724bfa7f9","EG01BJ65","(其他长期负债科目下)特准储备基金","COMPANY","String","5","","1:1","568","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"feeb5193-c32a-482f-af10-24050740b636","EG01BJ66","长期负债合计","COMPANY","String","5","","1:1","569","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"889806ab-c3a2-456b-b35f-73580bb76ed7","EG01BJ67","递延税款贷项","COMPANY","String","5","","1:1","570","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0aa557c9-b732-4d7b-b21a-844e3a28445c","EG01BJ68","负债合计","COMPANY","String","5","","1:1","571","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3c35cb0a-7396-42c6-a557-568d04f4430e","EG01BJ69","少数股东权益","COMPANY","String","5","","1:1","572","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3cc43c46-f3c7-42c1-9ac5-0fce1e6018d6","EG01BJ70","实收资本","COMPANY","String","5","","1:1","573","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"474762f8-66c8-4801-8fbe-638cf56d6939","EG01BJ71","国家资本","COMPANY","String","5","","1:1","574","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0a40ab68-a9d3-42e6-a159-521105a74b08","EG01BJ72","集体资本","COMPANY","String","5","","1:1","575","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"031462af-c4bb-4e5f-a57f-e680c9def6d9","EG01BJ73","法人资本","COMPANY","String","5","","1:1","576","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c0a09056-f5a1-4b99-8a49-4d514f345f6a","EG01BJ74","资本","COMPANY","String","5","","1:1","577","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"700cb80d-07ab-4ce2-9a22-d75ae5b093e3","EG01BJ75","资本","COMPANY","String","5","","1:1","578","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"73b4f11a-5e99-4de2-97eb-19aa0960b2ac","EG01BJ76","个人资本","COMPANY","String","5","","1:1","579","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ee41acd6-58f4-4cf6-9e08-4fcbf0a6b4e2","EG01BJ77","外商资本","COMPANY","String","5","","1:1","580","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ed2e8b8a-2c54-4689-a48c-af0892ac5b57","EG01BJ78","资本公积","COMPANY","String","5","","1:1","581","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"68612e4c-ac8b-4849-bb53-aa0c3eaaad18","EG01BJ79","盈余公积","COMPANY","String","5","","1:1","582","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c0fb4ec2-a972-43dd-8996-b39756674e86","EG01BJ80","(盈余公积科目下)法定盈余公积","COMPANY","String","5","","1:1","583","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"059958de-3594-4e40-a039-937ab249370d","EG01BJ81","(盈余公积科目下)公益金","COMPANY","String","5","","1:1","584","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"815b5fa4-8a14-4e50-ba14-45edbb737569","EG01BJ82","(盈余公积科目下)补充流动资本","COMPANY","String","5","","1:1","585","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dfab6433-c024-40f8-980b-71f53d5c2488","EG01BJ83","未确认的投资损失","COMPANY","String","5","","1:1","586","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2ea77b13-f156-4fec-9b6d-f98e1e27cac4","EG01BJ84","未分配利润","COMPANY","String","5","","1:1","587","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"21c34c9f-fb24-4919-ba33-c6ef39c35172","EG01BJ85","外币报表折算差额","COMPANY","String","5","","1:1","588","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ce8db79d-90ca-4063-8429-513175efd26f","EG01BJ86","所有者权益合计","COMPANY","String","5","","1:1","589","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"526af6e3-36c3-482d-bbe5-049ff417ed4f","EG01BJ87","负债和所有者权益总计","COMPANY","String","5","","1:1","590","83c12e4b-a591-424c-8e34-4a46c2f582c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"40520e6f-3631-4245-8d83-39b4c680e938","EG02","企业资产负债表(2007版)信息单元","COMPANY","","3","每张财务报表对应一个信息单元。","0:56","591","577dafc3-4fcc-4e2e-8717-366d0c48cf2d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e71018fc-1e18-4437-8bcb-44b70e31f3b1","EG02A","基础段","COMPANY","","4","描述财务报表的报送标识等。","1:1","592","40520e6f-3631-4245-8d83-39b4c680e938","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"52cd4e3c-dcd9-4fe9-a84f-f7eb3c51777e","EG02AI01","财务报表编号","COMPANY","String","5","系统分配给该财务报表在本报告中的唯一编号。","1:1","593","e71018fc-1e18-4437-8bcb-44b70e31f3b1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"edcb0c3e-3726-43c4-a6bf-fd7e44bc3450","EG02AD01","业务管理机构","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。","1:1","594","e71018fc-1e18-4437-8bcb-44b70e31f3b1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9b15f454-e423-4dbc-896a-7936c0adc7d7","EG02AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","595","e71018fc-1e18-4437-8bcb-44b70e31f3b1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7eeda63e-9587-48f8-9c4c-b95efdc3a0be","EG02AR01","报表年份","COMPANY","String","5","财务报表所属的年份。","1:1","596","e71018fc-1e18-4437-8bcb-44b70e31f3b1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b8eafe5a-9611-4b6b-8dcc-7c58a6ecd482","EG02AD02","报表类型","COMPANY","String","5","代码表详见附录 A“财报报表类型代码表”。 ","1:1","597","e71018fc-1e18-4437-8bcb-44b70e31f3b1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0997cc41-0eb2-463a-9ff3-e135c2c7128b","EG02AD03","报表类型细分","COMPANY","String","5","代码表详见附录 A“财报报表类型细分代码表”。","1:1","598","e71018fc-1e18-4437-8bcb-44b70e31f3b1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","EG02B","企业资产负债表(2007版)段","COMPANY","","4","描述依据《企业会计准则—基本准则(2006)》(财政部令第33 号)制定的资产负债表信息。","1:1","599","40520e6f-3631-4245-8d83-39b4c680e938","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f55af5ca-8ad2-4de1-af03-d46b77e77834","EG02BJ01","货币资金","COMPANY","String","5","","1:1","600","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c73ed65f-4ada-451f-8d76-768c96c76bf3","EG02BJ02","交易性金融资产","COMPANY","String","5","","1:1","601","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ee62e929-c3c6-4e12-9a06-b6c0101a5efc","EG02BJ03","应收票据","COMPANY","String","5","","1:1","602","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"68effb37-6865-4c70-b841-5e1ce229c698","EG02BJ04","应收账款","COMPANY","String","5","","1:1","603","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4eed91f5-b73b-4738-9524-38086e60dd00","EG02BJ05","预付账款","COMPANY","String","5","","1:1","604","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ecdf17f8-2b85-47a6-bcb1-ca358e08b10e","EG02BJ06","应收利息","COMPANY","String","5","","1:1","605","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f035107a-17e0-4827-ba4b-0f61c6d669d7","EG02BJ07","应收股利","COMPANY","String","5","","1:1","606","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"763c558e-f536-41a0-b70e-9a4a6b138346","EG02BJ08","其他应收款","COMPANY","String","5","","1:1","607","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b8e5340a-f5f7-4dcc-8ce6-c0aac68dfcf7","EG02BJ09","存货","COMPANY","String","5","","1:1","608","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"06adae02-52ce-45f3-914f-1e8a53486d64","EG02BJ10","一年内到期的非流动资产","COMPANY","String","5","","1:1","609","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9c24052c-c091-4e5f-8862-3469d28b2eed","EG02BJ11","其他流动资产","COMPANY","String","5","","1:1","610","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2ef3a573-c3a9-4b00-a214-c206a844b621","EG02BJ12","流动资产合计","COMPANY","String","5","","1:1","611","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d504aa61-3434-4e94-b16a-1bcd9600724b","EG02BJ13","可供出售的金融资产","COMPANY","String","5","","1:1","612","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"13f0ed90-770b-4db6-bd3d-ba18ab3f785e","EG02BJ14","持有至到期投资","COMPANY","String","5","","1:1","613","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6f56727b-f4a3-4c1d-b89e-b9c2f32380c7","EG02BJ15","长期股权投资","COMPANY","String","5","","1:1","614","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"483b65fb-971e-4bfd-8993-b0ba6f318979","EG02BJ16","长期应收款","COMPANY","String","5","","1:1","615","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fee1dde5-7ade-4f9a-987d-92455fb493f9","EG02BJ17","投资性房地产","COMPANY","String","5","","1:1","616","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fd485b18-2b32-4b33-b267-5c8e26299362","EG02BJ18","固定资产","COMPANY","String","5","","1:1","617","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1216f3d4-1f40-4731-bbcc-305779af49d4","EG02BJ19","在建工程","COMPANY","String","5","","1:1","618","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"25a5199c-bb55-40b3-8a86-13377f0a06b4","EG02BJ20","工程物资","COMPANY","String","5","","1:1","619","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0204890f-a43f-440e-a51e-ab81158838fd","EG02BJ21","固定资产清理","COMPANY","String","5","","1:1","620","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bf76134f-4df5-4ec9-b580-a15b6f669c89","EG02BJ22","生产性生物资产","COMPANY","String","5","","1:1","621","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fe21b5c2-eb60-4fdc-b46d-79eb8bc1809d","EG02BJ23","油气资产","COMPANY","String","5","","1:1","622","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6b57cc16-cdd6-4186-a378-bb2e649305fa","EG02BJ24","无形资产","COMPANY","String","5","","1:1","623","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fe335b2a-6c62-4162-9c66-716cd705bf32","EG02BJ25","开发支出","COMPANY","String","5","","1:1","624","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3c398473-127c-4e31-a8cd-9da72fe1c285","EG02BJ26","商誉","COMPANY","String","5","","1:1","625","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6a2ac7e3-4b75-4bd1-91ad-fc6b91024a35","EG02BJ27","长期待摊费用","COMPANY","String","5","","1:1","626","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"eb310145-5b7e-4e9c-8289-c947f66661a9","EG02BJ28","递延所得税资产","COMPANY","String","5","","1:1","627","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"78c2d49f-613e-47c4-9011-a2f826587a49","EG02BJ29","其他非流动资产","COMPANY","String","5","","1:1","628","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"366d074e-4f6c-4448-aeee-b40d563c04ce","EG02BJ30","非流动资产合计","COMPANY","String","5","","1:1","629","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"885a3587-afbd-41b3-8505-2f4c3983e4ab","EG02BJ31","资产总计","COMPANY","String","5","","1:1","630","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e683c0e3-89f3-4a77-9ccb-ffe8392dabee","EG02BJ32","短期借款","COMPANY","String","5","","1:1","631","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9d7aa982-b1db-4204-a6dd-b132664badaf","EG02BJ33","交易性金融负债","COMPANY","String","5","","1:1","632","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7cc61a51-c882-4cdf-a049-0ac31fc4b59f","EG02BJ34","应付票据","COMPANY","String","5","","1:1","633","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c19888a7-a266-4c12-986d-1c2d1fff5654","EG02BJ35","应付账款","COMPANY","String","5","","1:1","634","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2f125a88-aefc-4977-a714-85d8cb992106","EG02BJ36","预收账款","COMPANY","String","5","","1:1","635","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8d249209-eea0-4b6e-8036-4b050148ee2a","EG02BJ37","应付利息","COMPANY","String","5","","1:1","636","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6989578d-c91a-41eb-942b-3478bde307df","EG02BJ38","应付职工薪酬","COMPANY","String","5","","1:1","637","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a0a4d363-b177-4f73-9d6e-91fbd5dd4eac","EG02BJ39","应交税费","COMPANY","String","5","","1:1","638","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9ad73dbe-4c0e-4ef8-9df8-fa8052bec858","EG02BJ40","应付股利","COMPANY","String","5","","1:1","639","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9fc9a9b5-b7b3-44d5-b43a-6b42ef5d0ffc","EG02BJ41","其他应付款","COMPANY","String","5","","1:1","640","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e77c1c31-fd71-4429-98d4-4504d882449c","EG02BJ42","一年内到期的非流动负债","COMPANY","String","5","","1:1","641","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f4955ccf-bf34-4803-8e61-ce10f06b7860","EG02BJ43","其他流动负债","COMPANY","String","5","","1:1","642","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"272de140-722c-4599-a594-b4e825472589","EG02BJ44","流动负债合计","COMPANY","String","5","","1:1","643","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"18878fe3-bb8c-4f93-8ebd-2495bff556e8","EG02BJ45","长期借款","COMPANY","String","5","","1:1","644","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"35dee086-f072-46bb-aecd-d201b9448376","EG02BJ46","应付债券","COMPANY","String","5","","1:1","645","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"46831b53-8dac-49e0-816b-e2bc39188584","EG02BJ47","长期应付款","COMPANY","String","5","","1:1","646","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"552c8c2a-db18-423f-a1da-203163c4c268","EG02BJ48","专项应付款","COMPANY","String","5","","1:1","647","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"810fd45f-a3c1-4693-a331-9535314bc050","EG02BJ49","预计负债","COMPANY","String","5","","1:1","648","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a43661ef-3f07-459a-93b8-31454fce5312","EG02BJ50","递延所得税负债","COMPANY","String","5","","1:1","649","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"37ae0146-1006-4c84-a5d0-547e988c483e","EG02BJ51","其他非流动负债","COMPANY","String","5","","1:1","650","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"de350826-0991-49a4-8c1c-b19330dd3767","EG02BJ52","非流动负债合计","COMPANY","String","5","","1:1","651","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"00a0f7a8-ee49-4454-adfb-d03fe5b8f08b","EG02BJ53","负债合计","COMPANY","String","5","","1:1","652","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d9e6b108-3414-484f-85b9-acabd3f42b3b","EG02BJ54","实收资本(或股本)","COMPANY","String","5","","1:1","653","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3833ae1e-9e49-4e11-bf93-ec77b3876959","EG02BJ55","资本公积","COMPANY","String","5","","1:1","654","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"22756fc4-4e9d-4d8b-9dea-d52c62d4a18b","EG02BJ56","减:库存股","COMPANY","String","5","","1:1","655","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e9f74c24-c7f9-4e5f-b8e9-219edbd1ed83","EG02BJ57","盈余公积","COMPANY","String","5","","1:1","656","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e24aa8e1-9434-44e8-b96a-7370a1f56b8f","EG02BJ58","未分配利润","COMPANY","String","5","","1:1","657","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6c06df12-3119-46c4-91ae-2fb0f8a81db8","EG02BJ59","所有者权益合计","COMPANY","String","5","","1:1","658","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0480a41c-4ecb-4496-9620-a928e022edd8","EG02BJ60","负债和所有者权益合计","COMPANY","String","5","","1:1","659","775332f2-b7f9-4e46-bd43-2bca3c5fc8f3","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5b5284ac-72f1-4839-b99b-a22aa17b1a5b","EG03","企业利润表及利润分配表(2002版)信息单元","COMPANY","","3","每张财务报表对应一个信息单元。","0:56","660","577dafc3-4fcc-4e2e-8717-366d0c48cf2d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"55c9e66d-f44f-45d1-8068-dcb82b977595","EG03A","基础段","COMPANY","","4","描述财务报表的报送标识等。","1:1","661","5b5284ac-72f1-4839-b99b-a22aa17b1a5b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6afae8cc-155c-486a-8a6a-0775fbbcebad","EG03AI01","财务报表编号","COMPANY","String","5","系统分配给该财务报表在本报告中的唯一编号。","1:1","662","55c9e66d-f44f-45d1-8068-dcb82b977595","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"096accae-0d7c-4817-89ca-f6b6a11cb449","EG03AD01","业务管理机构","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。","1:1","663","55c9e66d-f44f-45d1-8068-dcb82b977595","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"594dc3f0-8766-4063-b2c4-b3f763cc4029","EG03AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","664","55c9e66d-f44f-45d1-8068-dcb82b977595","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"efe9ba0a-c151-4b43-a73f-673852547c4f","EG03AR01","报表年份","COMPANY","String","5","财务报表所属的年份。","1:1","665","55c9e66d-f44f-45d1-8068-dcb82b977595","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ca3fd837-58fc-47c5-9be5-042771de92d6","EG03AD02","报表类型","COMPANY","String","5","代码表详见附录 A“财报报表类型代码表”。 ","1:1","666","55c9e66d-f44f-45d1-8068-dcb82b977595","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"088a8a6c-7936-4e19-8134-bff5e2e4a847","EG03AD03","报表类型细分","COMPANY","String","5","代码表详见附录 A“财报报表类型细分代码表”。","1:1","667","55c9e66d-f44f-45d1-8068-dcb82b977595","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"13808c9a-2682-4a35-b5ef-eebb55ba7de6","EG03B","企业利润及利润分配表(2002版)段 ","COMPANY","","4","描述依据《2002 年度会计报表编制手册》(中华人民共和国财政部统计评价司编,ISBN 7-5058-3258-1,经济科学出版社)制定的利润及利润分配表信息。","1:1","668","5b5284ac-72f1-4839-b99b-a22aa17b1a5b","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a621fc54-3e73-4dcd-8385-7a4e3e6a1877","EG03BJ01","主营业务收入","COMPANY","String","5","","1:1","669","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"510c867b-92cf-4745-892d-11a380b2a1d3","EG03BJ02","(主营业务收入科目下)出口产品销售收入","COMPANY","String","5","","1:1","670","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6c726bb1-f3ec-45dc-8ce0-12309344295d","EG03BJ03","(主营业务收入科目下)进口产品销售收入","COMPANY","String","5","","1:1","671","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c485bc24-d9f2-414d-992a-ca5a3db85a37","EG03BJ04","销售折扣与折让","COMPANY","String","5","","1:1","672","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"83072d53-cfe1-4dca-a2cb-953ae1ed84f8","EG03BJ05","主营业务收入净额","COMPANY","String","5","","1:1","673","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d4b173a5-39a0-4dda-9277-be07f81982d7","EG03BJ06","主营业务成本","COMPANY","String","5","","1:1","674","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1352721c-ec62-43b1-89a2-332a6878886e","EG03BJ07","(主营业务成本科目下)出口产品销售成本","COMPANY","String","5","","1:1","675","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2987b994-7f32-4d9b-920b-90fed179581c","EG03BJ08","主营业务税金及附加","COMPANY","String","5","","1:1","676","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cb4fcd5b-00cc-4f96-aa25-c8d1f0e2e616","EG03BJ09","经营费用","COMPANY","String","5","","1:1","677","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fcbc686c-ddea-4bba-a393-5bc4ecc7a563","EG03BJ10","其他(业务成本)","COMPANY","String","5","","1:1","678","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8ac32f60-1681-4d78-b5b3-14973d828706","EG03BJ11","递延收益","COMPANY","String","5","","1:1","679","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ff042d42-f65f-4065-97c0-96738eb0f434","EG03BJ12","代购代销收入","COMPANY","String","5","","1:1","680","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b27f258e-5130-45e9-92b1-0819d7813625","EG03BJ13","其他(收入)","COMPANY","String","5","","1:1","681","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"721383c2-14a3-42a0-a809-7fc0fdee4d4f","EG03BJ14","主营业务利润","COMPANY","String","5","","1:1","682","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"947d80ae-ac84-449b-a2c0-49c0844b619b","EG03BJ15","其他业务利润","COMPANY","String","5","","1:1","683","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"27f460cf-8d6c-422c-9947-8e7da99ba6ae","EG03BJ16","营业费用","COMPANY","String","5","","1:1","684","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7cd9cfdc-a100-4162-85ac-9ae8414446cb","EG03BJ17","管理费用","COMPANY","String","5","","1:1","685","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"58fe9760-5de3-4b6a-8d39-b90c0ed876ea","EG03BJ18","财务费用","COMPANY","String","5","","1:1","686","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"76ced9d4-a342-4fdf-89ef-41998eecd6b9","EG03BJ19","其他(费用)","COMPANY","String","5","","1:1","687","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"96a028ff-a5f3-41b5-8c1e-c7825e6cd713","EG03BJ20","营业利润","COMPANY","String","5","","1:1","688","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6ba3069f-7b6b-4ef1-ad79-f1ebedda989e","EG03BJ21","投资收益","COMPANY","String","5","","1:1","689","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6c328484-185e-422b-b131-62b2cd4338d4","EG03BJ22","期货收益","COMPANY","String","5","","1:1","690","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f5560897-070a-4969-ad92-1e9a9a36aa02","EG03BJ23","补贴收入","COMPANY","String","5","","1:1","691","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7ab2f6ed-d94b-46a3-bfd2-4909c241b668","EG03BJ24","(补贴收入科目下)补贴前亏损的企业补贴收入","COMPANY","String","5","","1:1","692","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cd2f80dc-887e-49de-a5d2-5ec67d5c8e81","EG03BJ25","营业外收入","COMPANY","String","5","","1:1","693","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"623229ac-353c-4f08-9417-63e769c65143","EG03BJ26","(营业外收入科目下)处置固定资产净收益","COMPANY","String","5","","1:1","694","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"282b4d9b-db5d-4e9e-b711-42c64254d26d","EG03BJ27","(营业外收入科目下)非货币性交易收益","COMPANY","String","5","","1:1","695","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e37d6f6c-f043-4bc5-8932-939ddea3ed38","EG03BJ28","(营业外收入科目下)出售无形资产收益","COMPANY","String","5","","1:1","696","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"27edda7a-ecbf-4717-b42d-58eef06c3061","EG03BJ29","(营业外收入科目下)罚款净收入","COMPANY","String","5","","1:1","697","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6be2954f-5cc3-4904-b776-2460197bd9bc","EG03BJ30","其他(利润)","COMPANY","String","5","","1:1","698","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5447be89-b539-497a-a98a-587819a21c3b","EG03BJ31","(其他科目下)用以前年度含量工资节余弥补利润","COMPANY","String","5","","1:1","699","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1648636d-3056-4277-87db-40cc916b18a7","EG03BJ32","营业外支出","COMPANY","String","5","","1:1","700","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"86412a51-feb3-419b-b685-dd8797b1193f","EG03BJ33","(营业外支出科目下)处置固定资产净损失","COMPANY","String","5","","1:1","701","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e5313eb8-e74a-441d-8321-0b7256bd31fc","EG03BJ34","(营业外支出科目下)债务重组损失","COMPANY","String","5","","1:1","702","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5b68d085-4abb-4f71-8d9c-f5bcb47b0a51","EG03BJ35","(营业外支出科目下)罚款支出","COMPANY","String","5","","1:1","703","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4e4ab0ca-d4c4-4776-987a-6e694e5e8736","EG03BJ36","(营业外支出科目下)捐赠支出","COMPANY","String","5","","1:1","704","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"541d1acc-0255-44b4-b825-4980ee2e58f8","EG03BJ37","其他支出","COMPANY","String","5","","1:1","705","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b5ff7c49-2d9e-4958-b4aa-eea0c71351f1","EG03BJ38","(其他支出)结转的含量工资包干节余","COMPANY","String","5","","1:1","706","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"901b71de-4d90-4e3b-b568-e3f131d0105e","EG03BJ39","利润总额","COMPANY","String","5","","1:1","707","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"455bcb84-4441-4366-b050-bfe3810e0d5e","EG03BJ40","所得税","COMPANY","String","5","","1:1","708","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"03f73c2d-f816-4913-81d7-58a754566225","EG03BJ41","少数股东损益","COMPANY","String","5","","1:1","709","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b7460137-99a9-4f62-bee3-121ffb16de63","EG03BJ42","未确认的投资损失","COMPANY","String","5","","1:1","710","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"94fc580a-51fb-4973-89e8-ac9e5f13e81e","EG03BJ43","净利润","COMPANY","String","5","","1:1","711","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ac21a1de-0ab5-4417-986a-efc147a276fb","EG03BJ44","年初未分配利润","COMPANY","String","5","","1:1","712","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"81943a14-b10f-4565-a951-eafa8e89c13f","EG03BJ45","盈余公积补亏","COMPANY","String","5","","1:1","713","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"342ef1dc-1576-4e1a-9d18-425f6145db7e","EG03BJ46","其他调整因素","COMPANY","String","5","","1:1","714","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ed5f7ce3-733f-499a-b2dd-061512671d0e","EG03BJ47","可供分配的利润","COMPANY","String","5","","1:1","715","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f98d55e2-8e17-4dc9-b20a-5a0cbde3c3e7","EG03BJ48","单项留用的利润","COMPANY","String","5","","1:1","716","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"98dd8a6c-b90c-44a9-a156-65d6f9c624cd","EG03BJ49","补充流动资本","COMPANY","String","5","","1:1","717","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"70d8018c-b95e-46e8-96f1-8b29c075a552","EG03BJ50","提取法定盈余公积","COMPANY","String","5","","1:1","718","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ad4d46eb-f0cd-44e3-acaf-415b27b61cee","EG03BJ51","提取法定公益金","COMPANY","String","5","","1:1","719","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"361b146d-229a-475c-834a-7ea9f1a9bb50","EG03BJ52","提取职工奖励及福利基金","COMPANY","String","5","","1:1","720","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0812f06b-fbb3-4dac-a008-e6136b439427","EG03BJ53","提取储备基金","COMPANY","String","5","","1:1","721","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"250021c5-48f7-4d95-8f7f-e2530f31d488","EG03BJ54","提取企业发展基金","COMPANY","String","5","","1:1","722","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9d46b370-d5bd-46df-bf64-8787fb75d5de","EG03BJ55","利润归还投资","COMPANY","String","5","","1:1","723","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"44d0c11e-0f89-4dc7-9531-858298590028","EG03BJ56","(可供分配的利润科目下)其他","COMPANY","String","5","","1:1","724","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9427eda3-061d-4e40-bc81-bc868a1664d8","EG03BJ57","可供投资者分配的利润","COMPANY","String","5","","1:1","725","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dd75e4c7-42d3-439a-bec3-37e63cd8f337","EG03BJ58","应付优先股股利","COMPANY","String","5","","1:1","726","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f1158086-179d-4158-82e0-f3872fbfd0ce","EG03BJ59","提取任意盈余公积","COMPANY","String","5","","1:1","727","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1d31bec8-fbce-4c15-954d-09217ad8a7de","EG03BJ60","应付普通股股利","COMPANY","String","5","","1:1","728","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2829b324-9f35-4837-a445-8e2b459edd72","EG03BJ61","转作资本的普通股股利","COMPANY","String","5","","1:1","729","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a49ee748-735c-45ed-8ca8-7b517afb8fef","EG03BJ62","(可供投资者分配的利润科目下)其他","COMPANY","String","5","","1:1","730","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"79beddc7-b3fe-4450-80aa-288ad4785af0","EG03BJ63","未分配利润","COMPANY","String","5","","1:1","731","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5cffec12-68eb-492b-96b7-aed4e316281a","EG03BJ64","(未分配利润科目下)应由以后年度税前利润弥补的亏损","COMPANY","String","5","","1:1","732","13808c9a-2682-4a35-b5ef-eebb55ba7de6","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"01f067d3-480f-4c25-bd43-f3c2c61184f8","EG04","企业利润表及利润分配表(2007版)信息单元","COMPANY","","3","每张财务报表对应一个信息单元。","0:56","733","577dafc3-4fcc-4e2e-8717-366d0c48cf2d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4b47ac01-b063-4029-aca4-1ea97b4bbd9c","EG04A","基础段","COMPANY","","4","描述财务报表的报送标识等。","1:1","734","01f067d3-480f-4c25-bd43-f3c2c61184f8","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7c59fbf7-ee59-4a7c-9bbb-72296a26d3f5","EG04AI01","财务报表编号","COMPANY","String","5","系统分配给该财务报表在本报告中的唯一编号。","1:1","735","4b47ac01-b063-4029-aca4-1ea97b4bbd9c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4c41f312-94bc-4774-872a-c9bfb079b38c","EG04AD01","业务管理机构","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。","1:1","736","4b47ac01-b063-4029-aca4-1ea97b4bbd9c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"75d8aee5-20d0-49d0-a595-e29a4107e846","EG04AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","737","4b47ac01-b063-4029-aca4-1ea97b4bbd9c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b8b6607a-b66c-41d7-aaf5-7d5c93d6c9b7","EG04AR01","报表年份","COMPANY","String","5","财务报表所属的年份。","1:1","738","4b47ac01-b063-4029-aca4-1ea97b4bbd9c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"40357618-884d-480b-82c9-86a43cfa45b4","EG04AD02","报表类型","COMPANY","String","5","代码表详见附录 A“财报报表类型代码表”。 ","1:1","739","4b47ac01-b063-4029-aca4-1ea97b4bbd9c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"503d7dc6-2b08-458d-971c-343ed4e5c1bd","EG04AD03","报表类型细分","COMPANY","String","5","代码表详见附录 A“财报报表类型细分代码表”。","1:1","740","4b47ac01-b063-4029-aca4-1ea97b4bbd9c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c9ad37f9-fea8-4067-bf31-c952572c9672","EG04B","企业利润及利润分配表(2007版)段 ","COMPANY","","4","描述依据《企业会计准则—基本准则(2006)》(财政部令第 33 号)制定的利润及利润分配表信息。","1:1","741","01f067d3-480f-4c25-bd43-f3c2c61184f8","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"91b7f737-679f-4760-adbd-32ebda1ab990","EG04BJ01","营业收入","COMPANY","String","5","","1:1","742","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"027c7cd3-bc08-47dc-8b30-66f697197fe7","EG04BJ02","营业成本","COMPANY","String","5","","1:1","743","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"51e2d25a-dff5-47d3-b0c6-3204fe673919","EG04BJ03","营业税金及附加","COMPANY","String","5","","1:1","744","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9bb29c63-0378-4b1b-96a0-e1167a3f0833","EG04BJ04","销售费用","COMPANY","String","5","","1:1","745","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ee43155d-9ce7-4af7-8156-23e069c6614f","EG04BJ05","管理费用","COMPANY","String","5","","1:1","746","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e4079c37-ec85-43c0-abb3-4096d6066039","EG04BJ06","财务费用","COMPANY","String","5","","1:1","747","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"01dea473-c474-40ad-bb99-d312ee22452b","EG04BJ07","资产减值损失","COMPANY","String","5","","1:1","748","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8d8a1bfe-d84a-4042-8757-5deb2c3f0285","EG04BJ08","公允价值变动净收益","COMPANY","String","5","","1:1","749","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f9fca034-f37c-4ed2-8b61-29cdc7b90621","EG04BJ09","投资净收益","COMPANY","String","5","","1:1","750","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dfae5f7b-1877-4f5c-8055-9291998ff7f6","EG04BJ10","对联营企业和合营企业的投资收益","COMPANY","String","5","","1:1","751","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a22110b6-eb7c-42cd-9cfc-54bd04872cf6","EG04BJ11","营业利润","COMPANY","String","5","","1:1","752","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bc98a8b5-cb71-416f-afc6-f6965fc532cf","EG04BJ12","营业外收入","COMPANY","String","5","","1:1","753","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"38669ae3-50a7-4513-bcdd-23ede54846da","EG04BJ13","营业外支出","COMPANY","String","5","","1:1","754","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0b3ea436-c0f5-4ac6-8893-06d958686dd8","EG04BJ14","非流动资产损失(其中:非流动资产处置损失)","COMPANY","String","5","","1:1","755","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ad64f5b9-d48d-4518-9ce3-af3c3f92ba05","EG04BJ15","利润总额","COMPANY","String","5","","1:1","756","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7bc6167f-7722-4656-9633-8c303e89da73","EG04BJ16","所得税费用","COMPANY","String","5","","1:1","757","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6132dfd1-8aaa-4e73-8b6a-3f8d2d56d9b0","EG04BJ17","净利润","COMPANY","String","5","","1:1","758","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"341b386e-305c-4ef5-b78d-0601efe81df1","EG04BJ18","基本每股收益","COMPANY","String","5","","1:1","759","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0b67bf8a-5fbc-439c-a471-fe4d3b32c726","EG04BJ19","稀释每股收益","COMPANY","String","5","","1:1","760","c9ad37f9-fea8-4067-bf31-c952572c9672","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"87a02844-e1c2-4446-af37-74335c9d32a1","EG05","企业现金流量表(2002版)信息单元","COMPANY","","3","每张财务报表对应一个信息单元。","0:56","761","577dafc3-4fcc-4e2e-8717-366d0c48cf2d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4beeaab2-ed9e-4d8b-bafe-97ff58371e07","EG05A","基础段","COMPANY","","4","描述财务报表的报送标识等。","1:1","762","87a02844-e1c2-4446-af37-74335c9d32a1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0fc9b921-f8d5-4312-b728-cec19815ef6a","EG05AI01","财务报表编号","COMPANY","String","5","系统分配给该财务报表在本报告中的唯一编号。","1:1","763","4beeaab2-ed9e-4d8b-bafe-97ff58371e07","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"35f216c8-e179-4321-9684-385f144bfdad","EG05AD01","业务管理机构","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。","1:1","764","4beeaab2-ed9e-4d8b-bafe-97ff58371e07","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6f05bcaa-61c3-4350-a96b-02f9d5b90a89","EG05AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","765","4beeaab2-ed9e-4d8b-bafe-97ff58371e07","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c79eb56e-85ee-46f3-bdbd-7f257171408d","EG05AR01","报表年份","COMPANY","String","5","财务报表所属的年份。","1:1","766","4beeaab2-ed9e-4d8b-bafe-97ff58371e07","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"302118e2-091f-4ff5-b0b3-c5f6d83b4c7a","EG05AD02","报表类型","COMPANY","String","5","代码表详见附录 A“财报报表类型代码表”。 ","1:1","767","4beeaab2-ed9e-4d8b-bafe-97ff58371e07","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9012115f-aeab-4dbb-8439-8e408a7f3ea4","EG05AD03","报表类型细分","COMPANY","String","5","代码表详见附录 A“财报报表类型细分代码表”。","1:1","768","4beeaab2-ed9e-4d8b-bafe-97ff58371e07","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6b50d924-1ea2-4218-853f-4d9577d09f97","EG05B","企业现金流量表(2002版)段 ","COMPANY","","4","描述依据《2002 年度会计报表编制手册》(中华人民共和国财政部统计评价司编,ISBN 7-5058-3258-1,经济科学出版社)制定的现金流量表信息。","1:1","769","87a02844-e1c2-4446-af37-74335c9d32a1","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a7960879-9414-46a9-9f8e-49d8ddacc880","EG05BJ01","销售商品和提供劳务收到的现金","COMPANY","String","5","","1:1","770","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fd845f9b-c85f-4ac6-a26e-bb4b794ff1e4","EG05BJ02","收到的税费返还","COMPANY","String","5","","1:1","771","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"862bb4da-2cfd-42d5-9504-f51d2ea35336","EG05BJ03","收到的其他与经营活动有关的现金","COMPANY","String","5","","1:1","772","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2f160c2b-1c41-425a-8c22-3abd0c0df9f6","EG05BJ04","经营活动现金流入小计","COMPANY","String","5","","1:1","773","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e805f22f-5efc-46c1-b4df-d360d9a16726","EG05BJ05","购买商品、接受劳务支付的现金","COMPANY","String","5","","1:1","774","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fffa5de5-0478-4646-a334-977e85d03554","EG05BJ06","支付给职工以及为职工支付的现金","COMPANY","String","5","","1:1","775","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ec341d51-2d72-4c9b-bd47-fb0abc2cc20b","EG05BJ07","支付的各项税费","COMPANY","String","5","","1:1","776","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"aa0d6b3d-ae2f-4631-95db-a9b15a1dd944","EG05BJ08","支付的其他与经营活动有关的现金","COMPANY","String","5","","1:1","777","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d826e35d-aaba-4457-8243-0c84baf06383","EG05BJ09","经营活动现金流出小计","COMPANY","String","5","","1:1","778","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0a3b55e5-aaa4-4f1f-844b-a59ad44ee34e","EG05BJ10","经营活动产生的现金流量净额","COMPANY","String","5","","1:1","779","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fcd45f14-ff9c-400f-90ee-5f64479e3616","EG05BJ11","收回投资所收到的现金","COMPANY","String","5","","1:1","780","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"61e583ec-ca51-49ae-a1c7-c65d18512a7e","EG05BJ12","取得投资收益所收到的现金","COMPANY","String","5","","1:1","781","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e6b373ea-e54a-437f-805b-74ee096c591f","EG05BJ13","处置固定资产无形资产和其他长期资产所收回的现金净额","COMPANY","String","5","","1:1","782","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8c5735f7-4442-4fee-aff6-ff9dc456ee4b","EG05BJ14","收到的其他与投资活动有关的现金","COMPANY","String","5","","1:1","783","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bf132837-add3-4dc1-bda9-ada593776cd2","EG05BJ15","投资活动现金流入小计","COMPANY","String","5","","1:1","784","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2cd6fd19-0b21-42a4-9b90-d003e8ffde4c","EG05BJ16","购建固定资产无形资产和其他长期资产所支付的现金","COMPANY","String","5","","1:1","785","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4d7c0dfe-51cc-48fb-9cd8-a4980aa4406e","EG05BJ17","投资所支付的现金","COMPANY","String","5","","1:1","786","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"049f99d6-f32d-4dab-a7fa-0556c43a2b08","EG05BJ18","支付的其他与投资活动有关的现金","COMPANY","String","5","","1:1","787","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f4b67ae5-a3fa-432e-b1f3-bd8e4e2338fe","EG05BJ19","投资活动现金流出小计","COMPANY","String","5","","1:1","788","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f0ecf68d-a2d5-4232-8c85-b0d070441cdd","EG05BJ20","投资活动产生的现金流量净额","COMPANY","String","5","","1:1","789","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c91226f3-6b08-4269-ba14-b823d5a2c530","EG05BJ21","吸收投资所收到的现金","COMPANY","String","5","","1:1","790","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5000b5ba-e634-4b25-891a-61cd19a08bbd","EG05BJ22","借款所收到的现金","COMPANY","String","5","","1:1","791","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b449703a-0754-4e9a-b7df-b4a4253c90bb","EG05BJ23","收到的其他与筹资活动有关的现金","COMPANY","String","5","","1:1","792","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3551b942-2614-4b45-a9ab-3b794d554052","EG05BJ24","筹资活动现金流入小计","COMPANY","String","5","","1:1","793","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7fcb6fad-264c-4f84-bbec-9b3404a96b18","EG05BJ25","偿还债务所支付的现金","COMPANY","String","5","","1:1","794","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0bb8b3ea-4dac-40df-b9fe-fbe2ab0c87db","EG05BJ26","分配股利、利润或偿付利息所支付的现金","COMPANY","String","5","","1:1","795","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"53d9aca5-370b-4377-9c7e-d23505129b19","EG05BJ27","支付的其他与筹资活动有关的现金","COMPANY","String","5","","1:1","796","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4204f8ef-3601-4604-a8a0-8676b2ffd117","EG05BJ28","筹资活动现金流出小计","COMPANY","String","5","","1:1","797","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5605ba75-dc02-4b20-969f-89e702e5a1a8","EG05BJ29","筹集活动产生的现金流量净额","COMPANY","String","5","","1:1","798","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"34db3093-e314-4a93-bf8f-5b92f82b6b28","EG05BJ30","汇率变动对现金的影响","COMPANY","String","5","","1:1","799","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1f7c084a-140b-4895-a902-97c4bf5ae20f","EG05BJ31","现金及现金等价物净增加额","COMPANY","String","5","","1:1","800","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"254c8d2a-cc02-45c5-bf06-c70b60ceb850","EG05BJ32","净利润","COMPANY","String","5","","1:1","801","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d9a9d026-a037-4a04-a570-35ac617ae94c","EG05BJ33","计提的资产减值准备","COMPANY","String","5","","1:1","802","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"83b4e4d6-c042-40e7-b487-5a09e43c7787","EG05BJ34","固定资产拆旧","COMPANY","String","5","","1:1","803","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"365244ce-9cda-49de-a254-d6e31915b5d4","EG05BJ35","无形资产摊销","COMPANY","String","5","","1:1","804","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4d2615c6-d7d6-4b66-ac0f-0130d0fe320b","EG05BJ36","长期待摊费用摊销","COMPANY","String","5","","1:1","805","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"85201635-a167-4455-83f6-0f5223a18339","EG05BJ37","待摊费用减少","COMPANY","String","5","","1:1","806","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b759c634-508f-460c-a337-256839cb13ff","EG05BJ38","预提费用增加","COMPANY","String","5","","1:1","807","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a61b5303-c0af-49c2-b9cd-7f4979caa94e","EG05BJ39","处置固定资产无形资产和其他长期资产的损失","COMPANY","String","5","","1:1","808","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"83df0560-1e38-4c15-9501-fed080a608ac","EG05BJ40","固定资产报废损失","COMPANY","String","5","","1:1","809","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"84b1ba75-cddd-4694-8043-751c779489d2","EG05BJ41","财务费用","COMPANY","String","5","","1:1","810","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bbd9644f-8871-4c3c-bd8b-808e271ba77c","EG05BJ42","投资损失","COMPANY","String","5","","1:1","811","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f2381948-be08-408b-9c68-2064f5da93ae","EG05BJ43","递延税款贷项","COMPANY","String","5","","1:1","812","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4d916705-c5d7-4013-b92d-125b52b78f5e","EG05BJ44","存货的减少","COMPANY","String","5","","1:1","813","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"65076b76-f705-4180-abc9-d671cadafdcd","EG05BJ45","经营性应收项目的减少","COMPANY","String","5","","1:1","814","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e6cfd2dc-42a2-46a5-96bd-5de6d18cd5c3","EG05BJ46","经营性应付项目的增加","COMPANY","String","5","","1:1","815","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"20a7d0ff-3b54-4399-9c8e-e8ff2312ae4b","EG05BJ47","(净利润调节为经营活动现金流量科目下)其他","COMPANY","String","5","","1:1","816","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8a16b0a1-5047-4f45-94c2-3e0fca184507","EG05BJ48","经营活动产生的现金流量净额","COMPANY","String","5","","1:1","817","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bbc85920-67f2-4fb9-a6bf-4ab85eea5fa3","EG05BJ49","债务转为资本","COMPANY","String","5","","1:1","818","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8d5c880e-5c95-4526-be45-87d0d061d867","EG05BJ50","一年内到期的可转换公司债券","COMPANY","String","5","","1:1","819","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ade7251d-8c5f-4f66-b2bc-340e25e81277","EG05BJ51","融资租入固定资产","COMPANY","String","5","","1:1","820","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7d40b008-62b7-4283-adcf-10fbd8005a35","EG05BJ52","(不涉及现金收支的投资和筹","COMPANY","String","5","","1:1","821","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0810e2cd-484c-4e3f-ad46-1c266c3ceab9","EG05BJ53","资活动科目下)其他现金的期末余额","COMPANY","String","5","","1:1","822","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5f35220f-f0d9-41b2-8445-b9635c84925e","EG05BJ54","现金的期初余额","COMPANY","String","5","","1:1","823","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b305ba90-d7f2-4605-8f5b-8bd9a5fd170b","EG05BJ55","现金等价物的期末余额","COMPANY","String","5","","1:1","824","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"12722b2b-e392-4ae7-a25e-fa20bfac8a0b","EG05BJ56","现金等价物的期初余额","COMPANY","String","5","","1:1","825","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a91f06c5-a56a-4134-a687-28a52ea023ff","EG05BJ57","现金及现金等价物净增加额","COMPANY","String","5","","1:1","826","6b50d924-1ea2-4218-853f-4d9577d09f97","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4826e61e-4827-4cb5-bc14-b1bd1af022c4","EG06","企业现金流量表(2007版)信息单元","COMPANY","","3","每张财务报表对应一个信息单元。","0:56","827","577dafc3-4fcc-4e2e-8717-366d0c48cf2d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"73c97ed9-9eea-4e5b-89b8-97c7dedce6fd","EG06A","基础段","COMPANY","","4","描述财务报表的报送标识等。","1:1","828","4826e61e-4827-4cb5-bc14-b1bd1af022c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f746b287-9e0b-4e6e-afae-a5289841bd05","EG06AI01","财务报表编号","COMPANY","String","5","系统分配给该财务报表在本报告中的唯一编号。","1:1","829","73c97ed9-9eea-4e5b-89b8-97c7dedce6fd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e9779aa8-0b0a-49ea-9932-d4aa4d0d2cd0","EG06AD01","业务管理机构","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。","1:1","830","73c97ed9-9eea-4e5b-89b8-97c7dedce6fd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a669b714-0108-43e1-9478-d52af370b81d","EG06AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","831","73c97ed9-9eea-4e5b-89b8-97c7dedce6fd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4b68250a-7bec-44d4-a0e7-1df2e2897468","EG06AR01","报表年份","COMPANY","String","5","财务报表所属的年份。","1:1","832","73c97ed9-9eea-4e5b-89b8-97c7dedce6fd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"167acbcd-6f80-481a-b0ef-0f501e350b81","EG06AD02","报表类型","COMPANY","String","5","代码表详见附录 A“财报报表类型代码表”。 ","1:1","833","73c97ed9-9eea-4e5b-89b8-97c7dedce6fd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b0367f6b-1361-454a-944e-fd00720950ce","EG06AD03","报表类型细分","COMPANY","String","5","代码表详见附录 A“财报报表类型细分代码表”。","1:1","834","73c97ed9-9eea-4e5b-89b8-97c7dedce6fd","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","EG06B","企业现金流量表(2007版)段 ","COMPANY","","4","描述依据《企业会计准则—基本准则(2006)》(财政部令第33 号)制定的现金流量表信息。","1:1","835","4826e61e-4827-4cb5-bc14-b1bd1af022c4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8cd9a0c4-86b7-48ec-83aa-0ddee93f97c8","EG06BJ01","销售商品和提供劳务收到的现金","COMPANY","String","5","","1:1","836","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6e1866f5-92c5-49dd-9b56-7197276f3687","EG06BJ02","收到的税费返还","COMPANY","String","5","","1:1","837","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"27ce5ff5-2d81-439e-8cf6-e17bf774fd5a","EG06BJ03","收到其他与经营活动有关的现金","COMPANY","String","5","","1:1","838","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8a65d5cf-0a6a-4a5e-8215-62102a63eba7","EG06BJ04","经营活动现金流入小计","COMPANY","String","5","","1:1","839","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b8a8b621-c3ea-4a52-9bbd-4e26204facaf","EG06BJ05","购买商品、接受劳务支付的现金","COMPANY","String","5","","1:1","840","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2e9c28bb-0943-46df-a3f8-7ea50153536c","EG06BJ06","支付给职工以及为职工支付的现金","COMPANY","String","5","","1:1","841","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"99c4e9d8-2fee-4d6c-b9f4-32f29a8bb9bb","EG06BJ07","支付的各项税费","COMPANY","String","5","","1:1","842","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ae7fd535-8ea3-4624-8e6e-67f1415c93bf","EG06BJ08","支付其他与经营活动有关的现金","COMPANY","String","5","","1:1","843","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2f91beee-9ffb-4de0-9c49-09c9dda5112c","EG06BJ09","经营活动现金流出小计","COMPANY","String","5","","1:1","844","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"47ce146c-a5a8-4981-9cac-3c09c87e7a7a","EG06BJ10","经营活动产生的现金流量净额","COMPANY","String","5","","1:1","845","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1a938556-f56a-404e-b419-53ea00bf2308","EG06BJ11","收回投资所收到的现金","COMPANY","String","5","","1:1","846","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"939437e2-7141-45de-87a3-0cb260dcc8f3","EG06BJ12","取得投资收益所收到的现金","COMPANY","String","5","","1:1","847","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3e411f81-c7c0-496a-a49a-efb37bf329d5","EG06BJ13","处置固定资产无形资产和其他长期资产所收回的现金净额","COMPANY","String","5","","1:1","848","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f96db9ce-369f-42fb-93e6-b9da737e0b1d","EG06BJ14","处置子公司及其他营业单位收到的现金净额","COMPANY","String","5","","1:1","849","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"abec31d5-f572-42e3-9bc6-2483f7db332d","EG06BJ15","收到其他与投资活动有关的现金","COMPANY","String","5","","1:1","850","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"826bddac-38f3-4bbc-9bf0-96cb88f03ffb","EG06BJ16","投资活动现金流入小计","COMPANY","String","5","","1:1","851","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1335d586-35f3-4a08-8085-f9c8b47eb12b","EG06BJ17","购建固定资产无形资产和其他长期资产所支付的现金","COMPANY","String","5","","1:1","852","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6bff6a36-22ff-4a28-9524-f8abbc5db7c6","EG06BJ18","投资所支付的现金","COMPANY","String","5","","1:1","853","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"731298a0-0422-495f-aeef-839f3dccb2a0","EG06BJ19","取得子公司及其他营业单位支付的现金净额","COMPANY","String","5","","1:1","854","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6a30336e-5146-430e-bfb5-47a16217d691","EG06BJ20","支付其他与投资活动有关的现金","COMPANY","String","5","","1:1","855","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f1d2233e-f618-4f42-a26b-e4272768d7bd","EG06BJ21","投资活动现金流出小计","COMPANY","String","5","","1:1","856","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"50bc42b4-a256-4d28-a2f7-9166b4bb0d92","EG06BJ22","投资活动产生的现金流量净额","COMPANY","String","5","","1:1","857","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bffb707f-847b-419d-92ec-c2e3d9102ee3","EG06BJ23","吸收投资收到的现金","COMPANY","String","5","","1:1","858","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c9205d6f-0566-46e4-a778-11c1521d795c","EG06BJ24","取得借款收到的现金","COMPANY","String","5","","1:1","859","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"998688aa-75a6-4328-bedf-9321a37bb340","EG06BJ25","收到其他与筹资活动有关的现金","COMPANY","String","5","","1:1","860","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9c870ada-7286-4ad4-8ab7-ec072e0eedfa","EG06BJ26","筹资活动现金流入小计","COMPANY","String","5","","1:1","861","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"68061009-38e2-4ba7-a148-92c1a9f35af9","EG06BJ27","偿还债务所支付的现金","COMPANY","String","5","","1:1","862","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"101121a1-6e4d-4e3a-baf6-34ca7eee934e","EG06BJ28","分配股利、利润或偿付利息所支付的现金","COMPANY","String","5","","1:1","863","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0d0074f9-d732-4320-b1a0-434cf287b70c","EG06BJ29","支付其他与筹资活动有关的现金","COMPANY","String","5","","1:1","864","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8039e869-11f2-420c-9999-e3824a21cb58","EG06BJ30","筹资活动现金流出小计","COMPANY","String","5","","1:1","865","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e087d7b0-2803-4ad9-b28e-ca99ab987584","EG06BJ31","筹集活动产生的现金流量净额","COMPANY","String","5","","1:1","866","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7c90a31b-e419-4f98-88f6-936118aa405f","EG06BJ32","汇率变动对现金及现金等价物的影响","COMPANY","String","5","","1:1","867","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1d351415-6d33-4c87-a82b-e671f2a42f02","EG06BJ33","现金及现金等价物净增加额","COMPANY","String","5","","1:1","868","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d12d15de-3012-4799-a5ae-86248502a52f","EG06BJ34","期初现金及现金等价物余额","COMPANY","String","5","","1:1","869","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c08b395e-630b-459f-a461-e0e0af3243c3","EG06BJ35","期末现金及现金等价物余额","COMPANY","String","5","","1:1","870","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b5b2b0b7-409a-472d-ad86-401737664b03","EG06BJ36","净利润","COMPANY","String","5","","1:1","871","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ef5d0408-d1be-4292-a57e-ce85021538c1","EG06BJ37","资产减值准备","COMPANY","String","5","","1:1","872","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b85d3e3e-db3a-41eb-b6c5-4f14fc7bca0f","EG06BJ38","固定资产折旧、油气资产折耗、生产性生物资产折旧","COMPANY","String","5","","1:1","873","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5e7c5573-f4be-446f-b3af-231342504592","EG06BJ39","无形资产摊销","COMPANY","String","5","","1:1","874","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"401fefa4-db4e-458b-8c76-5e51fef3e36d","EG06BJ40","长期待摊费用摊销","COMPANY","String","5","","1:1","875","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fcfaea04-997c-4aa0-b128-a1a39e968c4d","EG06BJ41","待摊费用减少","COMPANY","String","5","","1:1","876","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"77b2d92c-53b5-45a3-a3e7-9f470bdaa7ee","EG06BJ42","预提费用增加","COMPANY","String","5","","1:1","877","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"655a388a-7d4d-42e8-aed0-f4a2dcc164f2","EG06BJ43","处置固定资产无形资产和其他长期资产的损失","COMPANY","String","5","","1:1","878","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d7eb3a93-4612-46c3-a226-4d3cc4a457c9","EG06BJ44","固定资产报废损失","COMPANY","String","5","","1:1","879","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"254455e3-1a6e-4b58-aec4-a396acae7c39","EG06BJ45","公允价值变动损失","COMPANY","String","5","","1:1","880","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5497d95d-588e-42b9-8030-9889a6b43e6a","EG06BJ46","财务费用","COMPANY","String","5","","1:1","881","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"429ba08d-e1c0-4a39-a006-1631d540b411","EG06BJ47","投资损失","COMPANY","String","5","","1:1","882","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"44a27797-8f95-4185-a3a3-708eca1224ba","EG06BJ48","递延所得税资产减少","COMPANY","String","5","","1:1","883","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d3e86e9a-f286-4d6d-bfab-c5bad54b7e97","EG06BJ49","递延所得税负债增加","COMPANY","String","5","","1:1","884","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b1a5e4ed-ea79-415c-a6e8-f4c81a77f1a3","EG06BJ50","存货的减少","COMPANY","String","5","","1:1","885","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7a3b8148-0dd8-4587-85fa-843bb4638d4b","EG06BJ51","经营性应收项目的减少","COMPANY","String","5","","1:1","886","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"30ae5263-d2ae-4edb-8e6f-395ea979c308","EG06BJ52","经营性应付项目的增加","COMPANY","String","5","","1:1","887","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d5679c6a-43bd-4731-af00-d1a337abd83f","EG06BJ53","(净利润调节为经营活动现金流量科目下)其他","COMPANY","String","5","","1:1","888","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1de206d2-0027-44e3-96ec-df99bcfb59fa","EG06BJ54","经营活动产生的现金流量净额","COMPANY","String","5","","1:1","889","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b0a20389-2d17-4751-a699-e52885edc739","EG06BJ55","债务转为资本","COMPANY","String","5","","1:1","890","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dbc4086e-e663-4b48-b14a-f7e39687ee77","EG06BJ56","一年内到期的可转换公司债券","COMPANY","String","5","","1:1","891","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"73cc0e2c-c802-452c-aae9-5f8153f0b5af","EG06BJ57","融资租入固定资产","COMPANY","String","5","","1:1","892","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b440c030-abca-4e67-863c-69ed93e1290e","EG06BJ58","现金的期末余额","COMPANY","String","5","","1:1","893","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b85b6c46-38cb-4d85-ae86-855cebdaee8e","EG06BJ59","现金的期初余额","COMPANY","String","5","","1:1","894","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"12d25c75-8309-4469-83c1-b407a29865b6","EG06BJ60","现金等价物的期末余额","COMPANY","String","5","","1:1","895","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"81f1dce6-eab2-4a0c-bc93-7024b2e1d62f","EG06BJ61","现金等价物的期初余额","COMPANY","String","5","","1:1","896","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c76e0c5a-cfac-47af-9a22-31b04cf384eb","EG06BJ62","现金及现金等价物净增加额","COMPANY","String","5","","1:1","897","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ce817d20-c4cc-48ee-b4a3-9969a4ac140b","EG06BJ63","(不涉及现金收支的投资和筹资活动科目下)其他","COMPANY","String","5","","1:1","898","2862e4c2-4317-459f-ad0b-8bdb5e2fbac7","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cec62a45-4820-4ae5-9024-76e86fc61cf5","EG07","事业单位资产负债表(1997版)信息单元","COMPANY","","3","每张财务报表对应一个信息单元。","0:56","899","577dafc3-4fcc-4e2e-8717-366d0c48cf2d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ec20d504-a705-431c-8c46-852a3fd8963c","EG07A","基础段","COMPANY","","4","描述财务报表的报送标识等。","1:1","900","cec62a45-4820-4ae5-9024-76e86fc61cf5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"73a4154b-c712-4eb7-bea0-64f0da3ebad4","EG07AI01","财务报表编号","COMPANY","String","5","系统分配给该财务报表在本报告中的唯一编号。","1:1","901","ec20d504-a705-431c-8c46-852a3fd8963c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2b9fcbc1-1f95-40dd-a6f5-dfe4662dd9c5","EG07AD01","业务管理机构","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。","1:1","902","ec20d504-a705-431c-8c46-852a3fd8963c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f4382d75-a2d3-4a6b-ad9d-61326d899c0c","EG07AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","903","ec20d504-a705-431c-8c46-852a3fd8963c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4b22eec5-0417-4d6a-9626-a2387f0a9e25","EG07AR01","报表年份","COMPANY","String","5","财务报表所属的年份。","1:1","904","ec20d504-a705-431c-8c46-852a3fd8963c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a4750027-b0c4-41bc-977e-0d47c60c3dda","EG07AD02","报表类型","COMPANY","String","5","代码表详见附录 A“财报报表类型代码表”。 ","1:1","905","ec20d504-a705-431c-8c46-852a3fd8963c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ac7ba967-cb52-4760-96ba-676a9b8b6d8e","EG07AD03","报表类型细分","COMPANY","String","5","代码表详见附录 A“财报报表类型细分代码表”。","1:1","906","ec20d504-a705-431c-8c46-852a3fd8963c","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c3097868-0e0f-43fa-8818-2f88b86030ae","EG07B","事业单位资产负债表(1997版)段 ","COMPANY","","4","描述事业单位 1997 版资产负债表的信息。","1:1","907","cec62a45-4820-4ae5-9024-76e86fc61cf5","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"58c0236c-a8cc-47f8-9895-e122d905630d","EG07BJ01","现金","COMPANY","String","5","","1:1","908","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0fccc467-86c6-463f-9cf0-c92adf80f9e1","EG07BJ02","银行存款","COMPANY","String","5","","1:1","909","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d98678fa-9d01-4a26-9dce-27a3111fca50","EG07BJ03","应收票据","COMPANY","String","5","","1:1","910","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"05717151-c35f-4772-aa7e-dd7efcf45dce","EG07BJ04","应收账款","COMPANY","String","5","","1:1","911","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"34964a36-e2e8-471a-bcfd-771a5a09df0a","EG07BJ05","预付账款","COMPANY","String","5","","1:1","912","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f92747a7-7b92-485a-8584-2ea86ddd8f82","EG07BJ06","其他应收款","COMPANY","String","5","","1:1","913","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"44f8a9d8-33b4-442c-b037-47073a5d340a","EG07BJ07","材料","COMPANY","String","5","","1:1","914","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"03ba1d93-5f2d-44ba-bd88-99bf3e9a9799","EG07BJ08","产成品","COMPANY","String","5","","1:1","915","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5ed140fa-fdd0-41b1-93f1-548844fb7508","EG07BJ09","对外投资","COMPANY","String","5","","1:1","916","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"73a87128-823b-480d-ba52-b366e3c4e3f5","EG07BJ10","固定资产","COMPANY","String","5","","1:1","917","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d6d000fc-4c17-4145-8925-22a213bd6132","EG07BJ11","无形资产","COMPANY","String","5","","1:1","918","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f46610c1-d846-4fac-b0f6-02477eef188f","EG07BJ12","资产合计","COMPANY","String","5","","1:1","919","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e0b9d6f7-108f-4c20-898f-8405a8f234e2","EG07BJ13","拨出经费","COMPANY","String","5","","1:1","920","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"aed1b1ce-f2ab-42c0-b689-12f5921ab865","EG07BJ14","拨出专款","COMPANY","String","5","","1:1","921","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"dfd7723f-a3ad-4e4e-a487-815d0f55bfac","EG07BJ15","专款支出","COMPANY","String","5","","1:1","922","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0d23ef88-b71f-4d54-8199-0b2f1fe7a9ac","EG07BJ16","事业支出","COMPANY","String","5","","1:1","923","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"22271b50-ed7a-47b0-a599-1f19d2a89961","EG07BJ17","经营支出","COMPANY","String","5","","1:1","924","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a9823728-2112-4f85-a22e-f949cca08bb5","EG07BJ18","成本费用","COMPANY","String","5","","1:1","925","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c1c54c84-55e5-4aad-b979-2e884f2c5f0b","EG07BJ19","销售税金","COMPANY","String","5","","1:1","926","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"40288775-c308-45df-a591-96da3fa5239e","EG07BJ20","上缴上级支出","COMPANY","String","5","","1:1","927","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"78489a93-f843-4cb2-af5a-5113af8409bc","EG07BJ21","对附属单位补助","COMPANY","String","5","","1:1","928","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9c41ba8f-b792-4f9f-80ea-3d8a35f073f3","EG07BJ22","结转自筹基建","COMPANY","String","5","","1:1","929","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e59a6f8c-bcec-4720-86af-5625fae29a3e","EG07BJ23","支出合计","COMPANY","String","5","","1:1","930","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7c037981-c117-4fe0-a72e-218b3ecb231e","EG07BJ24","资产部类总计","COMPANY","String","5","","1:1","931","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4a4c3002-d432-46e7-9280-1c2693e8b5cf","EG07BJ25","借记款项","COMPANY","String","5","","1:1","932","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2a60064f-097e-4cc6-9e32-4f63bb5ce513","EG07BJ26","应付票据","COMPANY","String","5","","1:1","933","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3f8fee88-036b-45a1-b584-38cc53160dc1","EG07BJ27","应付账款","COMPANY","String","5","","1:1","934","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b6190406-7684-4473-92a0-cda3e9d6ba03","EG07BJ28","预收账款","COMPANY","String","5","","1:1","935","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"027a9db5-db11-47be-9898-318045e03545","EG07BJ29","其他应付款","COMPANY","String","5","","1:1","936","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a8823e06-5ac6-48a8-adaa-afea4a570a8f","EG07BJ30","应缴预算款","COMPANY","String","5","","1:1","937","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"985fc775-137c-4d7c-abeb-8c279ad5c61f","EG07BJ31","应缴财政专户款","COMPANY","String","5","","1:1","938","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"900b899d-eb38-48c8-96e1-88bc7887f064","EG07BJ32","应交税金","COMPANY","String","5","","1:1","939","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fa6e3826-cd26-43b3-941d-b2d125a1dc26","EG07BJ33","负债合计","COMPANY","String","5","","1:1","940","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4ccf39c2-359a-40b2-801f-20428051516f","EG07BJ34","事业基金","COMPANY","String","5","","1:1","941","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4cd7cf62-9f44-4486-b786-3fe3ddcbb464","EG07BJ35","一般基金","COMPANY","String","5","","1:1","942","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"73d9c693-239f-4a15-a83b-483b99ee4f5f","EG07BJ36","投资基金","COMPANY","String","5","","1:1","943","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"55f81f9d-6d0e-49ec-8647-4bfaa520ce94","EG07BJ37","固定基金","COMPANY","String","5","","1:1","944","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bfc41ca2-f14a-4043-ad45-4b59f68377a4","EG07BJ38","专用基金","COMPANY","String","5","","1:1","945","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f7d2b7ce-a690-401a-92ba-15a20e5cbb17","EG07BJ39","事业结余","COMPANY","String","5","","1:1","946","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fa1ae1cf-5cf8-434c-afd5-23a2ae05d96c","EG07BJ40","经营结余","COMPANY","String","5","","1:1","947","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d89d10cd-a993-438a-9e1f-b2860b31cbc3","EG07BJ41","净资产合计","COMPANY","String","5","","1:1","948","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6bebd1c9-b50e-46ce-b2b8-e26d94bef2e2","EG07BJ42","财政补助收入","COMPANY","String","5","","1:1","949","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"693cd235-8e26-4a5c-b4f9-767acae43c90","EG07BJ43","上级补助收入","COMPANY","String","5","","1:1","950","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"88ae7e78-7f4e-48b3-8377-c50bb3c0e665","EG07BJ44","拨入专款","COMPANY","String","5","","1:1","951","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"959e8007-7487-498d-99d8-c3be57c70171","EG07BJ45","事业收入","COMPANY","String","5","","1:1","952","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"706b313e-6630-4dad-8eb1-fcacbc56c01a","EG07BJ46","经营收入","COMPANY","String","5","","1:1","953","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0fc92b64-d092-459c-99dd-cf16a193b668","EG07BJ47","附属单位缴款","COMPANY","String","5","","1:1","954","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f6cbce5f-44bb-4ffe-93ea-e17c3084767c","EG07BJ48","其他收入","COMPANY","String","5","","1:1","955","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"31203ea5-d206-4edb-91f7-ee510554c330","EG07BJ49","收入合计","COMPANY","String","5","","1:1","956","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e43aafe7-bad8-4bc6-a742-094719596d72","EG07BJ50","负债部类总计","COMPANY","String","5","","1:1","957","c3097868-0e0f-43fa-8818-2f88b86030ae","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"63c08580-9c30-421a-bff1-c08213124ee2","EG08","事业单位资产负债表(2013版)信息单元","COMPANY","","3","每张财务报表对应一个信息单元。","0:56","958","577dafc3-4fcc-4e2e-8717-366d0c48cf2d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"014a8c23-2da4-4674-9c9d-0a2f86f74e45","EG08A","基础段","COMPANY","","4","描述财务报表的报送标识等。","1:1","959","63c08580-9c30-421a-bff1-c08213124ee2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bece317b-c3bb-4499-be2a-c2b77d52f5e3","EG08AI01","财务报表编号","COMPANY","String","5","系统分配给该财务报表在本报告中的唯一编号。","1:1","960","014a8c23-2da4-4674-9c9d-0a2f86f74e45","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"44e16ff5-99b1-48c7-b94c-df3f49355428","EG08AD01","业务管理机构","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。","1:1","961","014a8c23-2da4-4674-9c9d-0a2f86f74e45","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"30fe561a-bf66-42ce-a6a3-96a7c61b893a","EG08AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","962","014a8c23-2da4-4674-9c9d-0a2f86f74e45","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a6506675-7841-4bf6-bd2f-2758368f6120","EG08AR01","报表年份","COMPANY","String","5","财务报表所属的年份。","1:1","963","014a8c23-2da4-4674-9c9d-0a2f86f74e45","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c590d303-27db-4a53-b126-15ad1731a0a4","EG08AD02","报表类型","COMPANY","String","5","代码表详见附录 A“财报报表类型代码表”。 ","1:1","964","014a8c23-2da4-4674-9c9d-0a2f86f74e45","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e1314ffd-9305-4ca1-aefe-6831fa090796","EG08AD03","报表类型细分","COMPANY","String","5","代码表详见附录 A“财报报表类型细分代码表”。","1:1","965","014a8c23-2da4-4674-9c9d-0a2f86f74e45","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"32d946cc-4380-4f07-bfe0-41736ee089f9","EG08B","事业单位资产负债表(2013版)段 ","COMPANY","","4","描述依据《事业单位会计准则(2012)》(财政部令第 72 号)制定的事业单位资产负债表信息。","1:1","966","63c08580-9c30-421a-bff1-c08213124ee2","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2fffc752-64bc-4cc4-b01d-a7db0e2c0405","EG08BJ01","货币资金","COMPANY","String","5","","1:1","967","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2dc46414-b925-41ba-b9d6-a1d88f856017","EG08BJ02","短期投资","COMPANY","String","5","","1:1","968","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"03064d9d-0f4b-45e5-bf9b-bad72ed05d2c","EG08BJ03","财政应返还额度","COMPANY","String","5","","1:1","969","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e1ac9718-6a09-4b41-af36-8ef0d5e03d9f","EG08BJ04","应收票据","COMPANY","String","5","","1:1","970","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"71b8c3e4-983f-419b-b31b-8e7da757b0fb","EG08BJ05","应收账款","COMPANY","String","5","","1:1","971","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fd2d9f59-c150-4d10-bdb5-f47bcaf7d692","EG08BJ06","预付账款","COMPANY","String","5","","1:1","972","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"51efd9e5-309e-4687-b0b5-46ecbf75f49a","EG08BJ07","其他应收款","COMPANY","String","5","","1:1","973","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a42989b0-f275-45d5-990c-1ab302b917b7","EG08BJ08","存货","COMPANY","String","5","","1:1","974","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"38c70f2b-817f-4db4-9f41-cdc70db0cefc","EG08BJ09","其他流动资产","COMPANY","String","5","","1:1","975","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"47bdfe3b-6128-4fda-ae18-844db970d34e","EG08BJ10","流动资产合计","COMPANY","String","5","","1:1","976","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"09d17f62-a66a-41f2-8c28-472780fc16ca","EG08BJ11","长期投资","COMPANY","String","5","","1:1","977","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a83c12f5-c8ba-4b54-af35-904691461cab","EG08BJ12","固定资产","COMPANY","String","5","","1:1","978","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7491fe66-04e3-4525-96ee-a51e9bf33b1b","EG08BJ13","固定资产原价","COMPANY","String","5","","1:1","979","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d7a6e86d-438f-4c94-be65-3929fd6f2cca","EG08BJ14","累计折旧","COMPANY","String","5","","1:1","980","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0154b6fb-e05c-4e96-8e05-352d6f7f27a8","EG08BJ15","在建工程","COMPANY","String","5","","1:1","981","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6d674dea-6d07-459e-8913-08a7549bf691","EG08BJ16","无形资产","COMPANY","String","5","","1:1","982","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e1e84ecd-2dfb-4178-9c25-1f9d197c279d","EG08BJ17","无形资产原价","COMPANY","String","5","","1:1","983","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e9a57678-349d-489b-96fc-52227da98535","EG08BJ18","累计摊销","COMPANY","String","5","","1:1","984","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9d0e82b5-1a9a-4167-93ba-f8f044070b0b","EG08BJ19","待处置资产损溢","COMPANY","String","5","","1:1","985","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"beb970f1-ce87-44e3-9969-319625c7d157","EG08BJ20","非流动资产合计","COMPANY","String","5","","1:1","986","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7c9ffec2-2a75-4c97-8172-3939ede4d5ed","EG08BJ21","资产总计","COMPANY","String","5","","1:1","987","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4552ec4d-ba98-49cf-8682-7b06313b23df","EG08BJ22","短期借款","COMPANY","String","5","","1:1","988","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"58cda5f4-9094-4cf7-9a2f-673e7cad0ea4","EG08BJ23","应缴税费","COMPANY","String","5","","1:1","989","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d43b74b1-104c-4329-a906-c67d9b179226","EG08BJ24","应缴国库款","COMPANY","String","5","","1:1","990","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cdbc98c0-e19f-46e4-8930-d1253095cfea","EG08BJ25","应缴财政专户款","COMPANY","String","5","","1:1","991","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1295668a-a732-4018-819c-e2e21a52cd47","EG08BJ26","应付职工薪酬","COMPANY","String","5","","1:1","992","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"581aa6a0-c7f6-425f-b4e1-bb57af87e5a8","EG08BJ27","应付票据","COMPANY","String","5","","1:1","993","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6b8dfac8-d7e7-40a1-8e31-3ece3de7bcb6","EG08BJ28","应付账款","COMPANY","String","5","","1:1","994","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8bb28106-08c6-4b88-ba65-0f70525d1391","EG08BJ29","预收账款","COMPANY","String","5","","1:1","995","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1116eb2a-467b-4d6e-b624-e9c5f0f81211","EG08BJ30","其他应付款","COMPANY","String","5","","1:1","996","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3d5e87dc-dd26-4518-bacc-133d046085c2","EG08BJ31","其他流动负债","COMPANY","String","5","","1:1","997","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1f813f7c-c0ee-4440-89b1-c8e1e726de9b","EG08BJ32","流动负债合计","COMPANY","String","5","","1:1","998","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f8ed56dc-a608-41c5-b667-b0ecb8f473fe","EG08BJ33","长期借款","COMPANY","String","5","","1:1","999","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9aca04cb-dd42-4aa8-92ad-f51e7b16a79c","EG08BJ34","长期应付款","COMPANY","String","5","","1:1","1000","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9d848f69-0221-4759-9e71-c07a746d0b51","EG08BJ35","非流动负债合计","COMPANY","String","5","","1:1","1001","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5f398236-97d2-441e-a666-b777b6fe4114","EG08BJ36","负债合计","COMPANY","String","5","","1:1","1002","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"da8bc7df-042a-4180-81b1-d0314aef206b","EG08BJ37","事业基金","COMPANY","String","5","","1:1","1003","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"45797bed-4df1-453f-8df9-752c0aed6fae","EG08BJ38","非流动资产基金","COMPANY","String","5","","1:1","1004","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7d388b04-0865-4e0c-83e3-313389d35ebe","EG08BJ39","专用基金","COMPANY","String","5","","1:1","1005","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b7b835bf-a05b-4b37-be71-06d4d4edcad2","EG08BJ40","财政补助结转","COMPANY","String","5","","1:1","1006","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"202fc593-5732-4468-b007-ff62936a8097","EG08BJ41","财政补助结余","COMPANY","String","5","","1:1","1007","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9a221390-223c-447f-b552-a9e7b5988872","EG08BJ42","非财政补助结转","COMPANY","String","5","","1:1","1008","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ef8e45f9-47a4-4021-89d1-94ef1f7d46a6","EG08BJ43","非财政补助结余","COMPANY","String","5","","1:1","1009","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"52af705c-b551-4abf-96b1-632fbbd1481e","EG08BJ44","事业结余","COMPANY","String","5","","1:1","1010","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"100d33db-ebaa-4787-a22b-fe3f5c8a732e","EG08BJ45","经营结余","COMPANY","String","5","","1:1","1011","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"97a66e2a-b87d-4030-a7ce-7447059585f2","EG08BJ46","净资产合计","COMPANY","String","5","","1:1","1012","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"46a9eb04-e22d-405b-9684-11076849029d","EG08BJ47","负债和净资产总计","COMPANY","String","5","","1:1","1013","32d946cc-4380-4f07-bfe0-41736ee089f9","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ae3bf5eb-8f07-4ecc-8e20-ca4116881cde","EG09","事业单位收入支出表(1997版)信息单元","COMPANY","","3","每张财务报表对应一个信息单元。","0:56","1014","577dafc3-4fcc-4e2e-8717-366d0c48cf2d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4eedffa8-9e17-4434-bd54-7b41db50af23","EG09A","基础段","COMPANY","","4","描述财务报表的报送标识等。","1:1","1015","ae3bf5eb-8f07-4ecc-8e20-ca4116881cde","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"97df8951-d4a0-4123-bccc-65b5ad71777a","EG09AI01","财务报表编号","COMPANY","String","5","系统分配给该财务报表在本报告中的唯一编号。","1:1","1016","4eedffa8-9e17-4434-bd54-7b41db50af23","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"23c63be0-0ded-4935-9b9c-475fd010cb36","EG09AD01","业务管理机构","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。","1:1","1017","4eedffa8-9e17-4434-bd54-7b41db50af23","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"96ff052c-04b9-4080-9014-d86e5d20b8f1","EG09AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","1018","4eedffa8-9e17-4434-bd54-7b41db50af23","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0d0ce427-2509-4b0c-bbcb-24e48b0862c6","EG09AR01","报表年份","COMPANY","String","5","财务报表所属的年份。","1:1","1019","4eedffa8-9e17-4434-bd54-7b41db50af23","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b44a1cd6-46fe-4474-88a3-65438ad1e0de","EG09AD02","报表类型","COMPANY","String","5","代码表详见附录 A“财报报表类型代码表”。 ","1:1","1020","4eedffa8-9e17-4434-bd54-7b41db50af23","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ddbb85a6-7fed-45a7-9ac0-14a3bc49daa4","EG09AD03","报表类型细分","COMPANY","String","5","代码表详见附录 A“财报报表类型细分代码表”。","1:1","1021","4eedffa8-9e17-4434-bd54-7b41db50af23","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ab5452a4-ef23-4d38-9940-380abab81795","EG09B","事业单位收入支出表(1997版)段 ","COMPANY","","4","描述依据《事业单位会计准则(2012)》(财政部令第 72 号)制定的事业单位资产负债表信息。?????","1:1","1022","ae3bf5eb-8f07-4ecc-8e20-ca4116881cde","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"24e88917-a72c-4e6a-9ab5-d8d854ed1dfd","EG09BJ01","财政补助收入","COMPANY","String","5","","1:1","1023","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d0407992-ffd0-453a-acfe-8dab1aca2f14","EG09BJ02","上级补助收入","COMPANY","String","5","","1:1","1024","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6867fe5c-d19a-4a5e-9ba2-4f731511e440","EG09BJ03","附属单位缴款","COMPANY","String","5","","1:1","1025","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a024e00a-6fe5-4839-840f-9608536471db","EG09BJ04","事业收入","COMPANY","String","5","","1:1","1026","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0424cec3-be5f-4000-ad11-70e4ca34ebfd","EG09BJ05","预算外资金收入","COMPANY","String","5","","1:1","1027","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f8767e34-7948-4dc8-96ff-989c1dc2bd32","EG09BJ06","其他收入","COMPANY","String","5","","1:1","1028","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8b9531db-58b6-49b0-a237-d42c96a1f0cd","EG09BJ07","事业收入小计","COMPANY","String","5","","1:1","1029","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"744409c6-a7e9-4912-9d8a-4960980b028b","EG09BJ08","经营收入","COMPANY","String","5","","1:1","1030","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"afd7acda-39d3-4340-b5fa-ea55aa21e0e2","EG09BJ09","经营收入小计","COMPANY","String","5","","1:1","1031","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2ccf00c6-57c5-462e-8ee0-6b88de8e0d33","EG09BJ10","拨入专款","COMPANY","String","5","","1:1","1032","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"6521151e-c2ce-4df0-99c7-7697d011a2c5","EG09BJ11","拨入专款小计","COMPANY","String","5","","1:1","1033","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b431927f-1f60-4740-8b7f-4d5e5efeba0a","EG09BJ12","收入总计","COMPANY","String","5","","1:1","1034","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3d182a52-c5f8-41ed-bf5a-ddb6e983dcad","EG09BJ13","拨出经费","COMPANY","String","5","","1:1","1035","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3a22ac61-dfd2-4fdd-9008-8cd0a23f13a8","EG09BJ14","上缴上级支出","COMPANY","String","5","","1:1","1036","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"43c5e527-b554-4d65-9582-4264e71eb066","EG09BJ15","对附属单位补助","COMPANY","String","5","","1:1","1037","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4446af73-d45e-4376-95d7-200a93cc1db5","EG09BJ16","事业支出","COMPANY","String","5","","1:1","1038","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b06f6e34-1d1e-4e46-884f-54217ec1b0bb","EG09BJ17","财政补助支出","COMPANY","String","5","","1:1","1039","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"80782fa4-c45a-4c46-99ea-6a08197bf169","EG09BJ18","预算外资金支出","COMPANY","String","5","","1:1","1040","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"10bd5c9c-c78e-4f14-93f6-39fcfee9131e","EG09BJ19","销售税金","COMPANY","String","5","","1:1","1041","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"60ccbec8-7932-4148-9054-6c2965cf71c8","EG09BJ20","结转自筹基建","COMPANY","String","5","","1:1","1042","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"e41ed70f-ad63-42da-b797-6abfac1d6eeb","EG09BJ21","事业支出小计","COMPANY","String","5","","1:1","1043","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"944b2576-0836-45ff-93a2-bfc3fb6b8f5c","EG09BJ22","经营支出","COMPANY","String","5","","1:1","1044","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"199a28e5-3b2d-4ed8-aab9-16f6547b69b3","EG09BJ23","销售税金","COMPANY","String","5","","1:1","1045","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"48a9e237-90d2-4b06-a340-83d40740bb10","EG09BJ24","经营支出小计","COMPANY","String","5","","1:1","1046","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"108450ef-496c-46b8-9e26-487bfe0ab95a","EG09BJ25","拨出专款","COMPANY","String","5","","1:1","1047","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d859d684-4691-460d-92b8-d28d2f42ce50","EG09BJ26","专款支出","COMPANY","String","5","","1:1","1048","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f8fae33e-3b44-41e9-8266-21c057055ef5","EG09BJ27","专款小计","COMPANY","String","5","","1:1","1049","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ab62da27-b1b6-4b55-9576-45feb870bc85","EG09BJ28","支出总计","COMPANY","String","5","","1:1","1050","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1efab911-4718-4e9f-9f0e-38b844bc09b2","EG09BJ29","事业结余","COMPANY","String","5","","1:1","1051","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ede518fe-eeb2-4176-a5c8-f6e8895b79e4","EG09BJ30","正常收入结余","COMPANY","String","5","","1:1","1052","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"158dffa3-fde6-4149-a279-559b9de2e5fb","EG09BJ31","收回以前年度事业支出","COMPANY","String","5","","1:1","1053","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8e319e85-b0eb-4c40-8de9-5cab127ecb2b","EG09BJ32","经营结余","COMPANY","String","5","","1:1","1054","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0bf3a16d-eb23-4fc8-955e-d73ba91e235a","EG09BJ33","以前年度经营亏损","COMPANY","String","5","","1:1","1055","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fe2a1682-0521-4a90-957d-9278953250a0","EG09BJ34","结余分配","COMPANY","String","5","","1:1","1056","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"35e2e158-3f0c-4791-a8af-a912574282fa","EG09BJ35","应交所得税","COMPANY","String","5","","1:1","1057","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"cb844c6c-aaa0-4dab-840e-86b43e06097b","EG09BJ36","提取专用基金","COMPANY","String","5","","1:1","1058","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"2808864a-c54b-4189-9fee-ebd7a0152555","EG09BJ37","转入事业基金","COMPANY","String","5","","1:1","1059","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0cdefdf2-3021-4da3-a08a-fe376a9e2db4","EG09BJ38","其他结余分配","COMPANY","String","5","","1:1","1060","ab5452a4-ef23-4d38-9940-380abab81795","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5e23a8a1-fbce-4c65-b6df-356f66cb34af","EG10","事业单位收入支出表(2013版)信息单元","COMPANY","","3","每张财务报表对应一个信息单元。","0:56","1061","577dafc3-4fcc-4e2e-8717-366d0c48cf2d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"becd6052-b7bf-458d-acb8-17d45204de94","EG10A","基础段","COMPANY","","4","描述财务报表的报送标识等。","1:1","1062","5e23a8a1-fbce-4c65-b6df-356f66cb34af","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a0923e04-cd8b-4b65-aeb2-54ba7f1e8b33","EG10AI01","财务报表编号","COMPANY","String","5","系统分配给该财务报表在本报告中的唯一编号。","1:1","1063","becd6052-b7bf-458d-acb8-17d45204de94","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3847b311-464a-4eb7-9a8b-55c26c72d5fc","EG10AD01","业务管理机构","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,该数据项返回代码如下: +00-本机构 + 当查询机构与业务管理机构不属于同一法人机构时,该数据项返回业务管理机构的类型代码,代码表详见附录A。","1:1","1064","becd6052-b7bf-458d-acb8-17d45204de94","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"eeb1b4fb-856e-42c2-a7e7-5e64593df15d","EG10AI02","业务管理机构代码","COMPANY","String","5"," 当查询机构与业务管理机构属于同一法人机构时,此数据项返回空值; + 当查询机构与业务管理机构不属于同一法人机构时,该数据项为业务管理机构在本报告中的 4 位编码,同一份报告中同一法人机构下的业务管理机构采用相同的编码。","1:1","1065","becd6052-b7bf-458d-acb8-17d45204de94","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ce12bd9a-ac17-4fc2-8f46-d6016cdada5d","EG10AR01","报表年份","COMPANY","String","5","财务报表所属的年份。","1:1","1066","becd6052-b7bf-458d-acb8-17d45204de94","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a658665b-d335-4cfe-9639-9e3227d26386","EG10AD02","报表类型","COMPANY","String","5","代码表详见附录 A“财报报表类型代码表”。 ","1:1","1067","becd6052-b7bf-458d-acb8-17d45204de94","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4d7d4a59-d570-41f4-bf43-299e48ad8b67","EG10AD03","报表类型细分","COMPANY","String","5","代码表详见附录 A“财报报表类型细分代码表”。","1:1","1068","becd6052-b7bf-458d-acb8-17d45204de94","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"98fda46f-18bb-4179-8982-5c0b164b5616","EG10B","事业单位收入支出表(2013版)段 ","COMPANY","","4","描述依据《事业单位会计准则(2012)》(财政部令第 72 号)制定的事业单位收入支出表信息。","1:1","1069","5e23a8a1-fbce-4c65-b6df-356f66cb34af","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f2ded4a5-bef4-4db7-ac36-154c0bba864b","EG10BJ01","本期财政补助结转结余","COMPANY","String","5","","1:1","1070","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8c8d064f-ed5a-4fc0-90ab-63bb7b801576","EG10BJ02","财政补助收入","COMPANY","String","5","","1:1","1071","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"3b8a9a3b-b6d9-46bb-8c72-62d566a7666e","EG10BJ03","事业支出(财政补助支出)","COMPANY","String","5","","1:1","1072","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"93d28f7e-9f3b-4eae-bc7e-eab8c29b62e0","EG10BJ04","本期事业结转结余","COMPANY","String","5","","1:1","1073","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b00456c7-2fd1-4b75-8456-64ad13a98f27","EG10BJ05","事业类收入","COMPANY","String","5","","1:1","1074","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"1d004489-8723-4b59-80ce-6114a7c6ccdf","EG10BJ06","事业收入","COMPANY","String","5","","1:1","1075","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"081ae67a-04d5-420d-8fe1-ead0d95b51e8","EG10BJ07","上级补助收入","COMPANY","String","5","","1:1","1076","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"5cd0db3e-7e89-4e9f-9774-5fd87f287e57","EG10BJ08","附属单位上缴收入","COMPANY","String","5","","1:1","1077","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"abbfadcf-5330-4519-83ba-c877dfc33ada","EG10BJ09","其他收入","COMPANY","String","5","","1:1","1078","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"32aaff34-13e0-4537-b72a-b155d329a676","EG10BJ10","(其他收入科目下)捐赠收入","COMPANY","String","5","","1:1","1079","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"0c80cc4f-05bb-4a76-bbd3-aa539eb7af1f","EG10BJ11","事业类支出","COMPANY","String","5","","1:1","1080","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b7b238c7-d780-4b45-8e92-36860aac9197","EG10BJ12","事业支出(非财政补助支出)","COMPANY","String","5","","1:1","1081","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"f8779e7f-d073-4bd3-a9ac-aab7ae9186c0","EG10BJ13","上缴上级支出","COMPANY","String","5","","1:1","1082","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b59138b1-ffca-429e-891e-d7abced7c29d","EG10BJ14","对附属单位补助支出","COMPANY","String","5","","1:1","1083","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7f1f84f7-77b5-44ff-adea-69e6e4318420","EG10BJ15","其他支出","COMPANY","String","5","","1:1","1084","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7e1505b9-423b-4e98-bf55-7a901bc7a551","EG10BJ16","本期经营结余","COMPANY","String","5","","1:1","1085","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"82ddf63e-d862-4837-9e63-08ce3f4ca218","EG10BJ17","经营收入","COMPANY","String","5","","1:1","1086","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"7c942be7-df80-443f-bf28-638b050a6a0c","EG10BJ18","经营支出","COMPANY","String","5","","1:1","1087","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"319373df-2540-40a0-af78-937dd05fd699","EG10BJ19","弥补以前年度亏损后的经营结余","COMPANY","String","5","","1:1","1088","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fefb7968-7ca7-43ff-8924-3fb765fb9785","EG10BJ20","本年非财政补助结转结余","COMPANY","String","5","","1:1","1089","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"4e7bf22a-4475-46bd-be05-1b1c6c5c58ff","EG10BJ21","非财政补助结转","COMPANY","String","5","","1:1","1090","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8a28208e-c21f-4b67-b6ab-d93d947fa6a3","EG10BJ22","本年非财政补助结余","COMPANY","String","5","","1:1","1091","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"30a10bb3-c0ca-4e86-ad09-0f3a0cb80cb6","EG10BJ23","应缴企业所得税","COMPANY","String","5","","1:1","1092","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"b032ba69-7b42-4db4-bc2f-aaeaa0f66fef","EG10BJ24","提取专用基金","COMPANY","String","5","","1:1","1093","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"981c533a-8b98-4ebf-9d30-ba83b0a5cade","EG10BJ25","转入事业基金","COMPANY","String","5","","1:1","1094","98fda46f-18bb-4179-8982-5c0b164b5616","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"61bce732-ae7f-4fd6-9bfd-dc101ca2498a","EHA","评级信息","COMPANY","","2","","1:1","1095","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"739cb6c1-4bb9-49b9-bda1-0579de523ac4","EH01","评级信息单元","COMPANY","","3","每条评级信息对应一个信息单元。","0:*","1096","61bce732-ae7f-4fd6-9bfd-dc101ca2498a","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d8e62919-a8d9-466d-855d-eab2ff285ce2","EH010I01","评级信息编号","COMPANY","String","4","系统分配给该条评级信息在本报告中的唯一编号。","1:1","1097","739cb6c1-4bb9-49b9-bda1-0579de523ac4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"a403c969-17ef-401f-8c2d-ce3182b5efa7","EH010Q01","评级机构名称","COMPANY","String","4","评级机构的名称。","1:1","1098","739cb6c1-4bb9-49b9-bda1-0579de523ac4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"8ddf3cb5-246e-497c-9d19-3e08ffcbee3f","EH010R01","评级日期","COMPANY","Date","4","评级的日期。","1:1","1099","739cb6c1-4bb9-49b9-bda1-0579de523ac4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"fcf10ed4-7c4b-4fdf-a3d0-1bb3cc996a9a","EH010D01","评级结果","COMPANY","String","4","代码表详见附录 A。","1:1","1100","739cb6c1-4bb9-49b9-bda1-0579de523ac4","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"d0ac96c3-46fb-4fd3-a0df-7f2aee13498d","EIA","声明及异议标注信息","COMPANY","","2","","1:1","1101","cfa2fd7e-5d1b-4a11-b30c-a602ac5fa2dc","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"db6f17a6-88a8-447e-a09a-72f8d5871e86","EI01","声明及异议标注信息单元","COMPANY","","3","每条异议标注、数据提供说明、征信中心说明、信息主体声明对应一个信息单元。","0:*","1102","d0ac96c3-46fb-4fd3-a0df-7f2aee13498d","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"ca92fb89-6a55-42bc-af7d-9cd1a750036b","EI010D01","对象类型","COMPANY","String","4","说明声明及异议标注对象类型的代码。代码表如下: +A00-报告 +C01-基本概况信息单元 +C02-注册资本及主要出资人信息单元 +C03-主要组成人员信息单元 +C04-上级机构信息单元 +C05-实际控制人信息单元 +D01-借贷账户信息单元 +D03-欠息信息单元 +D04-担保账户信息单元 +D06-授信协议信息单元 +D07-相关还款责任借贷账户(不含贴现)信息单元 +D08-相关还款责任贴现账户信息单元 +D09-相关还款责任担保账户信息单元 +E01-公用事业缴费信息 +F01-欠税记录信息单元 +F02-民事判决信息单元 +F03-强制执行信息单元 +F04-行政处罚信息单元 +F05-住房公积金参缴记录信息单元 +F06-获得许可记录信息单元 +F07-获得认证记录信息单元 +F08-获得资质记录信息单元 +F09-获得奖励记录信息单元 +F10-出入境检验检疫绿色通道信息单元 +F11-进出口商品免验信息单元 +F12-进出口商品检验分类监管信息单元 +F13-拥有专利情况信息单元 +F14-融资规模控制信息单元 +H01-评级信息单元 ","1:1","1103","db6f17a6-88a8-447e-a09a-72f8d5871e86","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"af8aa5e9-5f7d-4ebd-9559-b0e103b6f2c4","EI010I01","对象标识","COMPANY","String","4","当标注对象为报告和基本信息时,此数据项返回空值。 +当标注对象为报告和基本信息外的其他信息单元时,此数据项返回信息单元中的对象编号(账户编号/授信协议编号/…)。","1:1","1104","db6f17a6-88a8-447e-a09a-72f8d5871e86","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"9df76aad-ae22-40fd-9f91-145d3e0f9659","EI010D02","标注及声明类型","COMPANY","String","4","说明标注及声明类型代码。代码表如下: +1-数据提供机构说明 +2-征信中心说明 +3-信息主体声明 +4-异议标注","1:1","1105","db6f17a6-88a8-447e-a09a-72f8d5871e86","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"c275c8a6-d833-42db-b027-8df171077d7f","EI010Q01","标注或声明内容","COMPANY","String","4","异议标注或声明信息的内容。 ","1:1","1106","db6f17a6-88a8-447e-a09a-72f8d5871e86","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" +"bbf9ec93-d176-442a-afec-88a02ff8c01c","EI010R01","添加日期","COMPANY","Date","4","标注或声明的添加日期。 ","1:1","1107","db6f17a6-88a8-447e-a09a-72f8d5871e86","1","INPUT","platform","2024-07-10 09:18:29.0","platform","2024-07-10 09:18:29.0" diff --git a/io.sc.standard/src/main/resources/liquibase/io.sc.standard_1.0.0_20221020__Standard Data.xml b/io.sc.standard/src/main/resources/liquibase/io.sc.standard_1.0.0_20221020__Standard Data.xml index 87f08fdb..4ae7a97c 100644 --- a/io.sc.standard/src/main/resources/liquibase/io.sc.standard_1.0.0_20221020__Standard Data.xml +++ b/io.sc.standard/src/main/resources/liquibase/io.sc.standard_1.0.0_20221020__Standard Data.xml @@ -70,5 +70,10 @@ + + + + + diff --git a/io.sc.standard/src/main/resources/liquibase/io.sc.standard_1.0.0_20221020__Standard Schema DDL.xml b/io.sc.standard/src/main/resources/liquibase/io.sc.standard_1.0.0_20221020__Standard Schema DDL.xml index 13f09c95..fb543d10 100644 --- a/io.sc.standard/src/main/resources/liquibase/io.sc.standard_1.0.0_20221020__Standard Schema DDL.xml +++ b/io.sc.standard/src/main/resources/liquibase/io.sc.standard_1.0.0_20221020__Standard Schema DDL.xml @@ -272,6 +272,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/io.sc.standard/src/main/resources/standard/二代个人征信接口结构化数据详细说明.xlsx b/io.sc.standard/src/main/resources/standard/二代个人征信接口结构化数据详细说明.xlsx new file mode 100644 index 00000000..42d66642 Binary files /dev/null and b/io.sc.standard/src/main/resources/standard/二代个人征信接口结构化数据详细说明.xlsx differ diff --git a/io.sc.website/package.json b/io.sc.website/package.json index 3cb583c8..eba8861c 100644 --- a/io.sc.website/package.json +++ b/io.sc.website/package.json @@ -28,6 +28,6 @@ }, "dependencies": { "vue": "3.5.10", - "platform-core": "8.1.433" + "platform-core": "8.1.434" } } \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 8747c345..06ff72cd 100755 --- a/settings.gradle +++ b/settings.gradle @@ -76,3 +76,4 @@ include ':io.sc.standard.api' include ':io.sc.standard.frontend' include ':io.sc.webjars' include ':io.sc.website' +include ':io.sc.creditreport.core'