From 6eb4dd9908b5347f865efbb131e8c152e2cee5ec Mon Sep 17 00:00:00 2001
From: lvleigang <957075182@qq.com>
Date: Thu, 15 Aug 2024 10:18:00 +0800
Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E9=94=80=E6=8E=A5=E5=8F=A3=E7=BC=96?=
 =?UTF-8?q?=E5=86=99=EF=BC=8Cesb=E8=BD=AC=E5=8F=91=E4=BF=AE=E6=94=B9?=
 =?UTF-8?q?=E6=A0=A1=E9=AA=8C=E8=A7=84=E5=88=99?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../plugin/MdmModulePluginInitializer.java    |    2 +-
 .../nxproof/oerdjml/dao/IOerDjmlDao.java      |    8 +
 .../oerdjml/dao/impl/OerDjmlDaoImpl.java      |   21 +
 .../oerdjml/entity/GbiZbsyrecAllEntity.java   |  189 ++
 .../nxproof/oerdjml/entity/OerDjmlEntity.java |   11 +
 .../nxproof/oerdjml/entity/OerDjmlEntity.xml  |  719 +++++++
 .../oerdjml/entity/OerDjnrAllEntity.java      | 1917 +++++++++++++++++
 .../oerdjml/entity/OerYszbAllEntity.java      |  666 ++++++
 .../oerdjml/service/IOerDjmlService.java      |    8 +
 .../service/impl/OerDjmlServiceImpl.java      |  121 +-
 .../impl/SysApplicationServiceImpl.java       |   58 +-
 11 files changed, 3714 insertions(+), 6 deletions(-)
 create mode 100644 service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/GbiZbsyrecAllEntity.java
 create mode 100644 service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjnrAllEntity.java
 create mode 100644 service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerYszbAllEntity.java

diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/mdmDistribute/plugin/MdmModulePluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/mdmDistribute/plugin/MdmModulePluginInitializer.java
index 3d974a2a..c8605e91 100644
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/mdmDistribute/plugin/MdmModulePluginInitializer.java
+++ b/buildpackage/src/main/java/com/hzya/frame/plugin/mdmDistribute/plugin/MdmModulePluginInitializer.java
@@ -926,7 +926,7 @@ public class MdmModulePluginInitializer extends PluginBaseEntity {
         map1.put("tableName",mainDb);
         //map1.put("dataStatus", "Y");
         map1.put("addStatus", "0");
-        map1.put("size", 10);
+        map1.put("size", 20);
         objects = mdmModuleDao.queryMdmSTs(map1);
         objects = toLowerCaseKeys(objects);
 
diff --git a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/dao/IOerDjmlDao.java b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/dao/IOerDjmlDao.java
index 8316a23b..bc648da2 100644
--- a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/dao/IOerDjmlDao.java
+++ b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/dao/IOerDjmlDao.java
@@ -2,8 +2,11 @@ package com.hzya.frame.grpU8.nxproof.oerdjml.dao;
 
 
 import com.hzya.frame.basedao.dao.IBaseDao;
+import com.hzya.frame.grpU8.nxproof.oerdjml.entity.GbiZbsyrecAllEntity;
 import com.hzya.frame.grpU8.nxproof.oerdjml.entity.OerDjmlEntity;
 
+import java.util.List;
+
 /**
  * @Author:hecan
  * @Description:
@@ -37,4 +40,9 @@ public interface IOerDjmlDao extends IBaseDao<OerDjmlEntity,String> {
 
     OerDjmlEntity queryOerDjmlEntity(OerDjmlEntity oerDjmlEntity);
 
+    List<OerDjmlEntity> queryOerDjml(OerDjmlEntity oerDjmlAllEntity);
+
+    Integer updateOerDjmlZt(OerDjmlEntity oerDjmlAllEntity);
+
+    Integer updateGbiZbsyrecByDjid(GbiZbsyrecAllEntity gbiZbsyrecAllEntity);
 }
diff --git a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/dao/impl/OerDjmlDaoImpl.java b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/dao/impl/OerDjmlDaoImpl.java
index d1ef0133..d3255d9a 100644
--- a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/dao/impl/OerDjmlDaoImpl.java
+++ b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/dao/impl/OerDjmlDaoImpl.java
@@ -3,9 +3,12 @@ package com.hzya.frame.grpU8.nxproof.oerdjml.dao.impl;
 
 import com.hzya.frame.basedao.dao.MybatisGenericDao;
 import com.hzya.frame.grpU8.nxproof.oerdjml.dao.IOerDjmlDao;
+import com.hzya.frame.grpU8.nxproof.oerdjml.entity.GbiZbsyrecAllEntity;
 import com.hzya.frame.grpU8.nxproof.oerdjml.entity.OerDjmlEntity;
 import org.springframework.stereotype.Repository;
 
+import java.util.List;
+
 /**
  * @Author:hecan
  * @Description:
@@ -56,4 +59,22 @@ public class OerDjmlDaoImpl extends MybatisGenericDao<OerDjmlEntity,String> impl
         }
     }
 
+    @Override
+    public List<OerDjmlEntity> queryOerDjml(OerDjmlEntity oerDjmlAllEntity) {
+        List<OerDjmlEntity> o = (List<OerDjmlEntity>) super.selectList(getSqlIdPrifx() + "queryOerDjml", oerDjmlAllEntity);
+        return o;
+    }
+
+    @Override
+    public Integer updateOerDjmlZt(OerDjmlEntity oerDjmlAllEntity) {
+        Integer o = super.update(getSqlIdPrifx() + "updateOerDjmlZt", oerDjmlAllEntity);
+        return o;
+    }
+
+    @Override
+    public Integer updateGbiZbsyrecByDjid(GbiZbsyrecAllEntity gbiZbsyrecAllEntity) {
+        Integer o = super.update(getSqlIdPrifx() + "updateGbiZbsyrecByDjid", gbiZbsyrecAllEntity);
+        return o;
+    }
+
 }
diff --git a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/GbiZbsyrecAllEntity.java b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/GbiZbsyrecAllEntity.java
new file mode 100644
index 00000000..ee3798c6
--- /dev/null
+++ b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/GbiZbsyrecAllEntity.java
@@ -0,0 +1,189 @@
+package com.hzya.frame.grpU8.nxproof.oerdjml.entity;
+
+import com.hzya.frame.web.entity.BaseEntity;
+
+import java.math.BigDecimal;
+
+/**
+ * (GbiZbsyrec)实体类
+ *
+ * @author makejava
+ * @since 2024-08-14 10:17:39
+ */
+public class GbiZbsyrecAllEntity extends BaseEntity {
+
+    private String gsdm;
+    private String kjnd;
+    private String module;
+    private String djlx;
+    private String djid;
+    private Integer djflh;
+    private Integer djflmx;
+    private String djywrq;
+    private String djzt;
+    private Integer jhid;
+    private BigDecimal djje;
+    private String djzy;
+    private String szfx;
+    private String zblb;
+    private String czlx;
+    private String jdbz;
+    private String zzbz;
+    private BigDecimal sl;
+    private String ywdjid;
+
+
+    public String getGsdm() {
+        return gsdm;
+    }
+
+    public void setGsdm(String gsdm) {
+        this.gsdm = gsdm;
+    }
+
+    public String getKjnd() {
+        return kjnd;
+    }
+
+    public void setKjnd(String kjnd) {
+        this.kjnd = kjnd;
+    }
+
+    public String getModule() {
+        return module;
+    }
+
+    public void setModule(String module) {
+        this.module = module;
+    }
+
+    public String getDjlx() {
+        return djlx;
+    }
+
+    public void setDjlx(String djlx) {
+        this.djlx = djlx;
+    }
+
+    public String getDjid() {
+        return djid;
+    }
+
+    public void setDjid(String djid) {
+        this.djid = djid;
+    }
+
+    public Integer getDjflh() {
+        return djflh;
+    }
+
+    public void setDjflh(Integer djflh) {
+        this.djflh = djflh;
+    }
+
+    public Integer getDjflmx() {
+        return djflmx;
+    }
+
+    public void setDjflmx(Integer djflmx) {
+        this.djflmx = djflmx;
+    }
+
+    public String getDjywrq() {
+        return djywrq;
+    }
+
+    public void setDjywrq(String djywrq) {
+        this.djywrq = djywrq;
+    }
+
+    public String getDjzt() {
+        return djzt;
+    }
+
+    public void setDjzt(String djzt) {
+        this.djzt = djzt;
+    }
+
+    public Integer getJhid() {
+        return jhid;
+    }
+
+    public void setJhid(Integer jhid) {
+        this.jhid = jhid;
+    }
+
+    public BigDecimal getDjje() {
+        return djje;
+    }
+
+    public void setDjje(BigDecimal djje) {
+        this.djje = djje;
+    }
+
+    public String getDjzy() {
+        return djzy;
+    }
+
+    public void setDjzy(String djzy) {
+        this.djzy = djzy;
+    }
+
+    public String getSzfx() {
+        return szfx;
+    }
+
+    public void setSzfx(String szfx) {
+        this.szfx = szfx;
+    }
+
+    public String getZblb() {
+        return zblb;
+    }
+
+    public void setZblb(String zblb) {
+        this.zblb = zblb;
+    }
+
+    public String getCzlx() {
+        return czlx;
+    }
+
+    public void setCzlx(String czlx) {
+        this.czlx = czlx;
+    }
+
+    public String getJdbz() {
+        return jdbz;
+    }
+
+    public void setJdbz(String jdbz) {
+        this.jdbz = jdbz;
+    }
+
+    public String getZzbz() {
+        return zzbz;
+    }
+
+    public void setZzbz(String zzbz) {
+        this.zzbz = zzbz;
+    }
+
+    public BigDecimal getSl() {
+        return sl;
+    }
+
+    public void setSl(BigDecimal sl) {
+        this.sl = sl;
+    }
+
+    public String getYwdjid() {
+        return ywdjid;
+    }
+
+    public void setYwdjid(String ywdjid) {
+        this.ywdjid = ywdjid;
+    }
+
+}
+
diff --git a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjmlEntity.java b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjmlEntity.java
index d72375e9..aa153154 100644
--- a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjmlEntity.java
+++ b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjmlEntity.java
@@ -11,6 +11,9 @@ import lombok.*;
  * @Date: 2023/6/16 21:49
  */
 public class OerDjmlEntity extends BaseEntity {
+    //流程类别 1、流程发起 2、流程撤销 3、流程终止 4、流程结束
+    private String lclb;
+
     private String mlId;
     private String gsdm;//公司代码
     private String kjnd;//会计年度
@@ -310,4 +313,12 @@ public class OerDjmlEntity extends BaseEntity {
     public void setRptRtContent(byte[] rptRtContent) {
         RptRtContent = rptRtContent;
     }
+
+    public String getLclb() {
+        return lclb;
+    }
+
+    public void setLclb(String lclb) {
+        this.lclb = lclb;
+    }
 }
diff --git a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjmlEntity.xml b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjmlEntity.xml
index 63239181..ccb2a7c5 100644
--- a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjmlEntity.xml
+++ b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjmlEntity.xml
@@ -189,4 +189,723 @@ GSDM,KJND,mlId
           AND mlid = #{mlId}
     </update>
 
+
+
+    <select id="queryOerDjml" resultType="com.hzya.frame.grpU8.nxproof.oerdjml.entity.OerDjmlEntity" parameterType = "com.hzya.frame.grpU8.nxproof.oerdjml.entity.OerDjmlEntity">
+        select
+        MLID
+        ,GSDM
+        ,KJND
+        ,DJLXID
+        ,DQRQ
+        ,ZT
+        ,CRERDM
+        ,CRERMC
+        ,CRERDATE
+        ,FKDH
+        ,FKRID
+        ,FKR
+        ,FKRQ
+        ,IDPZH
+        ,PZRID
+        ,PZR
+        ,PZRQ
+        ,DJBH
+        ,DJDATE
+        ,JE
+        ,JEDX
+        ,WHJE
+        ,FJS
+        ,ZY
+        ,YJJE
+        ,THJE
+        ,BLJE
+        ,BMDM
+        ,BMMC
+        ,XMDM
+        ,XMMC
+        ,GRDM
+        ,GRMC
+        ,DWDM
+        ,DWMC
+        ,GNDM
+        ,GNMC
+        ,JJDM
+        ,JJMC
+        ,FZX6DM
+        ,FZX6MC
+        ,FZX7DM
+        ,FZX7MC
+        ,FZX8DM
+        ,FZX8MC
+        ,FZX9DM
+        ,FZX9MC
+        ,FZXADM
+        ,FZXAMC
+        ,KMDM
+        ,KMMC
+        ,HTBH
+        ,HTJH
+        ,SKR
+        ,YHZH
+        ,KHYH
+        ,CURSHJD
+        ,NEXTSHJD
+        ,FLOWCODE
+        ,SHRID
+        ,SHR
+        ,SHRQ
+        ,SFTH
+        ,THXX
+        ,JSFS
+        ,FQRID
+        ,FQR
+        ,FQRQ
+        ,WX00000051
+        ,WX00000052
+        ,WX00000053
+        ,WX00000054
+        ,WX00000055
+        ,WX00000056
+        ,WX00000057
+        ,WX00000058
+        ,WX00000059
+        ,XQ
+        ,WX00000060
+        ,SKZH
+        ,FKZH
+        ,JSDH
+        ,JSRID
+        ,JSR
+        ,JSRQ
+        ,WX00000061
+        ,WX00000062
+        ,LYBXSX
+        ,WX00000065
+        ,WX00000066
+        ,WX00000063
+        ,WX00000064
+        ,WX00000067
+        ,WX00000068
+        ,WX00000069
+        ,JFLXDM
+        ,JFLXMC
+        ,GZDM
+        ,GZMC
+        ,MXXMDM
+        ,MXXMMC
+        ,JXSE
+        ,POSRQ
+        ,POSDH
+        ,SFZH
+        ,PROVINCE
+        ,CITY
+        ,YH
+        ,YHHH
+        ,KHDQ
+        ,WYZFGUID
+        ,FKRNAME
+        ,FKRKHYH
+        ,FKRYHZH
+        ,TEL
+        ,CLF_CCR
+        ,WLYWGUID
+        ,YYBH
+        ,ZJXZDM
+        ,ZJXZMC
+        ,ZJLYDM
+        ,ZJLYMC
+        ,YSDWDM
+        ,YSDWMC
+        ,SFKGSDM
+        ,wlh
+        ,wlhDisplay
+        ,CLF_CCLB
+        ,KZZL1DM
+        ,KZZL1MC
+        ,KZZL2DM
+        ,KZZL2MC
+        ,KZZL3DM
+        ,KZZL3MC
+        ,KZZL4DM
+        ,KZZL4MC
+        ,KZZL5DM
+        ,KZZL5MC
+        ,KZZL6DM
+        ,KZZL6MC
+        ,KZZL7DM
+        ,KZZL7MC
+        ,ZCSXDM
+        ,ZCSXMC
+        ,FYBZ
+        ,TS
+        ,HDKSRQ
+        ,HDJSRQ
+        ,StartDate
+        ,EndDate
+        ,SFDD
+        ,FDDSM
+        ,ZWJB
+        ,JDDXDW
+        ,ZBXM
+        ,HYLB
+        ,PXMC
+        ,PXLB
+        ,ZYRS
+        ,FZRS
+        ,DD
+        ,HYMC
+        ,SmsSendFlag
+        ,BillMODS
+        ,DX_LWFDH
+        ,DX_CLSPDH
+        ,DX_HYJH
+        ,DX_ZCLX
+        ,ZFFSXX
+        ,CLF_QZF
+        ,CLF_BXF
+        ,CLF_QTF
+        ,CLF_JTF
+        ,CLF_CCTS
+        ,DYRID
+        ,DYR
+        ,DYRQ
+        ,DYCS
+        ,IDSFPD
+        ,YSKJKMDM
+        ,YSKJKMMC
+        ,DJGUID
+        ,SSRQ
+        ,SSRID
+        ,SSR
+        ,XMFLDM
+        ,XMFLMC
+        ,ZCBH
+        ,GWZJBXDBH
+        ,WBDJBH
+        ,FZX11DM
+        ,FZX11MC
+        ,FZX12DM
+        ,FZX12MC
+        ,FZX13DM
+        ,FZX13MC
+        ,FZX14DM
+        ,FZX14MC
+        ,FZX15DM
+        ,FZX15MC
+        ,FZX16DM
+        ,FZX16MC
+        ,FZX17DM
+        ,FZX17MC
+        ,FZX18DM
+        ,FZX18MC
+        ,FZX19DM
+        ,FZX19MC
+        ,FZX20DM
+        ,FZX20MC
+        ,FZX21DM
+        ,FZX21MC
+        ,FZX22DM
+        ,FZX22MC
+        ,FZX23DM
+        ,FZX23MC
+        ,FZX24DM
+        ,FZX24MC
+        ,FZX25DM
+        ,FZX25MC
+        ,FZX26DM
+        ,FZX26MC
+        ,FZX27DM
+        ,FZX27MC
+        ,FZX28DM
+        ,FZX28MC
+        ,FZX29DM
+        ,FZX29MC
+        ,FZX30DM
+        ,FZX30MC
+        ,TDUSER
+        ,TDDATE
+        from OER_DJML
+        <trim prefix="where" prefixOverrides="and">
+            <if test="mlid != null"> and MLID = #{mlid} </if>
+            <if test="gsdm != null and gsdm != ''"> and GSDM = #{gsdm} </if>
+            <if test="kjnd != null and kjnd != ''"> and KJND = #{kjnd} </if>
+            <if test="djlxid != null"> and DJLXID = #{djlxid} </if>
+            <if test="dqrq != null and dqrq != ''"> and DQRQ = #{dqrq} </if>
+            <if test="zt != null and zt != ''"> and ZT = #{zt} </if>
+            <if test="crerdm != null and crerdm != ''"> and CRERDM = #{crerdm} </if>
+            <if test="crermc != null and crermc != ''"> and CRERMC = #{crermc} </if>
+            <if test="crerdate != null and crerdate != ''"> and CRERDATE = #{crerdate} </if>
+            <if test="fkdh != null and fkdh != ''"> and FKDH = #{fkdh} </if>
+            <if test="fkrid != null"> and FKRID = #{fkrid} </if>
+            <if test="fkr != null and fkr != ''"> and FKR = #{fkr} </if>
+            <if test="fkrq != null and fkrq != ''"> and FKRQ = #{fkrq} </if>
+            <if test="idpzh != null and idpzh != ''"> and IDPZH = #{idpzh} </if>
+            <if test="pzrid != null"> and PZRID = #{pzrid} </if>
+            <if test="pzr != null and pzr != ''"> and PZR = #{pzr} </if>
+            <if test="pzrq != null and pzrq != ''"> and PZRQ = #{pzrq} </if>
+            <if test="djbh != null and djbh != ''"> and DJBH = #{djbh} </if>
+            <if test="djdate != null and djdate != ''"> and DJDATE = #{djdate} </if>
+            <if test="je != null"> and JE = #{je} </if>
+            <if test="jedx != null and jedx != ''"> and JEDX = #{jedx} </if>
+            <if test="whje != null"> and WHJE = #{whje} </if>
+            <if test="fjs != null"> and FJS = #{fjs} </if>
+            <if test="zy != null and zy != ''"> and ZY = #{zy} </if>
+            <if test="yjje != null"> and YJJE = #{yjje} </if>
+            <if test="thje != null"> and THJE = #{thje} </if>
+            <if test="blje != null"> and BLJE = #{blje} </if>
+            <if test="bmdm != null and bmdm != ''"> and BMDM = #{bmdm} </if>
+            <if test="bmmc != null and bmmc != ''"> and BMMC = #{bmmc} </if>
+            <if test="xmdm != null and xmdm != ''"> and XMDM = #{xmdm} </if>
+            <if test="xmmc != null and xmmc != ''"> and XMMC = #{xmmc} </if>
+            <if test="grdm != null and grdm != ''"> and GRDM = #{grdm} </if>
+            <if test="grmc != null and grmc != ''"> and GRMC = #{grmc} </if>
+            <if test="dwdm != null and dwdm != ''"> and DWDM = #{dwdm} </if>
+            <if test="dwmc != null and dwmc != ''"> and DWMC = #{dwmc} </if>
+            <if test="gndm != null and gndm != ''"> and GNDM = #{gndm} </if>
+            <if test="gnmc != null and gnmc != ''"> and GNMC = #{gnmc} </if>
+            <if test="jjdm != null and jjdm != ''"> and JJDM = #{jjdm} </if>
+            <if test="jjmc != null and jjmc != ''"> and JJMC = #{jjmc} </if>
+            <if test="fzx6dm != null and fzx6dm != ''"> and FZX6DM = #{fzx6dm} </if>
+            <if test="fzx6mc != null and fzx6mc != ''"> and FZX6MC = #{fzx6mc} </if>
+            <if test="fzx7dm != null and fzx7dm != ''"> and FZX7DM = #{fzx7dm} </if>
+            <if test="fzx7mc != null and fzx7mc != ''"> and FZX7MC = #{fzx7mc} </if>
+            <if test="fzx8dm != null and fzx8dm != ''"> and FZX8DM = #{fzx8dm} </if>
+            <if test="fzx8mc != null and fzx8mc != ''"> and FZX8MC = #{fzx8mc} </if>
+            <if test="fzx9dm != null and fzx9dm != ''"> and FZX9DM = #{fzx9dm} </if>
+            <if test="fzx9mc != null and fzx9mc != ''"> and FZX9MC = #{fzx9mc} </if>
+            <if test="fzxadm != null and fzxadm != ''"> and FZXADM = #{fzxadm} </if>
+            <if test="fzxamc != null and fzxamc != ''"> and FZXAMC = #{fzxamc} </if>
+            <if test="kmdm != null and kmdm != ''"> and KMDM = #{kmdm} </if>
+            <if test="kmmc != null and kmmc != ''"> and KMMC = #{kmmc} </if>
+            <if test="htbh != null and htbh != ''"> and HTBH = #{htbh} </if>
+            <if test="htjh != null and htjh != ''"> and HTJH = #{htjh} </if>
+            <if test="skr != null and skr != ''"> and SKR = #{skr} </if>
+            <if test="yhzh != null and yhzh != ''"> and YHZH = #{yhzh} </if>
+            <if test="khyh != null and khyh != ''"> and KHYH = #{khyh} </if>
+            <if test="curshjd != null"> and CURSHJD = #{curshjd} </if>
+            <if test="nextshjd != null"> and NEXTSHJD = #{nextshjd} </if>
+            <if test="flowcode != null and flowcode != ''"> and FLOWCODE = #{flowcode} </if>
+            <if test="shrid != null and shrid != ''"> and SHRID = #{shrid} </if>
+            <if test="shr != null and shr != ''"> and SHR = #{shr} </if>
+            <if test="shrq != null and shrq != ''"> and SHRQ = #{shrq} </if>
+            <if test="sfth != null and sfth != ''"> and SFTH = #{sfth} </if>
+            <if test="thxx != null and thxx != ''"> and THXX = #{thxx} </if>
+            <if test="jsfs != null and jsfs != ''"> and JSFS = #{jsfs} </if>
+            <if test="fqrid != null"> and FQRID = #{fqrid} </if>
+            <if test="fqr != null and fqr != ''"> and FQR = #{fqr} </if>
+            <if test="fqrq != null and fqrq != ''"> and FQRQ = #{fqrq} </if>
+            <if test="wx00000051 != null and wx00000051 != ''"> and WX00000051 = #{wx00000051} </if>
+            <if test="wx00000052 != null and wx00000052 != ''"> and WX00000052 = #{wx00000052} </if>
+            <if test="wx00000053 != null and wx00000053 != ''"> and WX00000053 = #{wx00000053} </if>
+            <if test="wx00000054 != null and wx00000054 != ''"> and WX00000054 = #{wx00000054} </if>
+            <if test="wx00000055 != null and wx00000055 != ''"> and WX00000055 = #{wx00000055} </if>
+            <if test="wx00000056 != null"> and WX00000056 = #{wx00000056} </if>
+            <if test="wx00000057 != null and wx00000057 != ''"> and WX00000057 = #{wx00000057} </if>
+            <if test="wx00000058 != null and wx00000058 != ''"> and WX00000058 = #{wx00000058} </if>
+            <if test="wx00000059 != null"> and WX00000059 = #{wx00000059} </if>
+            <if test="xq != null and xq != ''"> and XQ = #{xq} </if>
+            <if test="wx00000060 != null and wx00000060 != ''"> and WX00000060 = #{wx00000060} </if>
+            <if test="skzh != null and skzh != ''"> and SKZH = #{skzh} </if>
+            <if test="fkzh != null and fkzh != ''"> and FKZH = #{fkzh} </if>
+            <if test="jsdh != null and jsdh != ''"> and JSDH = #{jsdh} </if>
+            <if test="jsrid != null"> and JSRID = #{jsrid} </if>
+            <if test="jsr != null and jsr != ''"> and JSR = #{jsr} </if>
+            <if test="jsrq != null and jsrq != ''"> and JSRQ = #{jsrq} </if>
+            <if test="wx00000061 != null and wx00000061 != ''"> and WX00000061 = #{wx00000061} </if>
+            <if test="wx00000062 != null and wx00000062 != ''"> and WX00000062 = #{wx00000062} </if>
+            <if test="lybxsx != null and lybxsx != ''"> and LYBXSX = #{lybxsx} </if>
+            <if test="wx00000065 != null"> and WX00000065 = #{wx00000065} </if>
+            <if test="wx00000066 != null"> and WX00000066 = #{wx00000066} </if>
+            <if test="wx00000063 != null"> and WX00000063 = #{wx00000063} </if>
+            <if test="wx00000064 != null"> and WX00000064 = #{wx00000064} </if>
+            <if test="wx00000067 != null and wx00000067 != ''"> and WX00000067 = #{wx00000067} </if>
+            <if test="wx00000068 != null"> and WX00000068 = #{wx00000068} </if>
+            <if test="wx00000069 != null and wx00000069 != ''"> and WX00000069 = #{wx00000069} </if>
+            <if test="jflxdm != null and jflxdm != ''"> and JFLXDM = #{jflxdm} </if>
+            <if test="jflxmc != null and jflxmc != ''"> and JFLXMC = #{jflxmc} </if>
+            <if test="gzdm != null"> and GZDM = #{gzdm} </if>
+            <if test="gzmc != null and gzmc != ''"> and GZMC = #{gzmc} </if>
+            <if test="mxxmdm != null and mxxmdm != ''"> and MXXMDM = #{mxxmdm} </if>
+            <if test="mxxmmc != null and mxxmmc != ''"> and MXXMMC = #{mxxmmc} </if>
+            <if test="jxse != null"> and JXSE = #{jxse} </if>
+            <if test="posrq != null and posrq != ''"> and POSRQ = #{posrq} </if>
+            <if test="posdh != null and posdh != ''"> and POSDH = #{posdh} </if>
+            <if test="sfzh != null and sfzh != ''"> and SFZH = #{sfzh} </if>
+            <if test="province != null and province != ''"> and PROVINCE = #{province} </if>
+            <if test="city != null and city != ''"> and CITY = #{city} </if>
+            <if test="yh != null and yh != ''"> and YH = #{yh} </if>
+            <if test="yhhh != null and yhhh != ''"> and YHHH = #{yhhh} </if>
+            <if test="khdq != null and khdq != ''"> and KHDQ = #{khdq} </if>
+            <if test="wyzfguid != null and wyzfguid != ''"> and WYZFGUID = #{wyzfguid} </if>
+            <if test="fkrname != null and fkrname != ''"> and FKRNAME = #{fkrname} </if>
+            <if test="fkrkhyh != null and fkrkhyh != ''"> and FKRKHYH = #{fkrkhyh} </if>
+            <if test="fkryhzh != null and fkryhzh != ''"> and FKRYHZH = #{fkryhzh} </if>
+            <if test="tel != null and tel != ''"> and TEL = #{tel} </if>
+            <if test="clfCcr != null and clfCcr != ''"> and CLF_CCR = #{clfCcr} </if>
+            <if test="wlywguid != null and wlywguid != ''"> and WLYWGUID = #{wlywguid} </if>
+            <if test="yybh != null and yybh != ''"> and YYBH = #{yybh} </if>
+            <if test="zjxzdm != null and zjxzdm != ''"> and ZJXZDM = #{zjxzdm} </if>
+            <if test="zjxzmc != null and zjxzmc != ''"> and ZJXZMC = #{zjxzmc} </if>
+            <if test="zjlydm != null and zjlydm != ''"> and ZJLYDM = #{zjlydm} </if>
+            <if test="zjlymc != null and zjlymc != ''"> and ZJLYMC = #{zjlymc} </if>
+            <if test="ysdwdm != null and ysdwdm != ''"> and YSDWDM = #{ysdwdm} </if>
+            <if test="ysdwmc != null and ysdwmc != ''"> and YSDWMC = #{ysdwmc} </if>
+            <if test="sfkgsdm != null and sfkgsdm != ''"> and SFKGSDM = #{sfkgsdm} </if>
+            <if test="wlh != null and wlh != ''"> and wlh = #{wlh} </if>
+            <if test="wlhdisplay != null and wlhdisplay != ''"> and wlhDisplay = #{wlhdisplay} </if>
+            <if test="clfCclb != null and clfCclb != ''"> and CLF_CCLB = #{clfCclb} </if>
+            <if test="kzzl1dm != null and kzzl1dm != ''"> and KZZL1DM = #{kzzl1dm} </if>
+            <if test="kzzl1mc != null and kzzl1mc != ''"> and KZZL1MC = #{kzzl1mc} </if>
+            <if test="kzzl2dm != null and kzzl2dm != ''"> and KZZL2DM = #{kzzl2dm} </if>
+            <if test="kzzl2mc != null and kzzl2mc != ''"> and KZZL2MC = #{kzzl2mc} </if>
+            <if test="kzzl3dm != null and kzzl3dm != ''"> and KZZL3DM = #{kzzl3dm} </if>
+            <if test="kzzl3mc != null and kzzl3mc != ''"> and KZZL3MC = #{kzzl3mc} </if>
+            <if test="kzzl4dm != null and kzzl4dm != ''"> and KZZL4DM = #{kzzl4dm} </if>
+            <if test="kzzl4mc != null and kzzl4mc != ''"> and KZZL4MC = #{kzzl4mc} </if>
+            <if test="kzzl5dm != null and kzzl5dm != ''"> and KZZL5DM = #{kzzl5dm} </if>
+            <if test="kzzl5mc != null and kzzl5mc != ''"> and KZZL5MC = #{kzzl5mc} </if>
+            <if test="kzzl6dm != null and kzzl6dm != ''"> and KZZL6DM = #{kzzl6dm} </if>
+            <if test="kzzl6mc != null and kzzl6mc != ''"> and KZZL6MC = #{kzzl6mc} </if>
+            <if test="kzzl7dm != null and kzzl7dm != ''"> and KZZL7DM = #{kzzl7dm} </if>
+            <if test="kzzl7mc != null and kzzl7mc != ''"> and KZZL7MC = #{kzzl7mc} </if>
+            <if test="zcsxdm != null and zcsxdm != ''"> and ZCSXDM = #{zcsxdm} </if>
+            <if test="zcsxmc != null and zcsxmc != ''"> and ZCSXMC = #{zcsxmc} </if>
+            <if test="fybz != null and fybz != ''"> and FYBZ = #{fybz} </if>
+            <if test="ts != null"> and TS = #{ts} </if>
+            <if test="hdksrq != null and hdksrq != ''"> and HDKSRQ = #{hdksrq} </if>
+            <if test="hdjsrq != null and hdjsrq != ''"> and HDJSRQ = #{hdjsrq} </if>
+            <if test="startdate != null and startdate != ''"> and StartDate = #{startdate} </if>
+            <if test="enddate != null and enddate != ''"> and EndDate = #{enddate} </if>
+            <if test="sfdd != null and sfdd != ''"> and SFDD = #{sfdd} </if>
+            <if test="fddsm != null and fddsm != ''"> and FDDSM = #{fddsm} </if>
+            <if test="zwjb != null and zwjb != ''"> and ZWJB = #{zwjb} </if>
+            <if test="jddxdw != null and jddxdw != ''"> and JDDXDW = #{jddxdw} </if>
+            <if test="zbxm != null and zbxm != ''"> and ZBXM = #{zbxm} </if>
+            <if test="hylb != null and hylb != ''"> and HYLB = #{hylb} </if>
+            <if test="pxmc != null and pxmc != ''"> and PXMC = #{pxmc} </if>
+            <if test="pxlb != null and pxlb != ''"> and PXLB = #{pxlb} </if>
+            <if test="zyrs != null"> and ZYRS = #{zyrs} </if>
+            <if test="fzrs != null"> and FZRS = #{fzrs} </if>
+            <if test="dd != null and dd != ''"> and DD = #{dd} </if>
+            <if test="hymc != null and hymc != ''"> and HYMC = #{hymc} </if>
+            <if test="smssendflag != null"> and SmsSendFlag = #{smssendflag} </if>
+            <if test="billmods != null and billmods != ''"> and BillMODS = #{billmods} </if>
+            <if test="dxLwfdh != null and dxLwfdh != ''"> and DX_LWFDH = #{dxLwfdh} </if>
+            <if test="dxClspdh != null and dxClspdh != ''"> and DX_CLSPDH = #{dxClspdh} </if>
+            <if test="dxHyjh != null and dxHyjh != ''"> and DX_HYJH = #{dxHyjh} </if>
+            <if test="dxZclx != null and dxZclx != ''"> and DX_ZCLX = #{dxZclx} </if>
+            <if test="zffsxx != null and zffsxx != ''"> and ZFFSXX = #{zffsxx} </if>
+            <if test="clfQzf != null"> and CLF_QZF = #{clfQzf} </if>
+            <if test="clfBxf != null"> and CLF_BXF = #{clfBxf} </if>
+            <if test="clfQtf != null"> and CLF_QTF = #{clfQtf} </if>
+            <if test="clfJtf != null"> and CLF_JTF = #{clfJtf} </if>
+            <if test="clfCcts != null"> and CLF_CCTS = #{clfCcts} </if>
+            <if test="dyrid != null and dyrid != ''"> and DYRID = #{dyrid} </if>
+            <if test="dyr != null and dyr != ''"> and DYR = #{dyr} </if>
+            <if test="dyrq != null and dyrq != ''"> and DYRQ = #{dyrq} </if>
+            <if test="dycs != null"> and DYCS = #{dycs} </if>
+            <if test="idsfpd != null and idsfpd != ''"> and IDSFPD = #{idsfpd} </if>
+            <if test="yskjkmdm != null and yskjkmdm != ''"> and YSKJKMDM = #{yskjkmdm} </if>
+            <if test="yskjkmmc != null and yskjkmmc != ''"> and YSKJKMMC = #{yskjkmmc} </if>
+            <if test="djguid != null and djguid != ''"> and DJGUID = #{djguid} </if>
+            <if test="ssrq != null and ssrq != ''"> and SSRQ = #{ssrq} </if>
+            <if test="ssrid != null and ssrid != ''"> and SSRID = #{ssrid} </if>
+            <if test="ssr != null and ssr != ''"> and SSR = #{ssr} </if>
+            <if test="xmfldm != null and xmfldm != ''"> and XMFLDM = #{xmfldm} </if>
+            <if test="xmflmc != null and xmflmc != ''"> and XMFLMC = #{xmflmc} </if>
+            <if test="zcbh != null and zcbh != ''"> and ZCBH = #{zcbh} </if>
+            <if test="gwzjbxdbh != null and gwzjbxdbh != ''"> and GWZJBXDBH = #{gwzjbxdbh} </if>
+            <if test="wbdjbh != null and wbdjbh != ''"> and WBDJBH = #{wbdjbh} </if>
+            <if test="fzx11dm != null and fzx11dm != ''"> and FZX11DM = #{fzx11dm} </if>
+            <if test="fzx11mc != null and fzx11mc != ''"> and FZX11MC = #{fzx11mc} </if>
+            <if test="fzx12dm != null and fzx12dm != ''"> and FZX12DM = #{fzx12dm} </if>
+            <if test="fzx12mc != null and fzx12mc != ''"> and FZX12MC = #{fzx12mc} </if>
+            <if test="fzx13dm != null and fzx13dm != ''"> and FZX13DM = #{fzx13dm} </if>
+            <if test="fzx13mc != null and fzx13mc != ''"> and FZX13MC = #{fzx13mc} </if>
+            <if test="fzx14dm != null and fzx14dm != ''"> and FZX14DM = #{fzx14dm} </if>
+            <if test="fzx14mc != null and fzx14mc != ''"> and FZX14MC = #{fzx14mc} </if>
+            <if test="fzx15dm != null and fzx15dm != ''"> and FZX15DM = #{fzx15dm} </if>
+            <if test="fzx15mc != null and fzx15mc != ''"> and FZX15MC = #{fzx15mc} </if>
+            <if test="fzx16dm != null and fzx16dm != ''"> and FZX16DM = #{fzx16dm} </if>
+            <if test="fzx16mc != null and fzx16mc != ''"> and FZX16MC = #{fzx16mc} </if>
+            <if test="fzx17dm != null and fzx17dm != ''"> and FZX17DM = #{fzx17dm} </if>
+            <if test="fzx17mc != null and fzx17mc != ''"> and FZX17MC = #{fzx17mc} </if>
+            <if test="fzx18dm != null and fzx18dm != ''"> and FZX18DM = #{fzx18dm} </if>
+            <if test="fzx18mc != null and fzx18mc != ''"> and FZX18MC = #{fzx18mc} </if>
+            <if test="fzx19dm != null and fzx19dm != ''"> and FZX19DM = #{fzx19dm} </if>
+            <if test="fzx19mc != null and fzx19mc != ''"> and FZX19MC = #{fzx19mc} </if>
+            <if test="fzx20dm != null and fzx20dm != ''"> and FZX20DM = #{fzx20dm} </if>
+            <if test="fzx20mc != null and fzx20mc != ''"> and FZX20MC = #{fzx20mc} </if>
+            <if test="fzx21dm != null and fzx21dm != ''"> and FZX21DM = #{fzx21dm} </if>
+            <if test="fzx21mc != null and fzx21mc != ''"> and FZX21MC = #{fzx21mc} </if>
+            <if test="fzx22dm != null and fzx22dm != ''"> and FZX22DM = #{fzx22dm} </if>
+            <if test="fzx22mc != null and fzx22mc != ''"> and FZX22MC = #{fzx22mc} </if>
+            <if test="fzx23dm != null and fzx23dm != ''"> and FZX23DM = #{fzx23dm} </if>
+            <if test="fzx23mc != null and fzx23mc != ''"> and FZX23MC = #{fzx23mc} </if>
+            <if test="fzx24dm != null and fzx24dm != ''"> and FZX24DM = #{fzx24dm} </if>
+            <if test="fzx24mc != null and fzx24mc != ''"> and FZX24MC = #{fzx24mc} </if>
+            <if test="fzx25dm != null and fzx25dm != ''"> and FZX25DM = #{fzx25dm} </if>
+            <if test="fzx25mc != null and fzx25mc != ''"> and FZX25MC = #{fzx25mc} </if>
+            <if test="fzx26dm != null and fzx26dm != ''"> and FZX26DM = #{fzx26dm} </if>
+            <if test="fzx26mc != null and fzx26mc != ''"> and FZX26MC = #{fzx26mc} </if>
+            <if test="fzx27dm != null and fzx27dm != ''"> and FZX27DM = #{fzx27dm} </if>
+            <if test="fzx27mc != null and fzx27mc != ''"> and FZX27MC = #{fzx27mc} </if>
+            <if test="fzx28dm != null and fzx28dm != ''"> and FZX28DM = #{fzx28dm} </if>
+            <if test="fzx28mc != null and fzx28mc != ''"> and FZX28MC = #{fzx28mc} </if>
+            <if test="fzx29dm != null and fzx29dm != ''"> and FZX29DM = #{fzx29dm} </if>
+            <if test="fzx29mc != null and fzx29mc != ''"> and FZX29MC = #{fzx29mc} </if>
+            <if test="fzx30dm != null and fzx30dm != ''"> and FZX30DM = #{fzx30dm} </if>
+            <if test="fzx30mc != null and fzx30mc != ''"> and FZX30MC = #{fzx30mc} </if>
+            <if test="tduser != null and tduser != ''"> and TDUSER = #{tduser} </if>
+            <if test="tddate != null and tddate != ''"> and TDDATE = #{tddate} </if>
+        </trim>
+    </select>
+
+
+    <update id="updateOerDjmlZt" parameterType = "com.hzya.frame.grpU8.nxproof.oerdjml.entity.OerDjmlEntity" >
+        update OER_DJML  set
+        <trim suffix="" suffixOverrides=",">
+            <if test="gsdm != null and gsdm != ''">  GSDM = #{gsdm}, </if>
+            <if test="kjnd != null and kjnd != ''">  KJND = #{kjnd}, </if>
+            <if test="djlxid != null"> DJLXID = #{djlxid},</if>
+            <if test="dqrq != null and dqrq != ''"> DQRQ = #{dqrq},</if>
+            <if test="zt != null and zt != ''"> ZT = #{zt},</if>
+            <if test="crerdm != null and crerdm != ''"> CRERDM = #{crerdm},</if>
+            <if test="crermc != null and crermc != ''"> CRERMC = #{crermc},</if>
+            <if test="crerdate != null and crerdate != ''"> CRERDATE = #{crerdate},</if>
+            <if test="fkdh != null and fkdh != ''"> FKDH = #{fkdh},</if>
+            <if test="fkrid != null"> FKRID = #{fkrid},</if>
+            <if test="fkr != null and fkr != ''"> FKR = #{fkr},</if>
+            <if test="fkrq != null and fkrq != ''"> FKRQ = #{fkrq},</if>
+            <if test="idpzh != null and idpzh != ''"> IDPZH = #{idpzh},</if>
+            <if test="pzrid != null"> PZRID = #{pzrid},</if>
+            <if test="pzr != null and pzr != ''"> PZR = #{pzr},</if>
+            <if test="pzrq != null and pzrq != ''"> PZRQ = #{pzrq},</if>
+            <if test="djbh != null and djbh != ''"> DJBH = #{djbh},</if>
+            <if test="djdate != null and djdate != ''"> DJDATE = #{djdate},</if>
+            <if test="je != null"> JE = #{je},</if>
+            <if test="jedx != null and jedx != ''"> JEDX = #{jedx},</if>
+            <if test="whje != null"> WHJE = #{whje},</if>
+            <if test="fjs != null"> FJS = #{fjs},</if>
+            <if test="zy != null and zy != ''"> ZY = #{zy},</if>
+            <if test="yjje != null"> YJJE = #{yjje},</if>
+            <if test="thje != null"> THJE = #{thje},</if>
+            <if test="blje != null"> BLJE = #{blje},</if>
+            <if test="bmdm != null and bmdm != ''"> BMDM = #{bmdm},</if>
+            <if test="bmmc != null and bmmc != ''"> BMMC = #{bmmc},</if>
+            <if test="xmdm != null and xmdm != ''"> XMDM = #{xmdm},</if>
+            <if test="xmmc != null and xmmc != ''"> XMMC = #{xmmc},</if>
+            <if test="grdm != null and grdm != ''"> GRDM = #{grdm},</if>
+            <if test="grmc != null and grmc != ''"> GRMC = #{grmc},</if>
+            <if test="dwdm != null and dwdm != ''"> DWDM = #{dwdm},</if>
+            <if test="dwmc != null and dwmc != ''"> DWMC = #{dwmc},</if>
+            <if test="gndm != null and gndm != ''"> GNDM = #{gndm},</if>
+            <if test="gnmc != null and gnmc != ''"> GNMC = #{gnmc},</if>
+            <if test="jjdm != null and jjdm != ''"> JJDM = #{jjdm},</if>
+            <if test="jjmc != null and jjmc != ''"> JJMC = #{jjmc},</if>
+            <if test="fzx6dm != null and fzx6dm != ''"> FZX6DM = #{fzx6dm},</if>
+            <if test="fzx6mc != null and fzx6mc != ''"> FZX6MC = #{fzx6mc},</if>
+            <if test="fzx7dm != null and fzx7dm != ''"> FZX7DM = #{fzx7dm},</if>
+            <if test="fzx7mc != null and fzx7mc != ''"> FZX7MC = #{fzx7mc},</if>
+            <if test="fzx8dm != null and fzx8dm != ''"> FZX8DM = #{fzx8dm},</if>
+            <if test="fzx8mc != null and fzx8mc != ''"> FZX8MC = #{fzx8mc},</if>
+            <if test="fzx9dm != null and fzx9dm != ''"> FZX9DM = #{fzx9dm},</if>
+            <if test="fzx9mc != null and fzx9mc != ''"> FZX9MC = #{fzx9mc},</if>
+            <if test="fzxadm != null and fzxadm != ''"> FZXADM = #{fzxadm},</if>
+            <if test="fzxamc != null and fzxamc != ''"> FZXAMC = #{fzxamc},</if>
+            <if test="kmdm != null and kmdm != ''"> KMDM = #{kmdm},</if>
+            <if test="kmmc != null and kmmc != ''"> KMMC = #{kmmc},</if>
+            <if test="htbh != null and htbh != ''"> HTBH = #{htbh},</if>
+            <if test="htjh != null and htjh != ''"> HTJH = #{htjh},</if>
+            <if test="skr != null and skr != ''"> SKR = #{skr},</if>
+            <if test="yhzh != null and yhzh != ''"> YHZH = #{yhzh},</if>
+            <if test="khyh != null and khyh != ''"> KHYH = #{khyh},</if>
+            <if test="curshjd != null"> CURSHJD = #{curshjd},</if>
+            <if test="nextshjd != null"> NEXTSHJD = #{nextshjd},</if>
+            <if test="flowcode != null and flowcode != ''"> FLOWCODE = #{flowcode},</if>
+            <if test="shrid != null and shrid != ''"> SHRID = #{shrid},</if>
+            <if test="shr != null and shr != ''"> SHR = #{shr},</if>
+            <if test="shrq != null and shrq != ''"> SHRQ = #{shrq},</if>
+            <if test="sfth != null and sfth != ''"> SFTH = #{sfth},</if>
+            <if test="thxx != null and thxx != ''"> THXX = #{thxx},</if>
+            <if test="jsfs != null and jsfs != ''"> JSFS = #{jsfs},</if>
+            <if test="fqrid != null"> FQRID = #{fqrid},</if>
+            <if test="fqr != null and fqr != ''"> FQR = #{fqr},</if>
+            <if test="fqrq != null and fqrq != ''"> FQRQ = #{fqrq},</if>
+            <if test="wx00000051 != null and wx00000051 != ''"> WX00000051 = #{wx00000051},</if>
+            <if test="wx00000052 != null and wx00000052 != ''"> WX00000052 = #{wx00000052},</if>
+            <if test="wx00000053 != null and wx00000053 != ''"> WX00000053 = #{wx00000053},</if>
+            <if test="wx00000054 != null and wx00000054 != ''"> WX00000054 = #{wx00000054},</if>
+            <if test="wx00000055 != null and wx00000055 != ''"> WX00000055 = #{wx00000055},</if>
+            <if test="wx00000056 != null"> WX00000056 = #{wx00000056},</if>
+            <if test="wx00000057 != null and wx00000057 != ''"> WX00000057 = #{wx00000057},</if>
+            <if test="wx00000058 != null and wx00000058 != ''"> WX00000058 = #{wx00000058},</if>
+            <if test="wx00000059 != null"> WX00000059 = #{wx00000059},</if>
+            <if test="xq != null and xq != ''"> XQ = #{xq},</if>
+            <if test="wx00000060 != null and wx00000060 != ''"> WX00000060 = #{wx00000060},</if>
+            <if test="skzh != null and skzh != ''"> SKZH = #{skzh},</if>
+            <if test="fkzh != null and fkzh != ''"> FKZH = #{fkzh},</if>
+            <if test="jsdh != null and jsdh != ''"> JSDH = #{jsdh},</if>
+            <if test="jsrid != null"> JSRID = #{jsrid},</if>
+            <if test="jsr != null and jsr != ''"> JSR = #{jsr},</if>
+            <if test="jsrq != null and jsrq != ''"> JSRQ = #{jsrq},</if>
+            <if test="wx00000061 != null and wx00000061 != ''"> WX00000061 = #{wx00000061},</if>
+            <if test="wx00000062 != null and wx00000062 != ''"> WX00000062 = #{wx00000062},</if>
+            <if test="lybxsx != null and lybxsx != ''"> LYBXSX = #{lybxsx},</if>
+            <if test="wx00000065 != null"> WX00000065 = #{wx00000065},</if>
+            <if test="wx00000066 != null"> WX00000066 = #{wx00000066},</if>
+            <if test="wx00000063 != null"> WX00000063 = #{wx00000063},</if>
+            <if test="wx00000064 != null"> WX00000064 = #{wx00000064},</if>
+            <if test="wx00000067 != null and wx00000067 != ''"> WX00000067 = #{wx00000067},</if>
+            <if test="wx00000068 != null"> WX00000068 = #{wx00000068},</if>
+            <if test="wx00000069 != null and wx00000069 != ''"> WX00000069 = #{wx00000069},</if>
+            <if test="jflxdm != null and jflxdm != ''"> JFLXDM = #{jflxdm},</if>
+            <if test="jflxmc != null and jflxmc != ''"> JFLXMC = #{jflxmc},</if>
+            <if test="gzdm != null"> GZDM = #{gzdm},</if>
+            <if test="gzmc != null and gzmc != ''"> GZMC = #{gzmc},</if>
+            <if test="mxxmdm != null and mxxmdm != ''"> MXXMDM = #{mxxmdm},</if>
+            <if test="mxxmmc != null and mxxmmc != ''"> MXXMMC = #{mxxmmc},</if>
+            <if test="jxse != null"> JXSE = #{jxse},</if>
+            <if test="posrq != null and posrq != ''"> POSRQ = #{posrq},</if>
+            <if test="posdh != null and posdh != ''"> POSDH = #{posdh},</if>
+            <if test="sfzh != null and sfzh != ''"> SFZH = #{sfzh},</if>
+            <if test="province != null and province != ''"> PROVINCE = #{province},</if>
+            <if test="city != null and city != ''"> CITY = #{city},</if>
+            <if test="yh != null and yh != ''"> YH = #{yh},</if>
+            <if test="yhhh != null and yhhh != ''"> YHHH = #{yhhh},</if>
+            <if test="khdq != null and khdq != ''"> KHDQ = #{khdq},</if>
+            <if test="wyzfguid != null and wyzfguid != ''"> WYZFGUID = #{wyzfguid},</if>
+            <if test="fkrname != null and fkrname != ''"> FKRNAME = #{fkrname},</if>
+            <if test="fkrkhyh != null and fkrkhyh != ''"> FKRKHYH = #{fkrkhyh},</if>
+            <if test="fkryhzh != null and fkryhzh != ''"> FKRYHZH = #{fkryhzh},</if>
+            <if test="tel != null and tel != ''"> TEL = #{tel},</if>
+            <if test="clfCcr != null and clfCcr != ''"> CLF_CCR = #{clfCcr},</if>
+            <if test="wlywguid != null and wlywguid != ''"> WLYWGUID = #{wlywguid},</if>
+            <if test="yybh != null and yybh != ''"> YYBH = #{yybh},</if>
+            <if test="zjxzdm != null and zjxzdm != ''"> ZJXZDM = #{zjxzdm},</if>
+            <if test="zjxzmc != null and zjxzmc != ''"> ZJXZMC = #{zjxzmc},</if>
+            <if test="zjlydm != null and zjlydm != ''"> ZJLYDM = #{zjlydm},</if>
+            <if test="zjlymc != null and zjlymc != ''"> ZJLYMC = #{zjlymc},</if>
+            <if test="ysdwdm != null and ysdwdm != ''"> YSDWDM = #{ysdwdm},</if>
+            <if test="ysdwmc != null and ysdwmc != ''"> YSDWMC = #{ysdwmc},</if>
+            <if test="sfkgsdm != null and sfkgsdm != ''"> SFKGSDM = #{sfkgsdm},</if>
+            <if test="wlh != null and wlh != ''"> wlh = #{wlh},</if>
+            <if test="wlhdisplay != null and wlhdisplay != ''"> wlhDisplay = #{wlhdisplay},</if>
+            <if test="clfCclb != null and clfCclb != ''"> CLF_CCLB = #{clfCclb},</if>
+            <if test="kzzl1dm != null and kzzl1dm != ''"> KZZL1DM = #{kzzl1dm},</if>
+            <if test="kzzl1mc != null and kzzl1mc != ''"> KZZL1MC = #{kzzl1mc},</if>
+            <if test="kzzl2dm != null and kzzl2dm != ''"> KZZL2DM = #{kzzl2dm},</if>
+            <if test="kzzl2mc != null and kzzl2mc != ''"> KZZL2MC = #{kzzl2mc},</if>
+            <if test="kzzl3dm != null and kzzl3dm != ''"> KZZL3DM = #{kzzl3dm},</if>
+            <if test="kzzl3mc != null and kzzl3mc != ''"> KZZL3MC = #{kzzl3mc},</if>
+            <if test="kzzl4dm != null and kzzl4dm != ''"> KZZL4DM = #{kzzl4dm},</if>
+            <if test="kzzl4mc != null and kzzl4mc != ''"> KZZL4MC = #{kzzl4mc},</if>
+            <if test="kzzl5dm != null and kzzl5dm != ''"> KZZL5DM = #{kzzl5dm},</if>
+            <if test="kzzl5mc != null and kzzl5mc != ''"> KZZL5MC = #{kzzl5mc},</if>
+            <if test="kzzl6dm != null and kzzl6dm != ''"> KZZL6DM = #{kzzl6dm},</if>
+            <if test="kzzl6mc != null and kzzl6mc != ''"> KZZL6MC = #{kzzl6mc},</if>
+            <if test="kzzl7dm != null and kzzl7dm != ''"> KZZL7DM = #{kzzl7dm},</if>
+            <if test="kzzl7mc != null and kzzl7mc != ''"> KZZL7MC = #{kzzl7mc},</if>
+            <if test="zcsxdm != null and zcsxdm != ''"> ZCSXDM = #{zcsxdm},</if>
+            <if test="zcsxmc != null and zcsxmc != ''"> ZCSXMC = #{zcsxmc},</if>
+            <if test="fybz != null and fybz != ''"> FYBZ = #{fybz},</if>
+            <if test="ts != null"> TS = #{ts},</if>
+            <if test="hdksrq != null and hdksrq != ''"> HDKSRQ = #{hdksrq},</if>
+            <if test="hdjsrq != null and hdjsrq != ''"> HDJSRQ = #{hdjsrq},</if>
+            <if test="startdate != null and startdate != ''"> StartDate = #{startdate},</if>
+            <if test="enddate != null and enddate != ''"> EndDate = #{enddate},</if>
+            <if test="sfdd != null and sfdd != ''"> SFDD = #{sfdd},</if>
+            <if test="fddsm != null and fddsm != ''"> FDDSM = #{fddsm},</if>
+            <if test="zwjb != null and zwjb != ''"> ZWJB = #{zwjb},</if>
+            <if test="jddxdw != null and jddxdw != ''"> JDDXDW = #{jddxdw},</if>
+            <if test="zbxm != null and zbxm != ''"> ZBXM = #{zbxm},</if>
+            <if test="hylb != null and hylb != ''"> HYLB = #{hylb},</if>
+            <if test="pxmc != null and pxmc != ''"> PXMC = #{pxmc},</if>
+            <if test="pxlb != null and pxlb != ''"> PXLB = #{pxlb},</if>
+            <if test="zyrs != null"> ZYRS = #{zyrs},</if>
+            <if test="fzrs != null"> FZRS = #{fzrs},</if>
+            <if test="dd != null and dd != ''"> DD = #{dd},</if>
+            <if test="hymc != null and hymc != ''"> HYMC = #{hymc},</if>
+            <if test="smssendflag != null"> SmsSendFlag = #{smssendflag},</if>
+            <if test="billmods != null and billmods != ''"> BillMODS = #{billmods},</if>
+            <if test="dxLwfdh != null and dxLwfdh != ''"> DX_LWFDH = #{dxLwfdh},</if>
+            <if test="dxClspdh != null and dxClspdh != ''"> DX_CLSPDH = #{dxClspdh},</if>
+            <if test="dxHyjh != null and dxHyjh != ''"> DX_HYJH = #{dxHyjh},</if>
+            <if test="dxZclx != null and dxZclx != ''"> DX_ZCLX = #{dxZclx},</if>
+            <if test="zffsxx != null and zffsxx != ''"> ZFFSXX = #{zffsxx},</if>
+            <if test="clfQzf != null"> CLF_QZF = #{clfQzf},</if>
+            <if test="clfBxf != null"> CLF_BXF = #{clfBxf},</if>
+            <if test="clfQtf != null"> CLF_QTF = #{clfQtf},</if>
+            <if test="clfJtf != null"> CLF_JTF = #{clfJtf},</if>
+            <if test="clfCcts != null"> CLF_CCTS = #{clfCcts},</if>
+            <if test="dyrid != null and dyrid != ''"> DYRID = #{dyrid},</if>
+            <if test="dyr != null and dyr != ''"> DYR = #{dyr},</if>
+            <if test="dyrq != null and dyrq != ''"> DYRQ = #{dyrq},</if>
+            <if test="dycs != null"> DYCS = #{dycs},</if>
+            <if test="idsfpd != null and idsfpd != ''"> IDSFPD = #{idsfpd},</if>
+            <if test="yskjkmdm != null and yskjkmdm != ''"> YSKJKMDM = #{yskjkmdm},</if>
+            <if test="yskjkmmc != null and yskjkmmc != ''"> YSKJKMMC = #{yskjkmmc},</if>
+            <if test="djguid != null and djguid != ''"> DJGUID = #{djguid},</if>
+            <if test="ssrq != null and ssrq != ''"> SSRQ = #{ssrq},</if>
+            <if test="ssrid != null and ssrid != ''"> SSRID = #{ssrid},</if>
+            <if test="ssr != null and ssr != ''"> SSR = #{ssr},</if>
+            <if test="xmfldm != null and xmfldm != ''"> XMFLDM = #{xmfldm},</if>
+            <if test="xmflmc != null and xmflmc != ''"> XMFLMC = #{xmflmc},</if>
+            <if test="zcbh != null and zcbh != ''"> ZCBH = #{zcbh},</if>
+            <if test="gwzjbxdbh != null and gwzjbxdbh != ''"> GWZJBXDBH = #{gwzjbxdbh},</if>
+            <if test="wbdjbh != null and wbdjbh != ''"> WBDJBH = #{wbdjbh},</if>
+            <if test="fzx11dm != null and fzx11dm != ''"> FZX11DM = #{fzx11dm},</if>
+            <if test="fzx11mc != null and fzx11mc != ''"> FZX11MC = #{fzx11mc},</if>
+            <if test="fzx12dm != null and fzx12dm != ''"> FZX12DM = #{fzx12dm},</if>
+            <if test="fzx12mc != null and fzx12mc != ''"> FZX12MC = #{fzx12mc},</if>
+            <if test="fzx13dm != null and fzx13dm != ''"> FZX13DM = #{fzx13dm},</if>
+            <if test="fzx13mc != null and fzx13mc != ''"> FZX13MC = #{fzx13mc},</if>
+            <if test="fzx14dm != null and fzx14dm != ''"> FZX14DM = #{fzx14dm},</if>
+            <if test="fzx14mc != null and fzx14mc != ''"> FZX14MC = #{fzx14mc},</if>
+            <if test="fzx15dm != null and fzx15dm != ''"> FZX15DM = #{fzx15dm},</if>
+            <if test="fzx15mc != null and fzx15mc != ''"> FZX15MC = #{fzx15mc},</if>
+            <if test="fzx16dm != null and fzx16dm != ''"> FZX16DM = #{fzx16dm},</if>
+            <if test="fzx16mc != null and fzx16mc != ''"> FZX16MC = #{fzx16mc},</if>
+            <if test="fzx17dm != null and fzx17dm != ''"> FZX17DM = #{fzx17dm},</if>
+            <if test="fzx17mc != null and fzx17mc != ''"> FZX17MC = #{fzx17mc},</if>
+            <if test="fzx18dm != null and fzx18dm != ''"> FZX18DM = #{fzx18dm},</if>
+            <if test="fzx18mc != null and fzx18mc != ''"> FZX18MC = #{fzx18mc},</if>
+            <if test="fzx19dm != null and fzx19dm != ''"> FZX19DM = #{fzx19dm},</if>
+            <if test="fzx19mc != null and fzx19mc != ''"> FZX19MC = #{fzx19mc},</if>
+            <if test="fzx20dm != null and fzx20dm != ''"> FZX20DM = #{fzx20dm},</if>
+            <if test="fzx20mc != null and fzx20mc != ''"> FZX20MC = #{fzx20mc},</if>
+            <if test="fzx21dm != null and fzx21dm != ''"> FZX21DM = #{fzx21dm},</if>
+            <if test="fzx21mc != null and fzx21mc != ''"> FZX21MC = #{fzx21mc},</if>
+            <if test="fzx22dm != null and fzx22dm != ''"> FZX22DM = #{fzx22dm},</if>
+            <if test="fzx22mc != null and fzx22mc != ''"> FZX22MC = #{fzx22mc},</if>
+            <if test="fzx23dm != null and fzx23dm != ''"> FZX23DM = #{fzx23dm},</if>
+            <if test="fzx23mc != null and fzx23mc != ''"> FZX23MC = #{fzx23mc},</if>
+            <if test="fzx24dm != null and fzx24dm != ''"> FZX24DM = #{fzx24dm},</if>
+            <if test="fzx24mc != null and fzx24mc != ''"> FZX24MC = #{fzx24mc},</if>
+            <if test="fzx25dm != null and fzx25dm != ''"> FZX25DM = #{fzx25dm},</if>
+            <if test="fzx25mc != null and fzx25mc != ''"> FZX25MC = #{fzx25mc},</if>
+            <if test="fzx26dm != null and fzx26dm != ''"> FZX26DM = #{fzx26dm},</if>
+            <if test="fzx26mc != null and fzx26mc != ''"> FZX26MC = #{fzx26mc},</if>
+            <if test="fzx27dm != null and fzx27dm != ''"> FZX27DM = #{fzx27dm},</if>
+            <if test="fzx27mc != null and fzx27mc != ''"> FZX27MC = #{fzx27mc},</if>
+            <if test="fzx28dm != null and fzx28dm != ''"> FZX28DM = #{fzx28dm},</if>
+            <if test="fzx28mc != null and fzx28mc != ''"> FZX28MC = #{fzx28mc},</if>
+            <if test="fzx29dm != null and fzx29dm != ''"> FZX29DM = #{fzx29dm},</if>
+            <if test="fzx29mc != null and fzx29mc != ''"> FZX29MC = #{fzx29mc},</if>
+            <if test="fzx30dm != null and fzx30dm != ''"> FZX30DM = #{fzx30dm},</if>
+            <if test="fzx30mc != null and fzx30mc != ''"> FZX30MC = #{fzx30mc},</if>
+            <if test="tduser != null and tduser != ''"> TDUSER = #{tduser},</if>
+            <if test="tddate != null and tddate != ''"> TDDATE = #{tddate},</if>
+        </trim>
+        where MLID = #{mlid}
+    </update>
+    <update id="updateGbiZbsyrecByDjid" parameterType = "com.hzya.frame.grpU8.nxproof.oerdjml.entity.GbiZbsyrecAllEntity" >
+        update GBI_ZBSYREC  set
+        <trim suffix="" suffixOverrides=",">
+            <if test="djzt != null and djzt != ''"> DJZT = #{djzt},</if>
+        </trim>
+        where djid = #{djid} and djlx = #{djlx}
+    </update>
+
 </mapper>
diff --git a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjnrAllEntity.java b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjnrAllEntity.java
new file mode 100644
index 00000000..a87ee839
--- /dev/null
+++ b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerDjnrAllEntity.java
@@ -0,0 +1,1917 @@
+package com.hzya.frame.grpU8.nxproof.oerdjml.entity;
+
+import com.hzya.frame.web.entity.BaseEntity;
+
+import java.math.BigDecimal;
+
+/**
+ * (OerDjnr)实体类
+ *
+ * @author makejava
+ * @since 2024-08-14 10:14:58
+ */
+public class OerDjnrAllEntity extends BaseEntity {
+ 
+ private Integer xh;
+ private Integer mlid;
+ private String gsdm;
+ private String kjnd;
+ private Integer djlxid;
+ private Integer bnxid;
+ private BigDecimal je;
+ private String bmdm;
+ private String bmmc;
+ private String xmdm;
+ private String xmmc;
+ private String grdm;
+ private String grmc;
+ private String dwdm;
+ private String dwmc;
+ private String gndm;
+ private String gnmc;
+ private String jjdm;
+ private String jjmc;
+ private String fzx6dm;
+ private String fzx6mc;
+ private String fzx7dm;
+ private String fzx7mc;
+ private String fzx8dm;
+ private String fzx8mc;
+ private String fzx9dm;
+ private String fzx9mc;
+ private String fzxadm;
+ private String fzxamc;
+ private String kmdm;
+ private String kmmc;
+ private String bxbz;
+ private String zbid;
+ private String jflxdm;
+ private String jflxmc;
+ private String ys00000051;
+ private String ys00000052;
+ private String ys00000053;
+ private String ys00000054;
+ private String ys00000055;
+ private String ys00000056;
+ private String ys00000057;
+ private String ys00000058;
+ private String ys00000059;
+ private String ys00000060;
+ private String ys00000061;
+ private String ys00000062;
+ private String ys00000063;
+ private String ys00000064;
+ private String ys00000065;
+ private String ys00000066;
+ private String ys00000067;
+ private String ys00000068;
+ private String ys00000069;
+ private String ys00000070;
+ private String ys00000071;
+ private String ys00000072;
+ private String zy;
+ private BigDecimal jxse;
+ private String skzh;
+ private String fkzh;
+ private Integer gzdm;
+ private String gzmc;
+ private String mxxmdm;
+ private String mxxmmc;
+ private String sfzh;
+ private String ffzh;
+ private Double sds;
+ private String skr;
+ private String yhzh;
+ private String khyh;
+ private BigDecimal sfje;
+ private String zjlx;
+ private String jsfs;
+ private String zjxzdm;
+ private String zjxzmc;
+ private String zjlydm;
+ private String zjlymc;
+ private String ysdwdm;
+ private String ysdwmc;
+ private String province;
+ private String city;
+ private String yh;
+ private String yhhh;
+ private String khdq;
+ private String clfStartdate;
+ private String clfEnddate;
+ private String clfCcdd;
+ private String clfCcksd;
+ private Integer clfDjzs;
+ private Integer clfCcts;
+ private Integer clfCcrs;
+ private String clfZw;
+ private String clfJtgj;
+ private BigDecimal clfJtf;
+ private BigDecimal clfZsbz;
+ private BigDecimal clfZsf;
+ private BigDecimal clfHsbz;
+ private BigDecimal clfHsf;
+ private BigDecimal clfJtbz;
+ private BigDecimal clfJtbzf;
+ private BigDecimal clfQtf;
+ private Integer fjs;
+ private BigDecimal clfCctsbz;
+ private String kzzl1dm;
+ private String kzzl1mc;
+ private String kzzl2dm;
+ private String kzzl2mc;
+ private String kzzl3dm;
+ private String kzzl3mc;
+ private String kzzl4dm;
+ private String kzzl4mc;
+ private String kzzl5dm;
+ private String kzzl5mc;
+ private String kzzl6dm;
+ private String kzzl6mc;
+ private String kzzl7dm;
+ private String kzzl7mc;
+ private String zcsxdm;
+ private String zcsxmc;
+ private String jfmxguid;
+ private Integer kzzbid;
+ private String htbh;
+ private String htjh;
+ private String sqmx;
+ private BigDecimal sl;
+ private BigDecimal dj;
+ private BigDecimal sqje;
+ private BigDecimal ye;
+ private BigDecimal bxdj;
+ private BigDecimal bxsl;
+ private String clfZsd;
+ private BigDecimal clfZsbzmt;
+ private BigDecimal clfHsbzmt;
+ private BigDecimal clfJtbzmt;
+ private String fyxm;
+ private BigDecimal fybz;
+ private BigDecimal ts;
+ private Integer rs;
+ private String czsqzfm;
+ private BigDecimal clfQzf;
+ private BigDecimal clfBxf;
+ private BigDecimal clfCjjp;
+ private BigDecimal clfCjhc;
+ private BigDecimal clfCjqt;
+ private BigDecimal clfZsts;
+ private String zbdm;
+ private BigDecimal wbje;
+ private String clfMoneytype;
+ private String clfOutmoneytype;
+ private BigDecimal clfZsyrytbz;
+ private BigDecimal hl;
+ private String clfCcr;
+ private String dxZclx;
+ private String dxJfly;
+ private String dxCcxz;
+ private Integer dxDjzs;
+ private String dxZsfs;
+ private String jtjjkm;
+ private Integer clfJtbzrs;
+ private BigDecimal clfJtbzts;
+ private Integer clfHsbzrs;
+ private BigDecimal clfHsbzts;
+ private String bzjjkm;
+ private String dxZcxz;
+ private String fkjd;
+ private String yskjkmdm;
+ private String yskjkmmc;
+ private String xmfldm;
+ private String xmflmc;
+ private String fzx11dm;
+ private String fzx11mc;
+ private String fzx12dm;
+ private String fzx12mc;
+ private String fzx13dm;
+ private String fzx13mc;
+ private String fzx14dm;
+ private String fzx14mc;
+ private String fzx15dm;
+ private String fzx15mc;
+ private String fzx16dm;
+ private String fzx16mc;
+ private String fzx17dm;
+ private String fzx17mc;
+ private String fzx18dm;
+ private String fzx18mc;
+ private String fzx19dm;
+ private String fzx19mc;
+ private String fzx20dm;
+ private String fzx20mc;
+ private String fzx21dm;
+ private String fzx21mc;
+ private String fzx22dm;
+ private String fzx22mc;
+ private String fzx23dm;
+ private String fzx23mc;
+ private String fzx24dm;
+ private String fzx24mc;
+ private String fzx25dm;
+ private String fzx25mc;
+ private String fzx26dm;
+ private String fzx26mc;
+ private String fzx27dm;
+ private String fzx27mc;
+ private String fzx28dm;
+ private String fzx28mc;
+ private String fzx29dm;
+ private String fzx29mc;
+ private String fzx30dm;
+ private String fzx30mc;
+ private Integer czyszbid;
+
+
+    public Integer getXh() {
+        return xh;
+    }
+
+    public void setXh(Integer xh) {
+        this.xh = xh;
+    }
+
+    public Integer getMlid() {
+        return mlid;
+    }
+
+    public void setMlid(Integer mlid) {
+        this.mlid = mlid;
+    }
+
+    public String getGsdm() {
+        return gsdm;
+    }
+
+    public void setGsdm(String gsdm) {
+        this.gsdm = gsdm;
+    }
+
+    public String getKjnd() {
+        return kjnd;
+    }
+
+    public void setKjnd(String kjnd) {
+        this.kjnd = kjnd;
+    }
+
+    public Integer getDjlxid() {
+        return djlxid;
+    }
+
+    public void setDjlxid(Integer djlxid) {
+        this.djlxid = djlxid;
+    }
+
+    public Integer getBnxid() {
+        return bnxid;
+    }
+
+    public void setBnxid(Integer bnxid) {
+        this.bnxid = bnxid;
+    }
+
+    public BigDecimal getJe() {
+        return je;
+    }
+
+    public void setJe(BigDecimal je) {
+        this.je = je;
+    }
+
+    public String getBmdm() {
+        return bmdm;
+    }
+
+    public void setBmdm(String bmdm) {
+        this.bmdm = bmdm;
+    }
+
+    public String getBmmc() {
+        return bmmc;
+    }
+
+    public void setBmmc(String bmmc) {
+        this.bmmc = bmmc;
+    }
+
+    public String getXmdm() {
+        return xmdm;
+    }
+
+    public void setXmdm(String xmdm) {
+        this.xmdm = xmdm;
+    }
+
+    public String getXmmc() {
+        return xmmc;
+    }
+
+    public void setXmmc(String xmmc) {
+        this.xmmc = xmmc;
+    }
+
+    public String getGrdm() {
+        return grdm;
+    }
+
+    public void setGrdm(String grdm) {
+        this.grdm = grdm;
+    }
+
+    public String getGrmc() {
+        return grmc;
+    }
+
+    public void setGrmc(String grmc) {
+        this.grmc = grmc;
+    }
+
+    public String getDwdm() {
+        return dwdm;
+    }
+
+    public void setDwdm(String dwdm) {
+        this.dwdm = dwdm;
+    }
+
+    public String getDwmc() {
+        return dwmc;
+    }
+
+    public void setDwmc(String dwmc) {
+        this.dwmc = dwmc;
+    }
+
+    public String getGndm() {
+        return gndm;
+    }
+
+    public void setGndm(String gndm) {
+        this.gndm = gndm;
+    }
+
+    public String getGnmc() {
+        return gnmc;
+    }
+
+    public void setGnmc(String gnmc) {
+        this.gnmc = gnmc;
+    }
+
+    public String getJjdm() {
+        return jjdm;
+    }
+
+    public void setJjdm(String jjdm) {
+        this.jjdm = jjdm;
+    }
+
+    public String getJjmc() {
+        return jjmc;
+    }
+
+    public void setJjmc(String jjmc) {
+        this.jjmc = jjmc;
+    }
+
+    public String getFzx6dm() {
+        return fzx6dm;
+    }
+
+    public void setFzx6dm(String fzx6dm) {
+        this.fzx6dm = fzx6dm;
+    }
+
+    public String getFzx6mc() {
+        return fzx6mc;
+    }
+
+    public void setFzx6mc(String fzx6mc) {
+        this.fzx6mc = fzx6mc;
+    }
+
+    public String getFzx7dm() {
+        return fzx7dm;
+    }
+
+    public void setFzx7dm(String fzx7dm) {
+        this.fzx7dm = fzx7dm;
+    }
+
+    public String getFzx7mc() {
+        return fzx7mc;
+    }
+
+    public void setFzx7mc(String fzx7mc) {
+        this.fzx7mc = fzx7mc;
+    }
+
+    public String getFzx8dm() {
+        return fzx8dm;
+    }
+
+    public void setFzx8dm(String fzx8dm) {
+        this.fzx8dm = fzx8dm;
+    }
+
+    public String getFzx8mc() {
+        return fzx8mc;
+    }
+
+    public void setFzx8mc(String fzx8mc) {
+        this.fzx8mc = fzx8mc;
+    }
+
+    public String getFzx9dm() {
+        return fzx9dm;
+    }
+
+    public void setFzx9dm(String fzx9dm) {
+        this.fzx9dm = fzx9dm;
+    }
+
+    public String getFzx9mc() {
+        return fzx9mc;
+    }
+
+    public void setFzx9mc(String fzx9mc) {
+        this.fzx9mc = fzx9mc;
+    }
+
+    public String getFzxadm() {
+        return fzxadm;
+    }
+
+    public void setFzxadm(String fzxadm) {
+        this.fzxadm = fzxadm;
+    }
+
+    public String getFzxamc() {
+        return fzxamc;
+    }
+
+    public void setFzxamc(String fzxamc) {
+        this.fzxamc = fzxamc;
+    }
+
+    public String getKmdm() {
+        return kmdm;
+    }
+
+    public void setKmdm(String kmdm) {
+        this.kmdm = kmdm;
+    }
+
+    public String getKmmc() {
+        return kmmc;
+    }
+
+    public void setKmmc(String kmmc) {
+        this.kmmc = kmmc;
+    }
+
+    public String getBxbz() {
+        return bxbz;
+    }
+
+    public void setBxbz(String bxbz) {
+        this.bxbz = bxbz;
+    }
+
+    public String getZbid() {
+        return zbid;
+    }
+
+    public void setZbid(String zbid) {
+        this.zbid = zbid;
+    }
+
+    public String getJflxdm() {
+        return jflxdm;
+    }
+
+    public void setJflxdm(String jflxdm) {
+        this.jflxdm = jflxdm;
+    }
+
+    public String getJflxmc() {
+        return jflxmc;
+    }
+
+    public void setJflxmc(String jflxmc) {
+        this.jflxmc = jflxmc;
+    }
+
+    public String getYs00000051() {
+        return ys00000051;
+    }
+
+    public void setYs00000051(String ys00000051) {
+        this.ys00000051 = ys00000051;
+    }
+
+    public String getYs00000052() {
+        return ys00000052;
+    }
+
+    public void setYs00000052(String ys00000052) {
+        this.ys00000052 = ys00000052;
+    }
+
+    public String getYs00000053() {
+        return ys00000053;
+    }
+
+    public void setYs00000053(String ys00000053) {
+        this.ys00000053 = ys00000053;
+    }
+
+    public String getYs00000054() {
+        return ys00000054;
+    }
+
+    public void setYs00000054(String ys00000054) {
+        this.ys00000054 = ys00000054;
+    }
+
+    public String getYs00000055() {
+        return ys00000055;
+    }
+
+    public void setYs00000055(String ys00000055) {
+        this.ys00000055 = ys00000055;
+    }
+
+    public String getYs00000056() {
+        return ys00000056;
+    }
+
+    public void setYs00000056(String ys00000056) {
+        this.ys00000056 = ys00000056;
+    }
+
+    public String getYs00000057() {
+        return ys00000057;
+    }
+
+    public void setYs00000057(String ys00000057) {
+        this.ys00000057 = ys00000057;
+    }
+
+    public String getYs00000058() {
+        return ys00000058;
+    }
+
+    public void setYs00000058(String ys00000058) {
+        this.ys00000058 = ys00000058;
+    }
+
+    public String getYs00000059() {
+        return ys00000059;
+    }
+
+    public void setYs00000059(String ys00000059) {
+        this.ys00000059 = ys00000059;
+    }
+
+    public String getYs00000060() {
+        return ys00000060;
+    }
+
+    public void setYs00000060(String ys00000060) {
+        this.ys00000060 = ys00000060;
+    }
+
+    public String getYs00000061() {
+        return ys00000061;
+    }
+
+    public void setYs00000061(String ys00000061) {
+        this.ys00000061 = ys00000061;
+    }
+
+    public String getYs00000062() {
+        return ys00000062;
+    }
+
+    public void setYs00000062(String ys00000062) {
+        this.ys00000062 = ys00000062;
+    }
+
+    public String getYs00000063() {
+        return ys00000063;
+    }
+
+    public void setYs00000063(String ys00000063) {
+        this.ys00000063 = ys00000063;
+    }
+
+    public String getYs00000064() {
+        return ys00000064;
+    }
+
+    public void setYs00000064(String ys00000064) {
+        this.ys00000064 = ys00000064;
+    }
+
+    public String getYs00000065() {
+        return ys00000065;
+    }
+
+    public void setYs00000065(String ys00000065) {
+        this.ys00000065 = ys00000065;
+    }
+
+    public String getYs00000066() {
+        return ys00000066;
+    }
+
+    public void setYs00000066(String ys00000066) {
+        this.ys00000066 = ys00000066;
+    }
+
+    public String getYs00000067() {
+        return ys00000067;
+    }
+
+    public void setYs00000067(String ys00000067) {
+        this.ys00000067 = ys00000067;
+    }
+
+    public String getYs00000068() {
+        return ys00000068;
+    }
+
+    public void setYs00000068(String ys00000068) {
+        this.ys00000068 = ys00000068;
+    }
+
+    public String getYs00000069() {
+        return ys00000069;
+    }
+
+    public void setYs00000069(String ys00000069) {
+        this.ys00000069 = ys00000069;
+    }
+
+    public String getYs00000070() {
+        return ys00000070;
+    }
+
+    public void setYs00000070(String ys00000070) {
+        this.ys00000070 = ys00000070;
+    }
+
+    public String getYs00000071() {
+        return ys00000071;
+    }
+
+    public void setYs00000071(String ys00000071) {
+        this.ys00000071 = ys00000071;
+    }
+
+    public String getYs00000072() {
+        return ys00000072;
+    }
+
+    public void setYs00000072(String ys00000072) {
+        this.ys00000072 = ys00000072;
+    }
+
+    public String getZy() {
+        return zy;
+    }
+
+    public void setZy(String zy) {
+        this.zy = zy;
+    }
+
+    public BigDecimal getJxse() {
+        return jxse;
+    }
+
+    public void setJxse(BigDecimal jxse) {
+        this.jxse = jxse;
+    }
+
+    public String getSkzh() {
+        return skzh;
+    }
+
+    public void setSkzh(String skzh) {
+        this.skzh = skzh;
+    }
+
+    public String getFkzh() {
+        return fkzh;
+    }
+
+    public void setFkzh(String fkzh) {
+        this.fkzh = fkzh;
+    }
+
+    public Integer getGzdm() {
+        return gzdm;
+    }
+
+    public void setGzdm(Integer gzdm) {
+        this.gzdm = gzdm;
+    }
+
+    public String getGzmc() {
+        return gzmc;
+    }
+
+    public void setGzmc(String gzmc) {
+        this.gzmc = gzmc;
+    }
+
+    public String getMxxmdm() {
+        return mxxmdm;
+    }
+
+    public void setMxxmdm(String mxxmdm) {
+        this.mxxmdm = mxxmdm;
+    }
+
+    public String getMxxmmc() {
+        return mxxmmc;
+    }
+
+    public void setMxxmmc(String mxxmmc) {
+        this.mxxmmc = mxxmmc;
+    }
+
+    public String getSfzh() {
+        return sfzh;
+    }
+
+    public void setSfzh(String sfzh) {
+        this.sfzh = sfzh;
+    }
+
+    public String getFfzh() {
+        return ffzh;
+    }
+
+    public void setFfzh(String ffzh) {
+        this.ffzh = ffzh;
+    }
+
+    public Double getSds() {
+        return sds;
+    }
+
+    public void setSds(Double sds) {
+        this.sds = sds;
+    }
+
+    public String getSkr() {
+        return skr;
+    }
+
+    public void setSkr(String skr) {
+        this.skr = skr;
+    }
+
+    public String getYhzh() {
+        return yhzh;
+    }
+
+    public void setYhzh(String yhzh) {
+        this.yhzh = yhzh;
+    }
+
+    public String getKhyh() {
+        return khyh;
+    }
+
+    public void setKhyh(String khyh) {
+        this.khyh = khyh;
+    }
+
+    public BigDecimal getSfje() {
+        return sfje;
+    }
+
+    public void setSfje(BigDecimal sfje) {
+        this.sfje = sfje;
+    }
+
+    public String getZjlx() {
+        return zjlx;
+    }
+
+    public void setZjlx(String zjlx) {
+        this.zjlx = zjlx;
+    }
+
+    public String getJsfs() {
+        return jsfs;
+    }
+
+    public void setJsfs(String jsfs) {
+        this.jsfs = jsfs;
+    }
+
+    public String getZjxzdm() {
+        return zjxzdm;
+    }
+
+    public void setZjxzdm(String zjxzdm) {
+        this.zjxzdm = zjxzdm;
+    }
+
+    public String getZjxzmc() {
+        return zjxzmc;
+    }
+
+    public void setZjxzmc(String zjxzmc) {
+        this.zjxzmc = zjxzmc;
+    }
+
+    public String getZjlydm() {
+        return zjlydm;
+    }
+
+    public void setZjlydm(String zjlydm) {
+        this.zjlydm = zjlydm;
+    }
+
+    public String getZjlymc() {
+        return zjlymc;
+    }
+
+    public void setZjlymc(String zjlymc) {
+        this.zjlymc = zjlymc;
+    }
+
+    public String getYsdwdm() {
+        return ysdwdm;
+    }
+
+    public void setYsdwdm(String ysdwdm) {
+        this.ysdwdm = ysdwdm;
+    }
+
+    public String getYsdwmc() {
+        return ysdwmc;
+    }
+
+    public void setYsdwmc(String ysdwmc) {
+        this.ysdwmc = ysdwmc;
+    }
+
+    public String getProvince() {
+        return province;
+    }
+
+    public void setProvince(String province) {
+        this.province = province;
+    }
+
+    public String getCity() {
+        return city;
+    }
+
+    public void setCity(String city) {
+        this.city = city;
+    }
+
+    public String getYh() {
+        return yh;
+    }
+
+    public void setYh(String yh) {
+        this.yh = yh;
+    }
+
+    public String getYhhh() {
+        return yhhh;
+    }
+
+    public void setYhhh(String yhhh) {
+        this.yhhh = yhhh;
+    }
+
+    public String getKhdq() {
+        return khdq;
+    }
+
+    public void setKhdq(String khdq) {
+        this.khdq = khdq;
+    }
+
+    public String getClfStartdate() {
+        return clfStartdate;
+    }
+
+    public void setClfStartdate(String clfStartdate) {
+        this.clfStartdate = clfStartdate;
+    }
+
+    public String getClfEnddate() {
+        return clfEnddate;
+    }
+
+    public void setClfEnddate(String clfEnddate) {
+        this.clfEnddate = clfEnddate;
+    }
+
+    public String getClfCcdd() {
+        return clfCcdd;
+    }
+
+    public void setClfCcdd(String clfCcdd) {
+        this.clfCcdd = clfCcdd;
+    }
+
+    public String getClfCcksd() {
+        return clfCcksd;
+    }
+
+    public void setClfCcksd(String clfCcksd) {
+        this.clfCcksd = clfCcksd;
+    }
+
+    public Integer getClfDjzs() {
+        return clfDjzs;
+    }
+
+    public void setClfDjzs(Integer clfDjzs) {
+        this.clfDjzs = clfDjzs;
+    }
+
+    public Integer getClfCcts() {
+        return clfCcts;
+    }
+
+    public void setClfCcts(Integer clfCcts) {
+        this.clfCcts = clfCcts;
+    }
+
+    public Integer getClfCcrs() {
+        return clfCcrs;
+    }
+
+    public void setClfCcrs(Integer clfCcrs) {
+        this.clfCcrs = clfCcrs;
+    }
+
+    public String getClfZw() {
+        return clfZw;
+    }
+
+    public void setClfZw(String clfZw) {
+        this.clfZw = clfZw;
+    }
+
+    public String getClfJtgj() {
+        return clfJtgj;
+    }
+
+    public void setClfJtgj(String clfJtgj) {
+        this.clfJtgj = clfJtgj;
+    }
+
+    public BigDecimal getClfJtf() {
+        return clfJtf;
+    }
+
+    public void setClfJtf(BigDecimal clfJtf) {
+        this.clfJtf = clfJtf;
+    }
+
+    public BigDecimal getClfZsbz() {
+        return clfZsbz;
+    }
+
+    public void setClfZsbz(BigDecimal clfZsbz) {
+        this.clfZsbz = clfZsbz;
+    }
+
+    public BigDecimal getClfZsf() {
+        return clfZsf;
+    }
+
+    public void setClfZsf(BigDecimal clfZsf) {
+        this.clfZsf = clfZsf;
+    }
+
+    public BigDecimal getClfHsbz() {
+        return clfHsbz;
+    }
+
+    public void setClfHsbz(BigDecimal clfHsbz) {
+        this.clfHsbz = clfHsbz;
+    }
+
+    public BigDecimal getClfHsf() {
+        return clfHsf;
+    }
+
+    public void setClfHsf(BigDecimal clfHsf) {
+        this.clfHsf = clfHsf;
+    }
+
+    public BigDecimal getClfJtbz() {
+        return clfJtbz;
+    }
+
+    public void setClfJtbz(BigDecimal clfJtbz) {
+        this.clfJtbz = clfJtbz;
+    }
+
+    public BigDecimal getClfJtbzf() {
+        return clfJtbzf;
+    }
+
+    public void setClfJtbzf(BigDecimal clfJtbzf) {
+        this.clfJtbzf = clfJtbzf;
+    }
+
+    public BigDecimal getClfQtf() {
+        return clfQtf;
+    }
+
+    public void setClfQtf(BigDecimal clfQtf) {
+        this.clfQtf = clfQtf;
+    }
+
+    public Integer getFjs() {
+        return fjs;
+    }
+
+    public void setFjs(Integer fjs) {
+        this.fjs = fjs;
+    }
+
+    public BigDecimal getClfCctsbz() {
+        return clfCctsbz;
+    }
+
+    public void setClfCctsbz(BigDecimal clfCctsbz) {
+        this.clfCctsbz = clfCctsbz;
+    }
+
+    public String getKzzl1dm() {
+        return kzzl1dm;
+    }
+
+    public void setKzzl1dm(String kzzl1dm) {
+        this.kzzl1dm = kzzl1dm;
+    }
+
+    public String getKzzl1mc() {
+        return kzzl1mc;
+    }
+
+    public void setKzzl1mc(String kzzl1mc) {
+        this.kzzl1mc = kzzl1mc;
+    }
+
+    public String getKzzl2dm() {
+        return kzzl2dm;
+    }
+
+    public void setKzzl2dm(String kzzl2dm) {
+        this.kzzl2dm = kzzl2dm;
+    }
+
+    public String getKzzl2mc() {
+        return kzzl2mc;
+    }
+
+    public void setKzzl2mc(String kzzl2mc) {
+        this.kzzl2mc = kzzl2mc;
+    }
+
+    public String getKzzl3dm() {
+        return kzzl3dm;
+    }
+
+    public void setKzzl3dm(String kzzl3dm) {
+        this.kzzl3dm = kzzl3dm;
+    }
+
+    public String getKzzl3mc() {
+        return kzzl3mc;
+    }
+
+    public void setKzzl3mc(String kzzl3mc) {
+        this.kzzl3mc = kzzl3mc;
+    }
+
+    public String getKzzl4dm() {
+        return kzzl4dm;
+    }
+
+    public void setKzzl4dm(String kzzl4dm) {
+        this.kzzl4dm = kzzl4dm;
+    }
+
+    public String getKzzl4mc() {
+        return kzzl4mc;
+    }
+
+    public void setKzzl4mc(String kzzl4mc) {
+        this.kzzl4mc = kzzl4mc;
+    }
+
+    public String getKzzl5dm() {
+        return kzzl5dm;
+    }
+
+    public void setKzzl5dm(String kzzl5dm) {
+        this.kzzl5dm = kzzl5dm;
+    }
+
+    public String getKzzl5mc() {
+        return kzzl5mc;
+    }
+
+    public void setKzzl5mc(String kzzl5mc) {
+        this.kzzl5mc = kzzl5mc;
+    }
+
+    public String getKzzl6dm() {
+        return kzzl6dm;
+    }
+
+    public void setKzzl6dm(String kzzl6dm) {
+        this.kzzl6dm = kzzl6dm;
+    }
+
+    public String getKzzl6mc() {
+        return kzzl6mc;
+    }
+
+    public void setKzzl6mc(String kzzl6mc) {
+        this.kzzl6mc = kzzl6mc;
+    }
+
+    public String getKzzl7dm() {
+        return kzzl7dm;
+    }
+
+    public void setKzzl7dm(String kzzl7dm) {
+        this.kzzl7dm = kzzl7dm;
+    }
+
+    public String getKzzl7mc() {
+        return kzzl7mc;
+    }
+
+    public void setKzzl7mc(String kzzl7mc) {
+        this.kzzl7mc = kzzl7mc;
+    }
+
+    public String getZcsxdm() {
+        return zcsxdm;
+    }
+
+    public void setZcsxdm(String zcsxdm) {
+        this.zcsxdm = zcsxdm;
+    }
+
+    public String getZcsxmc() {
+        return zcsxmc;
+    }
+
+    public void setZcsxmc(String zcsxmc) {
+        this.zcsxmc = zcsxmc;
+    }
+
+    public String getJfmxguid() {
+        return jfmxguid;
+    }
+
+    public void setJfmxguid(String jfmxguid) {
+        this.jfmxguid = jfmxguid;
+    }
+
+    public Integer getKzzbid() {
+        return kzzbid;
+    }
+
+    public void setKzzbid(Integer kzzbid) {
+        this.kzzbid = kzzbid;
+    }
+
+    public String getHtbh() {
+        return htbh;
+    }
+
+    public void setHtbh(String htbh) {
+        this.htbh = htbh;
+    }
+
+    public String getHtjh() {
+        return htjh;
+    }
+
+    public void setHtjh(String htjh) {
+        this.htjh = htjh;
+    }
+
+    public String getSqmx() {
+        return sqmx;
+    }
+
+    public void setSqmx(String sqmx) {
+        this.sqmx = sqmx;
+    }
+
+    public BigDecimal getSl() {
+        return sl;
+    }
+
+    public void setSl(BigDecimal sl) {
+        this.sl = sl;
+    }
+
+    public BigDecimal getDj() {
+        return dj;
+    }
+
+    public void setDj(BigDecimal dj) {
+        this.dj = dj;
+    }
+
+    public BigDecimal getSqje() {
+        return sqje;
+    }
+
+    public void setSqje(BigDecimal sqje) {
+        this.sqje = sqje;
+    }
+
+    public BigDecimal getYe() {
+        return ye;
+    }
+
+    public void setYe(BigDecimal ye) {
+        this.ye = ye;
+    }
+
+    public BigDecimal getBxdj() {
+        return bxdj;
+    }
+
+    public void setBxdj(BigDecimal bxdj) {
+        this.bxdj = bxdj;
+    }
+
+    public BigDecimal getBxsl() {
+        return bxsl;
+    }
+
+    public void setBxsl(BigDecimal bxsl) {
+        this.bxsl = bxsl;
+    }
+
+    public String getClfZsd() {
+        return clfZsd;
+    }
+
+    public void setClfZsd(String clfZsd) {
+        this.clfZsd = clfZsd;
+    }
+
+    public BigDecimal getClfZsbzmt() {
+        return clfZsbzmt;
+    }
+
+    public void setClfZsbzmt(BigDecimal clfZsbzmt) {
+        this.clfZsbzmt = clfZsbzmt;
+    }
+
+    public BigDecimal getClfHsbzmt() {
+        return clfHsbzmt;
+    }
+
+    public void setClfHsbzmt(BigDecimal clfHsbzmt) {
+        this.clfHsbzmt = clfHsbzmt;
+    }
+
+    public BigDecimal getClfJtbzmt() {
+        return clfJtbzmt;
+    }
+
+    public void setClfJtbzmt(BigDecimal clfJtbzmt) {
+        this.clfJtbzmt = clfJtbzmt;
+    }
+
+    public String getFyxm() {
+        return fyxm;
+    }
+
+    public void setFyxm(String fyxm) {
+        this.fyxm = fyxm;
+    }
+
+    public BigDecimal getFybz() {
+        return fybz;
+    }
+
+    public void setFybz(BigDecimal fybz) {
+        this.fybz = fybz;
+    }
+
+    public BigDecimal getTs() {
+        return ts;
+    }
+
+    public void setTs(BigDecimal ts) {
+        this.ts = ts;
+    }
+
+    public Integer getRs() {
+        return rs;
+    }
+
+    public void setRs(Integer rs) {
+        this.rs = rs;
+    }
+
+    public String getCzsqzfm() {
+        return czsqzfm;
+    }
+
+    public void setCzsqzfm(String czsqzfm) {
+        this.czsqzfm = czsqzfm;
+    }
+
+    public BigDecimal getClfQzf() {
+        return clfQzf;
+    }
+
+    public void setClfQzf(BigDecimal clfQzf) {
+        this.clfQzf = clfQzf;
+    }
+
+    public BigDecimal getClfBxf() {
+        return clfBxf;
+    }
+
+    public void setClfBxf(BigDecimal clfBxf) {
+        this.clfBxf = clfBxf;
+    }
+
+    public BigDecimal getClfCjjp() {
+        return clfCjjp;
+    }
+
+    public void setClfCjjp(BigDecimal clfCjjp) {
+        this.clfCjjp = clfCjjp;
+    }
+
+    public BigDecimal getClfCjhc() {
+        return clfCjhc;
+    }
+
+    public void setClfCjhc(BigDecimal clfCjhc) {
+        this.clfCjhc = clfCjhc;
+    }
+
+    public BigDecimal getClfCjqt() {
+        return clfCjqt;
+    }
+
+    public void setClfCjqt(BigDecimal clfCjqt) {
+        this.clfCjqt = clfCjqt;
+    }
+
+    public BigDecimal getClfZsts() {
+        return clfZsts;
+    }
+
+    public void setClfZsts(BigDecimal clfZsts) {
+        this.clfZsts = clfZsts;
+    }
+
+    public String getZbdm() {
+        return zbdm;
+    }
+
+    public void setZbdm(String zbdm) {
+        this.zbdm = zbdm;
+    }
+
+    public BigDecimal getWbje() {
+        return wbje;
+    }
+
+    public void setWbje(BigDecimal wbje) {
+        this.wbje = wbje;
+    }
+
+    public String getClfMoneytype() {
+        return clfMoneytype;
+    }
+
+    public void setClfMoneytype(String clfMoneytype) {
+        this.clfMoneytype = clfMoneytype;
+    }
+
+    public String getClfOutmoneytype() {
+        return clfOutmoneytype;
+    }
+
+    public void setClfOutmoneytype(String clfOutmoneytype) {
+        this.clfOutmoneytype = clfOutmoneytype;
+    }
+
+    public BigDecimal getClfZsyrytbz() {
+        return clfZsyrytbz;
+    }
+
+    public void setClfZsyrytbz(BigDecimal clfZsyrytbz) {
+        this.clfZsyrytbz = clfZsyrytbz;
+    }
+
+    public BigDecimal getHl() {
+        return hl;
+    }
+
+    public void setHl(BigDecimal hl) {
+        this.hl = hl;
+    }
+
+    public String getClfCcr() {
+        return clfCcr;
+    }
+
+    public void setClfCcr(String clfCcr) {
+        this.clfCcr = clfCcr;
+    }
+
+    public String getDxZclx() {
+        return dxZclx;
+    }
+
+    public void setDxZclx(String dxZclx) {
+        this.dxZclx = dxZclx;
+    }
+
+    public String getDxJfly() {
+        return dxJfly;
+    }
+
+    public void setDxJfly(String dxJfly) {
+        this.dxJfly = dxJfly;
+    }
+
+    public String getDxCcxz() {
+        return dxCcxz;
+    }
+
+    public void setDxCcxz(String dxCcxz) {
+        this.dxCcxz = dxCcxz;
+    }
+
+    public Integer getDxDjzs() {
+        return dxDjzs;
+    }
+
+    public void setDxDjzs(Integer dxDjzs) {
+        this.dxDjzs = dxDjzs;
+    }
+
+    public String getDxZsfs() {
+        return dxZsfs;
+    }
+
+    public void setDxZsfs(String dxZsfs) {
+        this.dxZsfs = dxZsfs;
+    }
+
+    public String getJtjjkm() {
+        return jtjjkm;
+    }
+
+    public void setJtjjkm(String jtjjkm) {
+        this.jtjjkm = jtjjkm;
+    }
+
+    public Integer getClfJtbzrs() {
+        return clfJtbzrs;
+    }
+
+    public void setClfJtbzrs(Integer clfJtbzrs) {
+        this.clfJtbzrs = clfJtbzrs;
+    }
+
+    public BigDecimal getClfJtbzts() {
+        return clfJtbzts;
+    }
+
+    public void setClfJtbzts(BigDecimal clfJtbzts) {
+        this.clfJtbzts = clfJtbzts;
+    }
+
+    public Integer getClfHsbzrs() {
+        return clfHsbzrs;
+    }
+
+    public void setClfHsbzrs(Integer clfHsbzrs) {
+        this.clfHsbzrs = clfHsbzrs;
+    }
+
+    public BigDecimal getClfHsbzts() {
+        return clfHsbzts;
+    }
+
+    public void setClfHsbzts(BigDecimal clfHsbzts) {
+        this.clfHsbzts = clfHsbzts;
+    }
+
+    public String getBzjjkm() {
+        return bzjjkm;
+    }
+
+    public void setBzjjkm(String bzjjkm) {
+        this.bzjjkm = bzjjkm;
+    }
+
+    public String getDxZcxz() {
+        return dxZcxz;
+    }
+
+    public void setDxZcxz(String dxZcxz) {
+        this.dxZcxz = dxZcxz;
+    }
+
+    public String getFkjd() {
+        return fkjd;
+    }
+
+    public void setFkjd(String fkjd) {
+        this.fkjd = fkjd;
+    }
+
+    public String getYskjkmdm() {
+        return yskjkmdm;
+    }
+
+    public void setYskjkmdm(String yskjkmdm) {
+        this.yskjkmdm = yskjkmdm;
+    }
+
+    public String getYskjkmmc() {
+        return yskjkmmc;
+    }
+
+    public void setYskjkmmc(String yskjkmmc) {
+        this.yskjkmmc = yskjkmmc;
+    }
+
+    public String getXmfldm() {
+        return xmfldm;
+    }
+
+    public void setXmfldm(String xmfldm) {
+        this.xmfldm = xmfldm;
+    }
+
+    public String getXmflmc() {
+        return xmflmc;
+    }
+
+    public void setXmflmc(String xmflmc) {
+        this.xmflmc = xmflmc;
+    }
+
+    public String getFzx11dm() {
+        return fzx11dm;
+    }
+
+    public void setFzx11dm(String fzx11dm) {
+        this.fzx11dm = fzx11dm;
+    }
+
+    public String getFzx11mc() {
+        return fzx11mc;
+    }
+
+    public void setFzx11mc(String fzx11mc) {
+        this.fzx11mc = fzx11mc;
+    }
+
+    public String getFzx12dm() {
+        return fzx12dm;
+    }
+
+    public void setFzx12dm(String fzx12dm) {
+        this.fzx12dm = fzx12dm;
+    }
+
+    public String getFzx12mc() {
+        return fzx12mc;
+    }
+
+    public void setFzx12mc(String fzx12mc) {
+        this.fzx12mc = fzx12mc;
+    }
+
+    public String getFzx13dm() {
+        return fzx13dm;
+    }
+
+    public void setFzx13dm(String fzx13dm) {
+        this.fzx13dm = fzx13dm;
+    }
+
+    public String getFzx13mc() {
+        return fzx13mc;
+    }
+
+    public void setFzx13mc(String fzx13mc) {
+        this.fzx13mc = fzx13mc;
+    }
+
+    public String getFzx14dm() {
+        return fzx14dm;
+    }
+
+    public void setFzx14dm(String fzx14dm) {
+        this.fzx14dm = fzx14dm;
+    }
+
+    public String getFzx14mc() {
+        return fzx14mc;
+    }
+
+    public void setFzx14mc(String fzx14mc) {
+        this.fzx14mc = fzx14mc;
+    }
+
+    public String getFzx15dm() {
+        return fzx15dm;
+    }
+
+    public void setFzx15dm(String fzx15dm) {
+        this.fzx15dm = fzx15dm;
+    }
+
+    public String getFzx15mc() {
+        return fzx15mc;
+    }
+
+    public void setFzx15mc(String fzx15mc) {
+        this.fzx15mc = fzx15mc;
+    }
+
+    public String getFzx16dm() {
+        return fzx16dm;
+    }
+
+    public void setFzx16dm(String fzx16dm) {
+        this.fzx16dm = fzx16dm;
+    }
+
+    public String getFzx16mc() {
+        return fzx16mc;
+    }
+
+    public void setFzx16mc(String fzx16mc) {
+        this.fzx16mc = fzx16mc;
+    }
+
+    public String getFzx17dm() {
+        return fzx17dm;
+    }
+
+    public void setFzx17dm(String fzx17dm) {
+        this.fzx17dm = fzx17dm;
+    }
+
+    public String getFzx17mc() {
+        return fzx17mc;
+    }
+
+    public void setFzx17mc(String fzx17mc) {
+        this.fzx17mc = fzx17mc;
+    }
+
+    public String getFzx18dm() {
+        return fzx18dm;
+    }
+
+    public void setFzx18dm(String fzx18dm) {
+        this.fzx18dm = fzx18dm;
+    }
+
+    public String getFzx18mc() {
+        return fzx18mc;
+    }
+
+    public void setFzx18mc(String fzx18mc) {
+        this.fzx18mc = fzx18mc;
+    }
+
+    public String getFzx19dm() {
+        return fzx19dm;
+    }
+
+    public void setFzx19dm(String fzx19dm) {
+        this.fzx19dm = fzx19dm;
+    }
+
+    public String getFzx19mc() {
+        return fzx19mc;
+    }
+
+    public void setFzx19mc(String fzx19mc) {
+        this.fzx19mc = fzx19mc;
+    }
+
+    public String getFzx20dm() {
+        return fzx20dm;
+    }
+
+    public void setFzx20dm(String fzx20dm) {
+        this.fzx20dm = fzx20dm;
+    }
+
+    public String getFzx20mc() {
+        return fzx20mc;
+    }
+
+    public void setFzx20mc(String fzx20mc) {
+        this.fzx20mc = fzx20mc;
+    }
+
+    public String getFzx21dm() {
+        return fzx21dm;
+    }
+
+    public void setFzx21dm(String fzx21dm) {
+        this.fzx21dm = fzx21dm;
+    }
+
+    public String getFzx21mc() {
+        return fzx21mc;
+    }
+
+    public void setFzx21mc(String fzx21mc) {
+        this.fzx21mc = fzx21mc;
+    }
+
+    public String getFzx22dm() {
+        return fzx22dm;
+    }
+
+    public void setFzx22dm(String fzx22dm) {
+        this.fzx22dm = fzx22dm;
+    }
+
+    public String getFzx22mc() {
+        return fzx22mc;
+    }
+
+    public void setFzx22mc(String fzx22mc) {
+        this.fzx22mc = fzx22mc;
+    }
+
+    public String getFzx23dm() {
+        return fzx23dm;
+    }
+
+    public void setFzx23dm(String fzx23dm) {
+        this.fzx23dm = fzx23dm;
+    }
+
+    public String getFzx23mc() {
+        return fzx23mc;
+    }
+
+    public void setFzx23mc(String fzx23mc) {
+        this.fzx23mc = fzx23mc;
+    }
+
+    public String getFzx24dm() {
+        return fzx24dm;
+    }
+
+    public void setFzx24dm(String fzx24dm) {
+        this.fzx24dm = fzx24dm;
+    }
+
+    public String getFzx24mc() {
+        return fzx24mc;
+    }
+
+    public void setFzx24mc(String fzx24mc) {
+        this.fzx24mc = fzx24mc;
+    }
+
+    public String getFzx25dm() {
+        return fzx25dm;
+    }
+
+    public void setFzx25dm(String fzx25dm) {
+        this.fzx25dm = fzx25dm;
+    }
+
+    public String getFzx25mc() {
+        return fzx25mc;
+    }
+
+    public void setFzx25mc(String fzx25mc) {
+        this.fzx25mc = fzx25mc;
+    }
+
+    public String getFzx26dm() {
+        return fzx26dm;
+    }
+
+    public void setFzx26dm(String fzx26dm) {
+        this.fzx26dm = fzx26dm;
+    }
+
+    public String getFzx26mc() {
+        return fzx26mc;
+    }
+
+    public void setFzx26mc(String fzx26mc) {
+        this.fzx26mc = fzx26mc;
+    }
+
+    public String getFzx27dm() {
+        return fzx27dm;
+    }
+
+    public void setFzx27dm(String fzx27dm) {
+        this.fzx27dm = fzx27dm;
+    }
+
+    public String getFzx27mc() {
+        return fzx27mc;
+    }
+
+    public void setFzx27mc(String fzx27mc) {
+        this.fzx27mc = fzx27mc;
+    }
+
+    public String getFzx28dm() {
+        return fzx28dm;
+    }
+
+    public void setFzx28dm(String fzx28dm) {
+        this.fzx28dm = fzx28dm;
+    }
+
+    public String getFzx28mc() {
+        return fzx28mc;
+    }
+
+    public void setFzx28mc(String fzx28mc) {
+        this.fzx28mc = fzx28mc;
+    }
+
+    public String getFzx29dm() {
+        return fzx29dm;
+    }
+
+    public void setFzx29dm(String fzx29dm) {
+        this.fzx29dm = fzx29dm;
+    }
+
+    public String getFzx29mc() {
+        return fzx29mc;
+    }
+
+    public void setFzx29mc(String fzx29mc) {
+        this.fzx29mc = fzx29mc;
+    }
+
+    public String getFzx30dm() {
+        return fzx30dm;
+    }
+
+    public void setFzx30dm(String fzx30dm) {
+        this.fzx30dm = fzx30dm;
+    }
+
+    public String getFzx30mc() {
+        return fzx30mc;
+    }
+
+    public void setFzx30mc(String fzx30mc) {
+        this.fzx30mc = fzx30mc;
+    }
+
+    public Integer getCzyszbid() {
+        return czyszbid;
+    }
+
+    public void setCzyszbid(Integer czyszbid) {
+        this.czyszbid = czyszbid;
+    }
+
+}
+
diff --git a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerYszbAllEntity.java b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerYszbAllEntity.java
new file mode 100644
index 00000000..ffc8fabe
--- /dev/null
+++ b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/entity/OerYszbAllEntity.java
@@ -0,0 +1,666 @@
+package com.hzya.frame.grpU8.nxproof.oerdjml.entity;
+
+import com.hzya.frame.web.entity.BaseEntity;
+
+import java.math.BigDecimal;
+
+/**
+ * (OerYszb)实体类
+ *
+ * @author makejava
+ * @since 2024-08-14 10:15:58
+ */
+public class OerYszbAllEntity extends BaseEntity {
+
+    private Integer mlid;
+    private String gsdm;
+    private String kjnd;
+    private Integer bnxid;
+    private Integer dataid;
+    private Integer xh;
+    private String zbdm;
+    private BigDecimal je;
+    private Integer zbid;
+    private Integer jhid;
+    private String zy;
+    private String kmdm;
+    private String kmmc;
+    private Integer djlxid;
+    private String zbgnkmdm;
+    private String zbgnkmmc;
+    private String zbjjkmdm;
+    private String zbjjkmmc;
+    private Integer kzzbid;
+    private String zbfz6dm;
+    private String zbfz6mc;
+    private String zbfz7dm;
+    private String zbfz7mc;
+    private String zbfz8dm;
+    private String zbfz8mc;
+    private String zbfz9dm;
+    private String zbfz9mc;
+    private String zbfzadm;
+    private String zbfzamc;
+    private String yskjkmdm;
+    private String yskjkmmc;
+    private Integer czyszbid;
+    private String zbfz11dm;
+    private String zbfz11mc;
+    private String zbfz12dm;
+    private String zbfz12mc;
+    private String zbfz13dm;
+    private String zbfz13mc;
+    private String zbfz14dm;
+    private String zbfz14mc;
+    private String zbfz15dm;
+    private String zbfz15mc;
+    private String zbfz16dm;
+    private String zbfz16mc;
+    private String zbfz17dm;
+    private String zbfz17mc;
+    private String zbfz18dm;
+    private String zbfz18mc;
+    private String zbfz19dm;
+    private String zbfz19mc;
+    private String zbfz20dm;
+    private String zbfz20mc;
+    private String zbfz21dm;
+    private String zbfz21mc;
+    private String zbfz22dm;
+    private String zbfz22mc;
+    private String zbfz23dm;
+    private String zbfz23mc;
+    private String zbfz24dm;
+    private String zbfz24mc;
+    private String zbfz25dm;
+    private String zbfz25mc;
+    private String zbfz26dm;
+    private String zbfz26mc;
+    private String zbfz27dm;
+    private String zbfz27mc;
+    private String zbfz28dm;
+    private String zbfz28mc;
+    private String zbfz29dm;
+    private String zbfz29mc;
+    private String zbfz30dm;
+    private String zbfz30mc;
+
+
+    public Integer getMlid() {
+        return mlid;
+    }
+
+    public void setMlid(Integer mlid) {
+        this.mlid = mlid;
+    }
+
+    public String getGsdm() {
+        return gsdm;
+    }
+
+    public void setGsdm(String gsdm) {
+        this.gsdm = gsdm;
+    }
+
+    public String getKjnd() {
+        return kjnd;
+    }
+
+    public void setKjnd(String kjnd) {
+        this.kjnd = kjnd;
+    }
+
+    public Integer getBnxid() {
+        return bnxid;
+    }
+
+    public void setBnxid(Integer bnxid) {
+        this.bnxid = bnxid;
+    }
+
+    public Integer getDataid() {
+        return dataid;
+    }
+
+    public void setDataid(Integer dataid) {
+        this.dataid = dataid;
+    }
+
+    public Integer getXh() {
+        return xh;
+    }
+
+    public void setXh(Integer xh) {
+        this.xh = xh;
+    }
+
+    public String getZbdm() {
+        return zbdm;
+    }
+
+    public void setZbdm(String zbdm) {
+        this.zbdm = zbdm;
+    }
+
+    public BigDecimal getJe() {
+        return je;
+    }
+
+    public void setJe(BigDecimal je) {
+        this.je = je;
+    }
+
+    public Integer getZbid() {
+        return zbid;
+    }
+
+    public void setZbid(Integer zbid) {
+        this.zbid = zbid;
+    }
+
+    public Integer getJhid() {
+        return jhid;
+    }
+
+    public void setJhid(Integer jhid) {
+        this.jhid = jhid;
+    }
+
+    public String getZy() {
+        return zy;
+    }
+
+    public void setZy(String zy) {
+        this.zy = zy;
+    }
+
+    public String getKmdm() {
+        return kmdm;
+    }
+
+    public void setKmdm(String kmdm) {
+        this.kmdm = kmdm;
+    }
+
+    public String getKmmc() {
+        return kmmc;
+    }
+
+    public void setKmmc(String kmmc) {
+        this.kmmc = kmmc;
+    }
+
+    public Integer getDjlxid() {
+        return djlxid;
+    }
+
+    public void setDjlxid(Integer djlxid) {
+        this.djlxid = djlxid;
+    }
+
+    public String getZbgnkmdm() {
+        return zbgnkmdm;
+    }
+
+    public void setZbgnkmdm(String zbgnkmdm) {
+        this.zbgnkmdm = zbgnkmdm;
+    }
+
+    public String getZbgnkmmc() {
+        return zbgnkmmc;
+    }
+
+    public void setZbgnkmmc(String zbgnkmmc) {
+        this.zbgnkmmc = zbgnkmmc;
+    }
+
+    public String getZbjjkmdm() {
+        return zbjjkmdm;
+    }
+
+    public void setZbjjkmdm(String zbjjkmdm) {
+        this.zbjjkmdm = zbjjkmdm;
+    }
+
+    public String getZbjjkmmc() {
+        return zbjjkmmc;
+    }
+
+    public void setZbjjkmmc(String zbjjkmmc) {
+        this.zbjjkmmc = zbjjkmmc;
+    }
+
+    public Integer getKzzbid() {
+        return kzzbid;
+    }
+
+    public void setKzzbid(Integer kzzbid) {
+        this.kzzbid = kzzbid;
+    }
+
+    public String getZbfz6dm() {
+        return zbfz6dm;
+    }
+
+    public void setZbfz6dm(String zbfz6dm) {
+        this.zbfz6dm = zbfz6dm;
+    }
+
+    public String getZbfz6mc() {
+        return zbfz6mc;
+    }
+
+    public void setZbfz6mc(String zbfz6mc) {
+        this.zbfz6mc = zbfz6mc;
+    }
+
+    public String getZbfz7dm() {
+        return zbfz7dm;
+    }
+
+    public void setZbfz7dm(String zbfz7dm) {
+        this.zbfz7dm = zbfz7dm;
+    }
+
+    public String getZbfz7mc() {
+        return zbfz7mc;
+    }
+
+    public void setZbfz7mc(String zbfz7mc) {
+        this.zbfz7mc = zbfz7mc;
+    }
+
+    public String getZbfz8dm() {
+        return zbfz8dm;
+    }
+
+    public void setZbfz8dm(String zbfz8dm) {
+        this.zbfz8dm = zbfz8dm;
+    }
+
+    public String getZbfz8mc() {
+        return zbfz8mc;
+    }
+
+    public void setZbfz8mc(String zbfz8mc) {
+        this.zbfz8mc = zbfz8mc;
+    }
+
+    public String getZbfz9dm() {
+        return zbfz9dm;
+    }
+
+    public void setZbfz9dm(String zbfz9dm) {
+        this.zbfz9dm = zbfz9dm;
+    }
+
+    public String getZbfz9mc() {
+        return zbfz9mc;
+    }
+
+    public void setZbfz9mc(String zbfz9mc) {
+        this.zbfz9mc = zbfz9mc;
+    }
+
+    public String getZbfzadm() {
+        return zbfzadm;
+    }
+
+    public void setZbfzadm(String zbfzadm) {
+        this.zbfzadm = zbfzadm;
+    }
+
+    public String getZbfzamc() {
+        return zbfzamc;
+    }
+
+    public void setZbfzamc(String zbfzamc) {
+        this.zbfzamc = zbfzamc;
+    }
+
+    public String getYskjkmdm() {
+        return yskjkmdm;
+    }
+
+    public void setYskjkmdm(String yskjkmdm) {
+        this.yskjkmdm = yskjkmdm;
+    }
+
+    public String getYskjkmmc() {
+        return yskjkmmc;
+    }
+
+    public void setYskjkmmc(String yskjkmmc) {
+        this.yskjkmmc = yskjkmmc;
+    }
+
+    public Integer getCzyszbid() {
+        return czyszbid;
+    }
+
+    public void setCzyszbid(Integer czyszbid) {
+        this.czyszbid = czyszbid;
+    }
+
+    public String getZbfz11dm() {
+        return zbfz11dm;
+    }
+
+    public void setZbfz11dm(String zbfz11dm) {
+        this.zbfz11dm = zbfz11dm;
+    }
+
+    public String getZbfz11mc() {
+        return zbfz11mc;
+    }
+
+    public void setZbfz11mc(String zbfz11mc) {
+        this.zbfz11mc = zbfz11mc;
+    }
+
+    public String getZbfz12dm() {
+        return zbfz12dm;
+    }
+
+    public void setZbfz12dm(String zbfz12dm) {
+        this.zbfz12dm = zbfz12dm;
+    }
+
+    public String getZbfz12mc() {
+        return zbfz12mc;
+    }
+
+    public void setZbfz12mc(String zbfz12mc) {
+        this.zbfz12mc = zbfz12mc;
+    }
+
+    public String getZbfz13dm() {
+        return zbfz13dm;
+    }
+
+    public void setZbfz13dm(String zbfz13dm) {
+        this.zbfz13dm = zbfz13dm;
+    }
+
+    public String getZbfz13mc() {
+        return zbfz13mc;
+    }
+
+    public void setZbfz13mc(String zbfz13mc) {
+        this.zbfz13mc = zbfz13mc;
+    }
+
+    public String getZbfz14dm() {
+        return zbfz14dm;
+    }
+
+    public void setZbfz14dm(String zbfz14dm) {
+        this.zbfz14dm = zbfz14dm;
+    }
+
+    public String getZbfz14mc() {
+        return zbfz14mc;
+    }
+
+    public void setZbfz14mc(String zbfz14mc) {
+        this.zbfz14mc = zbfz14mc;
+    }
+
+    public String getZbfz15dm() {
+        return zbfz15dm;
+    }
+
+    public void setZbfz15dm(String zbfz15dm) {
+        this.zbfz15dm = zbfz15dm;
+    }
+
+    public String getZbfz15mc() {
+        return zbfz15mc;
+    }
+
+    public void setZbfz15mc(String zbfz15mc) {
+        this.zbfz15mc = zbfz15mc;
+    }
+
+    public String getZbfz16dm() {
+        return zbfz16dm;
+    }
+
+    public void setZbfz16dm(String zbfz16dm) {
+        this.zbfz16dm = zbfz16dm;
+    }
+
+    public String getZbfz16mc() {
+        return zbfz16mc;
+    }
+
+    public void setZbfz16mc(String zbfz16mc) {
+        this.zbfz16mc = zbfz16mc;
+    }
+
+    public String getZbfz17dm() {
+        return zbfz17dm;
+    }
+
+    public void setZbfz17dm(String zbfz17dm) {
+        this.zbfz17dm = zbfz17dm;
+    }
+
+    public String getZbfz17mc() {
+        return zbfz17mc;
+    }
+
+    public void setZbfz17mc(String zbfz17mc) {
+        this.zbfz17mc = zbfz17mc;
+    }
+
+    public String getZbfz18dm() {
+        return zbfz18dm;
+    }
+
+    public void setZbfz18dm(String zbfz18dm) {
+        this.zbfz18dm = zbfz18dm;
+    }
+
+    public String getZbfz18mc() {
+        return zbfz18mc;
+    }
+
+    public void setZbfz18mc(String zbfz18mc) {
+        this.zbfz18mc = zbfz18mc;
+    }
+
+    public String getZbfz19dm() {
+        return zbfz19dm;
+    }
+
+    public void setZbfz19dm(String zbfz19dm) {
+        this.zbfz19dm = zbfz19dm;
+    }
+
+    public String getZbfz19mc() {
+        return zbfz19mc;
+    }
+
+    public void setZbfz19mc(String zbfz19mc) {
+        this.zbfz19mc = zbfz19mc;
+    }
+
+    public String getZbfz20dm() {
+        return zbfz20dm;
+    }
+
+    public void setZbfz20dm(String zbfz20dm) {
+        this.zbfz20dm = zbfz20dm;
+    }
+
+    public String getZbfz20mc() {
+        return zbfz20mc;
+    }
+
+    public void setZbfz20mc(String zbfz20mc) {
+        this.zbfz20mc = zbfz20mc;
+    }
+
+    public String getZbfz21dm() {
+        return zbfz21dm;
+    }
+
+    public void setZbfz21dm(String zbfz21dm) {
+        this.zbfz21dm = zbfz21dm;
+    }
+
+    public String getZbfz21mc() {
+        return zbfz21mc;
+    }
+
+    public void setZbfz21mc(String zbfz21mc) {
+        this.zbfz21mc = zbfz21mc;
+    }
+
+    public String getZbfz22dm() {
+        return zbfz22dm;
+    }
+
+    public void setZbfz22dm(String zbfz22dm) {
+        this.zbfz22dm = zbfz22dm;
+    }
+
+    public String getZbfz22mc() {
+        return zbfz22mc;
+    }
+
+    public void setZbfz22mc(String zbfz22mc) {
+        this.zbfz22mc = zbfz22mc;
+    }
+
+    public String getZbfz23dm() {
+        return zbfz23dm;
+    }
+
+    public void setZbfz23dm(String zbfz23dm) {
+        this.zbfz23dm = zbfz23dm;
+    }
+
+    public String getZbfz23mc() {
+        return zbfz23mc;
+    }
+
+    public void setZbfz23mc(String zbfz23mc) {
+        this.zbfz23mc = zbfz23mc;
+    }
+
+    public String getZbfz24dm() {
+        return zbfz24dm;
+    }
+
+    public void setZbfz24dm(String zbfz24dm) {
+        this.zbfz24dm = zbfz24dm;
+    }
+
+    public String getZbfz24mc() {
+        return zbfz24mc;
+    }
+
+    public void setZbfz24mc(String zbfz24mc) {
+        this.zbfz24mc = zbfz24mc;
+    }
+
+    public String getZbfz25dm() {
+        return zbfz25dm;
+    }
+
+    public void setZbfz25dm(String zbfz25dm) {
+        this.zbfz25dm = zbfz25dm;
+    }
+
+    public String getZbfz25mc() {
+        return zbfz25mc;
+    }
+
+    public void setZbfz25mc(String zbfz25mc) {
+        this.zbfz25mc = zbfz25mc;
+    }
+
+    public String getZbfz26dm() {
+        return zbfz26dm;
+    }
+
+    public void setZbfz26dm(String zbfz26dm) {
+        this.zbfz26dm = zbfz26dm;
+    }
+
+    public String getZbfz26mc() {
+        return zbfz26mc;
+    }
+
+    public void setZbfz26mc(String zbfz26mc) {
+        this.zbfz26mc = zbfz26mc;
+    }
+
+    public String getZbfz27dm() {
+        return zbfz27dm;
+    }
+
+    public void setZbfz27dm(String zbfz27dm) {
+        this.zbfz27dm = zbfz27dm;
+    }
+
+    public String getZbfz27mc() {
+        return zbfz27mc;
+    }
+
+    public void setZbfz27mc(String zbfz27mc) {
+        this.zbfz27mc = zbfz27mc;
+    }
+
+    public String getZbfz28dm() {
+        return zbfz28dm;
+    }
+
+    public void setZbfz28dm(String zbfz28dm) {
+        this.zbfz28dm = zbfz28dm;
+    }
+
+    public String getZbfz28mc() {
+        return zbfz28mc;
+    }
+
+    public void setZbfz28mc(String zbfz28mc) {
+        this.zbfz28mc = zbfz28mc;
+    }
+
+    public String getZbfz29dm() {
+        return zbfz29dm;
+    }
+
+    public void setZbfz29dm(String zbfz29dm) {
+        this.zbfz29dm = zbfz29dm;
+    }
+
+    public String getZbfz29mc() {
+        return zbfz29mc;
+    }
+
+    public void setZbfz29mc(String zbfz29mc) {
+        this.zbfz29mc = zbfz29mc;
+    }
+
+    public String getZbfz30dm() {
+        return zbfz30dm;
+    }
+
+    public void setZbfz30dm(String zbfz30dm) {
+        this.zbfz30dm = zbfz30dm;
+    }
+
+    public String getZbfz30mc() {
+        return zbfz30mc;
+    }
+
+    public void setZbfz30mc(String zbfz30mc) {
+        this.zbfz30mc = zbfz30mc;
+    }
+
+}
+
diff --git a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/service/IOerDjmlService.java b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/service/IOerDjmlService.java
index bd89c758..7497434a 100644
--- a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/service/IOerDjmlService.java
+++ b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/service/IOerDjmlService.java
@@ -24,5 +24,13 @@ public interface IOerDjmlService {
 
     OerDjmlEntity queryOerDjmlEntity(OerDjmlEntity oerDjmlEntity);
 
+    /**
+     * @Author lvleigang
+     * @Description  费用报销单处理
+     * @Date 9:54 上午 2024/8/14
+     * @param jsonObject
+     * @return java.lang.Object
+     **/
+    Object handleOerDjml(JSONObject jsonObject);
 
 }
diff --git a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/service/impl/OerDjmlServiceImpl.java b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/service/impl/OerDjmlServiceImpl.java
index 05dee8c5..cac881e3 100644
--- a/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/service/impl/OerDjmlServiceImpl.java
+++ b/service/src/main/java/com/hzya/frame/grpU8/nxproof/oerdjml/service/impl/OerDjmlServiceImpl.java
@@ -10,6 +10,7 @@ import com.hzya.frame.grpU8.nxproof.gbizbsyrec.entity.GbiZbsyrecEntity;
 import com.hzya.frame.grpU8.nxproof.oerdjjsfs.dao.IOerDjjsfsDao;
 import com.hzya.frame.grpU8.nxproof.oerdjjsfs.entity.OerDjjsfsEntity;
 import com.hzya.frame.grpU8.nxproof.oerdjml.dao.IOerDjmlDao;
+import com.hzya.frame.grpU8.nxproof.oerdjml.entity.GbiZbsyrecAllEntity;
 import com.hzya.frame.grpU8.nxproof.oerdjml.entity.OerDjmlEntity;
 import com.hzya.frame.grpU8.nxproof.oerdjml.service.IOerDjmlService;
 import com.hzya.frame.grpU8.nxproof.oerdjnr.dao.IOerDjnrDao;
@@ -20,6 +21,9 @@ import com.hzya.frame.grpU8.nxproof.pubauditlog.dao.IPubAuditLogDao;
 import com.hzya.frame.grpU8.nxproof.pubauditlog.entity.PubAuditLogEntity;
 import com.hzya.frame.grpU8.nxproof.pubobjflow.dao.IPubObjFlowDao;
 import com.hzya.frame.grpU8.nxproof.pubobjflow.entity.PubObjFlowEntity;
+import com.hzya.frame.mdm.entity.MdmDto;
+import com.hzya.frame.seeyon.enums.ColEventTypeEnum;
+import com.hzya.frame.web.entity.BaseResult;
 import com.hzya.frame.web.exception.BaseSystemException;
 import org.apache.logging.log4j.LogManager;
 import org.apache.logging.log4j.Logger;
@@ -134,7 +138,7 @@ public class OerDjmlServiceImpl implements IOerDjmlService {
             iOerYszbDao.save("OerYszbEntity_insert",yszbEntity);
             logger.info("保存预算指标记录:------>");
             GbiZbsyrecEntity oeryszb= creteOerYszbEntity(jsonObject,djnrEntity);
-           iGbiZbsyrecDao.save("GbiZbsyrecEntity_insert",oeryszb);
+            iGbiZbsyrecDao.save("GbiZbsyrecEntity_insert",oeryszb);
         }
         logger.info("组装单据结算方式明细开始:------>");
         List<OerDjjsfsEntity> oerDjjsfsEntityList = creatOerDjjsfsEntityList(jsonObject,maxDjbh,maxMlId);
@@ -159,6 +163,8 @@ public class OerDjmlServiceImpl implements IOerDjmlService {
         return oerDjmlEntity1;
     }
 
+
+
     /**
      * 保存节点PUB_OBJ_FLOW
      * @param jsonObject
@@ -597,6 +603,119 @@ public class OerDjmlServiceImpl implements IOerDjmlService {
     }
 
 
+    /**
+     * @param jsonObject
+     * @return java.lang.Object
+     * @Author lvleigang
+     * @Description 费用报销单处理
+     * @Date 9:54 上午 2024/8/14
+     **/
+    @Override
+    public Object handleOerDjml(JSONObject jsonObject) {
+        OerDjmlEntity entity = getData("jsonStr", jsonObject, OerDjmlEntity.class);
+        if (entity == null) {
+            return BaseResult.getFailureMessageEntity("参数不允许为空");
+        }
+        if (entity.getLclb() == null || "".equals(entity.getLclb())) {
+            return BaseResult.getFailureMessageEntity("流程类别不允许为空");
+        }
+        if (entity.getZt() == null || "".equals(entity.getZt())) {
+            return BaseResult.getFailureMessageEntity("状态不允许为空");
+        }
+        if (entity.getDjbh() == null || "".equals(entity.getDjbh())) {
+            return BaseResult.getFailureMessageEntity("单据编号不允许为空");
+        }
+        if(ColEventTypeEnum.ONSTART.getType().equals(entity.getLclb())){//流程发起
+            return saveOrUpdateData(entity);
+        }else if(ColEventTypeEnum.ONCANCEL.getType().equals(entity.getLclb())){//流程撤销
+            OerDjmlEntity oerDjmlAllEntity = new OerDjmlEntity();
+            oerDjmlAllEntity.setDjbh(entity.getDjbh());
+            List<OerDjmlEntity> oerDjmlAllEntities = iOerDjmlDao.queryOerDjml(oerDjmlAllEntity);
+            if(oerDjmlAllEntities != null && oerDjmlAllEntities.size() == 1){
+                //修改状态
+                oerDjmlAllEntity.setMlId(oerDjmlAllEntities.get(0).getMlId());
+                oerDjmlAllEntity.setZt(entity.getZt());
+                iOerDjmlDao.updateOerDjmlZt(oerDjmlAllEntity);
+                //释放指标
+                GbiZbsyrecAllEntity gbiZbsyrecAllEntity = new GbiZbsyrecAllEntity();
+                gbiZbsyrecAllEntity.setDjlx(oerDjmlAllEntities.get(0).getDjlxId());
+                gbiZbsyrecAllEntity.setDjid(oerDjmlAllEntities.get(0).getMlId());
+                gbiZbsyrecAllEntity.setGsdm(oerDjmlAllEntities.get(0).getGsdm());
+                gbiZbsyrecAllEntity.setKjnd(oerDjmlAllEntities.get(0).getKjnd());
+                gbiZbsyrecAllEntity.setDjflmx(Integer.valueOf(oerDjmlAllEntities.get(0).getMlId()));
+                gbiZbsyrecAllEntity.setModule("'OER'");
+
+                gbiZbsyrecAllEntity.setDjzt("0");
+                iOerDjmlDao.updateGbiZbsyrecByDjid(gbiZbsyrecAllEntity);
+            }else {
+                return BaseResult.getFailureMessageEntity("根据单据编号存在多条报销单");
+            }
+        }else if(ColEventTypeEnum.ONSTOP.getType().equals(entity.getLclb())){//流程终止
+            OerDjmlEntity oerDjmlAllEntity = new OerDjmlEntity();
+            oerDjmlAllEntity.setDjbh(entity.getDjbh());
+            List<OerDjmlEntity> oerDjmlAllEntities = iOerDjmlDao.queryOerDjml(oerDjmlAllEntity);
+            if(oerDjmlAllEntities != null && oerDjmlAllEntities.size() == 1){
+                //修改状态
+                oerDjmlAllEntity.setMlId(oerDjmlAllEntities.get(0).getMlId());
+                oerDjmlAllEntity.setZt(entity.getZt());
+                iOerDjmlDao.updateOerDjmlZt(oerDjmlAllEntity);
+                //释放指标
+                GbiZbsyrecAllEntity gbiZbsyrecAllEntity = new GbiZbsyrecAllEntity();
+                gbiZbsyrecAllEntity.setDjlx(oerDjmlAllEntities.get(0).getDjlxId());
+                gbiZbsyrecAllEntity.setDjid(oerDjmlAllEntities.get(0).getMlId());
+                gbiZbsyrecAllEntity.setGsdm(oerDjmlAllEntities.get(0).getGsdm());
+                gbiZbsyrecAllEntity.setKjnd(oerDjmlAllEntities.get(0).getKjnd());
+                gbiZbsyrecAllEntity.setDjflmx(Integer.valueOf(oerDjmlAllEntities.get(0).getMlId()));
+                gbiZbsyrecAllEntity.setModule("'OER'");
+
+                gbiZbsyrecAllEntity.setDjzt("0");
+                iOerDjmlDao.updateGbiZbsyrecByDjid(gbiZbsyrecAllEntity);
+            }else {
+                return BaseResult.getFailureMessageEntity("根据单据编号存在多条报销单");
+            }
+        }else if(ColEventTypeEnum.ONPROCESSFINISHED.getType().equals(entity.getLclb())){//流程结束
+            OerDjmlEntity oerDjmlAllEntity = new OerDjmlEntity();
+            oerDjmlAllEntity.setDjbh(entity.getDjbh());
+            List<OerDjmlEntity> oerDjmlAllEntities = iOerDjmlDao.queryOerDjml(oerDjmlAllEntity);
+            if(oerDjmlAllEntities != null && oerDjmlAllEntities.size() == 1){
+                //修改状态
+                oerDjmlAllEntity.setMlId(oerDjmlAllEntities.get(0).getMlId());
+                oerDjmlAllEntity.setZt(entity.getZt());
+                iOerDjmlDao.updateOerDjmlZt(oerDjmlAllEntity);
+            }else {
+                return BaseResult.getFailureMessageEntity("根据单据编号存在多条报销单");
+            }
+        }else {
+            return BaseResult.getFailureMessageEntity("流程类别错误");
+        }
+
+        return null;
+    }
+
+    /**
+     * @Author lvleigang
+     * @Description  保存或修改主表以及指标
+     * @Date 4:44 下午 2024/8/14
+     * @param entity
+     * @return java.lang.Object
+     **/
+    private Object saveOrUpdateData(OerDjmlEntity entity) {
 
 
+        return null;
+    }
+
+    protected <T> T getData(String key, JSONObject jsonObject, Class<T> clz) {
+        if (checkStr(jsonObject.getString(key))) {
+            return jsonObject.getJSONObject(key).toJavaObject(clz);
+        }
+        return null;
+    }
+    protected Boolean checkStr(String str) {
+        Boolean flag = true;
+        if (str == null || "".equals(str)) {
+            flag = false;
+        }
+        return flag;
+    }
 }
diff --git a/service/src/main/java/com/hzya/frame/sysnew/application/service/impl/SysApplicationServiceImpl.java b/service/src/main/java/com/hzya/frame/sysnew/application/service/impl/SysApplicationServiceImpl.java
index 30d56d10..81bfb6c3 100644
--- a/service/src/main/java/com/hzya/frame/sysnew/application/service/impl/SysApplicationServiceImpl.java
+++ b/service/src/main/java/com/hzya/frame/sysnew/application/service/impl/SysApplicationServiceImpl.java
@@ -2129,6 +2129,7 @@ public class SysApplicationServiceImpl extends BaseService<SysApplicationEntity,
                     && receiveApi.getReturnSuccessValue() != null && !"".equals(receiveApi.getReturnSuccessValue())) {
                 if (JSONUtil.isTypeJSON(body)) {
                     JSONObject cheackdatas = JSONObject.parseObject(body);
+                    JSONObject datas = JSONObject.parseObject(body);
                     String checkdata = cheackdatas.getString(receiveApi.getReturnSuccessField());
                     if (checkdata != null && receiveApi.getReturnSuccessValue().equals(checkdata)) {
                         sysMessageManageLogEntity.setStatus("3");//返回信息
@@ -2138,13 +2139,62 @@ public class SysApplicationServiceImpl extends BaseService<SysApplicationEntity,
                         } else {
                             sysMessageManageLogEntity.setRemark("接口调用成功");//返回信息
                         }
-                    }else {
-                        sysMessageManageLogEntity.setStatus("4");//返回信息
+                    }else if(receiveApi.getReturnSuccessValue().equals("not null") && checkdata != null){
+                        sysMessageManageLogEntity.setStatus("3");//返回信息
                         if (receiveApi.getReturnMsg() != null && !"".equals(receiveApi.getReturnMsg())) {
                             String returnMsg = cheackdatas.getString(receiveApi.getReturnMsg());
-                            sysMessageManageLogEntity.setRemark("接口调用失败,返回值错误,返回信息如下:" + returnMsg);//返回信息
+                            sysMessageManageLogEntity.setRemark("接口调用成功,返回信息如下:" + returnMsg);//返回信息
                         } else {
-                            sysMessageManageLogEntity.setRemark("接口调用失败,返回值错误");//返回信息
+                            sysMessageManageLogEntity.setRemark("接口调用成功");//返回信息
+                        }
+                    }else {
+                        String fieldname = receiveApi.getReturnSuccessField();
+                        if(fieldname.contains(".")){
+                            String[] fileds = fieldname.split("\\.");
+                            boolean flags = false;
+                            for (int i = 0; i < fileds.length; i++) {
+                                if (JSONUtil.isTypeJSON(datas.getString(fileds[i]))) {
+                                    datas = datas.getJSONObject(fileds[i]);
+                                    if(fileds.length-2 == i ){
+                                        String a = datas.getString(fileds[i+1]);
+                                        if (a != null && receiveApi.getReturnSuccessValue().equals(a)) {
+                                            flags = true;
+                                            break;
+                                        }else if(receiveApi.getReturnSuccessValue().equals("not null") && a != null){
+                                            flags = true;
+                                            break;
+                                        }else {
+                                            break;
+                                        }
+                                    }
+                                }
+                            }
+                            if(flags){
+                                sysMessageManageLogEntity.setStatus("3");//返回信息
+                                if (receiveApi.getReturnMsg() != null && !"".equals(receiveApi.getReturnMsg())) {
+                                    String returnMsg = cheackdatas.getString(receiveApi.getReturnMsg());
+                                    sysMessageManageLogEntity.setRemark("接口调用成功,返回信息如下:" + returnMsg);//返回信息
+                                } else {
+                                    sysMessageManageLogEntity.setRemark("接口调用成功");//返回信息
+                                }
+                            }else {
+                                sysMessageManageLogEntity.setStatus("4");//返回信息
+                                if (receiveApi.getReturnMsg() != null && !"".equals(receiveApi.getReturnMsg())) {
+                                    String returnMsg = cheackdatas.getString(receiveApi.getReturnMsg());
+                                    sysMessageManageLogEntity.setRemark("接口调用失败,返回值错误,返回信息如下:" + returnMsg);//返回信息
+                                } else {
+                                    sysMessageManageLogEntity.setRemark("接口调用失败,返回值错误");//返回信息
+                                }
+                            }
+
+                        }else {
+                            sysMessageManageLogEntity.setStatus("4");//返回信息
+                            if (receiveApi.getReturnMsg() != null && !"".equals(receiveApi.getReturnMsg())) {
+                                String returnMsg = cheackdatas.getString(receiveApi.getReturnMsg());
+                                sysMessageManageLogEntity.setRemark("接口调用失败,返回值错误,返回信息如下:" + returnMsg);//返回信息
+                            } else {
+                                sysMessageManageLogEntity.setRemark("接口调用失败,返回值错误");//返回信息
+                            }
                         }
                     }
                 } else {