Index: jinan/trunk/yunna/src/main/java/com/freshport/control/FruitShipPortControl.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/control/FruitShipPortControl.java	(revision 33863)
+++ jinan/trunk/yunna/src/main/java/com/freshport/control/FruitShipPortControl.java	(revision 33864)
@@ -4,6 +4,8 @@
 
 import javax.annotation.Resource;
 
+import org.springframework.validation.BindingResult;
+import org.springframework.validation.annotation.Validated;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
@@ -15,6 +17,9 @@
 import com.freshport.entity.yunna.LoadingNumberResultVO;
 import com.freshport.entity.yunna.ShipPortResultVO;
 import com.freshport.service.FruitShipPortService;
+import com.freshport.util.CommonEnum;
+import com.freshport.util.CommonUtils;
+import com.freshport.util.ShipPortEnum;
 
 import lombok.extern.slf4j.Slf4j;
 
@@ -51,9 +56,19 @@
      * @date 2023-03-20 15:44:23
      */
     @PostMapping("/getLoadingNumberInfo")
-    public JsonModel<List<LoadingNumberResultVO>> getLoadingNumberInfo(@RequestBody LoadingNumberQueryParam params) {
+    public JsonModel<List<LoadingNumberResultVO>> getLoadingNumberInfo(
+            @RequestBody @Validated LoadingNumberQueryParam params, BindingResult bindingResult) {
 
-        List<LoadingNumberResultVO> resultList = fruitShipPortService.queryLoadingNumberInfoList(params);
+        // 前置校验
+        if (bindingResult.hasErrors()) {
+            String errorInfo = bindingResult.getFieldError().getDefaultMessage();
+            return JsonModel.errorParam(CommonEnum.PARAM_ERROR.getCode(), errorInfo);
+        }
+        if (CommonUtils.isEmpty(ShipPortEnum.getShipPortEnum(params.getType()))) {
+            return JsonModel.errorParam(CommonEnum.PARAM_ERROR.getCode(), "参数类型错误");
+        }
+
+        List<LoadingNumberResultVO> resultList = fruitShipPortService.handleLoadingNumberInfoMain(params);
         return JsonModel.success(resultList);
     }
 
@@ -70,6 +85,10 @@
     @PostMapping("/saveShipInfo")
     public JsonModel<Object> saveShipInfo(@RequestBody List<ShipPortResultVO> params) {
 
+        if (CommonUtils.isEmpty(params)) {
+            return JsonModel.errorParam(CommonEnum.PARAM_ERROR.getCode(), "参数为空");
+        }
+
         fruitShipPortService.saveShipInfo(params);
         return JsonModel.success(null);
     }
@@ -87,6 +106,10 @@
     @PostMapping("/savePortInfo")
     public JsonModel<Object> savePortInfo(@RequestBody List<ShipPortResultVO> params) {
 
+        if (CommonUtils.isEmpty(params)) {
+            return JsonModel.errorParam(CommonEnum.PARAM_ERROR.getCode(), "参数为空");
+        }
+
         fruitShipPortService.savePortInfo(params);
         return JsonModel.success(null);
     }
Index: jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/ShipPortMapper.xml
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/ShipPortMapper.xml	(revision 33863)
+++ jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/ShipPortMapper.xml	(revision 33864)
@@ -265,24 +265,24 @@
   	<foreach collection="list" separator=";" item="item">
   	  		update yw_hddz
     		<set> 
-    			yjkgsj = #{item.newExpectArrivalTime},
-    			sjkgsj = #{item.actualPortTime},
+    			yjkgsj = #{item.yjkgsj},
+    			sjkgsj = #{item.sjkgsj},
     			rpa_xrsj = getdate(),
-    			<if test="item.unloadingPortCode != null and item.unloadingPortCode != ''">
-		        	xhgq = #{item.unloadingPortFullName},
-	    			xhgqjc = #{item.unloadingPortShortName},
-	    			xhgqbm = #{item.unloadingPortCode},
+    			<if test="item.xhgqbm != null and item.xhgqbm != ''">
+		        	xhgq = #{item.xhgq},
+	    			xhgqjc = #{item.xhgqjc},
+	    			xhgqbm = #{item.xhgqbm},
 		      	</if>
 		      	<choose>
 		            <when test="item.zzHcorhbh != null and item.zzHcorhbh != ''">
-		                zz_hcorhbh = #{item.voyage},
+		                zz_hcorhbh = #{item.hcorhbh},
 		            </when>
 		            <otherwise>
-		                hcorhbh = #{item.voyage},
+		                hcorhbh = #{item.hcorhbh},
 		            </otherwise>
 		        </choose>
     		</set>
-		    where ywbh = #{item.businessNo}
+		    where ywbh = #{item.ywbh}
   	</foreach>
   </update>
   
@@ -290,9 +290,9 @@
   	<foreach collection="list" separator=";" item="item">
   	  		update yw_hddz_jzxxx
     		set 
-    			xcsj = #{item.unloadingTime}
-		    where ywbh = #{item.businessNo}
-		    and jzxh = #{item.containerNumber}
+    			xcsj = #{item.xcsj}
+		    where ywbh = #{item.ywbh}
+		    and jzxh = #{item.jzxh}
   	</foreach>
   </update>
   
@@ -327,17 +327,17 @@
   	<foreach collection="list" separator=";" item="item">
   	  		update yw_hddz
     		<set> 
-    			zzgk = #{item.transitPort},
-    			sfzy = #{item.transitFlag},
-    			zz_cm = #{item.transitShipName},
-    			zz_hcorhbh = #{item.transitVoyage},
-    			kcsj = #{item.actualSailingTime},
+    			zzgk = #{item.zzgk},
+    			sfzy = #{item.sfzy},
+    			zz_cm = #{item.zzCm},
+    			zz_hcorhbh = #{item.zzHcorhbh},
+    			kcsj = #{item.kcsj},
     			rpa_xrsj = getdate()
     			<!-- <if test="item.hours != null and item.hours > 72">
 		        	yjkgsj = #{item.expectArrivalTime},
 		      	</if> -->
 		      </set>
-		    where ywbh = #{item.businessNo}
+		    where ywbh = #{item.ywbh}
   	</foreach>
   </update>
   
@@ -345,9 +345,9 @@
   	<foreach collection="list" separator=";" item="item">
   	  		update yw_hddz
     		<set> 
-		        	yjkgsj = #{item.newExpectArrivalTime}
+		        	yjkgsj = #{item.yjkgsj}
 		    </set>
-		    where ywbh = #{item.businessNo}
+		    where ywbh = #{item.ywbh}
   	</foreach>
   </update>
   
Index: jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/YwHddzJzxxxMapper.xml
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/YwHddzJzxxxMapper.xml	(revision 0)
+++ jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/YwHddzJzxxxMapper.xml	(revision 33864)
@@ -0,0 +1,5496 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.freshport.dao.YwHddzJzxxxMapper">
+  <resultMap id="BaseResultMap" type="com.freshport.entity.YwHddzJzxxx">
+    <id column="id" jdbcType="INTEGER" property="id" />
+    <result column="ywbh" jdbcType="VARCHAR" property="ywbh" />
+    <result column="cxh" jdbcType="INTEGER" property="cxh" />
+    <result column="ysfs" jdbcType="VARCHAR" property="ysfs" />
+    <result column="jzxh" jdbcType="VARCHAR" property="jzxh" />
+    <result column="xx" jdbcType="VARCHAR" property="xx" />
+    <result column="xl" jdbcType="VARCHAR" property="xl" />
+    <result column="sjshrbm" jdbcType="VARCHAR" property="sjshrbm" />
+    <result column="sjshrmc" jdbcType="VARCHAR" property="sjshrmc" />
+    <result column="shdz" jdbcType="VARCHAR" property="shdz" />
+    <result column="zyxx" jdbcType="VARCHAR" property="zyxx" />
+    <result column="clfs" jdbcType="VARCHAR" property="clfs" />
+    <result column="tpxx" jdbcType="INTEGER" property="tpxx" />
+    <result column="htjhthsj" jdbcType="TIMESTAMP" property="htjhthsj" />
+    <result column="htjhthsj_lb" jdbcType="VARCHAR" property="htjhthsjLb" />
+    <result column="xcjhthsj" jdbcType="TIMESTAMP" property="xcjhthsj" />
+    <result column="thjjcd" jdbcType="VARCHAR" property="thjjcd" />
+    <result column="beizhu" jdbcType="VARCHAR" property="beizhu" />
+    <result column="gq_bz" jdbcType="VARCHAR" property="gqBz" />
+    <result column="gq_sj" jdbcType="VARCHAR" property="gqSj" />
+    <result column="gq_cp" jdbcType="VARCHAR" property="gqCp" />
+    <result column="gq_sjlxfs" jdbcType="VARCHAR" property="gqSjlxfs" />
+    <result column="gq_rwbh" jdbcType="VARCHAR" property="gqRwbh" />
+    <result column="gq_c_rwbh" jdbcType="VARCHAR" property="gqCRwbh" />
+    <result column="hgcyd_bz" jdbcType="VARCHAR" property="hgcydBz" />
+    <result column="hgcyd_sj" jdbcType="VARCHAR" property="hgcydSj" />
+    <result column="hgcyd_cp" jdbcType="VARCHAR" property="hgcydCp" />
+    <result column="hgcyd_sjlxfs" jdbcType="VARCHAR" property="hgcydSjlxfs" />
+    <result column="hgcyd_rwbh" jdbcType="VARCHAR" property="hgcydRwbh" />
+    <result column="hgcyd_c_rwbh" jdbcType="VARCHAR" property="hgcydCRwbh" />
+    <result column="jyd_bz" jdbcType="VARCHAR" property="jydBz" />
+    <result column="jyd_sj" jdbcType="VARCHAR" property="jydSj" />
+    <result column="jyd_cp" jdbcType="VARCHAR" property="jydCp" />
+    <result column="jyd_sjlxfs" jdbcType="VARCHAR" property="jydSjlxfs" />
+    <result column="jyd_bm" jdbcType="VARCHAR" property="jydBm" />
+    <result column="jyd_mc" jdbcType="VARCHAR" property="jydMc" />
+    <result column="jyd_jc" jdbcType="VARCHAR" property="jydJc" />
+    <result column="jyd_pym" jdbcType="VARCHAR" property="jydPym" />
+    <result column="jyd_rwbh" jdbcType="VARCHAR" property="jydRwbh" />
+    <result column="jyd_c_rwbh" jdbcType="VARCHAR" property="jydCRwbh" />
+    <result column="zjfscwld_bz" jdbcType="VARCHAR" property="zjfscwldBz" />
+    <result column="zjfscwld_sfjsc" jdbcType="VARCHAR" property="zjfscwldSfjsc" />
+    <result column="zjfscwld_sj" jdbcType="VARCHAR" property="zjfscwldSj" />
+    <result column="zjfscwld_cp" jdbcType="VARCHAR" property="zjfscwldCp" />
+    <result column="zjfscwld_sjlxfs" jdbcType="VARCHAR" property="zjfscwldSjlxfs" />
+    <result column="zjfscwld_shrbm" jdbcType="VARCHAR" property="zjfscwldShrbm" />
+    <result column="zjfscwld_shrmc" jdbcType="VARCHAR" property="zjfscwldShrmc" />
+    <result column="zjfscwld_zyxx" jdbcType="VARCHAR" property="zjfscwldZyxx" />
+    <result column="zjfscwld_rwbh" jdbcType="VARCHAR" property="zjfscwldRwbh" />
+    <result column="zjfscwld_c_rwbh" jdbcType="VARCHAR" property="zjfscwldCRwbh" />
+    <result column="sc_bz" jdbcType="VARCHAR" property="scBz" />
+    <result column="sc_sj" jdbcType="VARCHAR" property="scSj" />
+    <result column="sc_cp" jdbcType="VARCHAR" property="scCp" />
+    <result column="sc_sjlxfs" jdbcType="VARCHAR" property="scSjlxfs" />
+    <result column="sc_bm" jdbcType="VARCHAR" property="scBm" />
+    <result column="sc_mc" jdbcType="VARCHAR" property="scMc" />
+    <result column="sc_jc" jdbcType="VARCHAR" property="scJc" />
+    <result column="sc_pym" jdbcType="VARCHAR" property="scPym" />
+    <result column="sc_lgfs" jdbcType="VARCHAR" property="scLgfs" />
+    <result column="sc_rwbh" jdbcType="VARCHAR" property="scRwbh" />
+    <result column="sc_c_rwbh" jdbcType="VARCHAR" property="scCRwbh" />
+    <result column="jschfscwld_bz" jdbcType="VARCHAR" property="jschfscwldBz" />
+    <result column="jschfscwld_sfjsc" jdbcType="VARCHAR" property="jschfscwldSfjsc" />
+    <result column="jschfscwld_sj" jdbcType="VARCHAR" property="jschfscwldSj" />
+    <result column="jschfscwld_cp" jdbcType="VARCHAR" property="jschfscwldCp" />
+    <result column="jschfscwld_sjlxfs" jdbcType="VARCHAR" property="jschfscwldSjlxfs" />
+    <result column="jschfscwld_shrbm" jdbcType="VARCHAR" property="jschfscwldShrbm" />
+    <result column="jschfscwld_shrmc" jdbcType="VARCHAR" property="jschfscwldShrmc" />
+    <result column="jschfscwld_zyxx" jdbcType="VARCHAR" property="jschfscwldZyxx" />
+    <result column="jschfscwld_rwbh" jdbcType="VARCHAR" property="jschfscwldRwbh" />
+    <result column="jschfscwld_c_rwbh" jdbcType="VARCHAR" property="jschfscwldCRwbh" />
+    <result column="fscwld3_bz" jdbcType="VARCHAR" property="fscwld3Bz" />
+    <result column="fscwld3_sfjsc" jdbcType="VARCHAR" property="fscwld3Sfjsc" />
+    <result column="fscwld3_sj" jdbcType="VARCHAR" property="fscwld3Sj" />
+    <result column="fscwld3_cp" jdbcType="VARCHAR" property="fscwld3Cp" />
+    <result column="fscwld3_sjlxfs" jdbcType="VARCHAR" property="fscwld3Sjlxfs" />
+    <result column="fscwld3_shrbm" jdbcType="VARCHAR" property="fscwld3Shrbm" />
+    <result column="fscwld3_shrmc" jdbcType="VARCHAR" property="fscwld3Shrmc" />
+    <result column="fscwld3_zyxx" jdbcType="VARCHAR" property="fscwld3Zyxx" />
+    <result column="fscwld3_rwbh" jdbcType="VARCHAR" property="fscwld3Rwbh" />
+    <result column="fscwld3_c_rwbh" jdbcType="VARCHAR" property="fscwld3CRwbh" />
+    <result column="fscwld4_bz" jdbcType="VARCHAR" property="fscwld4Bz" />
+    <result column="fscwld4_sfjsc" jdbcType="VARCHAR" property="fscwld4Sfjsc" />
+    <result column="fscwld4_sj" jdbcType="VARCHAR" property="fscwld4Sj" />
+    <result column="fscwld4_cp" jdbcType="VARCHAR" property="fscwld4Cp" />
+    <result column="fscwld4_sjlxfs" jdbcType="VARCHAR" property="fscwld4Sjlxfs" />
+    <result column="fscwld4_shrbm" jdbcType="VARCHAR" property="fscwld4Shrbm" />
+    <result column="fscwld4_shrmc" jdbcType="VARCHAR" property="fscwld4Shrmc" />
+    <result column="fscwld4_zyxx" jdbcType="VARCHAR" property="fscwld4Zyxx" />
+    <result column="fscwld4_rwbh" jdbcType="VARCHAR" property="fscwld4Rwbh" />
+    <result column="fscwld4_c_rwbh" jdbcType="VARCHAR" property="fscwld4CRwbh" />
+    <result column="dc_bz" jdbcType="VARCHAR" property="dcBz" />
+    <result column="dc_sj" jdbcType="VARCHAR" property="dcSj" />
+    <result column="dc_cp" jdbcType="VARCHAR" property="dcCp" />
+    <result column="dc_sjlxfs" jdbcType="VARCHAR" property="dcSjlxfs" />
+    <result column="dc_bm" jdbcType="VARCHAR" property="dcBm" />
+    <result column="dc_mc" jdbcType="VARCHAR" property="dcMc" />
+    <result column="dc_jc" jdbcType="VARCHAR" property="dcJc" />
+    <result column="dc_pym" jdbcType="VARCHAR" property="dcPym" />
+    <result column="dc_rwbh" jdbcType="VARCHAR" property="dcRwbh" />
+    <result column="sdxtdsj" jdbcType="TIMESTAMP" property="sdxtdsj" />
+    <result column="fxgsbm" jdbcType="VARCHAR" property="fxgsbm" />
+    <result column="fxgsmc" jdbcType="VARCHAR" property="fxgsmc" />
+    <result column="fxgsjc" jdbcType="VARCHAR" property="fxgsjc" />
+    <result column="fxgspym" jdbcType="VARCHAR" property="fxgspym" />
+    <result column="cgsfxdbm" jdbcType="VARCHAR" property="cgsfxdbm" />
+    <result column="cgsfxdmc" jdbcType="VARCHAR" property="cgsfxdmc" />
+    <result column="cgsfxdjc" jdbcType="VARCHAR" property="cgsfxdjc" />
+    <result column="cgsfxdpym" jdbcType="VARCHAR" property="cgsfxdpym" />
+    <result column="sbjjdh" jdbcType="VARCHAR" property="sbjjdh" />
+    <result column="fxdcbm" jdbcType="VARCHAR" property="fxdcbm" />
+    <result column="fxdcmc" jdbcType="VARCHAR" property="fxdcmc" />
+    <result column="fxdcjc" jdbcType="VARCHAR" property="fxdcjc" />
+    <result column="fxdcpym" jdbcType="VARCHAR" property="fxdcpym" />
+    <result column="gqjhsj" jdbcType="TIMESTAMP" property="gqjhsj" />
+    <result column="gqjhsj_lb" jdbcType="VARCHAR" property="gqjhsjLb" />
+    <result column="sjmc" jdbcType="VARCHAR" property="sjmc" />
+    <result column="cph" jdbcType="VARCHAR" property="cph" />
+    <result column="mtywclbz" jdbcType="VARCHAR" property="mtywclbz" />
+    <result column="ccsj" jdbcType="TIMESTAMP" property="ccsj" />
+    <result column="hdcsj" jdbcType="TIMESTAMP" property="hdcsj" />
+    <result column="cgqsj" jdbcType="TIMESTAMP" property="cgqsj" />
+    <result column="cydsj" jdbcType="TIMESTAMP" property="cydsj" />
+    <result column="cydbz" jdbcType="VARCHAR" property="cydbz" />
+    <result column="djydsj" jdbcType="TIMESTAMP" property="djydsj" />
+    <result column="tgjysj" jdbcType="TIMESTAMP" property="tgjysj" />
+    <result column="jycydzt" jdbcType="VARCHAR" property="jycydzt" />
+    <result column="kghcl" jdbcType="VARCHAR" property="kghcl" />
+    <result column="rscsj" jdbcType="TIMESTAMP" property="rscsj" />
+    <result column="khtzhxsj" jdbcType="TIMESTAMP" property="khtzhxsj" />
+    <result column="xqrqksj" jdbcType="TIMESTAMP" property="xqrqksj" />
+    <result column="ccjhsj" jdbcType="TIMESTAMP" property="ccjhsj" />
+    <result column="cscsj" jdbcType="TIMESTAMP" property="cscsj" />
+    <result column="hxfs" jdbcType="VARCHAR" property="hxfs" />
+    <result column="jzxydgsj" jdbcType="TIMESTAMP" property="jzxydgsj" />
+    <result column="jzxzscsj" jdbcType="TIMESTAMP" property="jzxzscsj" />
+    <result column="jzxytzqksj" jdbcType="TIMESTAMP" property="jzxytzqksj" />
+    <result column="scbz" jdbcType="VARCHAR" property="scbz" />
+    <result column="fscwl_ddsj" jdbcType="TIMESTAMP" property="fscwlDdsj" />
+    <result column="fscwl_lksj" jdbcType="TIMESTAMP" property="fscwlLksj" />
+    <result column="fscwl2_ddsj" jdbcType="TIMESTAMP" property="fscwl2Ddsj" />
+    <result column="fscwl2_lksj" jdbcType="TIMESTAMP" property="fscwl2Lksj" />
+    <result column="fscwl3_ddsj" jdbcType="TIMESTAMP" property="fscwl3Ddsj" />
+    <result column="fscwl3_lksj" jdbcType="TIMESTAMP" property="fscwl3Lksj" />
+    <result column="fscwl4_ddsj" jdbcType="TIMESTAMP" property="fscwl4Ddsj" />
+    <result column="fscwl4_lksj" jdbcType="TIMESTAMP" property="fscwl4Lksj" />
+    <result column="csbz" jdbcType="VARCHAR" property="csbz" />
+    <result column="zhlx" jdbcType="VARCHAR" property="zhlx" />
+    <result column="lkjydsj" jdbcType="TIMESTAMP" property="lkjydsj" />
+    <result column="jydbz" jdbcType="VARCHAR" property="jydbz" />
+    <result column="yqfssj" jdbcType="TIMESTAMP" property="yqfssj" />
+    <result column="sffsbz" jdbcType="VARCHAR" property="sffsbz" />
+    <result column="sdxxsj" jdbcType="TIMESTAMP" property="sdxxsj" />
+    <result column="sfsdxxbz" jdbcType="VARCHAR" property="sfsdxxbz" />
+    <result column="sfyxcjh" jdbcType="VARCHAR" property="sfyxcjh" />
+    <result column="sfsdfxhz" jdbcType="VARCHAR" property="sfsdfxhz" />
+    <result column="dcsfyd" jdbcType="VARCHAR" property="dcsfyd" />
+    <result column="hmtsj" jdbcType="TIMESTAMP" property="hmtsj" />
+    <result column="dhxgssj" jdbcType="TIMESTAMP" property="dhxgssj" />
+    <result column="zybz" jdbcType="VARCHAR" property="zybz" />
+    <result column="cqfje" jdbcType="DECIMAL" property="cqfje" />
+    <result column="cqjsbzrq" jdbcType="TIMESTAMP" property="cqjsbzrq" />
+    <result column="khjydzt" jdbcType="VARCHAR" property="khjydzt" />
+    <result column="yfkdbh" jdbcType="VARCHAR" property="yfkdbh" />
+    <result column="sfyyfk" jdbcType="VARCHAR" property="sfyyfk" />
+    <result column="state" jdbcType="VARCHAR" property="state" />
+    <result column="jsdwbm" jdbcType="VARCHAR" property="jsdwbm" />
+    <result column="jsdwmc" jdbcType="VARCHAR" property="jsdwmc" />
+    <result column="jsdwjc" jdbcType="VARCHAR" property="jsdwjc" />
+    <result column="jsdwpym" jdbcType="VARCHAR" property="jsdwpym" />
+    <result column="jsbm" jdbcType="VARCHAR" property="jsbm" />
+    <result column="jsdwqr" jdbcType="VARCHAR" property="jsdwqr" />
+    <result column="sfyjsbm" jdbcType="VARCHAR" property="sfyjsbm" />
+    <result column="yscqfqr" jdbcType="VARCHAR" property="yscqfqr" />
+    <result column="yscqfje" jdbcType="NUMERIC" property="yscqfje" />
+    <result column="yscqfqrrq" jdbcType="TIMESTAMP" property="yscqfqrrq" />
+    <result column="wlfyqr" jdbcType="VARCHAR" property="wlfyqr" />
+    <result column="wlfyqrrq" jdbcType="TIMESTAMP" property="wlfyqrrq" />
+    <result column="wlfyje" jdbcType="NUMERIC" property="wlfyje" />
+    <result column="wlfylclfje" jdbcType="NUMERIC" property="wlfylclfje" />
+    <result column="tjrq" jdbcType="TIMESTAMP" property="tjrq" />
+    <result column="tsycdzyjsje" jdbcType="NUMERIC" property="tsycdzyjsje" />
+    <result column="yshdfygjbh" jdbcType="VARCHAR" property="yshdfygjbh" />
+    <result column="gjsj" jdbcType="TIMESTAMP" property="gjsj" />
+    <result column="gjcs" jdbcType="INTEGER" property="gjcs" />
+    <result column="yshdfygjbh_cqf" jdbcType="VARCHAR" property="yshdfygjbhCqf" />
+    <result column="gjsj_cqf" jdbcType="TIMESTAMP" property="gjsjCqf" />
+    <result column="gjcs_cqf" jdbcType="INTEGER" property="gjcsCqf" />
+    <result column="lxr" jdbcType="VARCHAR" property="lxr" />
+    <result column="lxdh" jdbcType="VARCHAR" property="lxdh" />
+    <result column="wxsffs_cqf" jdbcType="VARCHAR" property="wxsffsCqf" />
+    <result column="wllxqdrq" jdbcType="TIMESTAMP" property="wllxqdrq" />
+    <result column="jssfwc" jdbcType="VARCHAR" property="jssfwc" />
+    <result column="jswcsj" jdbcType="TIMESTAMP" property="jswcsj" />
+    <result column="sflc" jdbcType="VARCHAR" property="sflc" />
+    <result column="lxr2" jdbcType="VARCHAR" property="lxr2" />
+    <result column="lxdh2" jdbcType="VARCHAR" property="lxdh2" />
+    <result column="lxr3" jdbcType="VARCHAR" property="lxr3" />
+    <result column="lxdh3" jdbcType="VARCHAR" property="lxdh3" />
+    <result column="lxr4" jdbcType="VARCHAR" property="lxr4" />
+    <result column="lxdh4" jdbcType="VARCHAR" property="lxdh4" />
+    <result column="kgsj" jdbcType="TIMESTAMP" property="kgsj" />
+    <result column="ssys" jdbcType="VARCHAR" property="ssys" />
+    <result column="kghclsj" jdbcType="TIMESTAMP" property="kghclsj" />
+    <result column="wllhzt" jdbcType="VARCHAR" property="wllhzt" />
+    <result column="wllhsj" jdbcType="TIMESTAMP" property="wllhsj" />
+    <result column="sqlhpc" jdbcType="VARCHAR" property="sqlhpc" />
+    <result column="lhbz" jdbcType="VARCHAR" property="lhbz" />
+    <result column="sqsj" jdbcType="TIMESTAMP" property="sqsj" />
+    <result column="cdbm" jdbcType="VARCHAR" property="cdbm" />
+    <result column="cdmc" jdbcType="VARCHAR" property="cdmc" />
+    <result column="cdjc" jdbcType="VARCHAR" property="cdjc" />
+    <result column="cdpym" jdbcType="VARCHAR" property="cdpym" />
+    <result column="fxsj" jdbcType="TIMESTAMP" property="fxsj" />
+    <result column="htjhthsj_sjd" jdbcType="VARCHAR" property="htjhthsjSjd" />
+    <result column="htjhthscsj" jdbcType="TIMESTAMP" property="htjhthscsj" />
+    <result column="cdjsdwbm" jdbcType="VARCHAR" property="cdjsdwbm" />
+    <result column="cdjsdwmc" jdbcType="VARCHAR" property="cdjsdwmc" />
+    <result column="cdjsdwjc" jdbcType="VARCHAR" property="cdjsdwjc" />
+    <result column="cdjsdwpym" jdbcType="VARCHAR" property="cdjsdwpym" />
+    <result column="contractcontainerid" jdbcType="VARCHAR" property="contractcontainerid" />
+    <result column="jgqsj" jdbcType="TIMESTAMP" property="jgqsj" />
+    <result column="cjydsj" jdbcType="TIMESTAMP" property="cjydsj" />
+    <result column="dj" jdbcType="VARCHAR" property="dj" />
+    <result column="cgqsj_lrsj" jdbcType="TIMESTAMP" property="cgqsjLrsj" />
+    <result column="djydsj_lrsj" jdbcType="TIMESTAMP" property="djydsjLrsj" />
+    <result column="tgjysj_lrsj" jdbcType="TIMESTAMP" property="tgjysjLrsj" />
+    <result column="kgsj_lrsj" jdbcType="TIMESTAMP" property="kgsjLrsj" />
+    <result column="cgqsj_czry" jdbcType="VARCHAR" property="cgqsjCzry" />
+    <result column="djydsj_czry" jdbcType="VARCHAR" property="djydsjCzry" />
+    <result column="tgjysj_czry" jdbcType="VARCHAR" property="tgjysjCzry" />
+    <result column="kgsj_czry" jdbcType="VARCHAR" property="kgsjCzry" />
+    <result column="kghclsj_lrsj" jdbcType="TIMESTAMP" property="kghclsjLrsj" />
+    <result column="kghclsj_czry" jdbcType="VARCHAR" property="kghclsjCzry" />
+    <result column="dzdd" jdbcType="VARCHAR" property="dzdd" />
+    <result column="zq_cgqsj" jdbcType="TIMESTAMP" property="zqCgqsj" />
+    <result column="cjydsj_lrsj" jdbcType="TIMESTAMP" property="cjydsjLrsj" />
+    <result column="cjydsj_czry" jdbcType="VARCHAR" property="cjydsjCzry" />
+    <result column="jdrjc" jdbcType="VARCHAR" property="jdrjc" />
+    <result column="jdrmc" jdbcType="VARCHAR" property="jdrmc" />
+    <result column="jdrbm" jdbcType="VARCHAR" property="jdrbm" />
+    <result column="jdrpym" jdbcType="VARCHAR" property="jdrpym" />
+    <result column="htjhthsj_lrsj" jdbcType="TIMESTAMP" property="htjhthsjLrsj" />
+    <result column="lrcx_qrbz" jdbcType="VARCHAR" property="lrcxQrbz" />
+    <result column="lrcx_qrrq" jdbcType="TIMESTAMP" property="lrcxQrrq" />
+    <result column="lrcx_bz" jdbcType="VARCHAR" property="lrcxBz" />
+    <result column="jzxlrcx_bz" jdbcType="VARCHAR" property="jzxlrcxBz" />
+    <result column="xcsj" jdbcType="TIMESTAMP" property="xcsj" />
+    <result column="jzxlrcx_qrbz" jdbcType="VARCHAR" property="jzxlrcxQrbz" />
+    <result column="jzxlrcx_qrrq" jdbcType="TIMESTAMP" property="jzxlrcxQrrq" />
+    <result column="clsscd" jdbcType="VARCHAR" property="clsscd" />
+    <result column="lk_bz" jdbcType="VARCHAR" property="lkBz" />
+    <result column="khzdthsj" jdbcType="TIMESTAMP" property="khzdthsj" />
+    <result column="khzdthsj_lrsj" jdbcType="TIMESTAMP" property="khzdthsjLrsj" />
+    <result column="khzdthsj_czry" jdbcType="VARCHAR" property="khzdthsjCzry" />
+    <result column="yqsdsj" jdbcType="TIMESTAMP" property="yqsdsj" />
+    <result column="shr" jdbcType="VARCHAR" property="shr" />
+    <result column="shrdh" jdbcType="VARCHAR" property="shrdh" />
+    <result column="ggsj" jdbcType="TIMESTAMP" property="ggsj" />
+    <result column="spxh" jdbcType="VARCHAR" property="spxh" />
+    <result column="sggqbm" jdbcType="VARCHAR" property="sggqbm" />
+    <result column="sggqmc" jdbcType="VARCHAR" property="sggqmc" />
+    <result column="sggqjc" jdbcType="VARCHAR" property="sggqjc" />
+    <result column="sggqpym" jdbcType="VARCHAR" property="sggqpym" />
+    <result column="cqfcx_bz" jdbcType="VARCHAR" property="cqfcxBz" />
+    <result column="sbjjd" jdbcType="CHAR" property="sbjjd" />
+    <result column="sbjjd_lrry" jdbcType="VARCHAR" property="sbjjdLrry" />
+    <result column="sbjjd_lrsj" jdbcType="TIMESTAMP" property="sbjjdLrsj" />
+    <result column="hz_sc" jdbcType="VARCHAR" property="hzSc" />
+    <result column="pdy" jdbcType="VARCHAR" property="pdy" />
+    <result column="gjbeizhu" jdbcType="VARCHAR" property="gjbeizhu" />
+    <result column="wlbgz" jdbcType="VARCHAR" property="wlbgz" />
+    <result column="wlbgz_lrry" jdbcType="VARCHAR" property="wlbgzLrry" />
+    <result column="wlbgz_lrsj" jdbcType="TIMESTAMP" property="wlbgzLrsj" />
+    <result column="lldh" jdbcType="VARCHAR" property="lldh" />
+    <result column="ccrn" jdbcType="VARCHAR" property="ccrn" />
+    <result column="tgrq" jdbcType="TIMESTAMP" property="tgrq" />
+    <result column="qgrq" jdbcType="TIMESTAMP" property="qgrq" />
+    <result column="szjb" jdbcType="VARCHAR" property="szjb" />
+    <result column="jhrq1" jdbcType="TIMESTAMP" property="jhrq1" />
+    <result column="jgwq1" jdbcType="TIMESTAMP" property="jgwq1" />
+    <result column="wlgz_state" jdbcType="VARCHAR" property="wlgzState" />
+    <result column="wlgz_jjyy" jdbcType="VARCHAR" property="wlgzJjyy" />
+    <result column="sjzq_ccfs" jdbcType="VARCHAR" property="sjzqCcfs" />
+    <result column="sfzlc" jdbcType="CHAR" property="sfzlc" />
+    <result column="ycbeizhu" jdbcType="VARCHAR" property="ycbeizhu" />
+    <result column="zzhwsqh" jdbcType="VARCHAR" property="zzhwsqh" />
+    <result column="zzqrsh" jdbcType="VARCHAR" property="zzqrsh" />
+    <result column="xfdysj" jdbcType="TIMESTAMP" property="xfdysj" />
+    <result column="zzsdysj" jdbcType="TIMESTAMP" property="zzsdysj" />
+    <result column="lldh_lrsj" jdbcType="TIMESTAMP" property="lldhLrsj" />
+    <result column="sjzq_cgqsj" jdbcType="TIMESTAMP" property="sjzqCgqsj" />
+    <result column="htjhthsj_xgyy" jdbcType="VARCHAR" property="htjhthsjXgyy" />
+    <result column="khgtjl_beizhu" jdbcType="VARCHAR" property="khgtjlBeizhu" />
+    <result column="jsdwqr_ry" jdbcType="VARCHAR" property="jsdwqrRy" />
+    <result column="khmc" jdbcType="VARCHAR" property="khmc" />
+    <result column="khjc" jdbcType="VARCHAR" property="khjc" />
+    <result column="khpym" jdbcType="VARCHAR" property="khpym" />
+    <result column="khbm" jdbcType="VARCHAR" property="khbm" />
+    <result column="lrqr" jdbcType="CHAR" property="lrqr" />
+    <result column="qrry" jdbcType="VARCHAR" property="qrry" />
+    <result column="ycyyrl" jdbcType="VARCHAR" property="ycyyrl" />
+    <result column="zdjk_kssj" jdbcType="TIMESTAMP" property="zdjkKssj" />
+    <result column="zdjk_jssj" jdbcType="TIMESTAMP" property="zdjkJssj" />
+    <result column="lc" jdbcType="CHAR" property="lc" />
+    <result column="lc_startTime" jdbcType="TIMESTAMP" property="lcStarttime" />
+    <result column="lc_endTime" jdbcType="TIMESTAMP" property="lcEndtime" />
+    <result column="kgyy" jdbcType="VARCHAR" property="kgyy" />
+    <result column="beizhu_ry" jdbcType="VARCHAR" property="beizhuRy" />
+    <result column="rlksj" jdbcType="TIMESTAMP" property="rlksj" />
+    <result column="gzryqr" jdbcType="CHAR" property="gzryqr" />
+    <result column="khzbth" jdbcType="CHAR" property="khzbth" />
+    <result column="khzbth_qrsj" jdbcType="TIMESTAMP" property="khzbthQrsj" />
+    <result column="sfycb" jdbcType="CHAR" property="sfycb" />
+    <result column="sfyys" jdbcType="CHAR" property="sfyys" />
+    <result column="gzryqrry" jdbcType="VARCHAR" property="gzryqrry" />
+    <result column="cgqsj_xg" jdbcType="TIMESTAMP" property="cgqsjXg" />
+    <result column="xcsj_xg" jdbcType="TIMESTAMP" property="xcsjXg" />
+    <result column="cgqsj_sz" jdbcType="TIMESTAMP" property="cgqsjSz" />
+    <result column="xcsj_sz" jdbcType="TIMESTAMP" property="xcsjSz" />
+    <result column="gzryhxqr" jdbcType="CHAR" property="gzryhxqr" />
+    <result column="gzryhxqrry" jdbcType="CHAR" property="gzryhxqrry" />
+    <result column="wlbz" jdbcType="VARCHAR" property="wlbz" />
+    <result column="zyxx_import_user" jdbcType="VARCHAR" property="zyxxImportUser" />
+    <result column="cwbz" jdbcType="VARCHAR" property="cwbz" />
+    <result column="AN_je_gb" jdbcType="DOUBLE" property="anJeGb" />
+    <result column="AN_je_mj" jdbcType="DOUBLE" property="anJeMj" />
+    <result column="mjhl" jdbcType="DOUBLE" property="mjhl" />
+    <result column="wlqrsj" jdbcType="TIMESTAMP" property="wlqrsj" />
+    <result column="fylr" jdbcType="DECIMAL" property="fylr" />
+    <result column="hgfs" jdbcType="VARCHAR" property="hgfs" />
+    <result column="sjzq_jcfs" jdbcType="VARCHAR" property="sjzqJcfs" />
+    <result column="hgfs_zhm" jdbcType="VARCHAR" property="hgfsZhm" />
+    <result column="hgfs_xgsj" jdbcType="TIMESTAMP" property="hgfsXgsj" />
+    <result column="cgfxqfy_gd" jdbcType="VARCHAR" property="cgfxqfyGd" />
+    <result column="cgfxhfy_wl" jdbcType="VARCHAR" property="cgfxhfyWl" />
+    <result column="jssqr" jdbcType="VARCHAR" property="jssqr" />
+    <result column="jsyy" jdbcType="VARCHAR" property="jsyy" />
+    <result column="js_start" jdbcType="CHAR" property="jsStart" />
+    <result column="qgrq_lrsj" jdbcType="TIMESTAMP" property="qgrqLrsj" />
+    <result column="qgrq_lrry" jdbcType="VARCHAR" property="qgrqLrry" />
+    <result column="sfypz" jdbcType="CHAR" property="sfypz" />
+    <result column="xwxfdjs_beizhu" jdbcType="VARCHAR" property="xwxfdjsBeizhu" />
+    <result column="scfy_beizhu" jdbcType="VARCHAR" property="scfyBeizhu" />
+    <result column="xzz" jdbcType="VARCHAR" property="xzz" />
+    <result column="sfzg" jdbcType="VARCHAR" property="sfzg" />
+    <result column="zgxksj" jdbcType="TIMESTAMP" property="zgxksj" />
+    <result column="xklrsj" jdbcType="TIMESTAMP" property="xklrsj" />
+    <result column="zjbjh" jdbcType="VARCHAR" property="zjbjh" />
+    <result column="gzjysbsj" jdbcType="TIMESTAMP" property="gzjysbsj" />
+    <result column="jqsbwcsj" jdbcType="TIMESTAMP" property="jqsbwcsj" />
+    <result column="grab_out_time" jdbcType="TIMESTAMP" property="grabOutTime" />
+    <result column="grab_down_time" jdbcType="TIMESTAMP" property="grabDownTime" />
+    <result column="wlqryf" jdbcType="DECIMAL" property="wlqryf" />
+    <result column="wlzyjthsj" jdbcType="TIMESTAMP" property="wlzyjthsj" />
+    <result column="wlzyjthpc" jdbcType="VARCHAR" property="wlzyjthpc" />
+    <result column="yjxcsj" jdbcType="TIMESTAMP" property="yjxcsj" />
+    <result column="qcdl" jdbcType="VARCHAR" property="qcdl" />
+    <result column="dcthkhyqsdsj" jdbcType="TIMESTAMP" property="dcthkhyqsdsj" />
+    <result column="dcthwlzfksdsj" jdbcType="TIMESTAMP" property="dcthwlzfksdsj" />
+    <result column="jjnsc" jdbcType="VARCHAR" property="jjnsc" />
+    <result column="ydsdcl" jdbcType="VARCHAR" property="ydsdcl" />
+    <result column="dcsfyd_czsj" jdbcType="TIMESTAMP" property="dcsfydCzsj" />
+    <result column="bgid" jdbcType="VARCHAR" property="bgid" />
+    <result column="yjtgrq" jdbcType="TIMESTAMP" property="yjtgrq" />
+    <result column="yjtgrq_import_user" jdbcType="VARCHAR" property="yjtgrqImportUser" />
+    <result column="jhyap" jdbcType="VARCHAR" property="jhyap" />
+    <result column="jhyap_czsj" jdbcType="TIMESTAMP" property="jhyapCzsj" />
+    <result column="lxr_import_user" jdbcType="VARCHAR" property="lxrImportUser" />
+    <result column="qcdl_import_user" jdbcType="VARCHAR" property="qcdlImportUser" />
+    <result column="jjnsc_import_user" jdbcType="VARCHAR" property="jjnscImportUser" />
+    <result column="sfzg_import_user" jdbcType="VARCHAR" property="sfzgImportUser" />
+    <result column="khzbth_import_user" jdbcType="VARCHAR" property="khzbthImportUser" />
+    <result column="cgfxqfy_gd_import_user" jdbcType="VARCHAR" property="cgfxqfyGdImportUser" />
+    <result column="jjnscsj" jdbcType="TIMESTAMP" property="jjnscsj" />
+    <result column="gzryqr_lrsj" jdbcType="TIMESTAMP" property="gzryqrLrsj" />
+    <result column="xqrqksj_lrsj" jdbcType="TIMESTAMP" property="xqrqksjLrsj" />
+    <result column="qcbz" jdbcType="VARCHAR" property="qcbz" />
+    <result column="tch" jdbcType="NVARCHAR" property="tch" />
+    <result column="fxzt" jdbcType="NVARCHAR" property="fxzt" />
+    <result column="dqwz" jdbcType="NVARCHAR" property="dqwz" />
+    <result column="sfapth" jdbcType="NVARCHAR" property="sfapth" />
+    <result column="sfapthczsj" jdbcType="TIMESTAMP" property="sfapthczsj" />
+    <result column="yqthsj" jdbcType="TIMESTAMP" property="yqthsj" />
+    <result column="apth_bz" jdbcType="NVARCHAR" property="apthBz" />
+    <result column="xc2ccy_dy" jdbcType="NVARCHAR" property="xc2ccyDy" />
+    <result column="cph_dyc" jdbcType="NVARCHAR" property="cphDyc" />
+    <result column="khxqtcsj" jdbcType="TIMESTAMP" property="khxqtcsj" />
+    <result column="jhxgwlsj" jdbcType="TIMESTAMP" property="jhxgwlsj" />
+    <result column="jhdbjdl" jdbcType="VARCHAR" property="jhdbjdl" />
+    <result column="jhdbjdl_llsj" jdbcType="TIMESTAMP" property="jhdbjdlLlsj" />
+    <result column="wxpdy" jdbcType="VARCHAR" property="wxpdy" />
+    <result column="wlzyjthsj_llsj" jdbcType="TIMESTAMP" property="wlzyjthsjLlsj" />
+    <result column="yjyqsdsj" jdbcType="TIMESTAMP" property="yjyqsdsj" />
+    <result column="qrqk" jdbcType="NVARCHAR" property="qrqk" />
+    <result column="ecph" jdbcType="VARCHAR" property="ecph" />
+    <result column="wlzyjthpc_llsj" jdbcType="TIMESTAMP" property="wlzyjthpcLlsj" />
+    <result column="yjxcsj_llsj" jdbcType="TIMESTAMP" property="yjxcsjLlsj" />
+    <result column="yjtgrq_llsj" jdbcType="TIMESTAMP" property="yjtgrqLlsj" />
+    <result column="khxqtcsj_llsj" jdbcType="TIMESTAMP" property="khxqtcsjLlsj" />
+    <result column="mzsj" jdbcType="TIMESTAMP" property="mzsj" />
+    <result column="jjzt" jdbcType="VARCHAR" property="jjzt" />
+    <result column="sfxs" jdbcType="INTEGER" property="sfxs" />
+    <result column="xsbglj" jdbcType="NVARCHAR" property="xsbglj" />
+    <result column="xsgsmc" jdbcType="NVARCHAR" property="xsgsmc" />
+    <result column="xslxr" jdbcType="NVARCHAR" property="xslxr" />
+    <result column="xclxr" jdbcType="NVARCHAR" property="xclxr" />
+    <result column="czxxsftg" jdbcType="NVARCHAR" property="czxxsftg" />
+    <result column="xslx" jdbcType="NVARCHAR" property="xslx" />
+    <result column="hsjcbz" jdbcType="NVARCHAR" property="hsjcbz" />
+    <result column="fybz" jdbcType="NVARCHAR" property="fybz" />
+    <result column="wlpdsj" jdbcType="TIMESTAMP" property="wlpdsj" />
+    <result column="szsfxs" jdbcType="VARCHAR" property="szsfxs" />
+    <result column="sfhs" jdbcType="VARCHAR" property="sfhs" />
+    <result column="sfsjddc" jdbcType="NVARCHAR" property="sfsjddc" />
+    <result column="sfhssj" jdbcType="TIMESTAMP" property="sfhssj" />
+    <result column="zbgd" jdbcType="NVARCHAR" property="zbgd" />
+    <result column="zbgdrq" jdbcType="TIMESTAMP" property="zbgdrq" />
+    <result column="gzryhxqr_cxsj" jdbcType="TIMESTAMP" property="gzryhxqrCxsj" />
+    <result column="xsbgljsj" jdbcType="TIMESTAMP" property="xsbgljsj" />
+    <result column="sfdd" jdbcType="VARCHAR" property="sfdd" />
+    <result column="sfcyjzx" jdbcType="VARCHAR" property="sfcyjzx" />
+    <result column="gcsfcy" jdbcType="VARCHAR" property="gcsfcy" />
+    <result column="gcsfcy_czsj" jdbcType="TIMESTAMP" property="gcsfcyCzsj" />
+    <result column="szktsj" jdbcType="TIMESTAMP" property="szktsj" />
+    <result column="szkgsj" jdbcType="TIMESTAMP" property="szkgsj" />
+    <result column="szclfxsj" jdbcType="TIMESTAMP" property="szclfxsj" />
+    <result column="szcyyc" jdbcType="VARCHAR" property="szcyyc" />
+    <result column="szktsj_czry" jdbcType="VARCHAR" property="szktsjCzry" />
+    <result column="szktsj_czsj" jdbcType="TIMESTAMP" property="szktsjCzsj" />
+    <result column="szkgsj_czry" jdbcType="VARCHAR" property="szkgsjCzry" />
+    <result column="szkgsj_czsj" jdbcType="TIMESTAMP" property="szkgsjCzsj" />
+    <result column="szclfxsj_czry" jdbcType="VARCHAR" property="szclfxsjCzry" />
+    <result column="szclfxsj_czsj" jdbcType="TIMESTAMP" property="szclfxsjCzsj" />
+    <result column="gcsfcy_czry" jdbcType="VARCHAR" property="gcsfcyCzry" />
+    <result column="cyfybz" jdbcType="VARCHAR" property="cyfybz" />
+    <result column="gczl" jdbcType="VARCHAR" property="gczl" />
+    <result column="jhrq" jdbcType="TIMESTAMP" property="jhrq" />
+    <result column="cskhg" jdbcType="TIMESTAMP" property="cskhg" />
+    <result column="cszhg" jdbcType="TIMESTAMP" property="cszhg" />
+    <result column="cxghg" jdbcType="TIMESTAMP" property="cxghg" />
+    <result column="jcgzj" jdbcType="VARCHAR" property="jcgzj" />
+    <result column="jchxdc" jdbcType="VARCHAR" property="jchxdc" />
+    <result column="sdsj" jdbcType="TIMESTAMP" property="sdsj" />
+    <result column="sfylr" jdbcType="VARCHAR" property="sfylr" />
+    <result column="jhd" jdbcType="VARCHAR" property="jhd" />
+    <result column="ddsj" jdbcType="TIMESTAMP" property="ddsj" />
+    <result column="sffwdj" jdbcType="VARCHAR" property="sffwdj" />
+    <result column="sfwsttjsc" jdbcType="VARCHAR" property="sfwsttjsc" />
+    <result column="wlkthsj" jdbcType="TIMESTAMP" property="wlkthsj" />
+    <result column="sfwlkt" jdbcType="CHAR" property="sfwlkt" />
+    <result column="sfkhwlxq" jdbcType="CHAR" property="sfkhwlxq" />
+    <result column="zggtpc" jdbcType="VARCHAR" property="zggtpc" />
+    <result column="zgwlpdsj" jdbcType="TIMESTAMP" property="zgwlpdsj" />
+    <result column="kjzyme" jdbcType="CHAR" property="kjzyme" />
+    <result column="kjzymesj" jdbcType="TIMESTAMP" property="kjzymesj" />
+    <result column="cgzjsj" jdbcType="TIMESTAMP" property="cgzjsj" />
+    <result column="zgwlzyjtgsj" jdbcType="TIMESTAMP" property="zgwlzyjtgsj" />
+    <result column="cmyzhjbcsj" jdbcType="TIMESTAMP" property="cmyzhjbcsj" />
+    <result column="cjkjzydsj" jdbcType="TIMESTAMP" property="cjkjzydsj" />
+    <result column="kjzyddz" jdbcType="VARCHAR" property="kjzyddz" />
+    <result column="hxq" jdbcType="INTEGER" property="hxq" />
+    <result column="mtm_dui_q" jdbcType="INTEGER" property="mtmDuiQ" />
+    <result column="mtm_dian_q" jdbcType="INTEGER" property="mtmDianQ" />
+  </resultMap>
+  <sql id="Base_Column_List">
+    id, ywbh, cxh, ysfs, jzxh, xx, xl, sjshrbm, sjshrmc, shdz, zyxx, clfs, tpxx, htjhthsj, 
+    htjhthsj_lb, xcjhthsj, thjjcd, beizhu, gq_bz, gq_sj, gq_cp, gq_sjlxfs, gq_rwbh, gq_c_rwbh, 
+    hgcyd_bz, hgcyd_sj, hgcyd_cp, hgcyd_sjlxfs, hgcyd_rwbh, hgcyd_c_rwbh, jyd_bz, jyd_sj, 
+    jyd_cp, jyd_sjlxfs, jyd_bm, jyd_mc, jyd_jc, jyd_pym, jyd_rwbh, jyd_c_rwbh, zjfscwld_bz, 
+    zjfscwld_sfjsc, zjfscwld_sj, zjfscwld_cp, zjfscwld_sjlxfs, zjfscwld_shrbm, zjfscwld_shrmc, 
+    zjfscwld_zyxx, zjfscwld_rwbh, zjfscwld_c_rwbh, sc_bz, sc_sj, sc_cp, sc_sjlxfs, sc_bm, 
+    sc_mc, sc_jc, sc_pym, sc_lgfs, sc_rwbh, sc_c_rwbh, jschfscwld_bz, jschfscwld_sfjsc, 
+    jschfscwld_sj, jschfscwld_cp, jschfscwld_sjlxfs, jschfscwld_shrbm, jschfscwld_shrmc, 
+    jschfscwld_zyxx, jschfscwld_rwbh, jschfscwld_c_rwbh, fscwld3_bz, fscwld3_sfjsc, fscwld3_sj, 
+    fscwld3_cp, fscwld3_sjlxfs, fscwld3_shrbm, fscwld3_shrmc, fscwld3_zyxx, fscwld3_rwbh, 
+    fscwld3_c_rwbh, fscwld4_bz, fscwld4_sfjsc, fscwld4_sj, fscwld4_cp, fscwld4_sjlxfs, 
+    fscwld4_shrbm, fscwld4_shrmc, fscwld4_zyxx, fscwld4_rwbh, fscwld4_c_rwbh, dc_bz, 
+    dc_sj, dc_cp, dc_sjlxfs, dc_bm, dc_mc, dc_jc, dc_pym, dc_rwbh, sdxtdsj, fxgsbm, fxgsmc, 
+    fxgsjc, fxgspym, cgsfxdbm, cgsfxdmc, cgsfxdjc, cgsfxdpym, sbjjdh, fxdcbm, fxdcmc, 
+    fxdcjc, fxdcpym, gqjhsj, gqjhsj_lb, sjmc, cph, mtywclbz, ccsj, hdcsj, cgqsj, cydsj, 
+    cydbz, djydsj, tgjysj, jycydzt, kghcl, rscsj, khtzhxsj, xqrqksj, ccjhsj, cscsj, hxfs, 
+    jzxydgsj, jzxzscsj, jzxytzqksj, scbz, fscwl_ddsj, fscwl_lksj, fscwl2_ddsj, fscwl2_lksj, 
+    fscwl3_ddsj, fscwl3_lksj, fscwl4_ddsj, fscwl4_lksj, csbz, zhlx, lkjydsj, jydbz, yqfssj, 
+    sffsbz, sdxxsj, sfsdxxbz, sfyxcjh, sfsdfxhz, dcsfyd, hmtsj, dhxgssj, zybz, cqfje, 
+    cqjsbzrq, khjydzt, yfkdbh, sfyyfk, state, jsdwbm, jsdwmc, jsdwjc, jsdwpym, jsbm, 
+    jsdwqr, sfyjsbm, yscqfqr, yscqfje, yscqfqrrq, wlfyqr, wlfyqrrq, wlfyje, wlfylclfje, 
+    tjrq, tsycdzyjsje, yshdfygjbh, gjsj, gjcs, yshdfygjbh_cqf, gjsj_cqf, gjcs_cqf, lxr, 
+    lxdh, wxsffs_cqf, wllxqdrq, jssfwc, jswcsj, sflc, lxr2, lxdh2, lxr3, lxdh3, lxr4, 
+    lxdh4, kgsj, ssys, kghclsj, wllhzt, wllhsj, sqlhpc, lhbz, sqsj, cdbm, cdmc, cdjc, 
+    cdpym, fxsj, htjhthsj_sjd, htjhthscsj, cdjsdwbm, cdjsdwmc, cdjsdwjc, cdjsdwpym, contractcontainerid, 
+    jgqsj, cjydsj, dj, cgqsj_lrsj, djydsj_lrsj, tgjysj_lrsj, kgsj_lrsj, cgqsj_czry, djydsj_czry, 
+    tgjysj_czry, kgsj_czry, kghclsj_lrsj, kghclsj_czry, dzdd, zq_cgqsj, cjydsj_lrsj, 
+    cjydsj_czry, jdrjc, jdrmc, jdrbm, jdrpym, htjhthsj_lrsj, lrcx_qrbz, lrcx_qrrq, lrcx_bz, 
+    jzxlrcx_bz, xcsj, jzxlrcx_qrbz, jzxlrcx_qrrq, clsscd, lk_bz, khzdthsj, khzdthsj_lrsj, 
+    khzdthsj_czry, yqsdsj, shr, shrdh, ggsj, spxh, sggqbm, sggqmc, sggqjc, sggqpym, cqfcx_bz, 
+    sbjjd, sbjjd_lrry, sbjjd_lrsj, hz_sc, pdy, gjbeizhu, wlbgz, wlbgz_lrry, wlbgz_lrsj, 
+    lldh, ccrn, tgrq, qgrq, szjb, jhrq1, jgwq1, wlgz_state, wlgz_jjyy, sjzq_ccfs, sfzlc, 
+    ycbeizhu, zzhwsqh, zzqrsh, xfdysj, zzsdysj, lldh_lrsj, sjzq_cgqsj, htjhthsj_xgyy, 
+    khgtjl_beizhu, jsdwqr_ry, khmc, khjc, khpym, khbm, lrqr, qrry, ycyyrl, zdjk_kssj, 
+    zdjk_jssj, lc, lc_startTime, lc_endTime, kgyy, beizhu_ry, rlksj, gzryqr, khzbth, 
+    khzbth_qrsj, sfycb, sfyys, gzryqrry, cgqsj_xg, xcsj_xg, cgqsj_sz, xcsj_sz, gzryhxqr, 
+    gzryhxqrry, wlbz, zyxx_import_user, cwbz, AN_je_gb, AN_je_mj, mjhl, wlqrsj, fylr, 
+    hgfs, sjzq_jcfs, hgfs_zhm, hgfs_xgsj, cgfxqfy_gd, cgfxhfy_wl, jssqr, jsyy, js_start, 
+    qgrq_lrsj, qgrq_lrry, sfypz, xwxfdjs_beizhu, scfy_beizhu, xzz, sfzg, zgxksj, xklrsj, 
+    zjbjh, gzjysbsj, jqsbwcsj, grab_out_time, grab_down_time, wlqryf, wlzyjthsj, wlzyjthpc, 
+    yjxcsj, qcdl, dcthkhyqsdsj, dcthwlzfksdsj, jjnsc, ydsdcl, dcsfyd_czsj, bgid, yjtgrq, 
+    yjtgrq_import_user, jhyap, jhyap_czsj, lxr_import_user, qcdl_import_user, jjnsc_import_user, 
+    sfzg_import_user, khzbth_import_user, cgfxqfy_gd_import_user, jjnscsj, gzryqr_lrsj, 
+    xqrqksj_lrsj, qcbz, tch, fxzt, dqwz, sfapth, sfapthczsj, yqthsj, apth_bz, xc2ccy_dy, 
+    cph_dyc, khxqtcsj, jhxgwlsj, jhdbjdl, jhdbjdl_llsj, wxpdy, wlzyjthsj_llsj, yjyqsdsj, 
+    qrqk, ecph, wlzyjthpc_llsj, yjxcsj_llsj, yjtgrq_llsj, khxqtcsj_llsj, mzsj, jjzt, 
+    sfxs, xsbglj, xsgsmc, xslxr, xclxr, czxxsftg, xslx, hsjcbz, fybz, wlpdsj, szsfxs, 
+    sfhs, sfsjddc, sfhssj, zbgd, zbgdrq, gzryhxqr_cxsj, xsbgljsj, sfdd, sfcyjzx, gcsfcy, 
+    gcsfcy_czsj, szktsj, szkgsj, szclfxsj, szcyyc, szktsj_czry, szktsj_czsj, szkgsj_czry, 
+    szkgsj_czsj, szclfxsj_czry, szclfxsj_czsj, gcsfcy_czry, cyfybz, gczl, jhrq, cskhg, 
+    cszhg, cxghg, jcgzj, jchxdc, sdsj, sfylr, jhd, ddsj, sffwdj, sfwsttjsc, wlkthsj, 
+    sfwlkt, sfkhwlxq, zggtpc, zgwlpdsj, kjzyme, kjzymesj, cgzjsj, zgwlzyjtgsj, cmyzhjbcsj, 
+    cjkjzydsj, kjzyddz, hxq, mtm_dui_q, mtm_dian_q
+  </sql>
+  <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
+    select 
+    <include refid="Base_Column_List" />
+    from yw_hddz_jzxxx
+    where id = #{id,jdbcType=INTEGER}
+  </select>
+  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
+    delete from yw_hddz_jzxxx
+    where id = #{id,jdbcType=INTEGER}
+  </delete>
+  <insert id="insert" parameterType="com.freshport.entity.YwHddzJzxxx">
+    insert into yw_hddz_jzxxx (id, ywbh, cxh, 
+      ysfs, jzxh, xx, xl, 
+      sjshrbm, sjshrmc, shdz, 
+      zyxx, clfs, tpxx, htjhthsj, 
+      htjhthsj_lb, xcjhthsj, thjjcd, 
+      beizhu, gq_bz, gq_sj, 
+      gq_cp, gq_sjlxfs, gq_rwbh, 
+      gq_c_rwbh, hgcyd_bz, hgcyd_sj, 
+      hgcyd_cp, hgcyd_sjlxfs, hgcyd_rwbh, 
+      hgcyd_c_rwbh, jyd_bz, jyd_sj, 
+      jyd_cp, jyd_sjlxfs, jyd_bm, 
+      jyd_mc, jyd_jc, jyd_pym, 
+      jyd_rwbh, jyd_c_rwbh, zjfscwld_bz, 
+      zjfscwld_sfjsc, zjfscwld_sj, zjfscwld_cp, 
+      zjfscwld_sjlxfs, zjfscwld_shrbm, zjfscwld_shrmc, 
+      zjfscwld_zyxx, zjfscwld_rwbh, zjfscwld_c_rwbh, 
+      sc_bz, sc_sj, sc_cp, sc_sjlxfs, 
+      sc_bm, sc_mc, sc_jc, sc_pym, 
+      sc_lgfs, sc_rwbh, sc_c_rwbh, 
+      jschfscwld_bz, jschfscwld_sfjsc, jschfscwld_sj, 
+      jschfscwld_cp, jschfscwld_sjlxfs, jschfscwld_shrbm, 
+      jschfscwld_shrmc, jschfscwld_zyxx, jschfscwld_rwbh, 
+      jschfscwld_c_rwbh, fscwld3_bz, fscwld3_sfjsc, 
+      fscwld3_sj, fscwld3_cp, fscwld3_sjlxfs, 
+      fscwld3_shrbm, fscwld3_shrmc, fscwld3_zyxx, 
+      fscwld3_rwbh, fscwld3_c_rwbh, fscwld4_bz, 
+      fscwld4_sfjsc, fscwld4_sj, fscwld4_cp, 
+      fscwld4_sjlxfs, fscwld4_shrbm, fscwld4_shrmc, 
+      fscwld4_zyxx, fscwld4_rwbh, fscwld4_c_rwbh, 
+      dc_bz, dc_sj, dc_cp, dc_sjlxfs, 
+      dc_bm, dc_mc, dc_jc, dc_pym, 
+      dc_rwbh, sdxtdsj, fxgsbm, 
+      fxgsmc, fxgsjc, fxgspym, 
+      cgsfxdbm, cgsfxdmc, cgsfxdjc, 
+      cgsfxdpym, sbjjdh, fxdcbm, 
+      fxdcmc, fxdcjc, fxdcpym, 
+      gqjhsj, gqjhsj_lb, sjmc, 
+      cph, mtywclbz, ccsj, 
+      hdcsj, cgqsj, cydsj, 
+      cydbz, djydsj, tgjysj, 
+      jycydzt, kghcl, rscsj, 
+      khtzhxsj, xqrqksj, ccjhsj, 
+      cscsj, hxfs, jzxydgsj, 
+      jzxzscsj, jzxytzqksj, scbz, 
+      fscwl_ddsj, fscwl_lksj, fscwl2_ddsj, 
+      fscwl2_lksj, fscwl3_ddsj, fscwl3_lksj, 
+      fscwl4_ddsj, fscwl4_lksj, csbz, 
+      zhlx, lkjydsj, jydbz, 
+      yqfssj, sffsbz, sdxxsj, 
+      sfsdxxbz, sfyxcjh, sfsdfxhz, 
+      dcsfyd, hmtsj, dhxgssj, 
+      zybz, cqfje, cqjsbzrq, 
+      khjydzt, yfkdbh, sfyyfk, 
+      state, jsdwbm, jsdwmc, 
+      jsdwjc, jsdwpym, jsbm, 
+      jsdwqr, sfyjsbm, yscqfqr, 
+      yscqfje, yscqfqrrq, wlfyqr, 
+      wlfyqrrq, wlfyje, wlfylclfje, 
+      tjrq, tsycdzyjsje, yshdfygjbh, 
+      gjsj, gjcs, yshdfygjbh_cqf, 
+      gjsj_cqf, gjcs_cqf, lxr, 
+      lxdh, wxsffs_cqf, wllxqdrq, 
+      jssfwc, jswcsj, sflc, 
+      lxr2, lxdh2, lxr3, 
+      lxdh3, lxr4, lxdh4, 
+      kgsj, ssys, kghclsj, 
+      wllhzt, wllhsj, sqlhpc, 
+      lhbz, sqsj, cdbm, 
+      cdmc, cdjc, cdpym, 
+      fxsj, htjhthsj_sjd, htjhthscsj, 
+      cdjsdwbm, cdjsdwmc, cdjsdwjc, 
+      cdjsdwpym, contractcontainerid, jgqsj, 
+      cjydsj, dj, cgqsj_lrsj, 
+      djydsj_lrsj, tgjysj_lrsj, kgsj_lrsj, 
+      cgqsj_czry, djydsj_czry, tgjysj_czry, 
+      kgsj_czry, kghclsj_lrsj, kghclsj_czry, 
+      dzdd, zq_cgqsj, cjydsj_lrsj, 
+      cjydsj_czry, jdrjc, jdrmc, 
+      jdrbm, jdrpym, htjhthsj_lrsj, 
+      lrcx_qrbz, lrcx_qrrq, lrcx_bz, 
+      jzxlrcx_bz, xcsj, jzxlrcx_qrbz, 
+      jzxlrcx_qrrq, clsscd, lk_bz, 
+      khzdthsj, khzdthsj_lrsj, khzdthsj_czry, 
+      yqsdsj, shr, shrdh, 
+      ggsj, spxh, sggqbm, 
+      sggqmc, sggqjc, sggqpym, 
+      cqfcx_bz, sbjjd, sbjjd_lrry, 
+      sbjjd_lrsj, hz_sc, pdy, 
+      gjbeizhu, wlbgz, wlbgz_lrry, 
+      wlbgz_lrsj, lldh, ccrn, 
+      tgrq, qgrq, szjb, 
+      jhrq1, jgwq1, wlgz_state, 
+      wlgz_jjyy, sjzq_ccfs, sfzlc, 
+      ycbeizhu, zzhwsqh, zzqrsh, 
+      xfdysj, zzsdysj, lldh_lrsj, 
+      sjzq_cgqsj, htjhthsj_xgyy, khgtjl_beizhu, 
+      jsdwqr_ry, khmc, khjc, 
+      khpym, khbm, lrqr, qrry, 
+      ycyyrl, zdjk_kssj, zdjk_jssj, 
+      lc, lc_startTime, lc_endTime, 
+      kgyy, beizhu_ry, rlksj, 
+      gzryqr, khzbth, khzbth_qrsj, 
+      sfycb, sfyys, gzryqrry, cgqsj_xg, 
+      xcsj_xg, cgqsj_sz, xcsj_sz, 
+      gzryhxqr, gzryhxqrry, wlbz, 
+      zyxx_import_user, cwbz, AN_je_gb, 
+      AN_je_mj, mjhl, wlqrsj, 
+      fylr, hgfs, sjzq_jcfs, 
+      hgfs_zhm, hgfs_xgsj, cgfxqfy_gd, 
+      cgfxhfy_wl, jssqr, jsyy, 
+      js_start, qgrq_lrsj, qgrq_lrry, 
+      sfypz, xwxfdjs_beizhu, scfy_beizhu, 
+      xzz, sfzg, zgxksj, 
+      xklrsj, zjbjh, gzjysbsj, 
+      jqsbwcsj, grab_out_time, grab_down_time, 
+      wlqryf, wlzyjthsj, wlzyjthpc, 
+      yjxcsj, qcdl, dcthkhyqsdsj, 
+      dcthwlzfksdsj, jjnsc, ydsdcl, 
+      dcsfyd_czsj, bgid, yjtgrq, 
+      yjtgrq_import_user, jhyap, jhyap_czsj, 
+      lxr_import_user, qcdl_import_user, jjnsc_import_user, 
+      sfzg_import_user, khzbth_import_user, cgfxqfy_gd_import_user, 
+      jjnscsj, gzryqr_lrsj, xqrqksj_lrsj, 
+      qcbz, tch, fxzt, 
+      dqwz, sfapth, sfapthczsj, 
+      yqthsj, apth_bz, xc2ccy_dy, 
+      cph_dyc, khxqtcsj, jhxgwlsj, 
+      jhdbjdl, jhdbjdl_llsj, wxpdy, 
+      wlzyjthsj_llsj, yjyqsdsj, qrqk, 
+      ecph, wlzyjthpc_llsj, yjxcsj_llsj, 
+      yjtgrq_llsj, khxqtcsj_llsj, mzsj, 
+      jjzt, sfxs, xsbglj, 
+      xsgsmc, xslxr, xclxr, 
+      czxxsftg, xslx, hsjcbz, 
+      fybz, wlpdsj, szsfxs, 
+      sfhs, sfsjddc, sfhssj, 
+      zbgd, zbgdrq, gzryhxqr_cxsj, 
+      xsbgljsj, sfdd, sfcyjzx, 
+      gcsfcy, gcsfcy_czsj, szktsj, 
+      szkgsj, szclfxsj, szcyyc, 
+      szktsj_czry, szktsj_czsj, szkgsj_czry, 
+      szkgsj_czsj, szclfxsj_czry, szclfxsj_czsj, 
+      gcsfcy_czry, cyfybz, gczl, 
+      jhrq, cskhg, cszhg, 
+      cxghg, jcgzj, jchxdc, 
+      sdsj, sfylr, jhd, 
+      ddsj, sffwdj, sfwsttjsc, 
+      wlkthsj, sfwlkt, sfkhwlxq, 
+      zggtpc, zgwlpdsj, kjzyme, 
+      kjzymesj, cgzjsj, zgwlzyjtgsj, 
+      cmyzhjbcsj, cjkjzydsj, kjzyddz, 
+      hxq, mtm_dui_q, mtm_dian_q
+      )
+    values (#{id,jdbcType=INTEGER}, #{ywbh,jdbcType=VARCHAR}, #{cxh,jdbcType=INTEGER}, 
+      #{ysfs,jdbcType=VARCHAR}, #{jzxh,jdbcType=VARCHAR}, #{xx,jdbcType=VARCHAR}, #{xl,jdbcType=VARCHAR}, 
+      #{sjshrbm,jdbcType=VARCHAR}, #{sjshrmc,jdbcType=VARCHAR}, #{shdz,jdbcType=VARCHAR}, 
+      #{zyxx,jdbcType=VARCHAR}, #{clfs,jdbcType=VARCHAR}, #{tpxx,jdbcType=INTEGER}, #{htjhthsj,jdbcType=TIMESTAMP}, 
+      #{htjhthsjLb,jdbcType=VARCHAR}, #{xcjhthsj,jdbcType=TIMESTAMP}, #{thjjcd,jdbcType=VARCHAR}, 
+      #{beizhu,jdbcType=VARCHAR}, #{gqBz,jdbcType=VARCHAR}, #{gqSj,jdbcType=VARCHAR}, 
+      #{gqCp,jdbcType=VARCHAR}, #{gqSjlxfs,jdbcType=VARCHAR}, #{gqRwbh,jdbcType=VARCHAR}, 
+      #{gqCRwbh,jdbcType=VARCHAR}, #{hgcydBz,jdbcType=VARCHAR}, #{hgcydSj,jdbcType=VARCHAR}, 
+      #{hgcydCp,jdbcType=VARCHAR}, #{hgcydSjlxfs,jdbcType=VARCHAR}, #{hgcydRwbh,jdbcType=VARCHAR}, 
+      #{hgcydCRwbh,jdbcType=VARCHAR}, #{jydBz,jdbcType=VARCHAR}, #{jydSj,jdbcType=VARCHAR}, 
+      #{jydCp,jdbcType=VARCHAR}, #{jydSjlxfs,jdbcType=VARCHAR}, #{jydBm,jdbcType=VARCHAR}, 
+      #{jydMc,jdbcType=VARCHAR}, #{jydJc,jdbcType=VARCHAR}, #{jydPym,jdbcType=VARCHAR}, 
+      #{jydRwbh,jdbcType=VARCHAR}, #{jydCRwbh,jdbcType=VARCHAR}, #{zjfscwldBz,jdbcType=VARCHAR}, 
+      #{zjfscwldSfjsc,jdbcType=VARCHAR}, #{zjfscwldSj,jdbcType=VARCHAR}, #{zjfscwldCp,jdbcType=VARCHAR}, 
+      #{zjfscwldSjlxfs,jdbcType=VARCHAR}, #{zjfscwldShrbm,jdbcType=VARCHAR}, #{zjfscwldShrmc,jdbcType=VARCHAR}, 
+      #{zjfscwldZyxx,jdbcType=VARCHAR}, #{zjfscwldRwbh,jdbcType=VARCHAR}, #{zjfscwldCRwbh,jdbcType=VARCHAR}, 
+      #{scBz,jdbcType=VARCHAR}, #{scSj,jdbcType=VARCHAR}, #{scCp,jdbcType=VARCHAR}, #{scSjlxfs,jdbcType=VARCHAR}, 
+      #{scBm,jdbcType=VARCHAR}, #{scMc,jdbcType=VARCHAR}, #{scJc,jdbcType=VARCHAR}, #{scPym,jdbcType=VARCHAR}, 
+      #{scLgfs,jdbcType=VARCHAR}, #{scRwbh,jdbcType=VARCHAR}, #{scCRwbh,jdbcType=VARCHAR}, 
+      #{jschfscwldBz,jdbcType=VARCHAR}, #{jschfscwldSfjsc,jdbcType=VARCHAR}, #{jschfscwldSj,jdbcType=VARCHAR}, 
+      #{jschfscwldCp,jdbcType=VARCHAR}, #{jschfscwldSjlxfs,jdbcType=VARCHAR}, #{jschfscwldShrbm,jdbcType=VARCHAR}, 
+      #{jschfscwldShrmc,jdbcType=VARCHAR}, #{jschfscwldZyxx,jdbcType=VARCHAR}, #{jschfscwldRwbh,jdbcType=VARCHAR}, 
+      #{jschfscwldCRwbh,jdbcType=VARCHAR}, #{fscwld3Bz,jdbcType=VARCHAR}, #{fscwld3Sfjsc,jdbcType=VARCHAR}, 
+      #{fscwld3Sj,jdbcType=VARCHAR}, #{fscwld3Cp,jdbcType=VARCHAR}, #{fscwld3Sjlxfs,jdbcType=VARCHAR}, 
+      #{fscwld3Shrbm,jdbcType=VARCHAR}, #{fscwld3Shrmc,jdbcType=VARCHAR}, #{fscwld3Zyxx,jdbcType=VARCHAR}, 
+      #{fscwld3Rwbh,jdbcType=VARCHAR}, #{fscwld3CRwbh,jdbcType=VARCHAR}, #{fscwld4Bz,jdbcType=VARCHAR}, 
+      #{fscwld4Sfjsc,jdbcType=VARCHAR}, #{fscwld4Sj,jdbcType=VARCHAR}, #{fscwld4Cp,jdbcType=VARCHAR}, 
+      #{fscwld4Sjlxfs,jdbcType=VARCHAR}, #{fscwld4Shrbm,jdbcType=VARCHAR}, #{fscwld4Shrmc,jdbcType=VARCHAR}, 
+      #{fscwld4Zyxx,jdbcType=VARCHAR}, #{fscwld4Rwbh,jdbcType=VARCHAR}, #{fscwld4CRwbh,jdbcType=VARCHAR}, 
+      #{dcBz,jdbcType=VARCHAR}, #{dcSj,jdbcType=VARCHAR}, #{dcCp,jdbcType=VARCHAR}, #{dcSjlxfs,jdbcType=VARCHAR}, 
+      #{dcBm,jdbcType=VARCHAR}, #{dcMc,jdbcType=VARCHAR}, #{dcJc,jdbcType=VARCHAR}, #{dcPym,jdbcType=VARCHAR}, 
+      #{dcRwbh,jdbcType=VARCHAR}, #{sdxtdsj,jdbcType=TIMESTAMP}, #{fxgsbm,jdbcType=VARCHAR}, 
+      #{fxgsmc,jdbcType=VARCHAR}, #{fxgsjc,jdbcType=VARCHAR}, #{fxgspym,jdbcType=VARCHAR}, 
+      #{cgsfxdbm,jdbcType=VARCHAR}, #{cgsfxdmc,jdbcType=VARCHAR}, #{cgsfxdjc,jdbcType=VARCHAR}, 
+      #{cgsfxdpym,jdbcType=VARCHAR}, #{sbjjdh,jdbcType=VARCHAR}, #{fxdcbm,jdbcType=VARCHAR}, 
+      #{fxdcmc,jdbcType=VARCHAR}, #{fxdcjc,jdbcType=VARCHAR}, #{fxdcpym,jdbcType=VARCHAR}, 
+      #{gqjhsj,jdbcType=TIMESTAMP}, #{gqjhsjLb,jdbcType=VARCHAR}, #{sjmc,jdbcType=VARCHAR}, 
+      #{cph,jdbcType=VARCHAR}, #{mtywclbz,jdbcType=VARCHAR}, #{ccsj,jdbcType=TIMESTAMP}, 
+      #{hdcsj,jdbcType=TIMESTAMP}, #{cgqsj,jdbcType=TIMESTAMP}, #{cydsj,jdbcType=TIMESTAMP}, 
+      #{cydbz,jdbcType=VARCHAR}, #{djydsj,jdbcType=TIMESTAMP}, #{tgjysj,jdbcType=TIMESTAMP}, 
+      #{jycydzt,jdbcType=VARCHAR}, #{kghcl,jdbcType=VARCHAR}, #{rscsj,jdbcType=TIMESTAMP}, 
+      #{khtzhxsj,jdbcType=TIMESTAMP}, #{xqrqksj,jdbcType=TIMESTAMP}, #{ccjhsj,jdbcType=TIMESTAMP}, 
+      #{cscsj,jdbcType=TIMESTAMP}, #{hxfs,jdbcType=VARCHAR}, #{jzxydgsj,jdbcType=TIMESTAMP}, 
+      #{jzxzscsj,jdbcType=TIMESTAMP}, #{jzxytzqksj,jdbcType=TIMESTAMP}, #{scbz,jdbcType=VARCHAR}, 
+      #{fscwlDdsj,jdbcType=TIMESTAMP}, #{fscwlLksj,jdbcType=TIMESTAMP}, #{fscwl2Ddsj,jdbcType=TIMESTAMP}, 
+      #{fscwl2Lksj,jdbcType=TIMESTAMP}, #{fscwl3Ddsj,jdbcType=TIMESTAMP}, #{fscwl3Lksj,jdbcType=TIMESTAMP}, 
+      #{fscwl4Ddsj,jdbcType=TIMESTAMP}, #{fscwl4Lksj,jdbcType=TIMESTAMP}, #{csbz,jdbcType=VARCHAR}, 
+      #{zhlx,jdbcType=VARCHAR}, #{lkjydsj,jdbcType=TIMESTAMP}, #{jydbz,jdbcType=VARCHAR}, 
+      #{yqfssj,jdbcType=TIMESTAMP}, #{sffsbz,jdbcType=VARCHAR}, #{sdxxsj,jdbcType=TIMESTAMP}, 
+      #{sfsdxxbz,jdbcType=VARCHAR}, #{sfyxcjh,jdbcType=VARCHAR}, #{sfsdfxhz,jdbcType=VARCHAR}, 
+      #{dcsfyd,jdbcType=VARCHAR}, #{hmtsj,jdbcType=TIMESTAMP}, #{dhxgssj,jdbcType=TIMESTAMP}, 
+      #{zybz,jdbcType=VARCHAR}, #{cqfje,jdbcType=DECIMAL}, #{cqjsbzrq,jdbcType=TIMESTAMP}, 
+      #{khjydzt,jdbcType=VARCHAR}, #{yfkdbh,jdbcType=VARCHAR}, #{sfyyfk,jdbcType=VARCHAR}, 
+      #{state,jdbcType=VARCHAR}, #{jsdwbm,jdbcType=VARCHAR}, #{jsdwmc,jdbcType=VARCHAR}, 
+      #{jsdwjc,jdbcType=VARCHAR}, #{jsdwpym,jdbcType=VARCHAR}, #{jsbm,jdbcType=VARCHAR}, 
+      #{jsdwqr,jdbcType=VARCHAR}, #{sfyjsbm,jdbcType=VARCHAR}, #{yscqfqr,jdbcType=VARCHAR}, 
+      #{yscqfje,jdbcType=NUMERIC}, #{yscqfqrrq,jdbcType=TIMESTAMP}, #{wlfyqr,jdbcType=VARCHAR}, 
+      #{wlfyqrrq,jdbcType=TIMESTAMP}, #{wlfyje,jdbcType=NUMERIC}, #{wlfylclfje,jdbcType=NUMERIC}, 
+      #{tjrq,jdbcType=TIMESTAMP}, #{tsycdzyjsje,jdbcType=NUMERIC}, #{yshdfygjbh,jdbcType=VARCHAR}, 
+      #{gjsj,jdbcType=TIMESTAMP}, #{gjcs,jdbcType=INTEGER}, #{yshdfygjbhCqf,jdbcType=VARCHAR}, 
+      #{gjsjCqf,jdbcType=TIMESTAMP}, #{gjcsCqf,jdbcType=INTEGER}, #{lxr,jdbcType=VARCHAR}, 
+      #{lxdh,jdbcType=VARCHAR}, #{wxsffsCqf,jdbcType=VARCHAR}, #{wllxqdrq,jdbcType=TIMESTAMP}, 
+      #{jssfwc,jdbcType=VARCHAR}, #{jswcsj,jdbcType=TIMESTAMP}, #{sflc,jdbcType=VARCHAR}, 
+      #{lxr2,jdbcType=VARCHAR}, #{lxdh2,jdbcType=VARCHAR}, #{lxr3,jdbcType=VARCHAR}, 
+      #{lxdh3,jdbcType=VARCHAR}, #{lxr4,jdbcType=VARCHAR}, #{lxdh4,jdbcType=VARCHAR}, 
+      #{kgsj,jdbcType=TIMESTAMP}, #{ssys,jdbcType=VARCHAR}, #{kghclsj,jdbcType=TIMESTAMP}, 
+      #{wllhzt,jdbcType=VARCHAR}, #{wllhsj,jdbcType=TIMESTAMP}, #{sqlhpc,jdbcType=VARCHAR}, 
+      #{lhbz,jdbcType=VARCHAR}, #{sqsj,jdbcType=TIMESTAMP}, #{cdbm,jdbcType=VARCHAR}, 
+      #{cdmc,jdbcType=VARCHAR}, #{cdjc,jdbcType=VARCHAR}, #{cdpym,jdbcType=VARCHAR}, 
+      #{fxsj,jdbcType=TIMESTAMP}, #{htjhthsjSjd,jdbcType=VARCHAR}, #{htjhthscsj,jdbcType=TIMESTAMP}, 
+      #{cdjsdwbm,jdbcType=VARCHAR}, #{cdjsdwmc,jdbcType=VARCHAR}, #{cdjsdwjc,jdbcType=VARCHAR}, 
+      #{cdjsdwpym,jdbcType=VARCHAR}, #{contractcontainerid,jdbcType=VARCHAR}, #{jgqsj,jdbcType=TIMESTAMP}, 
+      #{cjydsj,jdbcType=TIMESTAMP}, #{dj,jdbcType=VARCHAR}, #{cgqsjLrsj,jdbcType=TIMESTAMP}, 
+      #{djydsjLrsj,jdbcType=TIMESTAMP}, #{tgjysjLrsj,jdbcType=TIMESTAMP}, #{kgsjLrsj,jdbcType=TIMESTAMP}, 
+      #{cgqsjCzry,jdbcType=VARCHAR}, #{djydsjCzry,jdbcType=VARCHAR}, #{tgjysjCzry,jdbcType=VARCHAR}, 
+      #{kgsjCzry,jdbcType=VARCHAR}, #{kghclsjLrsj,jdbcType=TIMESTAMP}, #{kghclsjCzry,jdbcType=VARCHAR}, 
+      #{dzdd,jdbcType=VARCHAR}, #{zqCgqsj,jdbcType=TIMESTAMP}, #{cjydsjLrsj,jdbcType=TIMESTAMP}, 
+      #{cjydsjCzry,jdbcType=VARCHAR}, #{jdrjc,jdbcType=VARCHAR}, #{jdrmc,jdbcType=VARCHAR}, 
+      #{jdrbm,jdbcType=VARCHAR}, #{jdrpym,jdbcType=VARCHAR}, #{htjhthsjLrsj,jdbcType=TIMESTAMP}, 
+      #{lrcxQrbz,jdbcType=VARCHAR}, #{lrcxQrrq,jdbcType=TIMESTAMP}, #{lrcxBz,jdbcType=VARCHAR}, 
+      #{jzxlrcxBz,jdbcType=VARCHAR}, #{xcsj,jdbcType=TIMESTAMP}, #{jzxlrcxQrbz,jdbcType=VARCHAR}, 
+      #{jzxlrcxQrrq,jdbcType=TIMESTAMP}, #{clsscd,jdbcType=VARCHAR}, #{lkBz,jdbcType=VARCHAR}, 
+      #{khzdthsj,jdbcType=TIMESTAMP}, #{khzdthsjLrsj,jdbcType=TIMESTAMP}, #{khzdthsjCzry,jdbcType=VARCHAR}, 
+      #{yqsdsj,jdbcType=TIMESTAMP}, #{shr,jdbcType=VARCHAR}, #{shrdh,jdbcType=VARCHAR}, 
+      #{ggsj,jdbcType=TIMESTAMP}, #{spxh,jdbcType=VARCHAR}, #{sggqbm,jdbcType=VARCHAR}, 
+      #{sggqmc,jdbcType=VARCHAR}, #{sggqjc,jdbcType=VARCHAR}, #{sggqpym,jdbcType=VARCHAR}, 
+      #{cqfcxBz,jdbcType=VARCHAR}, #{sbjjd,jdbcType=CHAR}, #{sbjjdLrry,jdbcType=VARCHAR}, 
+      #{sbjjdLrsj,jdbcType=TIMESTAMP}, #{hzSc,jdbcType=VARCHAR}, #{pdy,jdbcType=VARCHAR}, 
+      #{gjbeizhu,jdbcType=VARCHAR}, #{wlbgz,jdbcType=VARCHAR}, #{wlbgzLrry,jdbcType=VARCHAR}, 
+      #{wlbgzLrsj,jdbcType=TIMESTAMP}, #{lldh,jdbcType=VARCHAR}, #{ccrn,jdbcType=VARCHAR}, 
+      #{tgrq,jdbcType=TIMESTAMP}, #{qgrq,jdbcType=TIMESTAMP}, #{szjb,jdbcType=VARCHAR}, 
+      #{jhrq1,jdbcType=TIMESTAMP}, #{jgwq1,jdbcType=TIMESTAMP}, #{wlgzState,jdbcType=VARCHAR}, 
+      #{wlgzJjyy,jdbcType=VARCHAR}, #{sjzqCcfs,jdbcType=VARCHAR}, #{sfzlc,jdbcType=CHAR}, 
+      #{ycbeizhu,jdbcType=VARCHAR}, #{zzhwsqh,jdbcType=VARCHAR}, #{zzqrsh,jdbcType=VARCHAR}, 
+      #{xfdysj,jdbcType=TIMESTAMP}, #{zzsdysj,jdbcType=TIMESTAMP}, #{lldhLrsj,jdbcType=TIMESTAMP}, 
+      #{sjzqCgqsj,jdbcType=TIMESTAMP}, #{htjhthsjXgyy,jdbcType=VARCHAR}, #{khgtjlBeizhu,jdbcType=VARCHAR}, 
+      #{jsdwqrRy,jdbcType=VARCHAR}, #{khmc,jdbcType=VARCHAR}, #{khjc,jdbcType=VARCHAR}, 
+      #{khpym,jdbcType=VARCHAR}, #{khbm,jdbcType=VARCHAR}, #{lrqr,jdbcType=CHAR}, #{qrry,jdbcType=VARCHAR}, 
+      #{ycyyrl,jdbcType=VARCHAR}, #{zdjkKssj,jdbcType=TIMESTAMP}, #{zdjkJssj,jdbcType=TIMESTAMP}, 
+      #{lc,jdbcType=CHAR}, #{lcStarttime,jdbcType=TIMESTAMP}, #{lcEndtime,jdbcType=TIMESTAMP}, 
+      #{kgyy,jdbcType=VARCHAR}, #{beizhuRy,jdbcType=VARCHAR}, #{rlksj,jdbcType=TIMESTAMP}, 
+      #{gzryqr,jdbcType=CHAR}, #{khzbth,jdbcType=CHAR}, #{khzbthQrsj,jdbcType=TIMESTAMP}, 
+      #{sfycb,jdbcType=CHAR}, #{sfyys,jdbcType=CHAR}, #{gzryqrry,jdbcType=VARCHAR}, #{cgqsjXg,jdbcType=TIMESTAMP}, 
+      #{xcsjXg,jdbcType=TIMESTAMP}, #{cgqsjSz,jdbcType=TIMESTAMP}, #{xcsjSz,jdbcType=TIMESTAMP}, 
+      #{gzryhxqr,jdbcType=CHAR}, #{gzryhxqrry,jdbcType=CHAR}, #{wlbz,jdbcType=VARCHAR}, 
+      #{zyxxImportUser,jdbcType=VARCHAR}, #{cwbz,jdbcType=VARCHAR}, #{anJeGb,jdbcType=DOUBLE}, 
+      #{anJeMj,jdbcType=DOUBLE}, #{mjhl,jdbcType=DOUBLE}, #{wlqrsj,jdbcType=TIMESTAMP}, 
+      #{fylr,jdbcType=DECIMAL}, #{hgfs,jdbcType=VARCHAR}, #{sjzqJcfs,jdbcType=VARCHAR}, 
+      #{hgfsZhm,jdbcType=VARCHAR}, #{hgfsXgsj,jdbcType=TIMESTAMP}, #{cgfxqfyGd,jdbcType=VARCHAR}, 
+      #{cgfxhfyWl,jdbcType=VARCHAR}, #{jssqr,jdbcType=VARCHAR}, #{jsyy,jdbcType=VARCHAR}, 
+      #{jsStart,jdbcType=CHAR}, #{qgrqLrsj,jdbcType=TIMESTAMP}, #{qgrqLrry,jdbcType=VARCHAR}, 
+      #{sfypz,jdbcType=CHAR}, #{xwxfdjsBeizhu,jdbcType=VARCHAR}, #{scfyBeizhu,jdbcType=VARCHAR}, 
+      #{xzz,jdbcType=VARCHAR}, #{sfzg,jdbcType=VARCHAR}, #{zgxksj,jdbcType=TIMESTAMP}, 
+      #{xklrsj,jdbcType=TIMESTAMP}, #{zjbjh,jdbcType=VARCHAR}, #{gzjysbsj,jdbcType=TIMESTAMP}, 
+      #{jqsbwcsj,jdbcType=TIMESTAMP}, #{grabOutTime,jdbcType=TIMESTAMP}, #{grabDownTime,jdbcType=TIMESTAMP}, 
+      #{wlqryf,jdbcType=DECIMAL}, #{wlzyjthsj,jdbcType=TIMESTAMP}, #{wlzyjthpc,jdbcType=VARCHAR}, 
+      #{yjxcsj,jdbcType=TIMESTAMP}, #{qcdl,jdbcType=VARCHAR}, #{dcthkhyqsdsj,jdbcType=TIMESTAMP}, 
+      #{dcthwlzfksdsj,jdbcType=TIMESTAMP}, #{jjnsc,jdbcType=VARCHAR}, #{ydsdcl,jdbcType=VARCHAR}, 
+      #{dcsfydCzsj,jdbcType=TIMESTAMP}, #{bgid,jdbcType=VARCHAR}, #{yjtgrq,jdbcType=TIMESTAMP}, 
+      #{yjtgrqImportUser,jdbcType=VARCHAR}, #{jhyap,jdbcType=VARCHAR}, #{jhyapCzsj,jdbcType=TIMESTAMP}, 
+      #{lxrImportUser,jdbcType=VARCHAR}, #{qcdlImportUser,jdbcType=VARCHAR}, #{jjnscImportUser,jdbcType=VARCHAR}, 
+      #{sfzgImportUser,jdbcType=VARCHAR}, #{khzbthImportUser,jdbcType=VARCHAR}, #{cgfxqfyGdImportUser,jdbcType=VARCHAR}, 
+      #{jjnscsj,jdbcType=TIMESTAMP}, #{gzryqrLrsj,jdbcType=TIMESTAMP}, #{xqrqksjLrsj,jdbcType=TIMESTAMP}, 
+      #{qcbz,jdbcType=VARCHAR}, #{tch,jdbcType=NVARCHAR}, #{fxzt,jdbcType=NVARCHAR}, 
+      #{dqwz,jdbcType=NVARCHAR}, #{sfapth,jdbcType=NVARCHAR}, #{sfapthczsj,jdbcType=TIMESTAMP}, 
+      #{yqthsj,jdbcType=TIMESTAMP}, #{apthBz,jdbcType=NVARCHAR}, #{xc2ccyDy,jdbcType=NVARCHAR}, 
+      #{cphDyc,jdbcType=NVARCHAR}, #{khxqtcsj,jdbcType=TIMESTAMP}, #{jhxgwlsj,jdbcType=TIMESTAMP}, 
+      #{jhdbjdl,jdbcType=VARCHAR}, #{jhdbjdlLlsj,jdbcType=TIMESTAMP}, #{wxpdy,jdbcType=VARCHAR}, 
+      #{wlzyjthsjLlsj,jdbcType=TIMESTAMP}, #{yjyqsdsj,jdbcType=TIMESTAMP}, #{qrqk,jdbcType=NVARCHAR}, 
+      #{ecph,jdbcType=VARCHAR}, #{wlzyjthpcLlsj,jdbcType=TIMESTAMP}, #{yjxcsjLlsj,jdbcType=TIMESTAMP}, 
+      #{yjtgrqLlsj,jdbcType=TIMESTAMP}, #{khxqtcsjLlsj,jdbcType=TIMESTAMP}, #{mzsj,jdbcType=TIMESTAMP}, 
+      #{jjzt,jdbcType=VARCHAR}, #{sfxs,jdbcType=INTEGER}, #{xsbglj,jdbcType=NVARCHAR}, 
+      #{xsgsmc,jdbcType=NVARCHAR}, #{xslxr,jdbcType=NVARCHAR}, #{xclxr,jdbcType=NVARCHAR}, 
+      #{czxxsftg,jdbcType=NVARCHAR}, #{xslx,jdbcType=NVARCHAR}, #{hsjcbz,jdbcType=NVARCHAR}, 
+      #{fybz,jdbcType=NVARCHAR}, #{wlpdsj,jdbcType=TIMESTAMP}, #{szsfxs,jdbcType=VARCHAR}, 
+      #{sfhs,jdbcType=VARCHAR}, #{sfsjddc,jdbcType=NVARCHAR}, #{sfhssj,jdbcType=TIMESTAMP}, 
+      #{zbgd,jdbcType=NVARCHAR}, #{zbgdrq,jdbcType=TIMESTAMP}, #{gzryhxqrCxsj,jdbcType=TIMESTAMP}, 
+      #{xsbgljsj,jdbcType=TIMESTAMP}, #{sfdd,jdbcType=VARCHAR}, #{sfcyjzx,jdbcType=VARCHAR}, 
+      #{gcsfcy,jdbcType=VARCHAR}, #{gcsfcyCzsj,jdbcType=TIMESTAMP}, #{szktsj,jdbcType=TIMESTAMP}, 
+      #{szkgsj,jdbcType=TIMESTAMP}, #{szclfxsj,jdbcType=TIMESTAMP}, #{szcyyc,jdbcType=VARCHAR}, 
+      #{szktsjCzry,jdbcType=VARCHAR}, #{szktsjCzsj,jdbcType=TIMESTAMP}, #{szkgsjCzry,jdbcType=VARCHAR}, 
+      #{szkgsjCzsj,jdbcType=TIMESTAMP}, #{szclfxsjCzry,jdbcType=VARCHAR}, #{szclfxsjCzsj,jdbcType=TIMESTAMP}, 
+      #{gcsfcyCzry,jdbcType=VARCHAR}, #{cyfybz,jdbcType=VARCHAR}, #{gczl,jdbcType=VARCHAR}, 
+      #{jhrq,jdbcType=TIMESTAMP}, #{cskhg,jdbcType=TIMESTAMP}, #{cszhg,jdbcType=TIMESTAMP}, 
+      #{cxghg,jdbcType=TIMESTAMP}, #{jcgzj,jdbcType=VARCHAR}, #{jchxdc,jdbcType=VARCHAR}, 
+      #{sdsj,jdbcType=TIMESTAMP}, #{sfylr,jdbcType=VARCHAR}, #{jhd,jdbcType=VARCHAR}, 
+      #{ddsj,jdbcType=TIMESTAMP}, #{sffwdj,jdbcType=VARCHAR}, #{sfwsttjsc,jdbcType=VARCHAR}, 
+      #{wlkthsj,jdbcType=TIMESTAMP}, #{sfwlkt,jdbcType=CHAR}, #{sfkhwlxq,jdbcType=CHAR}, 
+      #{zggtpc,jdbcType=VARCHAR}, #{zgwlpdsj,jdbcType=TIMESTAMP}, #{kjzyme,jdbcType=CHAR}, 
+      #{kjzymesj,jdbcType=TIMESTAMP}, #{cgzjsj,jdbcType=TIMESTAMP}, #{zgwlzyjtgsj,jdbcType=TIMESTAMP}, 
+      #{cmyzhjbcsj,jdbcType=TIMESTAMP}, #{cjkjzydsj,jdbcType=TIMESTAMP}, #{kjzyddz,jdbcType=VARCHAR}, 
+      #{hxq,jdbcType=INTEGER}, #{mtmDuiQ,jdbcType=INTEGER}, #{mtmDianQ,jdbcType=INTEGER}
+      )
+  </insert>
+  <insert id="insertSelective" parameterType="com.freshport.entity.YwHddzJzxxx">
+    insert into yw_hddz_jzxxx
+    <trim prefix="(" suffix=")" suffixOverrides=",">
+      <if test="id != null">
+        id,
+      </if>
+      <if test="ywbh != null">
+        ywbh,
+      </if>
+      <if test="cxh != null">
+        cxh,
+      </if>
+      <if test="ysfs != null">
+        ysfs,
+      </if>
+      <if test="jzxh != null">
+        jzxh,
+      </if>
+      <if test="xx != null">
+        xx,
+      </if>
+      <if test="xl != null">
+        xl,
+      </if>
+      <if test="sjshrbm != null">
+        sjshrbm,
+      </if>
+      <if test="sjshrmc != null">
+        sjshrmc,
+      </if>
+      <if test="shdz != null">
+        shdz,
+      </if>
+      <if test="zyxx != null">
+        zyxx,
+      </if>
+      <if test="clfs != null">
+        clfs,
+      </if>
+      <if test="tpxx != null">
+        tpxx,
+      </if>
+      <if test="htjhthsj != null">
+        htjhthsj,
+      </if>
+      <if test="htjhthsjLb != null">
+        htjhthsj_lb,
+      </if>
+      <if test="xcjhthsj != null">
+        xcjhthsj,
+      </if>
+      <if test="thjjcd != null">
+        thjjcd,
+      </if>
+      <if test="beizhu != null">
+        beizhu,
+      </if>
+      <if test="gqBz != null">
+        gq_bz,
+      </if>
+      <if test="gqSj != null">
+        gq_sj,
+      </if>
+      <if test="gqCp != null">
+        gq_cp,
+      </if>
+      <if test="gqSjlxfs != null">
+        gq_sjlxfs,
+      </if>
+      <if test="gqRwbh != null">
+        gq_rwbh,
+      </if>
+      <if test="gqCRwbh != null">
+        gq_c_rwbh,
+      </if>
+      <if test="hgcydBz != null">
+        hgcyd_bz,
+      </if>
+      <if test="hgcydSj != null">
+        hgcyd_sj,
+      </if>
+      <if test="hgcydCp != null">
+        hgcyd_cp,
+      </if>
+      <if test="hgcydSjlxfs != null">
+        hgcyd_sjlxfs,
+      </if>
+      <if test="hgcydRwbh != null">
+        hgcyd_rwbh,
+      </if>
+      <if test="hgcydCRwbh != null">
+        hgcyd_c_rwbh,
+      </if>
+      <if test="jydBz != null">
+        jyd_bz,
+      </if>
+      <if test="jydSj != null">
+        jyd_sj,
+      </if>
+      <if test="jydCp != null">
+        jyd_cp,
+      </if>
+      <if test="jydSjlxfs != null">
+        jyd_sjlxfs,
+      </if>
+      <if test="jydBm != null">
+        jyd_bm,
+      </if>
+      <if test="jydMc != null">
+        jyd_mc,
+      </if>
+      <if test="jydJc != null">
+        jyd_jc,
+      </if>
+      <if test="jydPym != null">
+        jyd_pym,
+      </if>
+      <if test="jydRwbh != null">
+        jyd_rwbh,
+      </if>
+      <if test="jydCRwbh != null">
+        jyd_c_rwbh,
+      </if>
+      <if test="zjfscwldBz != null">
+        zjfscwld_bz,
+      </if>
+      <if test="zjfscwldSfjsc != null">
+        zjfscwld_sfjsc,
+      </if>
+      <if test="zjfscwldSj != null">
+        zjfscwld_sj,
+      </if>
+      <if test="zjfscwldCp != null">
+        zjfscwld_cp,
+      </if>
+      <if test="zjfscwldSjlxfs != null">
+        zjfscwld_sjlxfs,
+      </if>
+      <if test="zjfscwldShrbm != null">
+        zjfscwld_shrbm,
+      </if>
+      <if test="zjfscwldShrmc != null">
+        zjfscwld_shrmc,
+      </if>
+      <if test="zjfscwldZyxx != null">
+        zjfscwld_zyxx,
+      </if>
+      <if test="zjfscwldRwbh != null">
+        zjfscwld_rwbh,
+      </if>
+      <if test="zjfscwldCRwbh != null">
+        zjfscwld_c_rwbh,
+      </if>
+      <if test="scBz != null">
+        sc_bz,
+      </if>
+      <if test="scSj != null">
+        sc_sj,
+      </if>
+      <if test="scCp != null">
+        sc_cp,
+      </if>
+      <if test="scSjlxfs != null">
+        sc_sjlxfs,
+      </if>
+      <if test="scBm != null">
+        sc_bm,
+      </if>
+      <if test="scMc != null">
+        sc_mc,
+      </if>
+      <if test="scJc != null">
+        sc_jc,
+      </if>
+      <if test="scPym != null">
+        sc_pym,
+      </if>
+      <if test="scLgfs != null">
+        sc_lgfs,
+      </if>
+      <if test="scRwbh != null">
+        sc_rwbh,
+      </if>
+      <if test="scCRwbh != null">
+        sc_c_rwbh,
+      </if>
+      <if test="jschfscwldBz != null">
+        jschfscwld_bz,
+      </if>
+      <if test="jschfscwldSfjsc != null">
+        jschfscwld_sfjsc,
+      </if>
+      <if test="jschfscwldSj != null">
+        jschfscwld_sj,
+      </if>
+      <if test="jschfscwldCp != null">
+        jschfscwld_cp,
+      </if>
+      <if test="jschfscwldSjlxfs != null">
+        jschfscwld_sjlxfs,
+      </if>
+      <if test="jschfscwldShrbm != null">
+        jschfscwld_shrbm,
+      </if>
+      <if test="jschfscwldShrmc != null">
+        jschfscwld_shrmc,
+      </if>
+      <if test="jschfscwldZyxx != null">
+        jschfscwld_zyxx,
+      </if>
+      <if test="jschfscwldRwbh != null">
+        jschfscwld_rwbh,
+      </if>
+      <if test="jschfscwldCRwbh != null">
+        jschfscwld_c_rwbh,
+      </if>
+      <if test="fscwld3Bz != null">
+        fscwld3_bz,
+      </if>
+      <if test="fscwld3Sfjsc != null">
+        fscwld3_sfjsc,
+      </if>
+      <if test="fscwld3Sj != null">
+        fscwld3_sj,
+      </if>
+      <if test="fscwld3Cp != null">
+        fscwld3_cp,
+      </if>
+      <if test="fscwld3Sjlxfs != null">
+        fscwld3_sjlxfs,
+      </if>
+      <if test="fscwld3Shrbm != null">
+        fscwld3_shrbm,
+      </if>
+      <if test="fscwld3Shrmc != null">
+        fscwld3_shrmc,
+      </if>
+      <if test="fscwld3Zyxx != null">
+        fscwld3_zyxx,
+      </if>
+      <if test="fscwld3Rwbh != null">
+        fscwld3_rwbh,
+      </if>
+      <if test="fscwld3CRwbh != null">
+        fscwld3_c_rwbh,
+      </if>
+      <if test="fscwld4Bz != null">
+        fscwld4_bz,
+      </if>
+      <if test="fscwld4Sfjsc != null">
+        fscwld4_sfjsc,
+      </if>
+      <if test="fscwld4Sj != null">
+        fscwld4_sj,
+      </if>
+      <if test="fscwld4Cp != null">
+        fscwld4_cp,
+      </if>
+      <if test="fscwld4Sjlxfs != null">
+        fscwld4_sjlxfs,
+      </if>
+      <if test="fscwld4Shrbm != null">
+        fscwld4_shrbm,
+      </if>
+      <if test="fscwld4Shrmc != null">
+        fscwld4_shrmc,
+      </if>
+      <if test="fscwld4Zyxx != null">
+        fscwld4_zyxx,
+      </if>
+      <if test="fscwld4Rwbh != null">
+        fscwld4_rwbh,
+      </if>
+      <if test="fscwld4CRwbh != null">
+        fscwld4_c_rwbh,
+      </if>
+      <if test="dcBz != null">
+        dc_bz,
+      </if>
+      <if test="dcSj != null">
+        dc_sj,
+      </if>
+      <if test="dcCp != null">
+        dc_cp,
+      </if>
+      <if test="dcSjlxfs != null">
+        dc_sjlxfs,
+      </if>
+      <if test="dcBm != null">
+        dc_bm,
+      </if>
+      <if test="dcMc != null">
+        dc_mc,
+      </if>
+      <if test="dcJc != null">
+        dc_jc,
+      </if>
+      <if test="dcPym != null">
+        dc_pym,
+      </if>
+      <if test="dcRwbh != null">
+        dc_rwbh,
+      </if>
+      <if test="sdxtdsj != null">
+        sdxtdsj,
+      </if>
+      <if test="fxgsbm != null">
+        fxgsbm,
+      </if>
+      <if test="fxgsmc != null">
+        fxgsmc,
+      </if>
+      <if test="fxgsjc != null">
+        fxgsjc,
+      </if>
+      <if test="fxgspym != null">
+        fxgspym,
+      </if>
+      <if test="cgsfxdbm != null">
+        cgsfxdbm,
+      </if>
+      <if test="cgsfxdmc != null">
+        cgsfxdmc,
+      </if>
+      <if test="cgsfxdjc != null">
+        cgsfxdjc,
+      </if>
+      <if test="cgsfxdpym != null">
+        cgsfxdpym,
+      </if>
+      <if test="sbjjdh != null">
+        sbjjdh,
+      </if>
+      <if test="fxdcbm != null">
+        fxdcbm,
+      </if>
+      <if test="fxdcmc != null">
+        fxdcmc,
+      </if>
+      <if test="fxdcjc != null">
+        fxdcjc,
+      </if>
+      <if test="fxdcpym != null">
+        fxdcpym,
+      </if>
+      <if test="gqjhsj != null">
+        gqjhsj,
+      </if>
+      <if test="gqjhsjLb != null">
+        gqjhsj_lb,
+      </if>
+      <if test="sjmc != null">
+        sjmc,
+      </if>
+      <if test="cph != null">
+        cph,
+      </if>
+      <if test="mtywclbz != null">
+        mtywclbz,
+      </if>
+      <if test="ccsj != null">
+        ccsj,
+      </if>
+      <if test="hdcsj != null">
+        hdcsj,
+      </if>
+      <if test="cgqsj != null">
+        cgqsj,
+      </if>
+      <if test="cydsj != null">
+        cydsj,
+      </if>
+      <if test="cydbz != null">
+        cydbz,
+      </if>
+      <if test="djydsj != null">
+        djydsj,
+      </if>
+      <if test="tgjysj != null">
+        tgjysj,
+      </if>
+      <if test="jycydzt != null">
+        jycydzt,
+      </if>
+      <if test="kghcl != null">
+        kghcl,
+      </if>
+      <if test="rscsj != null">
+        rscsj,
+      </if>
+      <if test="khtzhxsj != null">
+        khtzhxsj,
+      </if>
+      <if test="xqrqksj != null">
+        xqrqksj,
+      </if>
+      <if test="ccjhsj != null">
+        ccjhsj,
+      </if>
+      <if test="cscsj != null">
+        cscsj,
+      </if>
+      <if test="hxfs != null">
+        hxfs,
+      </if>
+      <if test="jzxydgsj != null">
+        jzxydgsj,
+      </if>
+      <if test="jzxzscsj != null">
+        jzxzscsj,
+      </if>
+      <if test="jzxytzqksj != null">
+        jzxytzqksj,
+      </if>
+      <if test="scbz != null">
+        scbz,
+      </if>
+      <if test="fscwlDdsj != null">
+        fscwl_ddsj,
+      </if>
+      <if test="fscwlLksj != null">
+        fscwl_lksj,
+      </if>
+      <if test="fscwl2Ddsj != null">
+        fscwl2_ddsj,
+      </if>
+      <if test="fscwl2Lksj != null">
+        fscwl2_lksj,
+      </if>
+      <if test="fscwl3Ddsj != null">
+        fscwl3_ddsj,
+      </if>
+      <if test="fscwl3Lksj != null">
+        fscwl3_lksj,
+      </if>
+      <if test="fscwl4Ddsj != null">
+        fscwl4_ddsj,
+      </if>
+      <if test="fscwl4Lksj != null">
+        fscwl4_lksj,
+      </if>
+      <if test="csbz != null">
+        csbz,
+      </if>
+      <if test="zhlx != null">
+        zhlx,
+      </if>
+      <if test="lkjydsj != null">
+        lkjydsj,
+      </if>
+      <if test="jydbz != null">
+        jydbz,
+      </if>
+      <if test="yqfssj != null">
+        yqfssj,
+      </if>
+      <if test="sffsbz != null">
+        sffsbz,
+      </if>
+      <if test="sdxxsj != null">
+        sdxxsj,
+      </if>
+      <if test="sfsdxxbz != null">
+        sfsdxxbz,
+      </if>
+      <if test="sfyxcjh != null">
+        sfyxcjh,
+      </if>
+      <if test="sfsdfxhz != null">
+        sfsdfxhz,
+      </if>
+      <if test="dcsfyd != null">
+        dcsfyd,
+      </if>
+      <if test="hmtsj != null">
+        hmtsj,
+      </if>
+      <if test="dhxgssj != null">
+        dhxgssj,
+      </if>
+      <if test="zybz != null">
+        zybz,
+      </if>
+      <if test="cqfje != null">
+        cqfje,
+      </if>
+      <if test="cqjsbzrq != null">
+        cqjsbzrq,
+      </if>
+      <if test="khjydzt != null">
+        khjydzt,
+      </if>
+      <if test="yfkdbh != null">
+        yfkdbh,
+      </if>
+      <if test="sfyyfk != null">
+        sfyyfk,
+      </if>
+      <if test="state != null">
+        state,
+      </if>
+      <if test="jsdwbm != null">
+        jsdwbm,
+      </if>
+      <if test="jsdwmc != null">
+        jsdwmc,
+      </if>
+      <if test="jsdwjc != null">
+        jsdwjc,
+      </if>
+      <if test="jsdwpym != null">
+        jsdwpym,
+      </if>
+      <if test="jsbm != null">
+        jsbm,
+      </if>
+      <if test="jsdwqr != null">
+        jsdwqr,
+      </if>
+      <if test="sfyjsbm != null">
+        sfyjsbm,
+      </if>
+      <if test="yscqfqr != null">
+        yscqfqr,
+      </if>
+      <if test="yscqfje != null">
+        yscqfje,
+      </if>
+      <if test="yscqfqrrq != null">
+        yscqfqrrq,
+      </if>
+      <if test="wlfyqr != null">
+        wlfyqr,
+      </if>
+      <if test="wlfyqrrq != null">
+        wlfyqrrq,
+      </if>
+      <if test="wlfyje != null">
+        wlfyje,
+      </if>
+      <if test="wlfylclfje != null">
+        wlfylclfje,
+      </if>
+      <if test="tjrq != null">
+        tjrq,
+      </if>
+      <if test="tsycdzyjsje != null">
+        tsycdzyjsje,
+      </if>
+      <if test="yshdfygjbh != null">
+        yshdfygjbh,
+      </if>
+      <if test="gjsj != null">
+        gjsj,
+      </if>
+      <if test="gjcs != null">
+        gjcs,
+      </if>
+      <if test="yshdfygjbhCqf != null">
+        yshdfygjbh_cqf,
+      </if>
+      <if test="gjsjCqf != null">
+        gjsj_cqf,
+      </if>
+      <if test="gjcsCqf != null">
+        gjcs_cqf,
+      </if>
+      <if test="lxr != null">
+        lxr,
+      </if>
+      <if test="lxdh != null">
+        lxdh,
+      </if>
+      <if test="wxsffsCqf != null">
+        wxsffs_cqf,
+      </if>
+      <if test="wllxqdrq != null">
+        wllxqdrq,
+      </if>
+      <if test="jssfwc != null">
+        jssfwc,
+      </if>
+      <if test="jswcsj != null">
+        jswcsj,
+      </if>
+      <if test="sflc != null">
+        sflc,
+      </if>
+      <if test="lxr2 != null">
+        lxr2,
+      </if>
+      <if test="lxdh2 != null">
+        lxdh2,
+      </if>
+      <if test="lxr3 != null">
+        lxr3,
+      </if>
+      <if test="lxdh3 != null">
+        lxdh3,
+      </if>
+      <if test="lxr4 != null">
+        lxr4,
+      </if>
+      <if test="lxdh4 != null">
+        lxdh4,
+      </if>
+      <if test="kgsj != null">
+        kgsj,
+      </if>
+      <if test="ssys != null">
+        ssys,
+      </if>
+      <if test="kghclsj != null">
+        kghclsj,
+      </if>
+      <if test="wllhzt != null">
+        wllhzt,
+      </if>
+      <if test="wllhsj != null">
+        wllhsj,
+      </if>
+      <if test="sqlhpc != null">
+        sqlhpc,
+      </if>
+      <if test="lhbz != null">
+        lhbz,
+      </if>
+      <if test="sqsj != null">
+        sqsj,
+      </if>
+      <if test="cdbm != null">
+        cdbm,
+      </if>
+      <if test="cdmc != null">
+        cdmc,
+      </if>
+      <if test="cdjc != null">
+        cdjc,
+      </if>
+      <if test="cdpym != null">
+        cdpym,
+      </if>
+      <if test="fxsj != null">
+        fxsj,
+      </if>
+      <if test="htjhthsjSjd != null">
+        htjhthsj_sjd,
+      </if>
+      <if test="htjhthscsj != null">
+        htjhthscsj,
+      </if>
+      <if test="cdjsdwbm != null">
+        cdjsdwbm,
+      </if>
+      <if test="cdjsdwmc != null">
+        cdjsdwmc,
+      </if>
+      <if test="cdjsdwjc != null">
+        cdjsdwjc,
+      </if>
+      <if test="cdjsdwpym != null">
+        cdjsdwpym,
+      </if>
+      <if test="contractcontainerid != null">
+        contractcontainerid,
+      </if>
+      <if test="jgqsj != null">
+        jgqsj,
+      </if>
+      <if test="cjydsj != null">
+        cjydsj,
+      </if>
+      <if test="dj != null">
+        dj,
+      </if>
+      <if test="cgqsjLrsj != null">
+        cgqsj_lrsj,
+      </if>
+      <if test="djydsjLrsj != null">
+        djydsj_lrsj,
+      </if>
+      <if test="tgjysjLrsj != null">
+        tgjysj_lrsj,
+      </if>
+      <if test="kgsjLrsj != null">
+        kgsj_lrsj,
+      </if>
+      <if test="cgqsjCzry != null">
+        cgqsj_czry,
+      </if>
+      <if test="djydsjCzry != null">
+        djydsj_czry,
+      </if>
+      <if test="tgjysjCzry != null">
+        tgjysj_czry,
+      </if>
+      <if test="kgsjCzry != null">
+        kgsj_czry,
+      </if>
+      <if test="kghclsjLrsj != null">
+        kghclsj_lrsj,
+      </if>
+      <if test="kghclsjCzry != null">
+        kghclsj_czry,
+      </if>
+      <if test="dzdd != null">
+        dzdd,
+      </if>
+      <if test="zqCgqsj != null">
+        zq_cgqsj,
+      </if>
+      <if test="cjydsjLrsj != null">
+        cjydsj_lrsj,
+      </if>
+      <if test="cjydsjCzry != null">
+        cjydsj_czry,
+      </if>
+      <if test="jdrjc != null">
+        jdrjc,
+      </if>
+      <if test="jdrmc != null">
+        jdrmc,
+      </if>
+      <if test="jdrbm != null">
+        jdrbm,
+      </if>
+      <if test="jdrpym != null">
+        jdrpym,
+      </if>
+      <if test="htjhthsjLrsj != null">
+        htjhthsj_lrsj,
+      </if>
+      <if test="lrcxQrbz != null">
+        lrcx_qrbz,
+      </if>
+      <if test="lrcxQrrq != null">
+        lrcx_qrrq,
+      </if>
+      <if test="lrcxBz != null">
+        lrcx_bz,
+      </if>
+      <if test="jzxlrcxBz != null">
+        jzxlrcx_bz,
+      </if>
+      <if test="xcsj != null">
+        xcsj,
+      </if>
+      <if test="jzxlrcxQrbz != null">
+        jzxlrcx_qrbz,
+      </if>
+      <if test="jzxlrcxQrrq != null">
+        jzxlrcx_qrrq,
+      </if>
+      <if test="clsscd != null">
+        clsscd,
+      </if>
+      <if test="lkBz != null">
+        lk_bz,
+      </if>
+      <if test="khzdthsj != null">
+        khzdthsj,
+      </if>
+      <if test="khzdthsjLrsj != null">
+        khzdthsj_lrsj,
+      </if>
+      <if test="khzdthsjCzry != null">
+        khzdthsj_czry,
+      </if>
+      <if test="yqsdsj != null">
+        yqsdsj,
+      </if>
+      <if test="shr != null">
+        shr,
+      </if>
+      <if test="shrdh != null">
+        shrdh,
+      </if>
+      <if test="ggsj != null">
+        ggsj,
+      </if>
+      <if test="spxh != null">
+        spxh,
+      </if>
+      <if test="sggqbm != null">
+        sggqbm,
+      </if>
+      <if test="sggqmc != null">
+        sggqmc,
+      </if>
+      <if test="sggqjc != null">
+        sggqjc,
+      </if>
+      <if test="sggqpym != null">
+        sggqpym,
+      </if>
+      <if test="cqfcxBz != null">
+        cqfcx_bz,
+      </if>
+      <if test="sbjjd != null">
+        sbjjd,
+      </if>
+      <if test="sbjjdLrry != null">
+        sbjjd_lrry,
+      </if>
+      <if test="sbjjdLrsj != null">
+        sbjjd_lrsj,
+      </if>
+      <if test="hzSc != null">
+        hz_sc,
+      </if>
+      <if test="pdy != null">
+        pdy,
+      </if>
+      <if test="gjbeizhu != null">
+        gjbeizhu,
+      </if>
+      <if test="wlbgz != null">
+        wlbgz,
+      </if>
+      <if test="wlbgzLrry != null">
+        wlbgz_lrry,
+      </if>
+      <if test="wlbgzLrsj != null">
+        wlbgz_lrsj,
+      </if>
+      <if test="lldh != null">
+        lldh,
+      </if>
+      <if test="ccrn != null">
+        ccrn,
+      </if>
+      <if test="tgrq != null">
+        tgrq,
+      </if>
+      <if test="qgrq != null">
+        qgrq,
+      </if>
+      <if test="szjb != null">
+        szjb,
+      </if>
+      <if test="jhrq1 != null">
+        jhrq1,
+      </if>
+      <if test="jgwq1 != null">
+        jgwq1,
+      </if>
+      <if test="wlgzState != null">
+        wlgz_state,
+      </if>
+      <if test="wlgzJjyy != null">
+        wlgz_jjyy,
+      </if>
+      <if test="sjzqCcfs != null">
+        sjzq_ccfs,
+      </if>
+      <if test="sfzlc != null">
+        sfzlc,
+      </if>
+      <if test="ycbeizhu != null">
+        ycbeizhu,
+      </if>
+      <if test="zzhwsqh != null">
+        zzhwsqh,
+      </if>
+      <if test="zzqrsh != null">
+        zzqrsh,
+      </if>
+      <if test="xfdysj != null">
+        xfdysj,
+      </if>
+      <if test="zzsdysj != null">
+        zzsdysj,
+      </if>
+      <if test="lldhLrsj != null">
+        lldh_lrsj,
+      </if>
+      <if test="sjzqCgqsj != null">
+        sjzq_cgqsj,
+      </if>
+      <if test="htjhthsjXgyy != null">
+        htjhthsj_xgyy,
+      </if>
+      <if test="khgtjlBeizhu != null">
+        khgtjl_beizhu,
+      </if>
+      <if test="jsdwqrRy != null">
+        jsdwqr_ry,
+      </if>
+      <if test="khmc != null">
+        khmc,
+      </if>
+      <if test="khjc != null">
+        khjc,
+      </if>
+      <if test="khpym != null">
+        khpym,
+      </if>
+      <if test="khbm != null">
+        khbm,
+      </if>
+      <if test="lrqr != null">
+        lrqr,
+      </if>
+      <if test="qrry != null">
+        qrry,
+      </if>
+      <if test="ycyyrl != null">
+        ycyyrl,
+      </if>
+      <if test="zdjkKssj != null">
+        zdjk_kssj,
+      </if>
+      <if test="zdjkJssj != null">
+        zdjk_jssj,
+      </if>
+      <if test="lc != null">
+        lc,
+      </if>
+      <if test="lcStarttime != null">
+        lc_startTime,
+      </if>
+      <if test="lcEndtime != null">
+        lc_endTime,
+      </if>
+      <if test="kgyy != null">
+        kgyy,
+      </if>
+      <if test="beizhuRy != null">
+        beizhu_ry,
+      </if>
+      <if test="rlksj != null">
+        rlksj,
+      </if>
+      <if test="gzryqr != null">
+        gzryqr,
+      </if>
+      <if test="khzbth != null">
+        khzbth,
+      </if>
+      <if test="khzbthQrsj != null">
+        khzbth_qrsj,
+      </if>
+      <if test="sfycb != null">
+        sfycb,
+      </if>
+      <if test="sfyys != null">
+        sfyys,
+      </if>
+      <if test="gzryqrry != null">
+        gzryqrry,
+      </if>
+      <if test="cgqsjXg != null">
+        cgqsj_xg,
+      </if>
+      <if test="xcsjXg != null">
+        xcsj_xg,
+      </if>
+      <if test="cgqsjSz != null">
+        cgqsj_sz,
+      </if>
+      <if test="xcsjSz != null">
+        xcsj_sz,
+      </if>
+      <if test="gzryhxqr != null">
+        gzryhxqr,
+      </if>
+      <if test="gzryhxqrry != null">
+        gzryhxqrry,
+      </if>
+      <if test="wlbz != null">
+        wlbz,
+      </if>
+      <if test="zyxxImportUser != null">
+        zyxx_import_user,
+      </if>
+      <if test="cwbz != null">
+        cwbz,
+      </if>
+      <if test="anJeGb != null">
+        AN_je_gb,
+      </if>
+      <if test="anJeMj != null">
+        AN_je_mj,
+      </if>
+      <if test="mjhl != null">
+        mjhl,
+      </if>
+      <if test="wlqrsj != null">
+        wlqrsj,
+      </if>
+      <if test="fylr != null">
+        fylr,
+      </if>
+      <if test="hgfs != null">
+        hgfs,
+      </if>
+      <if test="sjzqJcfs != null">
+        sjzq_jcfs,
+      </if>
+      <if test="hgfsZhm != null">
+        hgfs_zhm,
+      </if>
+      <if test="hgfsXgsj != null">
+        hgfs_xgsj,
+      </if>
+      <if test="cgfxqfyGd != null">
+        cgfxqfy_gd,
+      </if>
+      <if test="cgfxhfyWl != null">
+        cgfxhfy_wl,
+      </if>
+      <if test="jssqr != null">
+        jssqr,
+      </if>
+      <if test="jsyy != null">
+        jsyy,
+      </if>
+      <if test="jsStart != null">
+        js_start,
+      </if>
+      <if test="qgrqLrsj != null">
+        qgrq_lrsj,
+      </if>
+      <if test="qgrqLrry != null">
+        qgrq_lrry,
+      </if>
+      <if test="sfypz != null">
+        sfypz,
+      </if>
+      <if test="xwxfdjsBeizhu != null">
+        xwxfdjs_beizhu,
+      </if>
+      <if test="scfyBeizhu != null">
+        scfy_beizhu,
+      </if>
+      <if test="xzz != null">
+        xzz,
+      </if>
+      <if test="sfzg != null">
+        sfzg,
+      </if>
+      <if test="zgxksj != null">
+        zgxksj,
+      </if>
+      <if test="xklrsj != null">
+        xklrsj,
+      </if>
+      <if test="zjbjh != null">
+        zjbjh,
+      </if>
+      <if test="gzjysbsj != null">
+        gzjysbsj,
+      </if>
+      <if test="jqsbwcsj != null">
+        jqsbwcsj,
+      </if>
+      <if test="grabOutTime != null">
+        grab_out_time,
+      </if>
+      <if test="grabDownTime != null">
+        grab_down_time,
+      </if>
+      <if test="wlqryf != null">
+        wlqryf,
+      </if>
+      <if test="wlzyjthsj != null">
+        wlzyjthsj,
+      </if>
+      <if test="wlzyjthpc != null">
+        wlzyjthpc,
+      </if>
+      <if test="yjxcsj != null">
+        yjxcsj,
+      </if>
+      <if test="qcdl != null">
+        qcdl,
+      </if>
+      <if test="dcthkhyqsdsj != null">
+        dcthkhyqsdsj,
+      </if>
+      <if test="dcthwlzfksdsj != null">
+        dcthwlzfksdsj,
+      </if>
+      <if test="jjnsc != null">
+        jjnsc,
+      </if>
+      <if test="ydsdcl != null">
+        ydsdcl,
+      </if>
+      <if test="dcsfydCzsj != null">
+        dcsfyd_czsj,
+      </if>
+      <if test="bgid != null">
+        bgid,
+      </if>
+      <if test="yjtgrq != null">
+        yjtgrq,
+      </if>
+      <if test="yjtgrqImportUser != null">
+        yjtgrq_import_user,
+      </if>
+      <if test="jhyap != null">
+        jhyap,
+      </if>
+      <if test="jhyapCzsj != null">
+        jhyap_czsj,
+      </if>
+      <if test="lxrImportUser != null">
+        lxr_import_user,
+      </if>
+      <if test="qcdlImportUser != null">
+        qcdl_import_user,
+      </if>
+      <if test="jjnscImportUser != null">
+        jjnsc_import_user,
+      </if>
+      <if test="sfzgImportUser != null">
+        sfzg_import_user,
+      </if>
+      <if test="khzbthImportUser != null">
+        khzbth_import_user,
+      </if>
+      <if test="cgfxqfyGdImportUser != null">
+        cgfxqfy_gd_import_user,
+      </if>
+      <if test="jjnscsj != null">
+        jjnscsj,
+      </if>
+      <if test="gzryqrLrsj != null">
+        gzryqr_lrsj,
+      </if>
+      <if test="xqrqksjLrsj != null">
+        xqrqksj_lrsj,
+      </if>
+      <if test="qcbz != null">
+        qcbz,
+      </if>
+      <if test="tch != null">
+        tch,
+      </if>
+      <if test="fxzt != null">
+        fxzt,
+      </if>
+      <if test="dqwz != null">
+        dqwz,
+      </if>
+      <if test="sfapth != null">
+        sfapth,
+      </if>
+      <if test="sfapthczsj != null">
+        sfapthczsj,
+      </if>
+      <if test="yqthsj != null">
+        yqthsj,
+      </if>
+      <if test="apthBz != null">
+        apth_bz,
+      </if>
+      <if test="xc2ccyDy != null">
+        xc2ccy_dy,
+      </if>
+      <if test="cphDyc != null">
+        cph_dyc,
+      </if>
+      <if test="khxqtcsj != null">
+        khxqtcsj,
+      </if>
+      <if test="jhxgwlsj != null">
+        jhxgwlsj,
+      </if>
+      <if test="jhdbjdl != null">
+        jhdbjdl,
+      </if>
+      <if test="jhdbjdlLlsj != null">
+        jhdbjdl_llsj,
+      </if>
+      <if test="wxpdy != null">
+        wxpdy,
+      </if>
+      <if test="wlzyjthsjLlsj != null">
+        wlzyjthsj_llsj,
+      </if>
+      <if test="yjyqsdsj != null">
+        yjyqsdsj,
+      </if>
+      <if test="qrqk != null">
+        qrqk,
+      </if>
+      <if test="ecph != null">
+        ecph,
+      </if>
+      <if test="wlzyjthpcLlsj != null">
+        wlzyjthpc_llsj,
+      </if>
+      <if test="yjxcsjLlsj != null">
+        yjxcsj_llsj,
+      </if>
+      <if test="yjtgrqLlsj != null">
+        yjtgrq_llsj,
+      </if>
+      <if test="khxqtcsjLlsj != null">
+        khxqtcsj_llsj,
+      </if>
+      <if test="mzsj != null">
+        mzsj,
+      </if>
+      <if test="jjzt != null">
+        jjzt,
+      </if>
+      <if test="sfxs != null">
+        sfxs,
+      </if>
+      <if test="xsbglj != null">
+        xsbglj,
+      </if>
+      <if test="xsgsmc != null">
+        xsgsmc,
+      </if>
+      <if test="xslxr != null">
+        xslxr,
+      </if>
+      <if test="xclxr != null">
+        xclxr,
+      </if>
+      <if test="czxxsftg != null">
+        czxxsftg,
+      </if>
+      <if test="xslx != null">
+        xslx,
+      </if>
+      <if test="hsjcbz != null">
+        hsjcbz,
+      </if>
+      <if test="fybz != null">
+        fybz,
+      </if>
+      <if test="wlpdsj != null">
+        wlpdsj,
+      </if>
+      <if test="szsfxs != null">
+        szsfxs,
+      </if>
+      <if test="sfhs != null">
+        sfhs,
+      </if>
+      <if test="sfsjddc != null">
+        sfsjddc,
+      </if>
+      <if test="sfhssj != null">
+        sfhssj,
+      </if>
+      <if test="zbgd != null">
+        zbgd,
+      </if>
+      <if test="zbgdrq != null">
+        zbgdrq,
+      </if>
+      <if test="gzryhxqrCxsj != null">
+        gzryhxqr_cxsj,
+      </if>
+      <if test="xsbgljsj != null">
+        xsbgljsj,
+      </if>
+      <if test="sfdd != null">
+        sfdd,
+      </if>
+      <if test="sfcyjzx != null">
+        sfcyjzx,
+      </if>
+      <if test="gcsfcy != null">
+        gcsfcy,
+      </if>
+      <if test="gcsfcyCzsj != null">
+        gcsfcy_czsj,
+      </if>
+      <if test="szktsj != null">
+        szktsj,
+      </if>
+      <if test="szkgsj != null">
+        szkgsj,
+      </if>
+      <if test="szclfxsj != null">
+        szclfxsj,
+      </if>
+      <if test="szcyyc != null">
+        szcyyc,
+      </if>
+      <if test="szktsjCzry != null">
+        szktsj_czry,
+      </if>
+      <if test="szktsjCzsj != null">
+        szktsj_czsj,
+      </if>
+      <if test="szkgsjCzry != null">
+        szkgsj_czry,
+      </if>
+      <if test="szkgsjCzsj != null">
+        szkgsj_czsj,
+      </if>
+      <if test="szclfxsjCzry != null">
+        szclfxsj_czry,
+      </if>
+      <if test="szclfxsjCzsj != null">
+        szclfxsj_czsj,
+      </if>
+      <if test="gcsfcyCzry != null">
+        gcsfcy_czry,
+      </if>
+      <if test="cyfybz != null">
+        cyfybz,
+      </if>
+      <if test="gczl != null">
+        gczl,
+      </if>
+      <if test="jhrq != null">
+        jhrq,
+      </if>
+      <if test="cskhg != null">
+        cskhg,
+      </if>
+      <if test="cszhg != null">
+        cszhg,
+      </if>
+      <if test="cxghg != null">
+        cxghg,
+      </if>
+      <if test="jcgzj != null">
+        jcgzj,
+      </if>
+      <if test="jchxdc != null">
+        jchxdc,
+      </if>
+      <if test="sdsj != null">
+        sdsj,
+      </if>
+      <if test="sfylr != null">
+        sfylr,
+      </if>
+      <if test="jhd != null">
+        jhd,
+      </if>
+      <if test="ddsj != null">
+        ddsj,
+      </if>
+      <if test="sffwdj != null">
+        sffwdj,
+      </if>
+      <if test="sfwsttjsc != null">
+        sfwsttjsc,
+      </if>
+      <if test="wlkthsj != null">
+        wlkthsj,
+      </if>
+      <if test="sfwlkt != null">
+        sfwlkt,
+      </if>
+      <if test="sfkhwlxq != null">
+        sfkhwlxq,
+      </if>
+      <if test="zggtpc != null">
+        zggtpc,
+      </if>
+      <if test="zgwlpdsj != null">
+        zgwlpdsj,
+      </if>
+      <if test="kjzyme != null">
+        kjzyme,
+      </if>
+      <if test="kjzymesj != null">
+        kjzymesj,
+      </if>
+      <if test="cgzjsj != null">
+        cgzjsj,
+      </if>
+      <if test="zgwlzyjtgsj != null">
+        zgwlzyjtgsj,
+      </if>
+      <if test="cmyzhjbcsj != null">
+        cmyzhjbcsj,
+      </if>
+      <if test="cjkjzydsj != null">
+        cjkjzydsj,
+      </if>
+      <if test="kjzyddz != null">
+        kjzyddz,
+      </if>
+      <if test="hxq != null">
+        hxq,
+      </if>
+      <if test="mtmDuiQ != null">
+        mtm_dui_q,
+      </if>
+      <if test="mtmDianQ != null">
+        mtm_dian_q,
+      </if>
+    </trim>
+    <trim prefix="values (" suffix=")" suffixOverrides=",">
+      <if test="id != null">
+        #{id,jdbcType=INTEGER},
+      </if>
+      <if test="ywbh != null">
+        #{ywbh,jdbcType=VARCHAR},
+      </if>
+      <if test="cxh != null">
+        #{cxh,jdbcType=INTEGER},
+      </if>
+      <if test="ysfs != null">
+        #{ysfs,jdbcType=VARCHAR},
+      </if>
+      <if test="jzxh != null">
+        #{jzxh,jdbcType=VARCHAR},
+      </if>
+      <if test="xx != null">
+        #{xx,jdbcType=VARCHAR},
+      </if>
+      <if test="xl != null">
+        #{xl,jdbcType=VARCHAR},
+      </if>
+      <if test="sjshrbm != null">
+        #{sjshrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="sjshrmc != null">
+        #{sjshrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="shdz != null">
+        #{shdz,jdbcType=VARCHAR},
+      </if>
+      <if test="zyxx != null">
+        #{zyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="clfs != null">
+        #{clfs,jdbcType=VARCHAR},
+      </if>
+      <if test="tpxx != null">
+        #{tpxx,jdbcType=INTEGER},
+      </if>
+      <if test="htjhthsj != null">
+        #{htjhthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="htjhthsjLb != null">
+        #{htjhthsjLb,jdbcType=VARCHAR},
+      </if>
+      <if test="xcjhthsj != null">
+        #{xcjhthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="thjjcd != null">
+        #{thjjcd,jdbcType=VARCHAR},
+      </if>
+      <if test="beizhu != null">
+        #{beizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="gqBz != null">
+        #{gqBz,jdbcType=VARCHAR},
+      </if>
+      <if test="gqSj != null">
+        #{gqSj,jdbcType=VARCHAR},
+      </if>
+      <if test="gqCp != null">
+        #{gqCp,jdbcType=VARCHAR},
+      </if>
+      <if test="gqSjlxfs != null">
+        #{gqSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="gqRwbh != null">
+        #{gqRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="gqCRwbh != null">
+        #{gqCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydBz != null">
+        #{hgcydBz,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydSj != null">
+        #{hgcydSj,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydCp != null">
+        #{hgcydCp,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydSjlxfs != null">
+        #{hgcydSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydRwbh != null">
+        #{hgcydRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydCRwbh != null">
+        #{hgcydCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="jydBz != null">
+        #{jydBz,jdbcType=VARCHAR},
+      </if>
+      <if test="jydSj != null">
+        #{jydSj,jdbcType=VARCHAR},
+      </if>
+      <if test="jydCp != null">
+        #{jydCp,jdbcType=VARCHAR},
+      </if>
+      <if test="jydSjlxfs != null">
+        #{jydSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="jydBm != null">
+        #{jydBm,jdbcType=VARCHAR},
+      </if>
+      <if test="jydMc != null">
+        #{jydMc,jdbcType=VARCHAR},
+      </if>
+      <if test="jydJc != null">
+        #{jydJc,jdbcType=VARCHAR},
+      </if>
+      <if test="jydPym != null">
+        #{jydPym,jdbcType=VARCHAR},
+      </if>
+      <if test="jydRwbh != null">
+        #{jydRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="jydCRwbh != null">
+        #{jydCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldBz != null">
+        #{zjfscwldBz,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldSfjsc != null">
+        #{zjfscwldSfjsc,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldSj != null">
+        #{zjfscwldSj,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldCp != null">
+        #{zjfscwldCp,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldSjlxfs != null">
+        #{zjfscwldSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldShrbm != null">
+        #{zjfscwldShrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldShrmc != null">
+        #{zjfscwldShrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldZyxx != null">
+        #{zjfscwldZyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldRwbh != null">
+        #{zjfscwldRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldCRwbh != null">
+        #{zjfscwldCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="scBz != null">
+        #{scBz,jdbcType=VARCHAR},
+      </if>
+      <if test="scSj != null">
+        #{scSj,jdbcType=VARCHAR},
+      </if>
+      <if test="scCp != null">
+        #{scCp,jdbcType=VARCHAR},
+      </if>
+      <if test="scSjlxfs != null">
+        #{scSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="scBm != null">
+        #{scBm,jdbcType=VARCHAR},
+      </if>
+      <if test="scMc != null">
+        #{scMc,jdbcType=VARCHAR},
+      </if>
+      <if test="scJc != null">
+        #{scJc,jdbcType=VARCHAR},
+      </if>
+      <if test="scPym != null">
+        #{scPym,jdbcType=VARCHAR},
+      </if>
+      <if test="scLgfs != null">
+        #{scLgfs,jdbcType=VARCHAR},
+      </if>
+      <if test="scRwbh != null">
+        #{scRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="scCRwbh != null">
+        #{scCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldBz != null">
+        #{jschfscwldBz,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldSfjsc != null">
+        #{jschfscwldSfjsc,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldSj != null">
+        #{jschfscwldSj,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldCp != null">
+        #{jschfscwldCp,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldSjlxfs != null">
+        #{jschfscwldSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldShrbm != null">
+        #{jschfscwldShrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldShrmc != null">
+        #{jschfscwldShrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldZyxx != null">
+        #{jschfscwldZyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldRwbh != null">
+        #{jschfscwldRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldCRwbh != null">
+        #{jschfscwldCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Bz != null">
+        #{fscwld3Bz,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Sfjsc != null">
+        #{fscwld3Sfjsc,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Sj != null">
+        #{fscwld3Sj,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Cp != null">
+        #{fscwld3Cp,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Sjlxfs != null">
+        #{fscwld3Sjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Shrbm != null">
+        #{fscwld3Shrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Shrmc != null">
+        #{fscwld3Shrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Zyxx != null">
+        #{fscwld3Zyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Rwbh != null">
+        #{fscwld3Rwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3CRwbh != null">
+        #{fscwld3CRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Bz != null">
+        #{fscwld4Bz,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Sfjsc != null">
+        #{fscwld4Sfjsc,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Sj != null">
+        #{fscwld4Sj,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Cp != null">
+        #{fscwld4Cp,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Sjlxfs != null">
+        #{fscwld4Sjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Shrbm != null">
+        #{fscwld4Shrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Shrmc != null">
+        #{fscwld4Shrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Zyxx != null">
+        #{fscwld4Zyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Rwbh != null">
+        #{fscwld4Rwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4CRwbh != null">
+        #{fscwld4CRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="dcBz != null">
+        #{dcBz,jdbcType=VARCHAR},
+      </if>
+      <if test="dcSj != null">
+        #{dcSj,jdbcType=VARCHAR},
+      </if>
+      <if test="dcCp != null">
+        #{dcCp,jdbcType=VARCHAR},
+      </if>
+      <if test="dcSjlxfs != null">
+        #{dcSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="dcBm != null">
+        #{dcBm,jdbcType=VARCHAR},
+      </if>
+      <if test="dcMc != null">
+        #{dcMc,jdbcType=VARCHAR},
+      </if>
+      <if test="dcJc != null">
+        #{dcJc,jdbcType=VARCHAR},
+      </if>
+      <if test="dcPym != null">
+        #{dcPym,jdbcType=VARCHAR},
+      </if>
+      <if test="dcRwbh != null">
+        #{dcRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="sdxtdsj != null">
+        #{sdxtdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fxgsbm != null">
+        #{fxgsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="fxgsmc != null">
+        #{fxgsmc,jdbcType=VARCHAR},
+      </if>
+      <if test="fxgsjc != null">
+        #{fxgsjc,jdbcType=VARCHAR},
+      </if>
+      <if test="fxgspym != null">
+        #{fxgspym,jdbcType=VARCHAR},
+      </if>
+      <if test="cgsfxdbm != null">
+        #{cgsfxdbm,jdbcType=VARCHAR},
+      </if>
+      <if test="cgsfxdmc != null">
+        #{cgsfxdmc,jdbcType=VARCHAR},
+      </if>
+      <if test="cgsfxdjc != null">
+        #{cgsfxdjc,jdbcType=VARCHAR},
+      </if>
+      <if test="cgsfxdpym != null">
+        #{cgsfxdpym,jdbcType=VARCHAR},
+      </if>
+      <if test="sbjjdh != null">
+        #{sbjjdh,jdbcType=VARCHAR},
+      </if>
+      <if test="fxdcbm != null">
+        #{fxdcbm,jdbcType=VARCHAR},
+      </if>
+      <if test="fxdcmc != null">
+        #{fxdcmc,jdbcType=VARCHAR},
+      </if>
+      <if test="fxdcjc != null">
+        #{fxdcjc,jdbcType=VARCHAR},
+      </if>
+      <if test="fxdcpym != null">
+        #{fxdcpym,jdbcType=VARCHAR},
+      </if>
+      <if test="gqjhsj != null">
+        #{gqjhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gqjhsjLb != null">
+        #{gqjhsjLb,jdbcType=VARCHAR},
+      </if>
+      <if test="sjmc != null">
+        #{sjmc,jdbcType=VARCHAR},
+      </if>
+      <if test="cph != null">
+        #{cph,jdbcType=VARCHAR},
+      </if>
+      <if test="mtywclbz != null">
+        #{mtywclbz,jdbcType=VARCHAR},
+      </if>
+      <if test="ccsj != null">
+        #{ccsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hdcsj != null">
+        #{hdcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cgqsj != null">
+        #{cgqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cydsj != null">
+        #{cydsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cydbz != null">
+        #{cydbz,jdbcType=VARCHAR},
+      </if>
+      <if test="djydsj != null">
+        #{djydsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="tgjysj != null">
+        #{tgjysj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jycydzt != null">
+        #{jycydzt,jdbcType=VARCHAR},
+      </if>
+      <if test="kghcl != null">
+        #{kghcl,jdbcType=VARCHAR},
+      </if>
+      <if test="rscsj != null">
+        #{rscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="khtzhxsj != null">
+        #{khtzhxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xqrqksj != null">
+        #{xqrqksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="ccjhsj != null">
+        #{ccjhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cscsj != null">
+        #{cscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hxfs != null">
+        #{hxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="jzxydgsj != null">
+        #{jzxydgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jzxzscsj != null">
+        #{jzxzscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jzxytzqksj != null">
+        #{jzxytzqksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="scbz != null">
+        #{scbz,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwlDdsj != null">
+        #{fscwlDdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwlLksj != null">
+        #{fscwlLksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl2Ddsj != null">
+        #{fscwl2Ddsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl2Lksj != null">
+        #{fscwl2Lksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl3Ddsj != null">
+        #{fscwl3Ddsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl3Lksj != null">
+        #{fscwl3Lksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl4Ddsj != null">
+        #{fscwl4Ddsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl4Lksj != null">
+        #{fscwl4Lksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="csbz != null">
+        #{csbz,jdbcType=VARCHAR},
+      </if>
+      <if test="zhlx != null">
+        #{zhlx,jdbcType=VARCHAR},
+      </if>
+      <if test="lkjydsj != null">
+        #{lkjydsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jydbz != null">
+        #{jydbz,jdbcType=VARCHAR},
+      </if>
+      <if test="yqfssj != null">
+        #{yqfssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sffsbz != null">
+        #{sffsbz,jdbcType=VARCHAR},
+      </if>
+      <if test="sdxxsj != null">
+        #{sdxxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfsdxxbz != null">
+        #{sfsdxxbz,jdbcType=VARCHAR},
+      </if>
+      <if test="sfyxcjh != null">
+        #{sfyxcjh,jdbcType=VARCHAR},
+      </if>
+      <if test="sfsdfxhz != null">
+        #{sfsdfxhz,jdbcType=VARCHAR},
+      </if>
+      <if test="dcsfyd != null">
+        #{dcsfyd,jdbcType=VARCHAR},
+      </if>
+      <if test="hmtsj != null">
+        #{hmtsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="dhxgssj != null">
+        #{dhxgssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zybz != null">
+        #{zybz,jdbcType=VARCHAR},
+      </if>
+      <if test="cqfje != null">
+        #{cqfje,jdbcType=DECIMAL},
+      </if>
+      <if test="cqjsbzrq != null">
+        #{cqjsbzrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="khjydzt != null">
+        #{khjydzt,jdbcType=VARCHAR},
+      </if>
+      <if test="yfkdbh != null">
+        #{yfkdbh,jdbcType=VARCHAR},
+      </if>
+      <if test="sfyyfk != null">
+        #{sfyyfk,jdbcType=VARCHAR},
+      </if>
+      <if test="state != null">
+        #{state,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwbm != null">
+        #{jsdwbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwmc != null">
+        #{jsdwmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwjc != null">
+        #{jsdwjc,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwpym != null">
+        #{jsdwpym,jdbcType=VARCHAR},
+      </if>
+      <if test="jsbm != null">
+        #{jsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwqr != null">
+        #{jsdwqr,jdbcType=VARCHAR},
+      </if>
+      <if test="sfyjsbm != null">
+        #{sfyjsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="yscqfqr != null">
+        #{yscqfqr,jdbcType=VARCHAR},
+      </if>
+      <if test="yscqfje != null">
+        #{yscqfje,jdbcType=NUMERIC},
+      </if>
+      <if test="yscqfqrrq != null">
+        #{yscqfqrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wlfyqr != null">
+        #{wlfyqr,jdbcType=VARCHAR},
+      </if>
+      <if test="wlfyqrrq != null">
+        #{wlfyqrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wlfyje != null">
+        #{wlfyje,jdbcType=NUMERIC},
+      </if>
+      <if test="wlfylclfje != null">
+        #{wlfylclfje,jdbcType=NUMERIC},
+      </if>
+      <if test="tjrq != null">
+        #{tjrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="tsycdzyjsje != null">
+        #{tsycdzyjsje,jdbcType=NUMERIC},
+      </if>
+      <if test="yshdfygjbh != null">
+        #{yshdfygjbh,jdbcType=VARCHAR},
+      </if>
+      <if test="gjsj != null">
+        #{gjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gjcs != null">
+        #{gjcs,jdbcType=INTEGER},
+      </if>
+      <if test="yshdfygjbhCqf != null">
+        #{yshdfygjbhCqf,jdbcType=VARCHAR},
+      </if>
+      <if test="gjsjCqf != null">
+        #{gjsjCqf,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gjcsCqf != null">
+        #{gjcsCqf,jdbcType=INTEGER},
+      </if>
+      <if test="lxr != null">
+        #{lxr,jdbcType=VARCHAR},
+      </if>
+      <if test="lxdh != null">
+        #{lxdh,jdbcType=VARCHAR},
+      </if>
+      <if test="wxsffsCqf != null">
+        #{wxsffsCqf,jdbcType=VARCHAR},
+      </if>
+      <if test="wllxqdrq != null">
+        #{wllxqdrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jssfwc != null">
+        #{jssfwc,jdbcType=VARCHAR},
+      </if>
+      <if test="jswcsj != null">
+        #{jswcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sflc != null">
+        #{sflc,jdbcType=VARCHAR},
+      </if>
+      <if test="lxr2 != null">
+        #{lxr2,jdbcType=VARCHAR},
+      </if>
+      <if test="lxdh2 != null">
+        #{lxdh2,jdbcType=VARCHAR},
+      </if>
+      <if test="lxr3 != null">
+        #{lxr3,jdbcType=VARCHAR},
+      </if>
+      <if test="lxdh3 != null">
+        #{lxdh3,jdbcType=VARCHAR},
+      </if>
+      <if test="lxr4 != null">
+        #{lxr4,jdbcType=VARCHAR},
+      </if>
+      <if test="lxdh4 != null">
+        #{lxdh4,jdbcType=VARCHAR},
+      </if>
+      <if test="kgsj != null">
+        #{kgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="ssys != null">
+        #{ssys,jdbcType=VARCHAR},
+      </if>
+      <if test="kghclsj != null">
+        #{kghclsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wllhzt != null">
+        #{wllhzt,jdbcType=VARCHAR},
+      </if>
+      <if test="wllhsj != null">
+        #{wllhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sqlhpc != null">
+        #{sqlhpc,jdbcType=VARCHAR},
+      </if>
+      <if test="lhbz != null">
+        #{lhbz,jdbcType=VARCHAR},
+      </if>
+      <if test="sqsj != null">
+        #{sqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cdbm != null">
+        #{cdbm,jdbcType=VARCHAR},
+      </if>
+      <if test="cdmc != null">
+        #{cdmc,jdbcType=VARCHAR},
+      </if>
+      <if test="cdjc != null">
+        #{cdjc,jdbcType=VARCHAR},
+      </if>
+      <if test="cdpym != null">
+        #{cdpym,jdbcType=VARCHAR},
+      </if>
+      <if test="fxsj != null">
+        #{fxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="htjhthsjSjd != null">
+        #{htjhthsjSjd,jdbcType=VARCHAR},
+      </if>
+      <if test="htjhthscsj != null">
+        #{htjhthscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cdjsdwbm != null">
+        #{cdjsdwbm,jdbcType=VARCHAR},
+      </if>
+      <if test="cdjsdwmc != null">
+        #{cdjsdwmc,jdbcType=VARCHAR},
+      </if>
+      <if test="cdjsdwjc != null">
+        #{cdjsdwjc,jdbcType=VARCHAR},
+      </if>
+      <if test="cdjsdwpym != null">
+        #{cdjsdwpym,jdbcType=VARCHAR},
+      </if>
+      <if test="contractcontainerid != null">
+        #{contractcontainerid,jdbcType=VARCHAR},
+      </if>
+      <if test="jgqsj != null">
+        #{jgqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cjydsj != null">
+        #{cjydsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="dj != null">
+        #{dj,jdbcType=VARCHAR},
+      </if>
+      <if test="cgqsjLrsj != null">
+        #{cgqsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="djydsjLrsj != null">
+        #{djydsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="tgjysjLrsj != null">
+        #{tgjysjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kgsjLrsj != null">
+        #{kgsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cgqsjCzry != null">
+        #{cgqsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="djydsjCzry != null">
+        #{djydsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="tgjysjCzry != null">
+        #{tgjysjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="kgsjCzry != null">
+        #{kgsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="kghclsjLrsj != null">
+        #{kghclsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kghclsjCzry != null">
+        #{kghclsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="dzdd != null">
+        #{dzdd,jdbcType=VARCHAR},
+      </if>
+      <if test="zqCgqsj != null">
+        #{zqCgqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cjydsjLrsj != null">
+        #{cjydsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cjydsjCzry != null">
+        #{cjydsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrjc != null">
+        #{jdrjc,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrmc != null">
+        #{jdrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrbm != null">
+        #{jdrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrpym != null">
+        #{jdrpym,jdbcType=VARCHAR},
+      </if>
+      <if test="htjhthsjLrsj != null">
+        #{htjhthsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lrcxQrbz != null">
+        #{lrcxQrbz,jdbcType=VARCHAR},
+      </if>
+      <if test="lrcxQrrq != null">
+        #{lrcxQrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lrcxBz != null">
+        #{lrcxBz,jdbcType=VARCHAR},
+      </if>
+      <if test="jzxlrcxBz != null">
+        #{jzxlrcxBz,jdbcType=VARCHAR},
+      </if>
+      <if test="xcsj != null">
+        #{xcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jzxlrcxQrbz != null">
+        #{jzxlrcxQrbz,jdbcType=VARCHAR},
+      </if>
+      <if test="jzxlrcxQrrq != null">
+        #{jzxlrcxQrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="clsscd != null">
+        #{clsscd,jdbcType=VARCHAR},
+      </if>
+      <if test="lkBz != null">
+        #{lkBz,jdbcType=VARCHAR},
+      </if>
+      <if test="khzdthsj != null">
+        #{khzdthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="khzdthsjLrsj != null">
+        #{khzdthsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="khzdthsjCzry != null">
+        #{khzdthsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="yqsdsj != null">
+        #{yqsdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="shr != null">
+        #{shr,jdbcType=VARCHAR},
+      </if>
+      <if test="shrdh != null">
+        #{shrdh,jdbcType=VARCHAR},
+      </if>
+      <if test="ggsj != null">
+        #{ggsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="spxh != null">
+        #{spxh,jdbcType=VARCHAR},
+      </if>
+      <if test="sggqbm != null">
+        #{sggqbm,jdbcType=VARCHAR},
+      </if>
+      <if test="sggqmc != null">
+        #{sggqmc,jdbcType=VARCHAR},
+      </if>
+      <if test="sggqjc != null">
+        #{sggqjc,jdbcType=VARCHAR},
+      </if>
+      <if test="sggqpym != null">
+        #{sggqpym,jdbcType=VARCHAR},
+      </if>
+      <if test="cqfcxBz != null">
+        #{cqfcxBz,jdbcType=VARCHAR},
+      </if>
+      <if test="sbjjd != null">
+        #{sbjjd,jdbcType=CHAR},
+      </if>
+      <if test="sbjjdLrry != null">
+        #{sbjjdLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="sbjjdLrsj != null">
+        #{sbjjdLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hzSc != null">
+        #{hzSc,jdbcType=VARCHAR},
+      </if>
+      <if test="pdy != null">
+        #{pdy,jdbcType=VARCHAR},
+      </if>
+      <if test="gjbeizhu != null">
+        #{gjbeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="wlbgz != null">
+        #{wlbgz,jdbcType=VARCHAR},
+      </if>
+      <if test="wlbgzLrry != null">
+        #{wlbgzLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="wlbgzLrsj != null">
+        #{wlbgzLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lldh != null">
+        #{lldh,jdbcType=VARCHAR},
+      </if>
+      <if test="ccrn != null">
+        #{ccrn,jdbcType=VARCHAR},
+      </if>
+      <if test="tgrq != null">
+        #{tgrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qgrq != null">
+        #{qgrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szjb != null">
+        #{szjb,jdbcType=VARCHAR},
+      </if>
+      <if test="jhrq1 != null">
+        #{jhrq1,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jgwq1 != null">
+        #{jgwq1,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wlgzState != null">
+        #{wlgzState,jdbcType=VARCHAR},
+      </if>
+      <if test="wlgzJjyy != null">
+        #{wlgzJjyy,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqCcfs != null">
+        #{sjzqCcfs,jdbcType=VARCHAR},
+      </if>
+      <if test="sfzlc != null">
+        #{sfzlc,jdbcType=CHAR},
+      </if>
+      <if test="ycbeizhu != null">
+        #{ycbeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="zzhwsqh != null">
+        #{zzhwsqh,jdbcType=VARCHAR},
+      </if>
+      <if test="zzqrsh != null">
+        #{zzqrsh,jdbcType=VARCHAR},
+      </if>
+      <if test="xfdysj != null">
+        #{xfdysj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zzsdysj != null">
+        #{zzsdysj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lldhLrsj != null">
+        #{lldhLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjzqCgqsj != null">
+        #{sjzqCgqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="htjhthsjXgyy != null">
+        #{htjhthsjXgyy,jdbcType=VARCHAR},
+      </if>
+      <if test="khgtjlBeizhu != null">
+        #{khgtjlBeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwqrRy != null">
+        #{jsdwqrRy,jdbcType=VARCHAR},
+      </if>
+      <if test="khmc != null">
+        #{khmc,jdbcType=VARCHAR},
+      </if>
+      <if test="khjc != null">
+        #{khjc,jdbcType=VARCHAR},
+      </if>
+      <if test="khpym != null">
+        #{khpym,jdbcType=VARCHAR},
+      </if>
+      <if test="khbm != null">
+        #{khbm,jdbcType=VARCHAR},
+      </if>
+      <if test="lrqr != null">
+        #{lrqr,jdbcType=CHAR},
+      </if>
+      <if test="qrry != null">
+        #{qrry,jdbcType=VARCHAR},
+      </if>
+      <if test="ycyyrl != null">
+        #{ycyyrl,jdbcType=VARCHAR},
+      </if>
+      <if test="zdjkKssj != null">
+        #{zdjkKssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zdjkJssj != null">
+        #{zdjkJssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lc != null">
+        #{lc,jdbcType=CHAR},
+      </if>
+      <if test="lcStarttime != null">
+        #{lcStarttime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lcEndtime != null">
+        #{lcEndtime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kgyy != null">
+        #{kgyy,jdbcType=VARCHAR},
+      </if>
+      <if test="beizhuRy != null">
+        #{beizhuRy,jdbcType=VARCHAR},
+      </if>
+      <if test="rlksj != null">
+        #{rlksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gzryqr != null">
+        #{gzryqr,jdbcType=CHAR},
+      </if>
+      <if test="khzbth != null">
+        #{khzbth,jdbcType=CHAR},
+      </if>
+      <if test="khzbthQrsj != null">
+        #{khzbthQrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfycb != null">
+        #{sfycb,jdbcType=CHAR},
+      </if>
+      <if test="sfyys != null">
+        #{sfyys,jdbcType=CHAR},
+      </if>
+      <if test="gzryqrry != null">
+        #{gzryqrry,jdbcType=VARCHAR},
+      </if>
+      <if test="cgqsjXg != null">
+        #{cgqsjXg,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xcsjXg != null">
+        #{xcsjXg,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cgqsjSz != null">
+        #{cgqsjSz,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xcsjSz != null">
+        #{xcsjSz,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gzryhxqr != null">
+        #{gzryhxqr,jdbcType=CHAR},
+      </if>
+      <if test="gzryhxqrry != null">
+        #{gzryhxqrry,jdbcType=CHAR},
+      </if>
+      <if test="wlbz != null">
+        #{wlbz,jdbcType=VARCHAR},
+      </if>
+      <if test="zyxxImportUser != null">
+        #{zyxxImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="cwbz != null">
+        #{cwbz,jdbcType=VARCHAR},
+      </if>
+      <if test="anJeGb != null">
+        #{anJeGb,jdbcType=DOUBLE},
+      </if>
+      <if test="anJeMj != null">
+        #{anJeMj,jdbcType=DOUBLE},
+      </if>
+      <if test="mjhl != null">
+        #{mjhl,jdbcType=DOUBLE},
+      </if>
+      <if test="wlqrsj != null">
+        #{wlqrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fylr != null">
+        #{fylr,jdbcType=DECIMAL},
+      </if>
+      <if test="hgfs != null">
+        #{hgfs,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqJcfs != null">
+        #{sjzqJcfs,jdbcType=VARCHAR},
+      </if>
+      <if test="hgfsZhm != null">
+        #{hgfsZhm,jdbcType=VARCHAR},
+      </if>
+      <if test="hgfsXgsj != null">
+        #{hgfsXgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cgfxqfyGd != null">
+        #{cgfxqfyGd,jdbcType=VARCHAR},
+      </if>
+      <if test="cgfxhfyWl != null">
+        #{cgfxhfyWl,jdbcType=VARCHAR},
+      </if>
+      <if test="jssqr != null">
+        #{jssqr,jdbcType=VARCHAR},
+      </if>
+      <if test="jsyy != null">
+        #{jsyy,jdbcType=VARCHAR},
+      </if>
+      <if test="jsStart != null">
+        #{jsStart,jdbcType=CHAR},
+      </if>
+      <if test="qgrqLrsj != null">
+        #{qgrqLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qgrqLrry != null">
+        #{qgrqLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="sfypz != null">
+        #{sfypz,jdbcType=CHAR},
+      </if>
+      <if test="xwxfdjsBeizhu != null">
+        #{xwxfdjsBeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="scfyBeizhu != null">
+        #{scfyBeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="xzz != null">
+        #{xzz,jdbcType=VARCHAR},
+      </if>
+      <if test="sfzg != null">
+        #{sfzg,jdbcType=VARCHAR},
+      </if>
+      <if test="zgxksj != null">
+        #{zgxksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xklrsj != null">
+        #{xklrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zjbjh != null">
+        #{zjbjh,jdbcType=VARCHAR},
+      </if>
+      <if test="gzjysbsj != null">
+        #{gzjysbsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jqsbwcsj != null">
+        #{jqsbwcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="grabOutTime != null">
+        #{grabOutTime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="grabDownTime != null">
+        #{grabDownTime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wlqryf != null">
+        #{wlqryf,jdbcType=DECIMAL},
+      </if>
+      <if test="wlzyjthsj != null">
+        #{wlzyjthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wlzyjthpc != null">
+        #{wlzyjthpc,jdbcType=VARCHAR},
+      </if>
+      <if test="yjxcsj != null">
+        #{yjxcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qcdl != null">
+        #{qcdl,jdbcType=VARCHAR},
+      </if>
+      <if test="dcthkhyqsdsj != null">
+        #{dcthkhyqsdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="dcthwlzfksdsj != null">
+        #{dcthwlzfksdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jjnsc != null">
+        #{jjnsc,jdbcType=VARCHAR},
+      </if>
+      <if test="ydsdcl != null">
+        #{ydsdcl,jdbcType=VARCHAR},
+      </if>
+      <if test="dcsfydCzsj != null">
+        #{dcsfydCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bgid != null">
+        #{bgid,jdbcType=VARCHAR},
+      </if>
+      <if test="yjtgrq != null">
+        #{yjtgrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjtgrqImportUser != null">
+        #{yjtgrqImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="jhyap != null">
+        #{jhyap,jdbcType=VARCHAR},
+      </if>
+      <if test="jhyapCzsj != null">
+        #{jhyapCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lxrImportUser != null">
+        #{lxrImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="qcdlImportUser != null">
+        #{qcdlImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="jjnscImportUser != null">
+        #{jjnscImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="sfzgImportUser != null">
+        #{sfzgImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="khzbthImportUser != null">
+        #{khzbthImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="cgfxqfyGdImportUser != null">
+        #{cgfxqfyGdImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="jjnscsj != null">
+        #{jjnscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gzryqrLrsj != null">
+        #{gzryqrLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xqrqksjLrsj != null">
+        #{xqrqksjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qcbz != null">
+        #{qcbz,jdbcType=VARCHAR},
+      </if>
+      <if test="tch != null">
+        #{tch,jdbcType=NVARCHAR},
+      </if>
+      <if test="fxzt != null">
+        #{fxzt,jdbcType=NVARCHAR},
+      </if>
+      <if test="dqwz != null">
+        #{dqwz,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfapth != null">
+        #{sfapth,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfapthczsj != null">
+        #{sfapthczsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yqthsj != null">
+        #{yqthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="apthBz != null">
+        #{apthBz,jdbcType=NVARCHAR},
+      </if>
+      <if test="xc2ccyDy != null">
+        #{xc2ccyDy,jdbcType=NVARCHAR},
+      </if>
+      <if test="cphDyc != null">
+        #{cphDyc,jdbcType=NVARCHAR},
+      </if>
+      <if test="khxqtcsj != null">
+        #{khxqtcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jhxgwlsj != null">
+        #{jhxgwlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jhdbjdl != null">
+        #{jhdbjdl,jdbcType=VARCHAR},
+      </if>
+      <if test="jhdbjdlLlsj != null">
+        #{jhdbjdlLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wxpdy != null">
+        #{wxpdy,jdbcType=VARCHAR},
+      </if>
+      <if test="wlzyjthsjLlsj != null">
+        #{wlzyjthsjLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjyqsdsj != null">
+        #{yjyqsdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qrqk != null">
+        #{qrqk,jdbcType=NVARCHAR},
+      </if>
+      <if test="ecph != null">
+        #{ecph,jdbcType=VARCHAR},
+      </if>
+      <if test="wlzyjthpcLlsj != null">
+        #{wlzyjthpcLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjxcsjLlsj != null">
+        #{yjxcsjLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjtgrqLlsj != null">
+        #{yjtgrqLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="khxqtcsjLlsj != null">
+        #{khxqtcsjLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="mzsj != null">
+        #{mzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jjzt != null">
+        #{jjzt,jdbcType=VARCHAR},
+      </if>
+      <if test="sfxs != null">
+        #{sfxs,jdbcType=INTEGER},
+      </if>
+      <if test="xsbglj != null">
+        #{xsbglj,jdbcType=NVARCHAR},
+      </if>
+      <if test="xsgsmc != null">
+        #{xsgsmc,jdbcType=NVARCHAR},
+      </if>
+      <if test="xslxr != null">
+        #{xslxr,jdbcType=NVARCHAR},
+      </if>
+      <if test="xclxr != null">
+        #{xclxr,jdbcType=NVARCHAR},
+      </if>
+      <if test="czxxsftg != null">
+        #{czxxsftg,jdbcType=NVARCHAR},
+      </if>
+      <if test="xslx != null">
+        #{xslx,jdbcType=NVARCHAR},
+      </if>
+      <if test="hsjcbz != null">
+        #{hsjcbz,jdbcType=NVARCHAR},
+      </if>
+      <if test="fybz != null">
+        #{fybz,jdbcType=NVARCHAR},
+      </if>
+      <if test="wlpdsj != null">
+        #{wlpdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szsfxs != null">
+        #{szsfxs,jdbcType=VARCHAR},
+      </if>
+      <if test="sfhs != null">
+        #{sfhs,jdbcType=VARCHAR},
+      </if>
+      <if test="sfsjddc != null">
+        #{sfsjddc,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfhssj != null">
+        #{sfhssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zbgd != null">
+        #{zbgd,jdbcType=NVARCHAR},
+      </if>
+      <if test="zbgdrq != null">
+        #{zbgdrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gzryhxqrCxsj != null">
+        #{gzryhxqrCxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xsbgljsj != null">
+        #{xsbgljsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfdd != null">
+        #{sfdd,jdbcType=VARCHAR},
+      </if>
+      <if test="sfcyjzx != null">
+        #{sfcyjzx,jdbcType=VARCHAR},
+      </if>
+      <if test="gcsfcy != null">
+        #{gcsfcy,jdbcType=VARCHAR},
+      </if>
+      <if test="gcsfcyCzsj != null">
+        #{gcsfcyCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szktsj != null">
+        #{szktsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szkgsj != null">
+        #{szkgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szclfxsj != null">
+        #{szclfxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szcyyc != null">
+        #{szcyyc,jdbcType=VARCHAR},
+      </if>
+      <if test="szktsjCzry != null">
+        #{szktsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="szktsjCzsj != null">
+        #{szktsjCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szkgsjCzry != null">
+        #{szkgsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="szkgsjCzsj != null">
+        #{szkgsjCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szclfxsjCzry != null">
+        #{szclfxsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="szclfxsjCzsj != null">
+        #{szclfxsjCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gcsfcyCzry != null">
+        #{gcsfcyCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="cyfybz != null">
+        #{cyfybz,jdbcType=VARCHAR},
+      </if>
+      <if test="gczl != null">
+        #{gczl,jdbcType=VARCHAR},
+      </if>
+      <if test="jhrq != null">
+        #{jhrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cskhg != null">
+        #{cskhg,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cszhg != null">
+        #{cszhg,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cxghg != null">
+        #{cxghg,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jcgzj != null">
+        #{jcgzj,jdbcType=VARCHAR},
+      </if>
+      <if test="jchxdc != null">
+        #{jchxdc,jdbcType=VARCHAR},
+      </if>
+      <if test="sdsj != null">
+        #{sdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfylr != null">
+        #{sfylr,jdbcType=VARCHAR},
+      </if>
+      <if test="jhd != null">
+        #{jhd,jdbcType=VARCHAR},
+      </if>
+      <if test="ddsj != null">
+        #{ddsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sffwdj != null">
+        #{sffwdj,jdbcType=VARCHAR},
+      </if>
+      <if test="sfwsttjsc != null">
+        #{sfwsttjsc,jdbcType=VARCHAR},
+      </if>
+      <if test="wlkthsj != null">
+        #{wlkthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfwlkt != null">
+        #{sfwlkt,jdbcType=CHAR},
+      </if>
+      <if test="sfkhwlxq != null">
+        #{sfkhwlxq,jdbcType=CHAR},
+      </if>
+      <if test="zggtpc != null">
+        #{zggtpc,jdbcType=VARCHAR},
+      </if>
+      <if test="zgwlpdsj != null">
+        #{zgwlpdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kjzyme != null">
+        #{kjzyme,jdbcType=CHAR},
+      </if>
+      <if test="kjzymesj != null">
+        #{kjzymesj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cgzjsj != null">
+        #{cgzjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zgwlzyjtgsj != null">
+        #{zgwlzyjtgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cmyzhjbcsj != null">
+        #{cmyzhjbcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cjkjzydsj != null">
+        #{cjkjzydsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kjzyddz != null">
+        #{kjzyddz,jdbcType=VARCHAR},
+      </if>
+      <if test="hxq != null">
+        #{hxq,jdbcType=INTEGER},
+      </if>
+      <if test="mtmDuiQ != null">
+        #{mtmDuiQ,jdbcType=INTEGER},
+      </if>
+      <if test="mtmDianQ != null">
+        #{mtmDianQ,jdbcType=INTEGER},
+      </if>
+    </trim>
+  </insert>
+  <update id="updateByPrimaryKeySelective" parameterType="com.freshport.entity.YwHddzJzxxx">
+    update yw_hddz_jzxxx
+    <set>
+      <if test="ywbh != null">
+        ywbh = #{ywbh,jdbcType=VARCHAR},
+      </if>
+      <if test="cxh != null">
+        cxh = #{cxh,jdbcType=INTEGER},
+      </if>
+      <if test="ysfs != null">
+        ysfs = #{ysfs,jdbcType=VARCHAR},
+      </if>
+      <if test="jzxh != null">
+        jzxh = #{jzxh,jdbcType=VARCHAR},
+      </if>
+      <if test="xx != null">
+        xx = #{xx,jdbcType=VARCHAR},
+      </if>
+      <if test="xl != null">
+        xl = #{xl,jdbcType=VARCHAR},
+      </if>
+      <if test="sjshrbm != null">
+        sjshrbm = #{sjshrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="sjshrmc != null">
+        sjshrmc = #{sjshrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="shdz != null">
+        shdz = #{shdz,jdbcType=VARCHAR},
+      </if>
+      <if test="zyxx != null">
+        zyxx = #{zyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="clfs != null">
+        clfs = #{clfs,jdbcType=VARCHAR},
+      </if>
+      <if test="tpxx != null">
+        tpxx = #{tpxx,jdbcType=INTEGER},
+      </if>
+      <if test="htjhthsj != null">
+        htjhthsj = #{htjhthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="htjhthsjLb != null">
+        htjhthsj_lb = #{htjhthsjLb,jdbcType=VARCHAR},
+      </if>
+      <if test="xcjhthsj != null">
+        xcjhthsj = #{xcjhthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="thjjcd != null">
+        thjjcd = #{thjjcd,jdbcType=VARCHAR},
+      </if>
+      <if test="beizhu != null">
+        beizhu = #{beizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="gqBz != null">
+        gq_bz = #{gqBz,jdbcType=VARCHAR},
+      </if>
+      <if test="gqSj != null">
+        gq_sj = #{gqSj,jdbcType=VARCHAR},
+      </if>
+      <if test="gqCp != null">
+        gq_cp = #{gqCp,jdbcType=VARCHAR},
+      </if>
+      <if test="gqSjlxfs != null">
+        gq_sjlxfs = #{gqSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="gqRwbh != null">
+        gq_rwbh = #{gqRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="gqCRwbh != null">
+        gq_c_rwbh = #{gqCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydBz != null">
+        hgcyd_bz = #{hgcydBz,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydSj != null">
+        hgcyd_sj = #{hgcydSj,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydCp != null">
+        hgcyd_cp = #{hgcydCp,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydSjlxfs != null">
+        hgcyd_sjlxfs = #{hgcydSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydRwbh != null">
+        hgcyd_rwbh = #{hgcydRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcydCRwbh != null">
+        hgcyd_c_rwbh = #{hgcydCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="jydBz != null">
+        jyd_bz = #{jydBz,jdbcType=VARCHAR},
+      </if>
+      <if test="jydSj != null">
+        jyd_sj = #{jydSj,jdbcType=VARCHAR},
+      </if>
+      <if test="jydCp != null">
+        jyd_cp = #{jydCp,jdbcType=VARCHAR},
+      </if>
+      <if test="jydSjlxfs != null">
+        jyd_sjlxfs = #{jydSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="jydBm != null">
+        jyd_bm = #{jydBm,jdbcType=VARCHAR},
+      </if>
+      <if test="jydMc != null">
+        jyd_mc = #{jydMc,jdbcType=VARCHAR},
+      </if>
+      <if test="jydJc != null">
+        jyd_jc = #{jydJc,jdbcType=VARCHAR},
+      </if>
+      <if test="jydPym != null">
+        jyd_pym = #{jydPym,jdbcType=VARCHAR},
+      </if>
+      <if test="jydRwbh != null">
+        jyd_rwbh = #{jydRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="jydCRwbh != null">
+        jyd_c_rwbh = #{jydCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldBz != null">
+        zjfscwld_bz = #{zjfscwldBz,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldSfjsc != null">
+        zjfscwld_sfjsc = #{zjfscwldSfjsc,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldSj != null">
+        zjfscwld_sj = #{zjfscwldSj,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldCp != null">
+        zjfscwld_cp = #{zjfscwldCp,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldSjlxfs != null">
+        zjfscwld_sjlxfs = #{zjfscwldSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldShrbm != null">
+        zjfscwld_shrbm = #{zjfscwldShrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldShrmc != null">
+        zjfscwld_shrmc = #{zjfscwldShrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldZyxx != null">
+        zjfscwld_zyxx = #{zjfscwldZyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldRwbh != null">
+        zjfscwld_rwbh = #{zjfscwldRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="zjfscwldCRwbh != null">
+        zjfscwld_c_rwbh = #{zjfscwldCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="scBz != null">
+        sc_bz = #{scBz,jdbcType=VARCHAR},
+      </if>
+      <if test="scSj != null">
+        sc_sj = #{scSj,jdbcType=VARCHAR},
+      </if>
+      <if test="scCp != null">
+        sc_cp = #{scCp,jdbcType=VARCHAR},
+      </if>
+      <if test="scSjlxfs != null">
+        sc_sjlxfs = #{scSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="scBm != null">
+        sc_bm = #{scBm,jdbcType=VARCHAR},
+      </if>
+      <if test="scMc != null">
+        sc_mc = #{scMc,jdbcType=VARCHAR},
+      </if>
+      <if test="scJc != null">
+        sc_jc = #{scJc,jdbcType=VARCHAR},
+      </if>
+      <if test="scPym != null">
+        sc_pym = #{scPym,jdbcType=VARCHAR},
+      </if>
+      <if test="scLgfs != null">
+        sc_lgfs = #{scLgfs,jdbcType=VARCHAR},
+      </if>
+      <if test="scRwbh != null">
+        sc_rwbh = #{scRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="scCRwbh != null">
+        sc_c_rwbh = #{scCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldBz != null">
+        jschfscwld_bz = #{jschfscwldBz,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldSfjsc != null">
+        jschfscwld_sfjsc = #{jschfscwldSfjsc,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldSj != null">
+        jschfscwld_sj = #{jschfscwldSj,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldCp != null">
+        jschfscwld_cp = #{jschfscwldCp,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldSjlxfs != null">
+        jschfscwld_sjlxfs = #{jschfscwldSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldShrbm != null">
+        jschfscwld_shrbm = #{jschfscwldShrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldShrmc != null">
+        jschfscwld_shrmc = #{jschfscwldShrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldZyxx != null">
+        jschfscwld_zyxx = #{jschfscwldZyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldRwbh != null">
+        jschfscwld_rwbh = #{jschfscwldRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="jschfscwldCRwbh != null">
+        jschfscwld_c_rwbh = #{jschfscwldCRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Bz != null">
+        fscwld3_bz = #{fscwld3Bz,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Sfjsc != null">
+        fscwld3_sfjsc = #{fscwld3Sfjsc,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Sj != null">
+        fscwld3_sj = #{fscwld3Sj,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Cp != null">
+        fscwld3_cp = #{fscwld3Cp,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Sjlxfs != null">
+        fscwld3_sjlxfs = #{fscwld3Sjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Shrbm != null">
+        fscwld3_shrbm = #{fscwld3Shrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Shrmc != null">
+        fscwld3_shrmc = #{fscwld3Shrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Zyxx != null">
+        fscwld3_zyxx = #{fscwld3Zyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3Rwbh != null">
+        fscwld3_rwbh = #{fscwld3Rwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld3CRwbh != null">
+        fscwld3_c_rwbh = #{fscwld3CRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Bz != null">
+        fscwld4_bz = #{fscwld4Bz,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Sfjsc != null">
+        fscwld4_sfjsc = #{fscwld4Sfjsc,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Sj != null">
+        fscwld4_sj = #{fscwld4Sj,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Cp != null">
+        fscwld4_cp = #{fscwld4Cp,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Sjlxfs != null">
+        fscwld4_sjlxfs = #{fscwld4Sjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Shrbm != null">
+        fscwld4_shrbm = #{fscwld4Shrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Shrmc != null">
+        fscwld4_shrmc = #{fscwld4Shrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Zyxx != null">
+        fscwld4_zyxx = #{fscwld4Zyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4Rwbh != null">
+        fscwld4_rwbh = #{fscwld4Rwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwld4CRwbh != null">
+        fscwld4_c_rwbh = #{fscwld4CRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="dcBz != null">
+        dc_bz = #{dcBz,jdbcType=VARCHAR},
+      </if>
+      <if test="dcSj != null">
+        dc_sj = #{dcSj,jdbcType=VARCHAR},
+      </if>
+      <if test="dcCp != null">
+        dc_cp = #{dcCp,jdbcType=VARCHAR},
+      </if>
+      <if test="dcSjlxfs != null">
+        dc_sjlxfs = #{dcSjlxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="dcBm != null">
+        dc_bm = #{dcBm,jdbcType=VARCHAR},
+      </if>
+      <if test="dcMc != null">
+        dc_mc = #{dcMc,jdbcType=VARCHAR},
+      </if>
+      <if test="dcJc != null">
+        dc_jc = #{dcJc,jdbcType=VARCHAR},
+      </if>
+      <if test="dcPym != null">
+        dc_pym = #{dcPym,jdbcType=VARCHAR},
+      </if>
+      <if test="dcRwbh != null">
+        dc_rwbh = #{dcRwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="sdxtdsj != null">
+        sdxtdsj = #{sdxtdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fxgsbm != null">
+        fxgsbm = #{fxgsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="fxgsmc != null">
+        fxgsmc = #{fxgsmc,jdbcType=VARCHAR},
+      </if>
+      <if test="fxgsjc != null">
+        fxgsjc = #{fxgsjc,jdbcType=VARCHAR},
+      </if>
+      <if test="fxgspym != null">
+        fxgspym = #{fxgspym,jdbcType=VARCHAR},
+      </if>
+      <if test="cgsfxdbm != null">
+        cgsfxdbm = #{cgsfxdbm,jdbcType=VARCHAR},
+      </if>
+      <if test="cgsfxdmc != null">
+        cgsfxdmc = #{cgsfxdmc,jdbcType=VARCHAR},
+      </if>
+      <if test="cgsfxdjc != null">
+        cgsfxdjc = #{cgsfxdjc,jdbcType=VARCHAR},
+      </if>
+      <if test="cgsfxdpym != null">
+        cgsfxdpym = #{cgsfxdpym,jdbcType=VARCHAR},
+      </if>
+      <if test="sbjjdh != null">
+        sbjjdh = #{sbjjdh,jdbcType=VARCHAR},
+      </if>
+      <if test="fxdcbm != null">
+        fxdcbm = #{fxdcbm,jdbcType=VARCHAR},
+      </if>
+      <if test="fxdcmc != null">
+        fxdcmc = #{fxdcmc,jdbcType=VARCHAR},
+      </if>
+      <if test="fxdcjc != null">
+        fxdcjc = #{fxdcjc,jdbcType=VARCHAR},
+      </if>
+      <if test="fxdcpym != null">
+        fxdcpym = #{fxdcpym,jdbcType=VARCHAR},
+      </if>
+      <if test="gqjhsj != null">
+        gqjhsj = #{gqjhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gqjhsjLb != null">
+        gqjhsj_lb = #{gqjhsjLb,jdbcType=VARCHAR},
+      </if>
+      <if test="sjmc != null">
+        sjmc = #{sjmc,jdbcType=VARCHAR},
+      </if>
+      <if test="cph != null">
+        cph = #{cph,jdbcType=VARCHAR},
+      </if>
+      <if test="mtywclbz != null">
+        mtywclbz = #{mtywclbz,jdbcType=VARCHAR},
+      </if>
+      <if test="ccsj != null">
+        ccsj = #{ccsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hdcsj != null">
+        hdcsj = #{hdcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cgqsj != null">
+        cgqsj = #{cgqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cydsj != null">
+        cydsj = #{cydsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cydbz != null">
+        cydbz = #{cydbz,jdbcType=VARCHAR},
+      </if>
+      <if test="djydsj != null">
+        djydsj = #{djydsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="tgjysj != null">
+        tgjysj = #{tgjysj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jycydzt != null">
+        jycydzt = #{jycydzt,jdbcType=VARCHAR},
+      </if>
+      <if test="kghcl != null">
+        kghcl = #{kghcl,jdbcType=VARCHAR},
+      </if>
+      <if test="rscsj != null">
+        rscsj = #{rscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="khtzhxsj != null">
+        khtzhxsj = #{khtzhxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xqrqksj != null">
+        xqrqksj = #{xqrqksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="ccjhsj != null">
+        ccjhsj = #{ccjhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cscsj != null">
+        cscsj = #{cscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hxfs != null">
+        hxfs = #{hxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="jzxydgsj != null">
+        jzxydgsj = #{jzxydgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jzxzscsj != null">
+        jzxzscsj = #{jzxzscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jzxytzqksj != null">
+        jzxytzqksj = #{jzxytzqksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="scbz != null">
+        scbz = #{scbz,jdbcType=VARCHAR},
+      </if>
+      <if test="fscwlDdsj != null">
+        fscwl_ddsj = #{fscwlDdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwlLksj != null">
+        fscwl_lksj = #{fscwlLksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl2Ddsj != null">
+        fscwl2_ddsj = #{fscwl2Ddsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl2Lksj != null">
+        fscwl2_lksj = #{fscwl2Lksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl3Ddsj != null">
+        fscwl3_ddsj = #{fscwl3Ddsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl3Lksj != null">
+        fscwl3_lksj = #{fscwl3Lksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl4Ddsj != null">
+        fscwl4_ddsj = #{fscwl4Ddsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fscwl4Lksj != null">
+        fscwl4_lksj = #{fscwl4Lksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="csbz != null">
+        csbz = #{csbz,jdbcType=VARCHAR},
+      </if>
+      <if test="zhlx != null">
+        zhlx = #{zhlx,jdbcType=VARCHAR},
+      </if>
+      <if test="lkjydsj != null">
+        lkjydsj = #{lkjydsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jydbz != null">
+        jydbz = #{jydbz,jdbcType=VARCHAR},
+      </if>
+      <if test="yqfssj != null">
+        yqfssj = #{yqfssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sffsbz != null">
+        sffsbz = #{sffsbz,jdbcType=VARCHAR},
+      </if>
+      <if test="sdxxsj != null">
+        sdxxsj = #{sdxxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfsdxxbz != null">
+        sfsdxxbz = #{sfsdxxbz,jdbcType=VARCHAR},
+      </if>
+      <if test="sfyxcjh != null">
+        sfyxcjh = #{sfyxcjh,jdbcType=VARCHAR},
+      </if>
+      <if test="sfsdfxhz != null">
+        sfsdfxhz = #{sfsdfxhz,jdbcType=VARCHAR},
+      </if>
+      <if test="dcsfyd != null">
+        dcsfyd = #{dcsfyd,jdbcType=VARCHAR},
+      </if>
+      <if test="hmtsj != null">
+        hmtsj = #{hmtsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="dhxgssj != null">
+        dhxgssj = #{dhxgssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zybz != null">
+        zybz = #{zybz,jdbcType=VARCHAR},
+      </if>
+      <if test="cqfje != null">
+        cqfje = #{cqfje,jdbcType=DECIMAL},
+      </if>
+      <if test="cqjsbzrq != null">
+        cqjsbzrq = #{cqjsbzrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="khjydzt != null">
+        khjydzt = #{khjydzt,jdbcType=VARCHAR},
+      </if>
+      <if test="yfkdbh != null">
+        yfkdbh = #{yfkdbh,jdbcType=VARCHAR},
+      </if>
+      <if test="sfyyfk != null">
+        sfyyfk = #{sfyyfk,jdbcType=VARCHAR},
+      </if>
+      <if test="state != null">
+        state = #{state,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwbm != null">
+        jsdwbm = #{jsdwbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwmc != null">
+        jsdwmc = #{jsdwmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwjc != null">
+        jsdwjc = #{jsdwjc,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwpym != null">
+        jsdwpym = #{jsdwpym,jdbcType=VARCHAR},
+      </if>
+      <if test="jsbm != null">
+        jsbm = #{jsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwqr != null">
+        jsdwqr = #{jsdwqr,jdbcType=VARCHAR},
+      </if>
+      <if test="sfyjsbm != null">
+        sfyjsbm = #{sfyjsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="yscqfqr != null">
+        yscqfqr = #{yscqfqr,jdbcType=VARCHAR},
+      </if>
+      <if test="yscqfje != null">
+        yscqfje = #{yscqfje,jdbcType=NUMERIC},
+      </if>
+      <if test="yscqfqrrq != null">
+        yscqfqrrq = #{yscqfqrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wlfyqr != null">
+        wlfyqr = #{wlfyqr,jdbcType=VARCHAR},
+      </if>
+      <if test="wlfyqrrq != null">
+        wlfyqrrq = #{wlfyqrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wlfyje != null">
+        wlfyje = #{wlfyje,jdbcType=NUMERIC},
+      </if>
+      <if test="wlfylclfje != null">
+        wlfylclfje = #{wlfylclfje,jdbcType=NUMERIC},
+      </if>
+      <if test="tjrq != null">
+        tjrq = #{tjrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="tsycdzyjsje != null">
+        tsycdzyjsje = #{tsycdzyjsje,jdbcType=NUMERIC},
+      </if>
+      <if test="yshdfygjbh != null">
+        yshdfygjbh = #{yshdfygjbh,jdbcType=VARCHAR},
+      </if>
+      <if test="gjsj != null">
+        gjsj = #{gjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gjcs != null">
+        gjcs = #{gjcs,jdbcType=INTEGER},
+      </if>
+      <if test="yshdfygjbhCqf != null">
+        yshdfygjbh_cqf = #{yshdfygjbhCqf,jdbcType=VARCHAR},
+      </if>
+      <if test="gjsjCqf != null">
+        gjsj_cqf = #{gjsjCqf,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gjcsCqf != null">
+        gjcs_cqf = #{gjcsCqf,jdbcType=INTEGER},
+      </if>
+      <if test="lxr != null">
+        lxr = #{lxr,jdbcType=VARCHAR},
+      </if>
+      <if test="lxdh != null">
+        lxdh = #{lxdh,jdbcType=VARCHAR},
+      </if>
+      <if test="wxsffsCqf != null">
+        wxsffs_cqf = #{wxsffsCqf,jdbcType=VARCHAR},
+      </if>
+      <if test="wllxqdrq != null">
+        wllxqdrq = #{wllxqdrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jssfwc != null">
+        jssfwc = #{jssfwc,jdbcType=VARCHAR},
+      </if>
+      <if test="jswcsj != null">
+        jswcsj = #{jswcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sflc != null">
+        sflc = #{sflc,jdbcType=VARCHAR},
+      </if>
+      <if test="lxr2 != null">
+        lxr2 = #{lxr2,jdbcType=VARCHAR},
+      </if>
+      <if test="lxdh2 != null">
+        lxdh2 = #{lxdh2,jdbcType=VARCHAR},
+      </if>
+      <if test="lxr3 != null">
+        lxr3 = #{lxr3,jdbcType=VARCHAR},
+      </if>
+      <if test="lxdh3 != null">
+        lxdh3 = #{lxdh3,jdbcType=VARCHAR},
+      </if>
+      <if test="lxr4 != null">
+        lxr4 = #{lxr4,jdbcType=VARCHAR},
+      </if>
+      <if test="lxdh4 != null">
+        lxdh4 = #{lxdh4,jdbcType=VARCHAR},
+      </if>
+      <if test="kgsj != null">
+        kgsj = #{kgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="ssys != null">
+        ssys = #{ssys,jdbcType=VARCHAR},
+      </if>
+      <if test="kghclsj != null">
+        kghclsj = #{kghclsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wllhzt != null">
+        wllhzt = #{wllhzt,jdbcType=VARCHAR},
+      </if>
+      <if test="wllhsj != null">
+        wllhsj = #{wllhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sqlhpc != null">
+        sqlhpc = #{sqlhpc,jdbcType=VARCHAR},
+      </if>
+      <if test="lhbz != null">
+        lhbz = #{lhbz,jdbcType=VARCHAR},
+      </if>
+      <if test="sqsj != null">
+        sqsj = #{sqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cdbm != null">
+        cdbm = #{cdbm,jdbcType=VARCHAR},
+      </if>
+      <if test="cdmc != null">
+        cdmc = #{cdmc,jdbcType=VARCHAR},
+      </if>
+      <if test="cdjc != null">
+        cdjc = #{cdjc,jdbcType=VARCHAR},
+      </if>
+      <if test="cdpym != null">
+        cdpym = #{cdpym,jdbcType=VARCHAR},
+      </if>
+      <if test="fxsj != null">
+        fxsj = #{fxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="htjhthsjSjd != null">
+        htjhthsj_sjd = #{htjhthsjSjd,jdbcType=VARCHAR},
+      </if>
+      <if test="htjhthscsj != null">
+        htjhthscsj = #{htjhthscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cdjsdwbm != null">
+        cdjsdwbm = #{cdjsdwbm,jdbcType=VARCHAR},
+      </if>
+      <if test="cdjsdwmc != null">
+        cdjsdwmc = #{cdjsdwmc,jdbcType=VARCHAR},
+      </if>
+      <if test="cdjsdwjc != null">
+        cdjsdwjc = #{cdjsdwjc,jdbcType=VARCHAR},
+      </if>
+      <if test="cdjsdwpym != null">
+        cdjsdwpym = #{cdjsdwpym,jdbcType=VARCHAR},
+      </if>
+      <if test="contractcontainerid != null">
+        contractcontainerid = #{contractcontainerid,jdbcType=VARCHAR},
+      </if>
+      <if test="jgqsj != null">
+        jgqsj = #{jgqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cjydsj != null">
+        cjydsj = #{cjydsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="dj != null">
+        dj = #{dj,jdbcType=VARCHAR},
+      </if>
+      <if test="cgqsjLrsj != null">
+        cgqsj_lrsj = #{cgqsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="djydsjLrsj != null">
+        djydsj_lrsj = #{djydsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="tgjysjLrsj != null">
+        tgjysj_lrsj = #{tgjysjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kgsjLrsj != null">
+        kgsj_lrsj = #{kgsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cgqsjCzry != null">
+        cgqsj_czry = #{cgqsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="djydsjCzry != null">
+        djydsj_czry = #{djydsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="tgjysjCzry != null">
+        tgjysj_czry = #{tgjysjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="kgsjCzry != null">
+        kgsj_czry = #{kgsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="kghclsjLrsj != null">
+        kghclsj_lrsj = #{kghclsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kghclsjCzry != null">
+        kghclsj_czry = #{kghclsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="dzdd != null">
+        dzdd = #{dzdd,jdbcType=VARCHAR},
+      </if>
+      <if test="zqCgqsj != null">
+        zq_cgqsj = #{zqCgqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cjydsjLrsj != null">
+        cjydsj_lrsj = #{cjydsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cjydsjCzry != null">
+        cjydsj_czry = #{cjydsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrjc != null">
+        jdrjc = #{jdrjc,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrmc != null">
+        jdrmc = #{jdrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrbm != null">
+        jdrbm = #{jdrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrpym != null">
+        jdrpym = #{jdrpym,jdbcType=VARCHAR},
+      </if>
+      <if test="htjhthsjLrsj != null">
+        htjhthsj_lrsj = #{htjhthsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lrcxQrbz != null">
+        lrcx_qrbz = #{lrcxQrbz,jdbcType=VARCHAR},
+      </if>
+      <if test="lrcxQrrq != null">
+        lrcx_qrrq = #{lrcxQrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lrcxBz != null">
+        lrcx_bz = #{lrcxBz,jdbcType=VARCHAR},
+      </if>
+      <if test="jzxlrcxBz != null">
+        jzxlrcx_bz = #{jzxlrcxBz,jdbcType=VARCHAR},
+      </if>
+      <if test="xcsj != null">
+        xcsj = #{xcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jzxlrcxQrbz != null">
+        jzxlrcx_qrbz = #{jzxlrcxQrbz,jdbcType=VARCHAR},
+      </if>
+      <if test="jzxlrcxQrrq != null">
+        jzxlrcx_qrrq = #{jzxlrcxQrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="clsscd != null">
+        clsscd = #{clsscd,jdbcType=VARCHAR},
+      </if>
+      <if test="lkBz != null">
+        lk_bz = #{lkBz,jdbcType=VARCHAR},
+      </if>
+      <if test="khzdthsj != null">
+        khzdthsj = #{khzdthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="khzdthsjLrsj != null">
+        khzdthsj_lrsj = #{khzdthsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="khzdthsjCzry != null">
+        khzdthsj_czry = #{khzdthsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="yqsdsj != null">
+        yqsdsj = #{yqsdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="shr != null">
+        shr = #{shr,jdbcType=VARCHAR},
+      </if>
+      <if test="shrdh != null">
+        shrdh = #{shrdh,jdbcType=VARCHAR},
+      </if>
+      <if test="ggsj != null">
+        ggsj = #{ggsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="spxh != null">
+        spxh = #{spxh,jdbcType=VARCHAR},
+      </if>
+      <if test="sggqbm != null">
+        sggqbm = #{sggqbm,jdbcType=VARCHAR},
+      </if>
+      <if test="sggqmc != null">
+        sggqmc = #{sggqmc,jdbcType=VARCHAR},
+      </if>
+      <if test="sggqjc != null">
+        sggqjc = #{sggqjc,jdbcType=VARCHAR},
+      </if>
+      <if test="sggqpym != null">
+        sggqpym = #{sggqpym,jdbcType=VARCHAR},
+      </if>
+      <if test="cqfcxBz != null">
+        cqfcx_bz = #{cqfcxBz,jdbcType=VARCHAR},
+      </if>
+      <if test="sbjjd != null">
+        sbjjd = #{sbjjd,jdbcType=CHAR},
+      </if>
+      <if test="sbjjdLrry != null">
+        sbjjd_lrry = #{sbjjdLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="sbjjdLrsj != null">
+        sbjjd_lrsj = #{sbjjdLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hzSc != null">
+        hz_sc = #{hzSc,jdbcType=VARCHAR},
+      </if>
+      <if test="pdy != null">
+        pdy = #{pdy,jdbcType=VARCHAR},
+      </if>
+      <if test="gjbeizhu != null">
+        gjbeizhu = #{gjbeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="wlbgz != null">
+        wlbgz = #{wlbgz,jdbcType=VARCHAR},
+      </if>
+      <if test="wlbgzLrry != null">
+        wlbgz_lrry = #{wlbgzLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="wlbgzLrsj != null">
+        wlbgz_lrsj = #{wlbgzLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lldh != null">
+        lldh = #{lldh,jdbcType=VARCHAR},
+      </if>
+      <if test="ccrn != null">
+        ccrn = #{ccrn,jdbcType=VARCHAR},
+      </if>
+      <if test="tgrq != null">
+        tgrq = #{tgrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qgrq != null">
+        qgrq = #{qgrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szjb != null">
+        szjb = #{szjb,jdbcType=VARCHAR},
+      </if>
+      <if test="jhrq1 != null">
+        jhrq1 = #{jhrq1,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jgwq1 != null">
+        jgwq1 = #{jgwq1,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wlgzState != null">
+        wlgz_state = #{wlgzState,jdbcType=VARCHAR},
+      </if>
+      <if test="wlgzJjyy != null">
+        wlgz_jjyy = #{wlgzJjyy,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqCcfs != null">
+        sjzq_ccfs = #{sjzqCcfs,jdbcType=VARCHAR},
+      </if>
+      <if test="sfzlc != null">
+        sfzlc = #{sfzlc,jdbcType=CHAR},
+      </if>
+      <if test="ycbeizhu != null">
+        ycbeizhu = #{ycbeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="zzhwsqh != null">
+        zzhwsqh = #{zzhwsqh,jdbcType=VARCHAR},
+      </if>
+      <if test="zzqrsh != null">
+        zzqrsh = #{zzqrsh,jdbcType=VARCHAR},
+      </if>
+      <if test="xfdysj != null">
+        xfdysj = #{xfdysj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zzsdysj != null">
+        zzsdysj = #{zzsdysj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lldhLrsj != null">
+        lldh_lrsj = #{lldhLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjzqCgqsj != null">
+        sjzq_cgqsj = #{sjzqCgqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="htjhthsjXgyy != null">
+        htjhthsj_xgyy = #{htjhthsjXgyy,jdbcType=VARCHAR},
+      </if>
+      <if test="khgtjlBeizhu != null">
+        khgtjl_beizhu = #{khgtjlBeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwqrRy != null">
+        jsdwqr_ry = #{jsdwqrRy,jdbcType=VARCHAR},
+      </if>
+      <if test="khmc != null">
+        khmc = #{khmc,jdbcType=VARCHAR},
+      </if>
+      <if test="khjc != null">
+        khjc = #{khjc,jdbcType=VARCHAR},
+      </if>
+      <if test="khpym != null">
+        khpym = #{khpym,jdbcType=VARCHAR},
+      </if>
+      <if test="khbm != null">
+        khbm = #{khbm,jdbcType=VARCHAR},
+      </if>
+      <if test="lrqr != null">
+        lrqr = #{lrqr,jdbcType=CHAR},
+      </if>
+      <if test="qrry != null">
+        qrry = #{qrry,jdbcType=VARCHAR},
+      </if>
+      <if test="ycyyrl != null">
+        ycyyrl = #{ycyyrl,jdbcType=VARCHAR},
+      </if>
+      <if test="zdjkKssj != null">
+        zdjk_kssj = #{zdjkKssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zdjkJssj != null">
+        zdjk_jssj = #{zdjkJssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lc != null">
+        lc = #{lc,jdbcType=CHAR},
+      </if>
+      <if test="lcStarttime != null">
+        lc_startTime = #{lcStarttime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lcEndtime != null">
+        lc_endTime = #{lcEndtime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kgyy != null">
+        kgyy = #{kgyy,jdbcType=VARCHAR},
+      </if>
+      <if test="beizhuRy != null">
+        beizhu_ry = #{beizhuRy,jdbcType=VARCHAR},
+      </if>
+      <if test="rlksj != null">
+        rlksj = #{rlksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gzryqr != null">
+        gzryqr = #{gzryqr,jdbcType=CHAR},
+      </if>
+      <if test="khzbth != null">
+        khzbth = #{khzbth,jdbcType=CHAR},
+      </if>
+      <if test="khzbthQrsj != null">
+        khzbth_qrsj = #{khzbthQrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfycb != null">
+        sfycb = #{sfycb,jdbcType=CHAR},
+      </if>
+      <if test="sfyys != null">
+        sfyys = #{sfyys,jdbcType=CHAR},
+      </if>
+      <if test="gzryqrry != null">
+        gzryqrry = #{gzryqrry,jdbcType=VARCHAR},
+      </if>
+      <if test="cgqsjXg != null">
+        cgqsj_xg = #{cgqsjXg,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xcsjXg != null">
+        xcsj_xg = #{xcsjXg,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cgqsjSz != null">
+        cgqsj_sz = #{cgqsjSz,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xcsjSz != null">
+        xcsj_sz = #{xcsjSz,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gzryhxqr != null">
+        gzryhxqr = #{gzryhxqr,jdbcType=CHAR},
+      </if>
+      <if test="gzryhxqrry != null">
+        gzryhxqrry = #{gzryhxqrry,jdbcType=CHAR},
+      </if>
+      <if test="wlbz != null">
+        wlbz = #{wlbz,jdbcType=VARCHAR},
+      </if>
+      <if test="zyxxImportUser != null">
+        zyxx_import_user = #{zyxxImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="cwbz != null">
+        cwbz = #{cwbz,jdbcType=VARCHAR},
+      </if>
+      <if test="anJeGb != null">
+        AN_je_gb = #{anJeGb,jdbcType=DOUBLE},
+      </if>
+      <if test="anJeMj != null">
+        AN_je_mj = #{anJeMj,jdbcType=DOUBLE},
+      </if>
+      <if test="mjhl != null">
+        mjhl = #{mjhl,jdbcType=DOUBLE},
+      </if>
+      <if test="wlqrsj != null">
+        wlqrsj = #{wlqrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fylr != null">
+        fylr = #{fylr,jdbcType=DECIMAL},
+      </if>
+      <if test="hgfs != null">
+        hgfs = #{hgfs,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqJcfs != null">
+        sjzq_jcfs = #{sjzqJcfs,jdbcType=VARCHAR},
+      </if>
+      <if test="hgfsZhm != null">
+        hgfs_zhm = #{hgfsZhm,jdbcType=VARCHAR},
+      </if>
+      <if test="hgfsXgsj != null">
+        hgfs_xgsj = #{hgfsXgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cgfxqfyGd != null">
+        cgfxqfy_gd = #{cgfxqfyGd,jdbcType=VARCHAR},
+      </if>
+      <if test="cgfxhfyWl != null">
+        cgfxhfy_wl = #{cgfxhfyWl,jdbcType=VARCHAR},
+      </if>
+      <if test="jssqr != null">
+        jssqr = #{jssqr,jdbcType=VARCHAR},
+      </if>
+      <if test="jsyy != null">
+        jsyy = #{jsyy,jdbcType=VARCHAR},
+      </if>
+      <if test="jsStart != null">
+        js_start = #{jsStart,jdbcType=CHAR},
+      </if>
+      <if test="qgrqLrsj != null">
+        qgrq_lrsj = #{qgrqLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qgrqLrry != null">
+        qgrq_lrry = #{qgrqLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="sfypz != null">
+        sfypz = #{sfypz,jdbcType=CHAR},
+      </if>
+      <if test="xwxfdjsBeizhu != null">
+        xwxfdjs_beizhu = #{xwxfdjsBeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="scfyBeizhu != null">
+        scfy_beizhu = #{scfyBeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="xzz != null">
+        xzz = #{xzz,jdbcType=VARCHAR},
+      </if>
+      <if test="sfzg != null">
+        sfzg = #{sfzg,jdbcType=VARCHAR},
+      </if>
+      <if test="zgxksj != null">
+        zgxksj = #{zgxksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xklrsj != null">
+        xklrsj = #{xklrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zjbjh != null">
+        zjbjh = #{zjbjh,jdbcType=VARCHAR},
+      </if>
+      <if test="gzjysbsj != null">
+        gzjysbsj = #{gzjysbsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jqsbwcsj != null">
+        jqsbwcsj = #{jqsbwcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="grabOutTime != null">
+        grab_out_time = #{grabOutTime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="grabDownTime != null">
+        grab_down_time = #{grabDownTime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wlqryf != null">
+        wlqryf = #{wlqryf,jdbcType=DECIMAL},
+      </if>
+      <if test="wlzyjthsj != null">
+        wlzyjthsj = #{wlzyjthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wlzyjthpc != null">
+        wlzyjthpc = #{wlzyjthpc,jdbcType=VARCHAR},
+      </if>
+      <if test="yjxcsj != null">
+        yjxcsj = #{yjxcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qcdl != null">
+        qcdl = #{qcdl,jdbcType=VARCHAR},
+      </if>
+      <if test="dcthkhyqsdsj != null">
+        dcthkhyqsdsj = #{dcthkhyqsdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="dcthwlzfksdsj != null">
+        dcthwlzfksdsj = #{dcthwlzfksdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jjnsc != null">
+        jjnsc = #{jjnsc,jdbcType=VARCHAR},
+      </if>
+      <if test="ydsdcl != null">
+        ydsdcl = #{ydsdcl,jdbcType=VARCHAR},
+      </if>
+      <if test="dcsfydCzsj != null">
+        dcsfyd_czsj = #{dcsfydCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bgid != null">
+        bgid = #{bgid,jdbcType=VARCHAR},
+      </if>
+      <if test="yjtgrq != null">
+        yjtgrq = #{yjtgrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjtgrqImportUser != null">
+        yjtgrq_import_user = #{yjtgrqImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="jhyap != null">
+        jhyap = #{jhyap,jdbcType=VARCHAR},
+      </if>
+      <if test="jhyapCzsj != null">
+        jhyap_czsj = #{jhyapCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lxrImportUser != null">
+        lxr_import_user = #{lxrImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="qcdlImportUser != null">
+        qcdl_import_user = #{qcdlImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="jjnscImportUser != null">
+        jjnsc_import_user = #{jjnscImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="sfzgImportUser != null">
+        sfzg_import_user = #{sfzgImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="khzbthImportUser != null">
+        khzbth_import_user = #{khzbthImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="cgfxqfyGdImportUser != null">
+        cgfxqfy_gd_import_user = #{cgfxqfyGdImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="jjnscsj != null">
+        jjnscsj = #{jjnscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gzryqrLrsj != null">
+        gzryqr_lrsj = #{gzryqrLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xqrqksjLrsj != null">
+        xqrqksj_lrsj = #{xqrqksjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qcbz != null">
+        qcbz = #{qcbz,jdbcType=VARCHAR},
+      </if>
+      <if test="tch != null">
+        tch = #{tch,jdbcType=NVARCHAR},
+      </if>
+      <if test="fxzt != null">
+        fxzt = #{fxzt,jdbcType=NVARCHAR},
+      </if>
+      <if test="dqwz != null">
+        dqwz = #{dqwz,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfapth != null">
+        sfapth = #{sfapth,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfapthczsj != null">
+        sfapthczsj = #{sfapthczsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yqthsj != null">
+        yqthsj = #{yqthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="apthBz != null">
+        apth_bz = #{apthBz,jdbcType=NVARCHAR},
+      </if>
+      <if test="xc2ccyDy != null">
+        xc2ccy_dy = #{xc2ccyDy,jdbcType=NVARCHAR},
+      </if>
+      <if test="cphDyc != null">
+        cph_dyc = #{cphDyc,jdbcType=NVARCHAR},
+      </if>
+      <if test="khxqtcsj != null">
+        khxqtcsj = #{khxqtcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jhxgwlsj != null">
+        jhxgwlsj = #{jhxgwlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jhdbjdl != null">
+        jhdbjdl = #{jhdbjdl,jdbcType=VARCHAR},
+      </if>
+      <if test="jhdbjdlLlsj != null">
+        jhdbjdl_llsj = #{jhdbjdlLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wxpdy != null">
+        wxpdy = #{wxpdy,jdbcType=VARCHAR},
+      </if>
+      <if test="wlzyjthsjLlsj != null">
+        wlzyjthsj_llsj = #{wlzyjthsjLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjyqsdsj != null">
+        yjyqsdsj = #{yjyqsdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qrqk != null">
+        qrqk = #{qrqk,jdbcType=NVARCHAR},
+      </if>
+      <if test="ecph != null">
+        ecph = #{ecph,jdbcType=VARCHAR},
+      </if>
+      <if test="wlzyjthpcLlsj != null">
+        wlzyjthpc_llsj = #{wlzyjthpcLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjxcsjLlsj != null">
+        yjxcsj_llsj = #{yjxcsjLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjtgrqLlsj != null">
+        yjtgrq_llsj = #{yjtgrqLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="khxqtcsjLlsj != null">
+        khxqtcsj_llsj = #{khxqtcsjLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="mzsj != null">
+        mzsj = #{mzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jjzt != null">
+        jjzt = #{jjzt,jdbcType=VARCHAR},
+      </if>
+      <if test="sfxs != null">
+        sfxs = #{sfxs,jdbcType=INTEGER},
+      </if>
+      <if test="xsbglj != null">
+        xsbglj = #{xsbglj,jdbcType=NVARCHAR},
+      </if>
+      <if test="xsgsmc != null">
+        xsgsmc = #{xsgsmc,jdbcType=NVARCHAR},
+      </if>
+      <if test="xslxr != null">
+        xslxr = #{xslxr,jdbcType=NVARCHAR},
+      </if>
+      <if test="xclxr != null">
+        xclxr = #{xclxr,jdbcType=NVARCHAR},
+      </if>
+      <if test="czxxsftg != null">
+        czxxsftg = #{czxxsftg,jdbcType=NVARCHAR},
+      </if>
+      <if test="xslx != null">
+        xslx = #{xslx,jdbcType=NVARCHAR},
+      </if>
+      <if test="hsjcbz != null">
+        hsjcbz = #{hsjcbz,jdbcType=NVARCHAR},
+      </if>
+      <if test="fybz != null">
+        fybz = #{fybz,jdbcType=NVARCHAR},
+      </if>
+      <if test="wlpdsj != null">
+        wlpdsj = #{wlpdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szsfxs != null">
+        szsfxs = #{szsfxs,jdbcType=VARCHAR},
+      </if>
+      <if test="sfhs != null">
+        sfhs = #{sfhs,jdbcType=VARCHAR},
+      </if>
+      <if test="sfsjddc != null">
+        sfsjddc = #{sfsjddc,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfhssj != null">
+        sfhssj = #{sfhssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zbgd != null">
+        zbgd = #{zbgd,jdbcType=NVARCHAR},
+      </if>
+      <if test="zbgdrq != null">
+        zbgdrq = #{zbgdrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gzryhxqrCxsj != null">
+        gzryhxqr_cxsj = #{gzryhxqrCxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xsbgljsj != null">
+        xsbgljsj = #{xsbgljsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfdd != null">
+        sfdd = #{sfdd,jdbcType=VARCHAR},
+      </if>
+      <if test="sfcyjzx != null">
+        sfcyjzx = #{sfcyjzx,jdbcType=VARCHAR},
+      </if>
+      <if test="gcsfcy != null">
+        gcsfcy = #{gcsfcy,jdbcType=VARCHAR},
+      </if>
+      <if test="gcsfcyCzsj != null">
+        gcsfcy_czsj = #{gcsfcyCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szktsj != null">
+        szktsj = #{szktsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szkgsj != null">
+        szkgsj = #{szkgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szclfxsj != null">
+        szclfxsj = #{szclfxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szcyyc != null">
+        szcyyc = #{szcyyc,jdbcType=VARCHAR},
+      </if>
+      <if test="szktsjCzry != null">
+        szktsj_czry = #{szktsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="szktsjCzsj != null">
+        szktsj_czsj = #{szktsjCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szkgsjCzry != null">
+        szkgsj_czry = #{szkgsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="szkgsjCzsj != null">
+        szkgsj_czsj = #{szkgsjCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szclfxsjCzry != null">
+        szclfxsj_czry = #{szclfxsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="szclfxsjCzsj != null">
+        szclfxsj_czsj = #{szclfxsjCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gcsfcyCzry != null">
+        gcsfcy_czry = #{gcsfcyCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="cyfybz != null">
+        cyfybz = #{cyfybz,jdbcType=VARCHAR},
+      </if>
+      <if test="gczl != null">
+        gczl = #{gczl,jdbcType=VARCHAR},
+      </if>
+      <if test="jhrq != null">
+        jhrq = #{jhrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cskhg != null">
+        cskhg = #{cskhg,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cszhg != null">
+        cszhg = #{cszhg,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cxghg != null">
+        cxghg = #{cxghg,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jcgzj != null">
+        jcgzj = #{jcgzj,jdbcType=VARCHAR},
+      </if>
+      <if test="jchxdc != null">
+        jchxdc = #{jchxdc,jdbcType=VARCHAR},
+      </if>
+      <if test="sdsj != null">
+        sdsj = #{sdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfylr != null">
+        sfylr = #{sfylr,jdbcType=VARCHAR},
+      </if>
+      <if test="jhd != null">
+        jhd = #{jhd,jdbcType=VARCHAR},
+      </if>
+      <if test="ddsj != null">
+        ddsj = #{ddsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sffwdj != null">
+        sffwdj = #{sffwdj,jdbcType=VARCHAR},
+      </if>
+      <if test="sfwsttjsc != null">
+        sfwsttjsc = #{sfwsttjsc,jdbcType=VARCHAR},
+      </if>
+      <if test="wlkthsj != null">
+        wlkthsj = #{wlkthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfwlkt != null">
+        sfwlkt = #{sfwlkt,jdbcType=CHAR},
+      </if>
+      <if test="sfkhwlxq != null">
+        sfkhwlxq = #{sfkhwlxq,jdbcType=CHAR},
+      </if>
+      <if test="zggtpc != null">
+        zggtpc = #{zggtpc,jdbcType=VARCHAR},
+      </if>
+      <if test="zgwlpdsj != null">
+        zgwlpdsj = #{zgwlpdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kjzyme != null">
+        kjzyme = #{kjzyme,jdbcType=CHAR},
+      </if>
+      <if test="kjzymesj != null">
+        kjzymesj = #{kjzymesj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cgzjsj != null">
+        cgzjsj = #{cgzjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zgwlzyjtgsj != null">
+        zgwlzyjtgsj = #{zgwlzyjtgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cmyzhjbcsj != null">
+        cmyzhjbcsj = #{cmyzhjbcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cjkjzydsj != null">
+        cjkjzydsj = #{cjkjzydsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kjzyddz != null">
+        kjzyddz = #{kjzyddz,jdbcType=VARCHAR},
+      </if>
+      <if test="hxq != null">
+        hxq = #{hxq,jdbcType=INTEGER},
+      </if>
+      <if test="mtmDuiQ != null">
+        mtm_dui_q = #{mtmDuiQ,jdbcType=INTEGER},
+      </if>
+      <if test="mtmDianQ != null">
+        mtm_dian_q = #{mtmDianQ,jdbcType=INTEGER},
+      </if>
+    </set>
+    where id = #{id,jdbcType=INTEGER}
+  </update>
+  <update id="updateByPrimaryKey" parameterType="com.freshport.entity.YwHddzJzxxx">
+    update yw_hddz_jzxxx
+    set ywbh = #{ywbh,jdbcType=VARCHAR},
+      cxh = #{cxh,jdbcType=INTEGER},
+      ysfs = #{ysfs,jdbcType=VARCHAR},
+      jzxh = #{jzxh,jdbcType=VARCHAR},
+      xx = #{xx,jdbcType=VARCHAR},
+      xl = #{xl,jdbcType=VARCHAR},
+      sjshrbm = #{sjshrbm,jdbcType=VARCHAR},
+      sjshrmc = #{sjshrmc,jdbcType=VARCHAR},
+      shdz = #{shdz,jdbcType=VARCHAR},
+      zyxx = #{zyxx,jdbcType=VARCHAR},
+      clfs = #{clfs,jdbcType=VARCHAR},
+      tpxx = #{tpxx,jdbcType=INTEGER},
+      htjhthsj = #{htjhthsj,jdbcType=TIMESTAMP},
+      htjhthsj_lb = #{htjhthsjLb,jdbcType=VARCHAR},
+      xcjhthsj = #{xcjhthsj,jdbcType=TIMESTAMP},
+      thjjcd = #{thjjcd,jdbcType=VARCHAR},
+      beizhu = #{beizhu,jdbcType=VARCHAR},
+      gq_bz = #{gqBz,jdbcType=VARCHAR},
+      gq_sj = #{gqSj,jdbcType=VARCHAR},
+      gq_cp = #{gqCp,jdbcType=VARCHAR},
+      gq_sjlxfs = #{gqSjlxfs,jdbcType=VARCHAR},
+      gq_rwbh = #{gqRwbh,jdbcType=VARCHAR},
+      gq_c_rwbh = #{gqCRwbh,jdbcType=VARCHAR},
+      hgcyd_bz = #{hgcydBz,jdbcType=VARCHAR},
+      hgcyd_sj = #{hgcydSj,jdbcType=VARCHAR},
+      hgcyd_cp = #{hgcydCp,jdbcType=VARCHAR},
+      hgcyd_sjlxfs = #{hgcydSjlxfs,jdbcType=VARCHAR},
+      hgcyd_rwbh = #{hgcydRwbh,jdbcType=VARCHAR},
+      hgcyd_c_rwbh = #{hgcydCRwbh,jdbcType=VARCHAR},
+      jyd_bz = #{jydBz,jdbcType=VARCHAR},
+      jyd_sj = #{jydSj,jdbcType=VARCHAR},
+      jyd_cp = #{jydCp,jdbcType=VARCHAR},
+      jyd_sjlxfs = #{jydSjlxfs,jdbcType=VARCHAR},
+      jyd_bm = #{jydBm,jdbcType=VARCHAR},
+      jyd_mc = #{jydMc,jdbcType=VARCHAR},
+      jyd_jc = #{jydJc,jdbcType=VARCHAR},
+      jyd_pym = #{jydPym,jdbcType=VARCHAR},
+      jyd_rwbh = #{jydRwbh,jdbcType=VARCHAR},
+      jyd_c_rwbh = #{jydCRwbh,jdbcType=VARCHAR},
+      zjfscwld_bz = #{zjfscwldBz,jdbcType=VARCHAR},
+      zjfscwld_sfjsc = #{zjfscwldSfjsc,jdbcType=VARCHAR},
+      zjfscwld_sj = #{zjfscwldSj,jdbcType=VARCHAR},
+      zjfscwld_cp = #{zjfscwldCp,jdbcType=VARCHAR},
+      zjfscwld_sjlxfs = #{zjfscwldSjlxfs,jdbcType=VARCHAR},
+      zjfscwld_shrbm = #{zjfscwldShrbm,jdbcType=VARCHAR},
+      zjfscwld_shrmc = #{zjfscwldShrmc,jdbcType=VARCHAR},
+      zjfscwld_zyxx = #{zjfscwldZyxx,jdbcType=VARCHAR},
+      zjfscwld_rwbh = #{zjfscwldRwbh,jdbcType=VARCHAR},
+      zjfscwld_c_rwbh = #{zjfscwldCRwbh,jdbcType=VARCHAR},
+      sc_bz = #{scBz,jdbcType=VARCHAR},
+      sc_sj = #{scSj,jdbcType=VARCHAR},
+      sc_cp = #{scCp,jdbcType=VARCHAR},
+      sc_sjlxfs = #{scSjlxfs,jdbcType=VARCHAR},
+      sc_bm = #{scBm,jdbcType=VARCHAR},
+      sc_mc = #{scMc,jdbcType=VARCHAR},
+      sc_jc = #{scJc,jdbcType=VARCHAR},
+      sc_pym = #{scPym,jdbcType=VARCHAR},
+      sc_lgfs = #{scLgfs,jdbcType=VARCHAR},
+      sc_rwbh = #{scRwbh,jdbcType=VARCHAR},
+      sc_c_rwbh = #{scCRwbh,jdbcType=VARCHAR},
+      jschfscwld_bz = #{jschfscwldBz,jdbcType=VARCHAR},
+      jschfscwld_sfjsc = #{jschfscwldSfjsc,jdbcType=VARCHAR},
+      jschfscwld_sj = #{jschfscwldSj,jdbcType=VARCHAR},
+      jschfscwld_cp = #{jschfscwldCp,jdbcType=VARCHAR},
+      jschfscwld_sjlxfs = #{jschfscwldSjlxfs,jdbcType=VARCHAR},
+      jschfscwld_shrbm = #{jschfscwldShrbm,jdbcType=VARCHAR},
+      jschfscwld_shrmc = #{jschfscwldShrmc,jdbcType=VARCHAR},
+      jschfscwld_zyxx = #{jschfscwldZyxx,jdbcType=VARCHAR},
+      jschfscwld_rwbh = #{jschfscwldRwbh,jdbcType=VARCHAR},
+      jschfscwld_c_rwbh = #{jschfscwldCRwbh,jdbcType=VARCHAR},
+      fscwld3_bz = #{fscwld3Bz,jdbcType=VARCHAR},
+      fscwld3_sfjsc = #{fscwld3Sfjsc,jdbcType=VARCHAR},
+      fscwld3_sj = #{fscwld3Sj,jdbcType=VARCHAR},
+      fscwld3_cp = #{fscwld3Cp,jdbcType=VARCHAR},
+      fscwld3_sjlxfs = #{fscwld3Sjlxfs,jdbcType=VARCHAR},
+      fscwld3_shrbm = #{fscwld3Shrbm,jdbcType=VARCHAR},
+      fscwld3_shrmc = #{fscwld3Shrmc,jdbcType=VARCHAR},
+      fscwld3_zyxx = #{fscwld3Zyxx,jdbcType=VARCHAR},
+      fscwld3_rwbh = #{fscwld3Rwbh,jdbcType=VARCHAR},
+      fscwld3_c_rwbh = #{fscwld3CRwbh,jdbcType=VARCHAR},
+      fscwld4_bz = #{fscwld4Bz,jdbcType=VARCHAR},
+      fscwld4_sfjsc = #{fscwld4Sfjsc,jdbcType=VARCHAR},
+      fscwld4_sj = #{fscwld4Sj,jdbcType=VARCHAR},
+      fscwld4_cp = #{fscwld4Cp,jdbcType=VARCHAR},
+      fscwld4_sjlxfs = #{fscwld4Sjlxfs,jdbcType=VARCHAR},
+      fscwld4_shrbm = #{fscwld4Shrbm,jdbcType=VARCHAR},
+      fscwld4_shrmc = #{fscwld4Shrmc,jdbcType=VARCHAR},
+      fscwld4_zyxx = #{fscwld4Zyxx,jdbcType=VARCHAR},
+      fscwld4_rwbh = #{fscwld4Rwbh,jdbcType=VARCHAR},
+      fscwld4_c_rwbh = #{fscwld4CRwbh,jdbcType=VARCHAR},
+      dc_bz = #{dcBz,jdbcType=VARCHAR},
+      dc_sj = #{dcSj,jdbcType=VARCHAR},
+      dc_cp = #{dcCp,jdbcType=VARCHAR},
+      dc_sjlxfs = #{dcSjlxfs,jdbcType=VARCHAR},
+      dc_bm = #{dcBm,jdbcType=VARCHAR},
+      dc_mc = #{dcMc,jdbcType=VARCHAR},
+      dc_jc = #{dcJc,jdbcType=VARCHAR},
+      dc_pym = #{dcPym,jdbcType=VARCHAR},
+      dc_rwbh = #{dcRwbh,jdbcType=VARCHAR},
+      sdxtdsj = #{sdxtdsj,jdbcType=TIMESTAMP},
+      fxgsbm = #{fxgsbm,jdbcType=VARCHAR},
+      fxgsmc = #{fxgsmc,jdbcType=VARCHAR},
+      fxgsjc = #{fxgsjc,jdbcType=VARCHAR},
+      fxgspym = #{fxgspym,jdbcType=VARCHAR},
+      cgsfxdbm = #{cgsfxdbm,jdbcType=VARCHAR},
+      cgsfxdmc = #{cgsfxdmc,jdbcType=VARCHAR},
+      cgsfxdjc = #{cgsfxdjc,jdbcType=VARCHAR},
+      cgsfxdpym = #{cgsfxdpym,jdbcType=VARCHAR},
+      sbjjdh = #{sbjjdh,jdbcType=VARCHAR},
+      fxdcbm = #{fxdcbm,jdbcType=VARCHAR},
+      fxdcmc = #{fxdcmc,jdbcType=VARCHAR},
+      fxdcjc = #{fxdcjc,jdbcType=VARCHAR},
+      fxdcpym = #{fxdcpym,jdbcType=VARCHAR},
+      gqjhsj = #{gqjhsj,jdbcType=TIMESTAMP},
+      gqjhsj_lb = #{gqjhsjLb,jdbcType=VARCHAR},
+      sjmc = #{sjmc,jdbcType=VARCHAR},
+      cph = #{cph,jdbcType=VARCHAR},
+      mtywclbz = #{mtywclbz,jdbcType=VARCHAR},
+      ccsj = #{ccsj,jdbcType=TIMESTAMP},
+      hdcsj = #{hdcsj,jdbcType=TIMESTAMP},
+      cgqsj = #{cgqsj,jdbcType=TIMESTAMP},
+      cydsj = #{cydsj,jdbcType=TIMESTAMP},
+      cydbz = #{cydbz,jdbcType=VARCHAR},
+      djydsj = #{djydsj,jdbcType=TIMESTAMP},
+      tgjysj = #{tgjysj,jdbcType=TIMESTAMP},
+      jycydzt = #{jycydzt,jdbcType=VARCHAR},
+      kghcl = #{kghcl,jdbcType=VARCHAR},
+      rscsj = #{rscsj,jdbcType=TIMESTAMP},
+      khtzhxsj = #{khtzhxsj,jdbcType=TIMESTAMP},
+      xqrqksj = #{xqrqksj,jdbcType=TIMESTAMP},
+      ccjhsj = #{ccjhsj,jdbcType=TIMESTAMP},
+      cscsj = #{cscsj,jdbcType=TIMESTAMP},
+      hxfs = #{hxfs,jdbcType=VARCHAR},
+      jzxydgsj = #{jzxydgsj,jdbcType=TIMESTAMP},
+      jzxzscsj = #{jzxzscsj,jdbcType=TIMESTAMP},
+      jzxytzqksj = #{jzxytzqksj,jdbcType=TIMESTAMP},
+      scbz = #{scbz,jdbcType=VARCHAR},
+      fscwl_ddsj = #{fscwlDdsj,jdbcType=TIMESTAMP},
+      fscwl_lksj = #{fscwlLksj,jdbcType=TIMESTAMP},
+      fscwl2_ddsj = #{fscwl2Ddsj,jdbcType=TIMESTAMP},
+      fscwl2_lksj = #{fscwl2Lksj,jdbcType=TIMESTAMP},
+      fscwl3_ddsj = #{fscwl3Ddsj,jdbcType=TIMESTAMP},
+      fscwl3_lksj = #{fscwl3Lksj,jdbcType=TIMESTAMP},
+      fscwl4_ddsj = #{fscwl4Ddsj,jdbcType=TIMESTAMP},
+      fscwl4_lksj = #{fscwl4Lksj,jdbcType=TIMESTAMP},
+      csbz = #{csbz,jdbcType=VARCHAR},
+      zhlx = #{zhlx,jdbcType=VARCHAR},
+      lkjydsj = #{lkjydsj,jdbcType=TIMESTAMP},
+      jydbz = #{jydbz,jdbcType=VARCHAR},
+      yqfssj = #{yqfssj,jdbcType=TIMESTAMP},
+      sffsbz = #{sffsbz,jdbcType=VARCHAR},
+      sdxxsj = #{sdxxsj,jdbcType=TIMESTAMP},
+      sfsdxxbz = #{sfsdxxbz,jdbcType=VARCHAR},
+      sfyxcjh = #{sfyxcjh,jdbcType=VARCHAR},
+      sfsdfxhz = #{sfsdfxhz,jdbcType=VARCHAR},
+      dcsfyd = #{dcsfyd,jdbcType=VARCHAR},
+      hmtsj = #{hmtsj,jdbcType=TIMESTAMP},
+      dhxgssj = #{dhxgssj,jdbcType=TIMESTAMP},
+      zybz = #{zybz,jdbcType=VARCHAR},
+      cqfje = #{cqfje,jdbcType=DECIMAL},
+      cqjsbzrq = #{cqjsbzrq,jdbcType=TIMESTAMP},
+      khjydzt = #{khjydzt,jdbcType=VARCHAR},
+      yfkdbh = #{yfkdbh,jdbcType=VARCHAR},
+      sfyyfk = #{sfyyfk,jdbcType=VARCHAR},
+      state = #{state,jdbcType=VARCHAR},
+      jsdwbm = #{jsdwbm,jdbcType=VARCHAR},
+      jsdwmc = #{jsdwmc,jdbcType=VARCHAR},
+      jsdwjc = #{jsdwjc,jdbcType=VARCHAR},
+      jsdwpym = #{jsdwpym,jdbcType=VARCHAR},
+      jsbm = #{jsbm,jdbcType=VARCHAR},
+      jsdwqr = #{jsdwqr,jdbcType=VARCHAR},
+      sfyjsbm = #{sfyjsbm,jdbcType=VARCHAR},
+      yscqfqr = #{yscqfqr,jdbcType=VARCHAR},
+      yscqfje = #{yscqfje,jdbcType=NUMERIC},
+      yscqfqrrq = #{yscqfqrrq,jdbcType=TIMESTAMP},
+      wlfyqr = #{wlfyqr,jdbcType=VARCHAR},
+      wlfyqrrq = #{wlfyqrrq,jdbcType=TIMESTAMP},
+      wlfyje = #{wlfyje,jdbcType=NUMERIC},
+      wlfylclfje = #{wlfylclfje,jdbcType=NUMERIC},
+      tjrq = #{tjrq,jdbcType=TIMESTAMP},
+      tsycdzyjsje = #{tsycdzyjsje,jdbcType=NUMERIC},
+      yshdfygjbh = #{yshdfygjbh,jdbcType=VARCHAR},
+      gjsj = #{gjsj,jdbcType=TIMESTAMP},
+      gjcs = #{gjcs,jdbcType=INTEGER},
+      yshdfygjbh_cqf = #{yshdfygjbhCqf,jdbcType=VARCHAR},
+      gjsj_cqf = #{gjsjCqf,jdbcType=TIMESTAMP},
+      gjcs_cqf = #{gjcsCqf,jdbcType=INTEGER},
+      lxr = #{lxr,jdbcType=VARCHAR},
+      lxdh = #{lxdh,jdbcType=VARCHAR},
+      wxsffs_cqf = #{wxsffsCqf,jdbcType=VARCHAR},
+      wllxqdrq = #{wllxqdrq,jdbcType=TIMESTAMP},
+      jssfwc = #{jssfwc,jdbcType=VARCHAR},
+      jswcsj = #{jswcsj,jdbcType=TIMESTAMP},
+      sflc = #{sflc,jdbcType=VARCHAR},
+      lxr2 = #{lxr2,jdbcType=VARCHAR},
+      lxdh2 = #{lxdh2,jdbcType=VARCHAR},
+      lxr3 = #{lxr3,jdbcType=VARCHAR},
+      lxdh3 = #{lxdh3,jdbcType=VARCHAR},
+      lxr4 = #{lxr4,jdbcType=VARCHAR},
+      lxdh4 = #{lxdh4,jdbcType=VARCHAR},
+      kgsj = #{kgsj,jdbcType=TIMESTAMP},
+      ssys = #{ssys,jdbcType=VARCHAR},
+      kghclsj = #{kghclsj,jdbcType=TIMESTAMP},
+      wllhzt = #{wllhzt,jdbcType=VARCHAR},
+      wllhsj = #{wllhsj,jdbcType=TIMESTAMP},
+      sqlhpc = #{sqlhpc,jdbcType=VARCHAR},
+      lhbz = #{lhbz,jdbcType=VARCHAR},
+      sqsj = #{sqsj,jdbcType=TIMESTAMP},
+      cdbm = #{cdbm,jdbcType=VARCHAR},
+      cdmc = #{cdmc,jdbcType=VARCHAR},
+      cdjc = #{cdjc,jdbcType=VARCHAR},
+      cdpym = #{cdpym,jdbcType=VARCHAR},
+      fxsj = #{fxsj,jdbcType=TIMESTAMP},
+      htjhthsj_sjd = #{htjhthsjSjd,jdbcType=VARCHAR},
+      htjhthscsj = #{htjhthscsj,jdbcType=TIMESTAMP},
+      cdjsdwbm = #{cdjsdwbm,jdbcType=VARCHAR},
+      cdjsdwmc = #{cdjsdwmc,jdbcType=VARCHAR},
+      cdjsdwjc = #{cdjsdwjc,jdbcType=VARCHAR},
+      cdjsdwpym = #{cdjsdwpym,jdbcType=VARCHAR},
+      contractcontainerid = #{contractcontainerid,jdbcType=VARCHAR},
+      jgqsj = #{jgqsj,jdbcType=TIMESTAMP},
+      cjydsj = #{cjydsj,jdbcType=TIMESTAMP},
+      dj = #{dj,jdbcType=VARCHAR},
+      cgqsj_lrsj = #{cgqsjLrsj,jdbcType=TIMESTAMP},
+      djydsj_lrsj = #{djydsjLrsj,jdbcType=TIMESTAMP},
+      tgjysj_lrsj = #{tgjysjLrsj,jdbcType=TIMESTAMP},
+      kgsj_lrsj = #{kgsjLrsj,jdbcType=TIMESTAMP},
+      cgqsj_czry = #{cgqsjCzry,jdbcType=VARCHAR},
+      djydsj_czry = #{djydsjCzry,jdbcType=VARCHAR},
+      tgjysj_czry = #{tgjysjCzry,jdbcType=VARCHAR},
+      kgsj_czry = #{kgsjCzry,jdbcType=VARCHAR},
+      kghclsj_lrsj = #{kghclsjLrsj,jdbcType=TIMESTAMP},
+      kghclsj_czry = #{kghclsjCzry,jdbcType=VARCHAR},
+      dzdd = #{dzdd,jdbcType=VARCHAR},
+      zq_cgqsj = #{zqCgqsj,jdbcType=TIMESTAMP},
+      cjydsj_lrsj = #{cjydsjLrsj,jdbcType=TIMESTAMP},
+      cjydsj_czry = #{cjydsjCzry,jdbcType=VARCHAR},
+      jdrjc = #{jdrjc,jdbcType=VARCHAR},
+      jdrmc = #{jdrmc,jdbcType=VARCHAR},
+      jdrbm = #{jdrbm,jdbcType=VARCHAR},
+      jdrpym = #{jdrpym,jdbcType=VARCHAR},
+      htjhthsj_lrsj = #{htjhthsjLrsj,jdbcType=TIMESTAMP},
+      lrcx_qrbz = #{lrcxQrbz,jdbcType=VARCHAR},
+      lrcx_qrrq = #{lrcxQrrq,jdbcType=TIMESTAMP},
+      lrcx_bz = #{lrcxBz,jdbcType=VARCHAR},
+      jzxlrcx_bz = #{jzxlrcxBz,jdbcType=VARCHAR},
+      xcsj = #{xcsj,jdbcType=TIMESTAMP},
+      jzxlrcx_qrbz = #{jzxlrcxQrbz,jdbcType=VARCHAR},
+      jzxlrcx_qrrq = #{jzxlrcxQrrq,jdbcType=TIMESTAMP},
+      clsscd = #{clsscd,jdbcType=VARCHAR},
+      lk_bz = #{lkBz,jdbcType=VARCHAR},
+      khzdthsj = #{khzdthsj,jdbcType=TIMESTAMP},
+      khzdthsj_lrsj = #{khzdthsjLrsj,jdbcType=TIMESTAMP},
+      khzdthsj_czry = #{khzdthsjCzry,jdbcType=VARCHAR},
+      yqsdsj = #{yqsdsj,jdbcType=TIMESTAMP},
+      shr = #{shr,jdbcType=VARCHAR},
+      shrdh = #{shrdh,jdbcType=VARCHAR},
+      ggsj = #{ggsj,jdbcType=TIMESTAMP},
+      spxh = #{spxh,jdbcType=VARCHAR},
+      sggqbm = #{sggqbm,jdbcType=VARCHAR},
+      sggqmc = #{sggqmc,jdbcType=VARCHAR},
+      sggqjc = #{sggqjc,jdbcType=VARCHAR},
+      sggqpym = #{sggqpym,jdbcType=VARCHAR},
+      cqfcx_bz = #{cqfcxBz,jdbcType=VARCHAR},
+      sbjjd = #{sbjjd,jdbcType=CHAR},
+      sbjjd_lrry = #{sbjjdLrry,jdbcType=VARCHAR},
+      sbjjd_lrsj = #{sbjjdLrsj,jdbcType=TIMESTAMP},
+      hz_sc = #{hzSc,jdbcType=VARCHAR},
+      pdy = #{pdy,jdbcType=VARCHAR},
+      gjbeizhu = #{gjbeizhu,jdbcType=VARCHAR},
+      wlbgz = #{wlbgz,jdbcType=VARCHAR},
+      wlbgz_lrry = #{wlbgzLrry,jdbcType=VARCHAR},
+      wlbgz_lrsj = #{wlbgzLrsj,jdbcType=TIMESTAMP},
+      lldh = #{lldh,jdbcType=VARCHAR},
+      ccrn = #{ccrn,jdbcType=VARCHAR},
+      tgrq = #{tgrq,jdbcType=TIMESTAMP},
+      qgrq = #{qgrq,jdbcType=TIMESTAMP},
+      szjb = #{szjb,jdbcType=VARCHAR},
+      jhrq1 = #{jhrq1,jdbcType=TIMESTAMP},
+      jgwq1 = #{jgwq1,jdbcType=TIMESTAMP},
+      wlgz_state = #{wlgzState,jdbcType=VARCHAR},
+      wlgz_jjyy = #{wlgzJjyy,jdbcType=VARCHAR},
+      sjzq_ccfs = #{sjzqCcfs,jdbcType=VARCHAR},
+      sfzlc = #{sfzlc,jdbcType=CHAR},
+      ycbeizhu = #{ycbeizhu,jdbcType=VARCHAR},
+      zzhwsqh = #{zzhwsqh,jdbcType=VARCHAR},
+      zzqrsh = #{zzqrsh,jdbcType=VARCHAR},
+      xfdysj = #{xfdysj,jdbcType=TIMESTAMP},
+      zzsdysj = #{zzsdysj,jdbcType=TIMESTAMP},
+      lldh_lrsj = #{lldhLrsj,jdbcType=TIMESTAMP},
+      sjzq_cgqsj = #{sjzqCgqsj,jdbcType=TIMESTAMP},
+      htjhthsj_xgyy = #{htjhthsjXgyy,jdbcType=VARCHAR},
+      khgtjl_beizhu = #{khgtjlBeizhu,jdbcType=VARCHAR},
+      jsdwqr_ry = #{jsdwqrRy,jdbcType=VARCHAR},
+      khmc = #{khmc,jdbcType=VARCHAR},
+      khjc = #{khjc,jdbcType=VARCHAR},
+      khpym = #{khpym,jdbcType=VARCHAR},
+      khbm = #{khbm,jdbcType=VARCHAR},
+      lrqr = #{lrqr,jdbcType=CHAR},
+      qrry = #{qrry,jdbcType=VARCHAR},
+      ycyyrl = #{ycyyrl,jdbcType=VARCHAR},
+      zdjk_kssj = #{zdjkKssj,jdbcType=TIMESTAMP},
+      zdjk_jssj = #{zdjkJssj,jdbcType=TIMESTAMP},
+      lc = #{lc,jdbcType=CHAR},
+      lc_startTime = #{lcStarttime,jdbcType=TIMESTAMP},
+      lc_endTime = #{lcEndtime,jdbcType=TIMESTAMP},
+      kgyy = #{kgyy,jdbcType=VARCHAR},
+      beizhu_ry = #{beizhuRy,jdbcType=VARCHAR},
+      rlksj = #{rlksj,jdbcType=TIMESTAMP},
+      gzryqr = #{gzryqr,jdbcType=CHAR},
+      khzbth = #{khzbth,jdbcType=CHAR},
+      khzbth_qrsj = #{khzbthQrsj,jdbcType=TIMESTAMP},
+      sfycb = #{sfycb,jdbcType=CHAR},
+      sfyys = #{sfyys,jdbcType=CHAR},
+      gzryqrry = #{gzryqrry,jdbcType=VARCHAR},
+      cgqsj_xg = #{cgqsjXg,jdbcType=TIMESTAMP},
+      xcsj_xg = #{xcsjXg,jdbcType=TIMESTAMP},
+      cgqsj_sz = #{cgqsjSz,jdbcType=TIMESTAMP},
+      xcsj_sz = #{xcsjSz,jdbcType=TIMESTAMP},
+      gzryhxqr = #{gzryhxqr,jdbcType=CHAR},
+      gzryhxqrry = #{gzryhxqrry,jdbcType=CHAR},
+      wlbz = #{wlbz,jdbcType=VARCHAR},
+      zyxx_import_user = #{zyxxImportUser,jdbcType=VARCHAR},
+      cwbz = #{cwbz,jdbcType=VARCHAR},
+      AN_je_gb = #{anJeGb,jdbcType=DOUBLE},
+      AN_je_mj = #{anJeMj,jdbcType=DOUBLE},
+      mjhl = #{mjhl,jdbcType=DOUBLE},
+      wlqrsj = #{wlqrsj,jdbcType=TIMESTAMP},
+      fylr = #{fylr,jdbcType=DECIMAL},
+      hgfs = #{hgfs,jdbcType=VARCHAR},
+      sjzq_jcfs = #{sjzqJcfs,jdbcType=VARCHAR},
+      hgfs_zhm = #{hgfsZhm,jdbcType=VARCHAR},
+      hgfs_xgsj = #{hgfsXgsj,jdbcType=TIMESTAMP},
+      cgfxqfy_gd = #{cgfxqfyGd,jdbcType=VARCHAR},
+      cgfxhfy_wl = #{cgfxhfyWl,jdbcType=VARCHAR},
+      jssqr = #{jssqr,jdbcType=VARCHAR},
+      jsyy = #{jsyy,jdbcType=VARCHAR},
+      js_start = #{jsStart,jdbcType=CHAR},
+      qgrq_lrsj = #{qgrqLrsj,jdbcType=TIMESTAMP},
+      qgrq_lrry = #{qgrqLrry,jdbcType=VARCHAR},
+      sfypz = #{sfypz,jdbcType=CHAR},
+      xwxfdjs_beizhu = #{xwxfdjsBeizhu,jdbcType=VARCHAR},
+      scfy_beizhu = #{scfyBeizhu,jdbcType=VARCHAR},
+      xzz = #{xzz,jdbcType=VARCHAR},
+      sfzg = #{sfzg,jdbcType=VARCHAR},
+      zgxksj = #{zgxksj,jdbcType=TIMESTAMP},
+      xklrsj = #{xklrsj,jdbcType=TIMESTAMP},
+      zjbjh = #{zjbjh,jdbcType=VARCHAR},
+      gzjysbsj = #{gzjysbsj,jdbcType=TIMESTAMP},
+      jqsbwcsj = #{jqsbwcsj,jdbcType=TIMESTAMP},
+      grab_out_time = #{grabOutTime,jdbcType=TIMESTAMP},
+      grab_down_time = #{grabDownTime,jdbcType=TIMESTAMP},
+      wlqryf = #{wlqryf,jdbcType=DECIMAL},
+      wlzyjthsj = #{wlzyjthsj,jdbcType=TIMESTAMP},
+      wlzyjthpc = #{wlzyjthpc,jdbcType=VARCHAR},
+      yjxcsj = #{yjxcsj,jdbcType=TIMESTAMP},
+      qcdl = #{qcdl,jdbcType=VARCHAR},
+      dcthkhyqsdsj = #{dcthkhyqsdsj,jdbcType=TIMESTAMP},
+      dcthwlzfksdsj = #{dcthwlzfksdsj,jdbcType=TIMESTAMP},
+      jjnsc = #{jjnsc,jdbcType=VARCHAR},
+      ydsdcl = #{ydsdcl,jdbcType=VARCHAR},
+      dcsfyd_czsj = #{dcsfydCzsj,jdbcType=TIMESTAMP},
+      bgid = #{bgid,jdbcType=VARCHAR},
+      yjtgrq = #{yjtgrq,jdbcType=TIMESTAMP},
+      yjtgrq_import_user = #{yjtgrqImportUser,jdbcType=VARCHAR},
+      jhyap = #{jhyap,jdbcType=VARCHAR},
+      jhyap_czsj = #{jhyapCzsj,jdbcType=TIMESTAMP},
+      lxr_import_user = #{lxrImportUser,jdbcType=VARCHAR},
+      qcdl_import_user = #{qcdlImportUser,jdbcType=VARCHAR},
+      jjnsc_import_user = #{jjnscImportUser,jdbcType=VARCHAR},
+      sfzg_import_user = #{sfzgImportUser,jdbcType=VARCHAR},
+      khzbth_import_user = #{khzbthImportUser,jdbcType=VARCHAR},
+      cgfxqfy_gd_import_user = #{cgfxqfyGdImportUser,jdbcType=VARCHAR},
+      jjnscsj = #{jjnscsj,jdbcType=TIMESTAMP},
+      gzryqr_lrsj = #{gzryqrLrsj,jdbcType=TIMESTAMP},
+      xqrqksj_lrsj = #{xqrqksjLrsj,jdbcType=TIMESTAMP},
+      qcbz = #{qcbz,jdbcType=VARCHAR},
+      tch = #{tch,jdbcType=NVARCHAR},
+      fxzt = #{fxzt,jdbcType=NVARCHAR},
+      dqwz = #{dqwz,jdbcType=NVARCHAR},
+      sfapth = #{sfapth,jdbcType=NVARCHAR},
+      sfapthczsj = #{sfapthczsj,jdbcType=TIMESTAMP},
+      yqthsj = #{yqthsj,jdbcType=TIMESTAMP},
+      apth_bz = #{apthBz,jdbcType=NVARCHAR},
+      xc2ccy_dy = #{xc2ccyDy,jdbcType=NVARCHAR},
+      cph_dyc = #{cphDyc,jdbcType=NVARCHAR},
+      khxqtcsj = #{khxqtcsj,jdbcType=TIMESTAMP},
+      jhxgwlsj = #{jhxgwlsj,jdbcType=TIMESTAMP},
+      jhdbjdl = #{jhdbjdl,jdbcType=VARCHAR},
+      jhdbjdl_llsj = #{jhdbjdlLlsj,jdbcType=TIMESTAMP},
+      wxpdy = #{wxpdy,jdbcType=VARCHAR},
+      wlzyjthsj_llsj = #{wlzyjthsjLlsj,jdbcType=TIMESTAMP},
+      yjyqsdsj = #{yjyqsdsj,jdbcType=TIMESTAMP},
+      qrqk = #{qrqk,jdbcType=NVARCHAR},
+      ecph = #{ecph,jdbcType=VARCHAR},
+      wlzyjthpc_llsj = #{wlzyjthpcLlsj,jdbcType=TIMESTAMP},
+      yjxcsj_llsj = #{yjxcsjLlsj,jdbcType=TIMESTAMP},
+      yjtgrq_llsj = #{yjtgrqLlsj,jdbcType=TIMESTAMP},
+      khxqtcsj_llsj = #{khxqtcsjLlsj,jdbcType=TIMESTAMP},
+      mzsj = #{mzsj,jdbcType=TIMESTAMP},
+      jjzt = #{jjzt,jdbcType=VARCHAR},
+      sfxs = #{sfxs,jdbcType=INTEGER},
+      xsbglj = #{xsbglj,jdbcType=NVARCHAR},
+      xsgsmc = #{xsgsmc,jdbcType=NVARCHAR},
+      xslxr = #{xslxr,jdbcType=NVARCHAR},
+      xclxr = #{xclxr,jdbcType=NVARCHAR},
+      czxxsftg = #{czxxsftg,jdbcType=NVARCHAR},
+      xslx = #{xslx,jdbcType=NVARCHAR},
+      hsjcbz = #{hsjcbz,jdbcType=NVARCHAR},
+      fybz = #{fybz,jdbcType=NVARCHAR},
+      wlpdsj = #{wlpdsj,jdbcType=TIMESTAMP},
+      szsfxs = #{szsfxs,jdbcType=VARCHAR},
+      sfhs = #{sfhs,jdbcType=VARCHAR},
+      sfsjddc = #{sfsjddc,jdbcType=NVARCHAR},
+      sfhssj = #{sfhssj,jdbcType=TIMESTAMP},
+      zbgd = #{zbgd,jdbcType=NVARCHAR},
+      zbgdrq = #{zbgdrq,jdbcType=TIMESTAMP},
+      gzryhxqr_cxsj = #{gzryhxqrCxsj,jdbcType=TIMESTAMP},
+      xsbgljsj = #{xsbgljsj,jdbcType=TIMESTAMP},
+      sfdd = #{sfdd,jdbcType=VARCHAR},
+      sfcyjzx = #{sfcyjzx,jdbcType=VARCHAR},
+      gcsfcy = #{gcsfcy,jdbcType=VARCHAR},
+      gcsfcy_czsj = #{gcsfcyCzsj,jdbcType=TIMESTAMP},
+      szktsj = #{szktsj,jdbcType=TIMESTAMP},
+      szkgsj = #{szkgsj,jdbcType=TIMESTAMP},
+      szclfxsj = #{szclfxsj,jdbcType=TIMESTAMP},
+      szcyyc = #{szcyyc,jdbcType=VARCHAR},
+      szktsj_czry = #{szktsjCzry,jdbcType=VARCHAR},
+      szktsj_czsj = #{szktsjCzsj,jdbcType=TIMESTAMP},
+      szkgsj_czry = #{szkgsjCzry,jdbcType=VARCHAR},
+      szkgsj_czsj = #{szkgsjCzsj,jdbcType=TIMESTAMP},
+      szclfxsj_czry = #{szclfxsjCzry,jdbcType=VARCHAR},
+      szclfxsj_czsj = #{szclfxsjCzsj,jdbcType=TIMESTAMP},
+      gcsfcy_czry = #{gcsfcyCzry,jdbcType=VARCHAR},
+      cyfybz = #{cyfybz,jdbcType=VARCHAR},
+      gczl = #{gczl,jdbcType=VARCHAR},
+      jhrq = #{jhrq,jdbcType=TIMESTAMP},
+      cskhg = #{cskhg,jdbcType=TIMESTAMP},
+      cszhg = #{cszhg,jdbcType=TIMESTAMP},
+      cxghg = #{cxghg,jdbcType=TIMESTAMP},
+      jcgzj = #{jcgzj,jdbcType=VARCHAR},
+      jchxdc = #{jchxdc,jdbcType=VARCHAR},
+      sdsj = #{sdsj,jdbcType=TIMESTAMP},
+      sfylr = #{sfylr,jdbcType=VARCHAR},
+      jhd = #{jhd,jdbcType=VARCHAR},
+      ddsj = #{ddsj,jdbcType=TIMESTAMP},
+      sffwdj = #{sffwdj,jdbcType=VARCHAR},
+      sfwsttjsc = #{sfwsttjsc,jdbcType=VARCHAR},
+      wlkthsj = #{wlkthsj,jdbcType=TIMESTAMP},
+      sfwlkt = #{sfwlkt,jdbcType=CHAR},
+      sfkhwlxq = #{sfkhwlxq,jdbcType=CHAR},
+      zggtpc = #{zggtpc,jdbcType=VARCHAR},
+      zgwlpdsj = #{zgwlpdsj,jdbcType=TIMESTAMP},
+      kjzyme = #{kjzyme,jdbcType=CHAR},
+      kjzymesj = #{kjzymesj,jdbcType=TIMESTAMP},
+      cgzjsj = #{cgzjsj,jdbcType=TIMESTAMP},
+      zgwlzyjtgsj = #{zgwlzyjtgsj,jdbcType=TIMESTAMP},
+      cmyzhjbcsj = #{cmyzhjbcsj,jdbcType=TIMESTAMP},
+      cjkjzydsj = #{cjkjzydsj,jdbcType=TIMESTAMP},
+      kjzyddz = #{kjzyddz,jdbcType=VARCHAR},
+      hxq = #{hxq,jdbcType=INTEGER},
+      mtm_dui_q = #{mtmDuiQ,jdbcType=INTEGER},
+      mtm_dian_q = #{mtmDianQ,jdbcType=INTEGER}
+    where id = #{id,jdbcType=INTEGER}
+  </update>
+</mapper>
\ No newline at end of file
Index: jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/YwHddzMapper.xml
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/YwHddzMapper.xml	(revision 0)
+++ jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/YwHddzMapper.xml	(revision 33864)
@@ -0,0 +1,6388 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.freshport.dao.YwHddzMapper">
+  <resultMap id="BaseResultMap" type="com.freshport.entity.YwHddz">
+    <result column="ywbh" jdbcType="VARCHAR" property="ywbh" />
+    <result column="zbr" jdbcType="VARCHAR" property="zbr" />
+    <result column="zbrq" jdbcType="TIMESTAMP" property="zbrq" />
+    <result column="dlwtf" jdbcType="VARCHAR" property="dlwtf" />
+    <result column="hth" jdbcType="VARCHAR" property="hth" />
+    <result column="dlxyh" jdbcType="VARCHAR" property="dlxyh" />
+    <result column="zydl" jdbcType="VARCHAR" property="zydl" />
+    <result column="hdgsbm" jdbcType="VARCHAR" property="hdgsbm" />
+    <result column="hdgsmc" jdbcType="VARCHAR" property="hdgsmc" />
+    <result column="hdgsjc" jdbcType="VARCHAR" property="hdgsjc" />
+    <result column="hdgspym" jdbcType="VARCHAR" property="hdgspym" />
+    <result column="bggsbm" jdbcType="VARCHAR" property="bggsbm" />
+    <result column="bggsmc" jdbcType="VARCHAR" property="bggsmc" />
+    <result column="bggsjc" jdbcType="VARCHAR" property="bggsjc" />
+    <result column="bggspym" jdbcType="VARCHAR" property="bggspym" />
+    <result column="bjgsbm" jdbcType="VARCHAR" property="bjgsbm" />
+    <result column="bjgsmc" jdbcType="VARCHAR" property="bjgsmc" />
+    <result column="bjgsjc" jdbcType="VARCHAR" property="bjgsjc" />
+    <result column="bjgspym" jdbcType="VARCHAR" property="bjgspym" />
+    <result column="bjgssjjgdm" jdbcType="VARCHAR" property="bjgssjjgdm" />
+    <result column="khbm" jdbcType="VARCHAR" property="khbm" />
+    <result column="khmc" jdbcType="VARCHAR" property="khmc" />
+    <result column="khjc" jdbcType="VARCHAR" property="khjc" />
+    <result column="khpym" jdbcType="VARCHAR" property="khpym" />
+    <result column="shdwbm" jdbcType="VARCHAR" property="shdwbm" />
+    <result column="shdwmc" jdbcType="VARCHAR" property="shdwmc" />
+    <result column="shdwjc" jdbcType="VARCHAR" property="shdwjc" />
+    <result column="shdwpym" jdbcType="VARCHAR" property="shdwpym" />
+    <result column="jydwbm" jdbcType="VARCHAR" property="jydwbm" />
+    <result column="jydwmc" jdbcType="VARCHAR" property="jydwmc" />
+    <result column="jydwjc" jdbcType="VARCHAR" property="jydwjc" />
+    <result column="jydwpym" jdbcType="VARCHAR" property="jydwpym" />
+    <result column="jydwsjjgdm" jdbcType="VARCHAR" property="jydwsjjgdm" />
+    <result column="gwgysbm" jdbcType="VARCHAR" property="gwgysbm" />
+    <result column="gwgysmc" jdbcType="VARCHAR" property="gwgysmc" />
+    <result column="gwgysjc" jdbcType="VARCHAR" property="gwgysjc" />
+    <result column="gwgyspym" jdbcType="VARCHAR" property="gwgyspym" />
+    <result column="zjsbm" jdbcType="VARCHAR" property="zjsbm" />
+    <result column="zjsmc" jdbcType="VARCHAR" property="zjsmc" />
+    <result column="zjsjc" jdbcType="VARCHAR" property="zjsjc" />
+    <result column="zjspym" jdbcType="VARCHAR" property="zjspym" />
+    <result column="gwhdbm" jdbcType="VARCHAR" property="gwhdbm" />
+    <result column="gwhdmc" jdbcType="VARCHAR" property="gwhdmc" />
+    <result column="gwhdjc" jdbcType="VARCHAR" property="gwhdjc" />
+    <result column="gwhdpym" jdbcType="VARCHAR" property="gwhdpym" />
+    <result column="tzrbm" jdbcType="VARCHAR" property="tzrbm" />
+    <result column="tzrmc" jdbcType="VARCHAR" property="tzrmc" />
+    <result column="tzrjc" jdbcType="VARCHAR" property="tzrjc" />
+    <result column="tzrpym" jdbcType="VARCHAR" property="tzrpym" />
+    <result column="ysfs" jdbcType="VARCHAR" property="ysfs" />
+    <result column="tdlx" jdbcType="VARCHAR" property="tdlx" />
+    <result column="cyrbm" jdbcType="VARCHAR" property="cyrbm" />
+    <result column="cyr" jdbcType="VARCHAR" property="cyr" />
+    <result column="cyrjc" jdbcType="VARCHAR" property="cyrjc" />
+    <result column="cyrpym" jdbcType="VARCHAR" property="cyrpym" />
+    <result column="cdgsbm" jdbcType="VARCHAR" property="cdgsbm" />
+    <result column="cdgs" jdbcType="VARCHAR" property="cdgs" />
+    <result column="cdgsjc" jdbcType="VARCHAR" property="cdgsjc" />
+    <result column="cdgspym" jdbcType="VARCHAR" property="cdgspym" />
+    <result column="cm" jdbcType="VARCHAR" property="cm" />
+    <result column="hcorhbh" jdbcType="VARCHAR" property="hcorhbh" />
+    <result column="hcorhbh_zq" jdbcType="VARCHAR" property="hcorhbhZq" />
+    <result column="sfzy" jdbcType="VARCHAR" property="sfzy" />
+    <result column="zz_cm" jdbcType="VARCHAR" property="zzCm" />
+    <result column="zz_hcorhbh" jdbcType="VARCHAR" property="zzHcorhbh" />
+    <result column="zzgk" jdbcType="VARCHAR" property="zzgk" />
+    <result column="ztdh" jdbcType="VARCHAR" property="ztdh" />
+    <result column="sfshytd" jdbcType="VARCHAR" property="sfshytd" />
+    <result column="ftdh" jdbcType="VARCHAR" property="ftdh" />
+    <result column="hygsbm" jdbcType="VARCHAR" property="hygsbm" />
+    <result column="hygsmc" jdbcType="VARCHAR" property="hygsmc" />
+    <result column="hygsjc" jdbcType="VARCHAR" property="hygsjc" />
+    <result column="hygspym" jdbcType="VARCHAR" property="hygspym" />
+    <result column="hdhdgs" jdbcType="VARCHAR" property="hdhdgs" />
+    <result column="qyg" jdbcType="VARCHAR" property="qyg" />
+    <result column="qygdm" jdbcType="VARCHAR" property="qygdm" />
+    <result column="qygsjgkdm" jdbcType="VARCHAR" property="qygsjgkdm" />
+    <result column="mdg" jdbcType="VARCHAR" property="mdg" />
+    <result column="xhgqbm" jdbcType="VARCHAR" property="xhgqbm" />
+    <result column="xhgq" jdbcType="VARCHAR" property="xhgq" />
+    <result column="xhgqjc" jdbcType="VARCHAR" property="xhgqjc" />
+    <result column="xhgqpym" jdbcType="VARCHAR" property="xhgqpym" />
+    <result column="yjkgsj" jdbcType="TIMESTAMP" property="yjkgsj" />
+    <result column="sjkgsj" jdbcType="TIMESTAMP" property="sjkgsj" />
+    <result column="sfxyechd" jdbcType="VARCHAR" property="sfxyechd" />
+    <result column="ycd" jdbcType="VARCHAR" property="ycd" />
+    <result column="ycddm" jdbcType="VARCHAR" property="ycddm" />
+    <result column="ejycd" jdbcType="VARCHAR" property="ejycd" />
+    <result column="mxq" jdbcType="INTEGER" property="mxq" />
+    <result column="jgfs" jdbcType="VARCHAR" property="jgfs" />
+    <result column="wbbb" jdbcType="VARCHAR" property="wbbb" />
+    <result column="zje" jdbcType="DOUBLE" property="zje" />
+    <result column="zmyhl" jdbcType="DOUBLE" property="zmyhl" />
+    <result column="zmyje" jdbcType="DOUBLE" property="zmyje" />
+    <result column="sfyyf" jdbcType="VARCHAR" property="sfyyf" />
+    <result column="yfje" jdbcType="DOUBLE" property="yfje" />
+    <result column="yfbb" jdbcType="VARCHAR" property="yfbb" />
+    <result column="sdyffpsj" jdbcType="TIMESTAMP" property="sdyffpsj" />
+    <result column="khorhd" jdbcType="VARCHAR" property="khorhd" />
+    <result column="yfcdrbm" jdbcType="VARCHAR" property="yfcdrbm" />
+    <result column="yfcdr" jdbcType="VARCHAR" property="yfcdr" />
+    <result column="yfcdrjc" jdbcType="VARCHAR" property="yfcdrjc" />
+    <result column="yfcdrpym" jdbcType="VARCHAR" property="yfcdrpym" />
+    <result column="kddh" jdbcType="VARCHAR" property="kddh" />
+    <result column="sdsdsj" jdbcType="TIMESTAMP" property="sdsdsj" />
+    <result column="yfzfqrsj" jdbcType="TIMESTAMP" property="yfzfqrsj" />
+    <result column="yfbz" jdbcType="VARCHAR" property="yfbz" />
+    <result column="gkhfpsj" jdbcType="TIMESTAMP" property="gkhfpsj" />
+    <result column="yfzfjg" jdbcType="VARCHAR" property="yfzfjg" />
+    <result column="state" jdbcType="VARCHAR" property="state" />
+    <result column="beizhu" jdbcType="VARCHAR" property="beizhu" />
+    <result column="kyhdsj" jdbcType="TIMESTAMP" property="kyhdsj" />
+    <result column="sjhdsj" jdbcType="TIMESTAMP" property="sjhdsj" />
+    <result column="hdbz" jdbcType="VARCHAR" property="hdbz" />
+    <result column="xtdh" jdbcType="VARCHAR" property="xtdh" />
+    <result column="gs" jdbcType="DOUBLE" property="gs" />
+    <result column="zzs" jdbcType="DOUBLE" property="zzs" />
+    <result column="bzj" jdbcType="DOUBLE" property="bzj" />
+    <result column="sjzfrq" jdbcType="TIMESTAMP" property="sjzfrq" />
+    <result column="gs_bj" jdbcType="DOUBLE" property="gsBj" />
+    <result column="zzs_bj" jdbcType="DOUBLE" property="zzsBj" />
+    <result column="bzj_bj" jdbcType="DOUBLE" property="bzjBj" />
+    <result column="sjzfrq_bj" jdbcType="TIMESTAMP" property="sjzfrqBj" />
+    <result column="bzjzfrbm" jdbcType="VARCHAR" property="bzjzfrbm" />
+    <result column="bzjzfr" jdbcType="VARCHAR" property="bzjzfr" />
+    <result column="bzjzfrjc" jdbcType="VARCHAR" property="bzjzfrjc" />
+    <result column="bzjzfrpym" jdbcType="VARCHAR" property="bzjzfrpym" />
+    <result column="bzjsj" jdbcType="TIMESTAMP" property="bzjsj" />
+    <result column="bzjje" jdbcType="DOUBLE" property="bzjje" />
+    <result column="bzjdjh" jdbcType="VARCHAR" property="bzjdjh" />
+    <result column="bzjjzsj" jdbcType="TIMESTAMP" property="bzjjzsj" />
+    <result column="bzjymxz" jdbcType="VARCHAR" property="bzjymxz" />
+    <result column="bzjym" jdbcType="VARCHAR" property="bzjym" />
+    <result column="stbrysj" jdbcType="TIMESTAMP" property="stbrysj" />
+    <result column="shgsj" jdbcType="TIMESTAMP" property="shgsj" />
+    <result column="hgclsj" jdbcType="TIMESTAMP" property="hgclsj" />
+    <result column="tbzj" jdbcType="DOUBLE" property="tbzj" />
+    <result column="zzzs" jdbcType="DOUBLE" property="zzzs" />
+    <result column="zgs" jdbcType="DOUBLE" property="zgs" />
+    <result column="hghdjg" jdbcType="DOUBLE" property="hghdjg" />
+    <result column="tkdzsj" jdbcType="TIMESTAMP" property="tkdzsj" />
+    <result column="wsbjsj" jdbcType="TIMESTAMP" property="wsbjsj" />
+    <result column="bjh" jdbcType="VARCHAR" property="bjh" />
+    <result column="bjsj" jdbcType="TIMESTAMP" property="bjsj" />
+    <result column="cktgsj" jdbcType="TIMESTAMP" property="cktgsj" />
+    <result column="tgdh" jdbcType="VARCHAR" property="tgdh" />
+    <result column="wzhfxsj" jdbcType="TIMESTAMP" property="wzhfxsj" />
+    <result column="bgdh" jdbcType="VARCHAR" property="bgdh" />
+    <result column="bgsj" jdbcType="TIMESTAMP" property="bgsj" />
+    <result column="bghgbm" jdbcType="VARCHAR" property="bghgbm" />
+    <result column="bghg" jdbcType="VARCHAR" property="bghg" />
+    <result column="bghgjc" jdbcType="VARCHAR" property="bghgjc" />
+    <result column="bghgpym" jdbcType="VARCHAR" property="bghgpym" />
+    <result column="jyjbm" jdbcType="VARCHAR" property="jyjbm" />
+    <result column="jyjmc" jdbcType="VARCHAR" property="jyjmc" />
+    <result column="jyjjc" jdbcType="VARCHAR" property="jyjjc" />
+    <result column="jyjpym" jdbcType="VARCHAR" property="jyjpym" />
+    <result column="jyjsjjgdm" jdbcType="VARCHAR" property="jyjsjjgdm" />
+    <result column="sfcy" jdbcType="VARCHAR" property="sfcy" />
+    <result column="cydbm" jdbcType="VARCHAR" property="cydbm" />
+    <result column="cyd" jdbcType="VARCHAR" property="cyd" />
+    <result column="cydjc" jdbcType="VARCHAR" property="cydjc" />
+    <result column="cydpym" jdbcType="VARCHAR" property="cydpym" />
+    <result column="yjcysj" jdbcType="TIMESTAMP" property="yjcysj" />
+    <result column="sjcysj" jdbcType="TIMESTAMP" property="sjcysj" />
+    <result column="cybz" jdbcType="VARCHAR" property="cybz" />
+    <result column="hgfxsj" jdbcType="TIMESTAMP" property="hgfxsj" />
+    <result column="hgfxsj_srsj" jdbcType="TIMESTAMP" property="hgfxsjSrsj" />
+    <result column="kgbz" jdbcType="VARCHAR" property="kgbz" />
+    <result column="fph" jdbcType="VARCHAR" property="fph" />
+    <result column="sjzfkhlx" jdbcType="VARCHAR" property="sjzfkhlx" />
+    <result column="sjzfkhbm" jdbcType="VARCHAR" property="sjzfkhbm" />
+    <result column="sjzfkhmc" jdbcType="VARCHAR" property="sjzfkhmc" />
+    <result column="sjzfkhjc" jdbcType="VARCHAR" property="sjzfkhjc" />
+    <result column="sjzfkhpym" jdbcType="VARCHAR" property="sjzfkhpym" />
+    <result column="zbj" jdbcType="DOUBLE" property="zbj" />
+    <result column="sjbz" jdbcType="VARCHAR" property="sjbz" />
+    <result column="jybz" jdbcType="VARCHAR" property="jybz" />
+    <result column="jydbm" jdbcType="VARCHAR" property="jydbm" />
+    <result column="jyd" jdbcType="VARCHAR" property="jyd" />
+    <result column="jydjc" jdbcType="VARCHAR" property="jydjc" />
+    <result column="jydpym" jdbcType="VARCHAR" property="jydpym" />
+    <result column="hdsj" jdbcType="TIMESTAMP" property="hdsj" />
+    <result column="bgbz" jdbcType="VARCHAR" property="bgbz" />
+    <result column="hgfxfs" jdbcType="VARCHAR" property="hgfxfs" />
+    <result column="hgtgwt" jdbcType="VARCHAR" property="hgtgwt" />
+    <result column="hz_jzxh" jdbcType="VARCHAR" property="hzJzxh" />
+    <result column="hz_spmc" jdbcType="VARCHAR" property="hzSpmc" />
+    <result column="sdsdrq" jdbcType="TIMESTAMP" property="sdsdrq" />
+    <result column="sdkhqzrq" jdbcType="TIMESTAMP" property="sdkhqzrq" />
+    <result column="sdbz" jdbcType="VARCHAR" property="sdbz" />
+    <result column="sdkddh" jdbcType="VARCHAR" property="sdkddh" />
+    <result column="bzjbz" jdbcType="VARCHAR" property="bzjbz" />
+    <result column="fxbz" jdbcType="VARCHAR" property="fxbz" />
+    <result column="clfs" jdbcType="VARCHAR" property="clfs" />
+    <result column="beizhu_xgrq" jdbcType="TIMESTAMP" property="beizhuXgrq" />
+    <result column="hz_sl" jdbcType="DOUBLE" property="hzSl" />
+    <result column="mtdm" jdbcType="VARCHAR" property="mtdm" />
+    <result column="sfqycdz" jdbcType="VARCHAR" property="sfqycdz" />
+    <result column="lzsj" jdbcType="TIMESTAMP" property="lzsj" />
+    <result column="ycdzsh" jdbcType="VARCHAR" property="ycdzsh" />
+    <result column="khmxq" jdbcType="INTEGER" property="khmxq" />
+    <result column="invoiceno" jdbcType="VARCHAR" property="invoiceno" />
+    <result column="invoice_date" jdbcType="TIMESTAMP" property="invoiceDate" />
+    <result column="sfsdhdzl" jdbcType="VARCHAR" property="sfsdhdzl" />
+    <result column="sfhd" jdbcType="VARCHAR" property="sfhd" />
+    <result column="sfytzcgskp" jdbcType="VARCHAR" property="sfytzcgskp" />
+    <result column="tzcgskpsj" jdbcType="TIMESTAMP" property="tzcgskpsj" />
+    <result column="sfyfyzf" jdbcType="VARCHAR" property="sfyfyzf" />
+    <result column="sfyzbg" jdbcType="VARCHAR" property="sfyzbg" />
+    <result column="cm_zw" jdbcType="VARCHAR" property="cmZw" />
+    <result column="sfsdsd" jdbcType="VARCHAR" property="sfsdsd" />
+    <result column="jsdwbm" jdbcType="VARCHAR" property="jsdwbm" />
+    <result column="jsdwmc" jdbcType="VARCHAR" property="jsdwmc" />
+    <result column="jsdwjc" jdbcType="VARCHAR" property="jsdwjc" />
+    <result column="jsdwpym" jdbcType="VARCHAR" property="jsdwpym" />
+    <result column="xtdlx" jdbcType="VARCHAR" property="xtdlx" />
+    <result column="hgclbh" jdbcType="VARCHAR" property="hgclbh" />
+    <result column="hdzljcsj" jdbcType="TIMESTAMP" property="hdzljcsj" />
+    <result column="jcgzry" jdbcType="VARCHAR" property="jcgzry" />
+    <result column="hdzljcbz" jdbcType="VARCHAR" property="hdzljcbz" />
+    <result column="bgsxtdsj" jdbcType="TIMESTAMP" property="bgsxtdsj" />
+    <result column="bgscxtdsj" jdbcType="TIMESTAMP" property="bgscxtdsj" />
+    <result column="thhtjhsj" jdbcType="TIMESTAMP" property="thhtjhsj" />
+    <result column="jjcd" jdbcType="VARCHAR" property="jjcd" />
+    <result column="tcts" jdbcType="DOUBLE" property="tcts" />
+    <result column="zthsq" jdbcType="VARCHAR" property="zthsq" />
+    <result column="yjlgsj" jdbcType="TIMESTAMP" property="yjlgsj" />
+    <result column="zthsqsj" jdbcType="TIMESTAMP" property="zthsqsj" />
+    <result column="ytjkzt" jdbcType="VARCHAR" property="ytjkzt" />
+    <result column="dzlx" jdbcType="VARCHAR" property="dzlx" />
+    <result column="jydwdm" jdbcType="VARCHAR" property="jydwdm" />
+    <result column="hzdwdqdm" jdbcType="VARCHAR" property="hzdwdqdm" />
+    <result column="shdwdm" jdbcType="VARCHAR" property="shdwdm" />
+    <result column="sbdwdm" jdbcType="VARCHAR" property="sbdwdm" />
+    <result column="jcka" jdbcType="VARCHAR" property="jcka" />
+    <result column="myfs" jdbcType="VARCHAR" property="myfs" />
+    <result column="zmfs" jdbcType="VARCHAR" property="zmfs" />
+    <result column="yfbj" jdbcType="VARCHAR" property="yfbj" />
+    <result column="bxfbj" jdbcType="VARCHAR" property="bxfbj" />
+    <result column="bxfbb" jdbcType="VARCHAR" property="bxfbb" />
+    <result column="bxfje" jdbcType="DOUBLE" property="bxfje" />
+    <result column="zxs" jdbcType="DOUBLE" property="zxs" />
+    <result column="zmz" jdbcType="DOUBLE" property="zmz" />
+    <result column="zjz" jdbcType="DOUBLE" property="zjz" />
+    <result column="bzzl" jdbcType="VARCHAR" property="bzzl" />
+    <result column="jckbz" jdbcType="VARCHAR" property="jckbz" />
+    <result column="ytbz" jdbcType="VARCHAR" property="ytbz" />
+    <result column="qiyunguo" jdbcType="VARCHAR" property="qiyunguo" />
+    <result column="qiyunguodm" jdbcType="VARCHAR" property="qiyunguodm" />
+    <result column="htd" jdbcType="VARCHAR" property="htd" />
+    <result column="htd_rq" jdbcType="TIMESTAMP" property="htdRq" />
+    <result column="sfqrbzlx" jdbcType="VARCHAR" property="sfqrbzlx" />
+    <result column="ytjkwjbh" jdbcType="VARCHAR" property="ytjkwjbh" />
+    <result column="ytjkfssj" jdbcType="TIMESTAMP" property="ytjkfssj" />
+    <result column="ytjkfscs" jdbcType="INTEGER" property="ytjkfscs" />
+    <result column="EP15212" jdbcType="VARCHAR" property="ep15212" />
+    <result column="EP14515" jdbcType="VARCHAR" property="ep14515" />
+    <result column="EP14516" jdbcType="VARCHAR" property="ep14516" />
+    <result column="EP14514" jdbcType="NCHAR" property="ep14514" />
+    <result column="ytzt" jdbcType="VARCHAR" property="ytzt" />
+    <result column="ytsjfszt" jdbcType="VARCHAR" property="ytsjfszt" />
+    <result column="sfkydqsjjk" jdbcType="VARCHAR" property="sfkydqsjjk" />
+    <result column="bjgslxr" jdbcType="VARCHAR" property="bjgslxr" />
+    <result column="bjgslxdh" jdbcType="VARCHAR" property="bjgslxdh" />
+    <result column="bjydm" jdbcType="VARCHAR" property="bjydm" />
+    <result column="qyxz" jdbcType="VARCHAR" property="qyxz" />
+    <result column="sfwstzcc" jdbcType="VARCHAR" property="sfwstzcc" />
+    <result column="tstk" jdbcType="VARCHAR" property="tstk" />
+    <result column="hwcfd" jdbcType="VARCHAR" property="hwcfd" />
+    <result column="yt" jdbcType="VARCHAR" property="yt" />
+    <result column="spts" jdbcType="INTEGER" property="spts" />
+    <result column="zsbh" jdbcType="VARCHAR" property="zsbh" />
+    <result column="zsmc" jdbcType="VARCHAR" property="zsmc" />
+    <result column="bjlb" jdbcType="VARCHAR" property="bjlb" />
+    <result column="mt" jdbcType="VARCHAR" property="mt" />
+    <result column="ysgj" jdbcType="VARCHAR" property="ysgj" />
+    <result column="sfdj" jdbcType="VARCHAR" property="sfdj" />
+    <result column="sfdjbm" jdbcType="VARCHAR" property="sfdjbm" />
+    <result column="rjka" jdbcType="VARCHAR" property="rjka" />
+    <result column="rjmdd" jdbcType="VARCHAR" property="rjmdd" />
+    <result column="dfcyf" jdbcType="DOUBLE" property="dfcyf" />
+    <result column="dfcbxf" jdbcType="DOUBLE" property="dfcbxf" />
+    <result column="sffsrjsj" jdbcType="VARCHAR" property="sffsrjsj" />
+    <result column="rjjkfssj" jdbcType="TIMESTAMP" property="rjjkfssj" />
+    <result column="rjjkfscs" jdbcType="INTEGER" property="rjjkfscs" />
+    <result column="bzjsqly" jdbcType="VARCHAR" property="bzjsqly" />
+    <result column="clqy" jdbcType="VARCHAR" property="clqy" />
+    <result column="sdlqr" jdbcType="VARCHAR" property="sdlqr" />
+    <result column="sdlqsj" jdbcType="TIMESTAMP" property="sdlqsj" />
+    <result column="sddzsj" jdbcType="TIMESTAMP" property="sddzsj" />
+    <result column="sdh" jdbcType="VARCHAR" property="sdh" />
+    <result column="ktgs" jdbcType="DOUBLE" property="ktgs" />
+    <result column="ktzzs" jdbcType="DOUBLE" property="ktzzs" />
+    <result column="yzbh" jdbcType="VARCHAR" property="yzbh" />
+    <result column="skdbtzspd_qt" jdbcType="VARCHAR" property="skdbtzspdQt" />
+    <result column="skdbtzspd_tzsy" jdbcType="VARCHAR" property="skdbtzspdTzsy" />
+    <result column="bzj_khsksj" jdbcType="TIMESTAMP" property="bzjKhsksj" />
+    <result column="sj_khsksj" jdbcType="TIMESTAMP" property="sjKhsksj" />
+    <result column="sftk" jdbcType="VARCHAR" property="sftk" />
+    <result column="zcrq" jdbcType="TIMESTAMP" property="zcrq" />
+    <result column="sfyfh" jdbcType="VARCHAR" property="sfyfh" />
+    <result column="fh" jdbcType="VARCHAR" property="fh" />
+    <result column="hz_hgbm" jdbcType="VARCHAR" property="hzHgbm" />
+    <result column="hz_pz" jdbcType="VARCHAR" property="hzPz" />
+    <result column="hz_spywmc" jdbcType="VARCHAR" property="hzSpywmc" />
+    <result column="hz_sjshr" jdbcType="VARCHAR" property="hzSjshr" />
+    <result column="hz_sjshrgs" jdbcType="INTEGER" property="hzSjshrgs" />
+    <result column="zgggbz" jdbcType="VARCHAR" property="zgggbz" />
+    <result column="dmbz" jdbcType="VARCHAR" property="dmbz" />
+    <result column="yfbz_dz" jdbcType="VARCHAR" property="yfbzDz" />
+    <result column="yflrbh" jdbcType="VARCHAR" property="yflrbh" />
+    <result column="jzxsl" jdbcType="INTEGER" property="jzxsl" />
+    <result column="hz_tpsl" jdbcType="INTEGER" property="hzTpsl" />
+    <result column="hz_szsl" jdbcType="INTEGER" property="hzSzsl" />
+    <result column="hz_zhlx" jdbcType="VARCHAR" property="hzZhlx" />
+    <result column="hz_xx" jdbcType="VARCHAR" property="hzXx" />
+    <result column="sjzq_cm" jdbcType="VARCHAR" property="sjzqCm" />
+    <result column="sjzq_hc" jdbcType="VARCHAR" property="sjzqHc" />
+    <result column="sjzq_js" jdbcType="DOUBLE" property="sjzqJs" />
+    <result column="sjzq_zl" jdbcType="DOUBLE" property="sjzqZl" />
+    <result column="sgzq_dyxx" jdbcType="VARCHAR" property="sgzqDyxx" />
+    <result column="sjzq_jkdgqrbz" jdbcType="VARCHAR" property="sjzqJkdgqrbz" />
+    <result column="sjzq_lhzt" jdbcType="VARCHAR" property="sjzqLhzt" />
+    <result column="sjzq_ckdyzt" jdbcType="VARCHAR" property="sjzqCkdyzt" />
+    <result column="sjzq_zqcdsj" jdbcType="TIMESTAMP" property="sjzqZqcdsj" />
+    <result column="sjzq_zqdgsj" jdbcType="TIMESTAMP" property="sjzqZqdgsj" />
+    <result column="sjzq_zqlhsj" jdbcType="TIMESTAMP" property="sjzqZqlhsj" />
+    <result column="sdry" jdbcType="VARCHAR" property="sdry" />
+    <result column="yfqr" jdbcType="VARCHAR" property="yfqr" />
+    <result column="dqdm" jdbcType="VARCHAR" property="dqdm" />
+    <result column="ctr_area2" jdbcType="VARCHAR" property="ctrArea2" />
+    <result column="tycj" jdbcType="VARCHAR" property="tycj" />
+    <result column="hz_bzsl" jdbcType="INTEGER" property="hzBzsl" />
+    <result column="pjlx" jdbcType="VARCHAR" property="pjlx" />
+    <result column="pjkhthsj" jdbcType="TIMESTAMP" property="pjkhthsj" />
+    <result column="sddybh" jdbcType="VARCHAR" property="sddybh" />
+    <result column="cdxxycyy" jdbcType="VARCHAR" property="cdxxycyy" />
+    <result column="mygb" jdbcType="VARCHAR" property="mygb" />
+    <result column="yjtsbm" jdbcType="VARCHAR" property="yjtsbm" />
+    <result column="SupplierSellID" jdbcType="VARCHAR" property="suppliersellid" />
+    <result column="OcrID" jdbcType="VARCHAR" property="ocrid" />
+    <result column="wzhjdsj" jdbcType="TIMESTAMP" property="wzhjdsj" />
+    <result column="gjsbzt" jdbcType="VARCHAR" property="gjsbzt" />
+    <result column="sfjy" jdbcType="VARCHAR" property="sfjy" />
+    <result column="hgfxsj_zqsj" jdbcType="TIMESTAMP" property="hgfxsjZqsj" />
+    <result column="ohxt_clbz" jdbcType="VARCHAR" property="ohxtClbz" />
+    <result column="ohxt_clsj" jdbcType="TIMESTAMP" property="ohxtClsj" />
+    <result column="bghbjxgbz" jdbcType="VARCHAR" property="bghbjxgbz" />
+    <result column="fxfsqrbz" jdbcType="VARCHAR" property="fxfsqrbz" />
+    <result column="qrdf" jdbcType="VARCHAR" property="qrdf" />
+    <result column="sfbhbj" jdbcType="VARCHAR" property="sfbhbj" />
+    <result column="sfxb" jdbcType="VARCHAR" property="sfxb" />
+    <result column="sjxgbz" jdbcType="VARCHAR" property="sjxgbz" />
+    <result column="rgzq_dyxx" jdbcType="VARCHAR" property="rgzqDyxx" />
+    <result column="qrdfsj" jdbcType="TIMESTAMP" property="qrdfsj" />
+    <result column="bhbjsj" jdbcType="TIMESTAMP" property="bhbjsj" />
+    <result column="sjzq_cdrgzqbz" jdbcType="VARCHAR" property="sjzqCdrgzqbz" />
+    <result column="sfzbzj" jdbcType="VARCHAR" property="sfzbzj" />
+    <result column="zbzjsj" jdbcType="TIMESTAMP" property="zbzjsj" />
+    <result column="scsxgbz" jdbcType="VARCHAR" property="scsxgbz" />
+    <result column="yjhdsj" jdbcType="TIMESTAMP" property="yjhdsj" />
+    <result column="yjhdsj_sr" jdbcType="TIMESTAMP" property="yjhdsjSr" />
+    <result column="sfyzcf" jdbcType="VARCHAR" property="sfyzcf" />
+    <result column="yghgfxsj" jdbcType="TIMESTAMP" property="yghgfxsj" />
+    <result column="jsbz" jdbcType="VARCHAR" property="jsbz" />
+    <result column="bzjsjh" jdbcType="VARCHAR" property="bzjsjh" />
+    <result column="qyrq" jdbcType="TIMESTAMP" property="qyrq" />
+    <result column="yjkgsjsrsj" jdbcType="TIMESTAMP" property="yjkgsjsrsj" />
+    <result column="yjbl" jdbcType="DOUBLE" property="yjbl" />
+    <result column="yj" jdbcType="DOUBLE" property="yj" />
+    <result column="zcqr" jdbcType="VARCHAR" property="zcqr" />
+    <result column="dsdyfzf" jdbcType="VARCHAR" property="dsdyfzf" />
+    <result column="dsdyfyzf" jdbcType="VARCHAR" property="dsdyfyzf" />
+    <result column="js" jdbcType="VARCHAR" property="js" />
+    <result column="hzjs" jdbcType="VARCHAR" property="hzjs" />
+    <result column="jgtkqr" jdbcType="VARCHAR" property="jgtkqr" />
+    <result column="bgdwjmc" jdbcType="VARCHAR" property="bgdwjmc" />
+    <result column="gwgys_tymc" jdbcType="VARCHAR" property="gwgysTymc" />
+    <result column="jyjyzs" jdbcType="VARCHAR" property="jyjyzs" />
+    <result column="wjgd" jdbcType="VARCHAR" property="wjgd" />
+    <result column="sfyjyjyzs" jdbcType="VARCHAR" property="sfyjyjyzs" />
+    <result column="sfysd" jdbcType="VARCHAR" property="sfysd" />
+    <result column="sfygdwj" jdbcType="VARCHAR" property="sfygdwj" />
+    <result column="dztxts" jdbcType="INTEGER" property="dztxts" />
+    <result column="tdzt" jdbcType="INTEGER" property="tdzt" />
+    <result column="sdtgfs" jdbcType="INTEGER" property="sdtgfs" />
+    <result column="zdzfs" jdbcType="INTEGER" property="zdzfs" />
+    <result column="ohdlxy" jdbcType="VARCHAR" property="ohdlxy" />
+    <result column="zzrq" jdbcType="DATE" property="zzrq" />
+    <result column="dzqk" jdbcType="VARCHAR" property="dzqk" />
+    <result column="fkfs" jdbcType="VARCHAR" property="fkfs" />
+    <result column="jzxgjzxh" jdbcType="VARCHAR" property="jzxgjzxh" />
+    <result column="qgld" jdbcType="VARCHAR" property="qgld" />
+    <result column="jdrbm" jdbcType="VARCHAR" property="jdrbm" />
+    <result column="jdrmc" jdbcType="VARCHAR" property="jdrmc" />
+    <result column="jdrjc" jdbcType="VARCHAR" property="jdrjc" />
+    <result column="jdrpym" jdbcType="VARCHAR" property="jdrpym" />
+    <result column="tsbz" jdbcType="VARCHAR" property="tsbz" />
+    <result column="sfsjjyw" jdbcType="VARCHAR" property="sfsjjyw" />
+    <result column="sfsy" jdbcType="VARCHAR" property="sfsy" />
+    <result column="bjys" jdbcType="VARCHAR" property="bjys" />
+    <result column="sjzq_mtdm" jdbcType="VARCHAR" property="sjzqMtdm" />
+    <result column="sffshb" jdbcType="VARCHAR" property="sffshb" />
+    <result column="sjkgsj_lrsj" jdbcType="TIMESTAMP" property="sjkgsjLrsj" />
+    <result column="sjkgsj_czry" jdbcType="VARCHAR" property="sjkgsjCzry" />
+    <result column="hgfxsj_czry" jdbcType="VARCHAR" property="hgfxsjCzry" />
+    <result column="bjhsrry" jdbcType="VARCHAR" property="bjhsrry" />
+    <result column="bjhsrsj" jdbcType="TIMESTAMP" property="bjhsrsj" />
+    <result column="wxgj" jdbcType="VARCHAR" property="wxgj" />
+    <result column="cypz" jdbcType="VARCHAR" property="cypz" />
+    <result column="zf" jdbcType="DOUBLE" property="zf" />
+    <result column="sfpd" jdbcType="VARCHAR" property="sfpd" />
+    <result column="gwgysdz" jdbcType="VARCHAR" property="gwgysdz" />
+    <result column="zjsdz" jdbcType="VARCHAR" property="zjsdz" />
+    <result column="gjczbz" jdbcType="VARCHAR" property="gjczbz" />
+    <result column="gjczry" jdbcType="VARCHAR" property="gjczry" />
+    <result column="gjczsj" jdbcType="TIMESTAMP" property="gjczsj" />
+    <result column="kylhsj" jdbcType="TIMESTAMP" property="kylhsj" />
+    <result column="kylhsj_srry" jdbcType="VARCHAR" property="kylhsjSrry" />
+    <result column="kylhsj_lrsj" jdbcType="TIMESTAMP" property="kylhsjLrsj" />
+    <result column="zbzj" jdbcType="VARCHAR" property="zbzj" />
+    <result column="ygkthsj" jdbcType="TIMESTAMP" property="ygkthsj" />
+    <result column="ygkthsj_sjd" jdbcType="VARCHAR" property="ygkthsjSjd" />
+    <result column="yjbb" jdbcType="VARCHAR" property="yjbb" />
+    <result column="sfqgld" jdbcType="VARCHAR" property="sfqgld" />
+    <result column="xfs" jdbcType="DOUBLE" property="xfs" />
+    <result column="xccy" jdbcType="VARCHAR" property="xccy" />
+    <result column="xccy_lrry" jdbcType="VARCHAR" property="xccyLrry" />
+    <result column="xccy_lrsj" jdbcType="TIMESTAMP" property="xccyLrsj" />
+    <result column="rjhwjyjyzm" jdbcType="VARCHAR" property="rjhwjyjyzm" />
+    <result column="bg" jdbcType="VARCHAR" property="bg" />
+    <result column="bj" jdbcType="VARCHAR" property="bj" />
+    <result column="wl" jdbcType="VARCHAR" property="wl" />
+    <result column="hd" jdbcType="VARCHAR" property="hd" />
+    <result column="fx" jdbcType="VARCHAR" property="fx" />
+    <result column="wlgsbm" jdbcType="VARCHAR" property="wlgsbm" />
+    <result column="wlgsmc" jdbcType="VARCHAR" property="wlgsmc" />
+    <result column="wlgsjc" jdbcType="VARCHAR" property="wlgsjc" />
+    <result column="wlgspym" jdbcType="VARCHAR" property="wlgspym" />
+    <result column="hdrbm" jdbcType="VARCHAR" property="hdrbm" />
+    <result column="hdrmc" jdbcType="VARCHAR" property="hdrmc" />
+    <result column="hdrjc" jdbcType="VARCHAR" property="hdrjc" />
+    <result column="hdrpym" jdbcType="VARCHAR" property="hdrpym" />
+    <result column="ckdwbm" jdbcType="VARCHAR" property="ckdwbm" />
+    <result column="ckdwmc" jdbcType="VARCHAR" property="ckdwmc" />
+    <result column="ckdwjc" jdbcType="VARCHAR" property="ckdwjc" />
+    <result column="ckdwpym" jdbcType="VARCHAR" property="ckdwpym" />
+    <result column="yjkgsj_lrsj" jdbcType="TIMESTAMP" property="yjkgsjLrsj" />
+    <result column="yjkgsj_czry" jdbcType="VARCHAR" property="yjkgsjCzry" />
+    <result column="sfjc" jdbcType="VARCHAR" property="sfjc" />
+    <result column="jclrry" jdbcType="VARCHAR" property="jclrry" />
+    <result column="jclrsj" jdbcType="TIMESTAMP" property="jclrsj" />
+    <result column="yjccfy" jdbcType="DOUBLE" property="yjccfy" />
+    <result column="sfsq" jdbcType="VARCHAR" property="sfsq" />
+    <result column="sjccfy" jdbcType="DOUBLE" property="sjccfy" />
+    <result column="ccfbz" jdbcType="VARCHAR" property="ccfbz" />
+    <result column="sfcsbj" jdbcType="VARCHAR" property="sfcsbj" />
+    <result column="sjkbsj" jdbcType="TIMESTAMP" property="sjkbsj" />
+    <result column="hbzqsj" jdbcType="TIMESTAMP" property="hbzqsj" />
+    <result column="bjyw" jdbcType="VARCHAR" property="bjyw" />
+    <result column="jhkbsj" jdbcType="TIMESTAMP" property="jhkbsj" />
+    <result column="jhkbsj_zqsj" jdbcType="TIMESTAMP" property="jhkbsjZqsj" />
+    <result column="sjzq_hgfxsj" jdbcType="TIMESTAMP" property="sjzqHgfxsj" />
+    <result column="sjzq_zqsj" jdbcType="TIMESTAMP" property="sjzqZqsj" />
+    <result column="zbjyzkdsj" jdbcType="TIMESTAMP" property="zbjyzkdsj" />
+    <result column="sd_beizhu" jdbcType="VARCHAR" property="sdBeizhu" />
+    <result column="jsdw_jsbm" jdbcType="VARCHAR" property="jsdwJsbm" />
+    <result column="sjzfkh_jsbm" jdbcType="VARCHAR" property="sjzfkhJsbm" />
+    <result column="gbh_ywbh" jdbcType="VARCHAR" property="gbhYwbh" />
+    <result column="ysmxcd" jdbcType="VARCHAR" property="ysmxcd" />
+    <result column="sfqr" jdbcType="VARCHAR" property="sfqr" />
+    <result column="sftj" jdbcType="VARCHAR" property="sftj" />
+    <result column="hxzgtgzt" jdbcType="VARCHAR" property="hxzgtgzt" />
+    <result column="hxzgtgsj" jdbcType="TIMESTAMP" property="hxzgtgsj" />
+    <result column="pcyjhsj" jdbcType="TIMESTAMP" property="pcyjhsj" />
+    <result column="pcyjhsj_tjry" jdbcType="VARCHAR" property="pcyjhsjTjry" />
+    <result column="pcyjhsj_tjsj" jdbcType="TIMESTAMP" property="pcyjhsjTjsj" />
+    <result column="mxq_lrry" jdbcType="VARCHAR" property="mxqLrry" />
+    <result column="mxq_lrsj" jdbcType="TIMESTAMP" property="mxqLrsj" />
+    <result column="mcq" jdbcType="DOUBLE" property="mcq" />
+    <result column="EP25461" jdbcType="VARCHAR" property="ep25461" />
+    <result column="sfbhbj_lrry" jdbcType="VARCHAR" property="sfbhbjLrry" />
+    <result column="sfbhbj_lrrq" jdbcType="TIMESTAMP" property="sfbhbjLrrq" />
+    <result column="sfzbzj_lrry" jdbcType="VARCHAR" property="sfzbzjLrry" />
+    <result column="sfzbzj_lrrq" jdbcType="TIMESTAMP" property="sfzbzjLrrq" />
+    <result column="sfcsbj_lrry" jdbcType="VARCHAR" property="sfcsbjLrry" />
+    <result column="sfcsbj_lrrq" jdbcType="TIMESTAMP" property="sfcsbjLrrq" />
+    <result column="gwgysdm" jdbcType="VARCHAR" property="gwgysdm" />
+    <result column="zjsdm" jdbcType="VARCHAR" property="zjsdm" />
+    <result column="mxqrq" jdbcType="DATE" property="mxqrq" />
+    <result column="jyjysljg" jdbcType="VARCHAR" property="jyjysljg" />
+    <result column="kajyjyjg" jdbcType="VARCHAR" property="kajyjyjg" />
+    <result column="mddjyjyjg" jdbcType="VARCHAR" property="mddjyjyjg" />
+    <result column="lzjg" jdbcType="VARCHAR" property="lzjg" />
+    <result column="yjzxbs" jdbcType="VARCHAR" property="yjzxbs" />
+    <result column="sfyzbsd" jdbcType="VARCHAR" property="sfyzbsd" />
+    <result column="xc2ccy" jdbcType="VARCHAR" property="xc2ccy" />
+    <result column="xc2ccy_lrry" jdbcType="VARCHAR" property="xc2ccyLrry" />
+    <result column="xc2ccy_lrrq" jdbcType="TIMESTAMP" property="xc2ccyLrrq" />
+    <result column="hg_cdrq" jdbcType="VARCHAR" property="hgCdrq" />
+    <result column="hg_dgrq" jdbcType="VARCHAR" property="hgDgrq" />
+    <result column="mcq_rq" jdbcType="TIMESTAMP" property="mcqRq" />
+    <result column="jysbjg" jdbcType="VARCHAR" property="jysbjg" />
+    <result column="id" jdbcType="INTEGER" property="id" />
+    <result column="xskhbm" jdbcType="VARCHAR" property="xskhbm" />
+    <result column="xskhmc" jdbcType="VARCHAR" property="xskhmc" />
+    <result column="xskhjc" jdbcType="VARCHAR" property="xskhjc" />
+    <result column="xskhpym" jdbcType="VARCHAR" property="xskhpym" />
+    <result column="hz_pp" jdbcType="VARCHAR" property="hzPp" />
+    <result column="hdzt" jdbcType="VARCHAR" property="hdzt" />
+    <result column="cdzh" jdbcType="VARCHAR" property="cdzh" />
+    <result column="zjzh" jdbcType="VARCHAR" property="zjzh" />
+    <result column="mtxx" jdbcType="VARCHAR" property="mtxx" />
+    <result column="gx" jdbcType="VARCHAR" property="gx" />
+    <result column="lldh" jdbcType="VARCHAR" property="lldh" />
+    <result column="ccrn" jdbcType="VARCHAR" property="ccrn" />
+    <result column="mjxx" jdbcType="VARCHAR" property="mjxx" />
+    <result column="tgrq" jdbcType="TIMESTAMP" property="tgrq" />
+    <result column="jhrq" jdbcType="TIMESTAMP" property="jhrq" />
+    <result column="clxx" jdbcType="VARCHAR" property="clxx" />
+    <result column="xgcp" jdbcType="VARCHAR" property="xgcp" />
+    <result column="jhdd" jdbcType="VARCHAR" property="jhdd" />
+    <result column="jgwq" jdbcType="TIMESTAMP" property="jgwq" />
+    <result column="hgdc" jdbcType="VARCHAR" property="hgdc" />
+    <result column="ggrq" jdbcType="TIMESTAMP" property="ggrq" />
+    <result column="qgrq" jdbcType="TIMESTAMP" property="qgrq" />
+    <result column="xgjbbm" jdbcType="VARCHAR" property="xgjbbm" />
+    <result column="xgjb" jdbcType="VARCHAR" property="xgjb" />
+    <result column="szjbbm" jdbcType="VARCHAR" property="szjbbm" />
+    <result column="szjb" jdbcType="VARCHAR" property="szjb" />
+    <result column="tjhm" jdbcType="VARCHAR" property="tjhm" />
+    <result column="hgtjhm" jdbcType="VARCHAR" property="hgtjhm" />
+    <result column="hgcp" jdbcType="VARCHAR" property="hgcp" />
+    <result column="sfcs" jdbcType="VARCHAR" property="sfcs" />
+    <result column="ysbz" jdbcType="VARCHAR" property="ysbz" />
+    <result column="hgrq" jdbcType="TIMESTAMP" property="hgrq" />
+    <result column="hgdcbm" jdbcType="VARCHAR" property="hgdcbm" />
+    <result column="ssbm" jdbcType="VARCHAR" property="ssbm" />
+    <result column="xgccrq" jdbcType="TIMESTAMP" property="xgccrq" />
+    <result column="ccfysqlx" jdbcType="VARCHAR" property="ccfysqlx" />
+    <result column="EP25645" jdbcType="VARCHAR" property="ep25645" />
+    <result column="sygq" jdbcType="VARCHAR" property="sygq" />
+    <result column="sygqjc" jdbcType="VARCHAR" property="sygqjc" />
+    <result column="sygqbm" jdbcType="VARCHAR" property="sygqbm" />
+    <result column="sygqpym" jdbcType="VARCHAR" property="sygqpym" />
+    <result column="gdwz" jdbcType="VARCHAR" property="gdwz" />
+    <result column="khzlrq" jdbcType="DATE" property="khzlrq" />
+    <result column="bm" jdbcType="VARCHAR" property="bm" />
+    <result column="hxzgqrry" jdbcType="VARCHAR" property="hxzgqrry" />
+    <result column="wxyffp" jdbcType="VARCHAR" property="wxyffp" />
+    <result column="tqhd" jdbcType="CHAR" property="tqhd" />
+    <result column="EP26040" jdbcType="CHAR" property="ep26040" />
+    <result column="EP25894" jdbcType="CHAR" property="ep25894" />
+    <result column="ldwc" jdbcType="CHAR" property="ldwc" />
+    <result column="sjclbz" jdbcType="VARCHAR" property="sjclbz" />
+    <result column="hb_jhkbsj" jdbcType="TIMESTAMP" property="hbJhkbsj" />
+    <result column="hb_sjkbsj" jdbcType="TIMESTAMP" property="hbSjkbsj" />
+    <result column="hb_mt" jdbcType="VARCHAR" property="hbMt" />
+    <result column="hb_cdljc" jdbcType="VARCHAR" property="hbCdljc" />
+    <result column="hkly" jdbcType="VARCHAR" property="hkly" />
+    <result column="zrpd2" jdbcType="VARCHAR" property="zrpd2" />
+    <result column="zrpd3" jdbcType="VARCHAR" property="zrpd3" />
+    <result column="zrpd" jdbcType="VARCHAR" property="zrpd" />
+    <result column="jwgysbm" jdbcType="VARCHAR" property="jwgysbm" />
+    <result column="jwgysmc" jdbcType="VARCHAR" property="jwgysmc" />
+    <result column="jwgysmc_yw" jdbcType="VARCHAR" property="jwgysmcYw" />
+    <result column="jwgysdz" jdbcType="VARCHAR" property="jwgysdz" />
+    <result column="sfjnsj" jdbcType="VARCHAR" property="sfjnsj" />
+    <result column="hb_cm" jdbcType="VARCHAR" property="hbCm" />
+    <result column="hb_hc" jdbcType="VARCHAR" property="hbHc" />
+    <result column="sfsz" jdbcType="VARCHAR" property="sfsz" />
+    <result column="szsj" jdbcType="TIMESTAMP" property="szsj" />
+    <result column="szry" jdbcType="VARCHAR" property="szry" />
+    <result column="yssdcsj" jdbcType="TIMESTAMP" property="yssdcsj" />
+    <result column="glcdyfs" jdbcType="CHAR" property="glcdyfs" />
+    <result column="dyck_bgd_zt" jdbcType="INTEGER" property="dyckBgdZt" />
+    <result column="dyck_seqno" jdbcType="VARCHAR" property="dyckSeqno" />
+    <result column="sfdztd" jdbcType="CHAR" property="sfdztd" />
+    <result column="swfxsj" jdbcType="TIMESTAMP" property="swfxsj" />
+    <result column="sftb" jdbcType="VARCHAR" property="sftb" />
+    <result column="dzsqqr" jdbcType="VARCHAR" property="dzsqqr" />
+    <result column="yjtgrq" jdbcType="TIMESTAMP" property="yjtgrq" />
+    <result column="jyjysljgmc" jdbcType="VARCHAR" property="jyjysljgmc" />
+    <result column="kajyjyjgmc" jdbcType="VARCHAR" property="kajyjyjgmc" />
+    <result column="mddjyjyjgmc" jdbcType="VARCHAR" property="mddjyjyjgmc" />
+    <result column="lzjgmc" jdbcType="VARCHAR" property="lzjgmc" />
+    <result column="jckamc" jdbcType="VARCHAR" property="jckamc" />
+    <result column="dzlxmc" jdbcType="VARCHAR" property="dzlxmc" />
+    <result column="myfsmc" jdbcType="VARCHAR" property="myfsmc" />
+    <result column="hzdwdqmc" jdbcType="VARCHAR" property="hzdwdqmc" />
+    <result column="bzzlmc" jdbcType="VARCHAR" property="bzzlmc" />
+    <result column="ysgjmc" jdbcType="VARCHAR" property="ysgjmc" />
+    <result column="rjmddmc" jdbcType="VARCHAR" property="rjmddmc" />
+    <result column="zmfsmc" jdbcType="VARCHAR" property="zmfsmc" />
+    <result column="hb_cm_zqsj" jdbcType="TIMESTAMP" property="hbCmZqsj" />
+    <result column="sfyjyyhx" jdbcType="VARCHAR" property="sfyjyyhx" />
+    <result column="sdjyyhx_sj" jdbcType="TIMESTAMP" property="sdjyyhxSj" />
+    <result column="jyyhx" jdbcType="VARCHAR" property="jyyhx" />
+    <result column="sfgg" jdbcType="VARCHAR" property="sfgg" />
+    <result column="sfjj" jdbcType="CHAR" property="sfjj" />
+    <result column="jjyy" jdbcType="VARCHAR" property="jjyy" />
+    <result column="dyck_sfsj" jdbcType="VARCHAR" property="dyckSfsj" />
+    <result column="dyck_sjsj" jdbcType="TIMESTAMP" property="dyckSjsj" />
+    <result column="dyck_sjry" jdbcType="VARCHAR" property="dyckSjry" />
+    <result column="hkjs" jdbcType="INTEGER" property="hkjs" />
+    <result column="jjsj" jdbcType="TIMESTAMP" property="jjsj" />
+    <result column="sfcy_jy" jdbcType="VARCHAR" property="sfcyJy" />
+    <result column="cyckmc" jdbcType="VARCHAR" property="cyckmc" />
+    <result column="cyrksj" jdbcType="TIMESTAMP" property="cyrksj" />
+    <result column="cyhgsj" jdbcType="TIMESTAMP" property="cyhgsj" />
+    <result column="qdscsj" jdbcType="TIMESTAMP" property="qdscsj" />
+    <result column="jyz_szsj" jdbcType="TIMESTAMP" property="jyzSzsj" />
+    <result column="cyckbm" jdbcType="VARCHAR" property="cyckbm" />
+    <result column="jylzsj" jdbcType="TIMESTAMP" property="jylzsj" />
+    <result column="jyzjcsj" jdbcType="TIMESTAMP" property="jyzjcsj" />
+    <result column="jyz_bz" jdbcType="VARCHAR" property="jyzBz" />
+    <result column="hz_khmc" jdbcType="VARCHAR" property="hzKhmc" />
+    <result column="dyck_scry" jdbcType="VARCHAR" property="dyckScry" />
+    <result column="rwxz" jdbcType="VARCHAR" property="rwxz" />
+    <result column="ysje" jdbcType="DOUBLE" property="ysje" />
+    <result column="lyyf" jdbcType="DECIMAL" property="lyyf" />
+    <result column="cjfsmdf" jdbcType="VARCHAR" property="cjfsmdf" />
+    <result column="hgjdjd" jdbcType="VARCHAR" property="hgjdjd" />
+    <result column="hgjdjdsj" jdbcType="TIMESTAMP" property="hgjdjdsj" />
+    <result column="sjzq_ysgjmc" jdbcType="VARCHAR" property="sjzqYsgjmc" />
+    <result column="hgcyfs" jdbcType="CHAR" property="hgcyfs" />
+    <result column="hgjhcyrq" jdbcType="TIMESTAMP" property="hgjhcyrq" />
+    <result column="fhed" jdbcType="DOUBLE" property="fhed" />
+    <result column="zjyw" jdbcType="CHAR" property="zjyw" />
+    <result column="ts" jdbcType="CHAR" property="ts" />
+    <result column="ts_user" jdbcType="VARCHAR" property="tsUser" />
+    <result column="glcdwc" jdbcType="CHAR" property="glcdwc" />
+    <result column="glcdwcsj" jdbcType="TIMESTAMP" property="glcdwcsj" />
+    <result column="sfyyfsj" jdbcType="TIMESTAMP" property="sfyyfsj" />
+    <result column="cydlx" jdbcType="VARCHAR" property="cydlx" />
+    <result column="sffxs" jdbcType="CHAR" property="sffxs" />
+    <result column="znj" jdbcType="DECIMAL" property="znj" />
+    <result column="bgy" jdbcType="VARCHAR" property="bgy" />
+    <result column="sfzhg" jdbcType="CHAR" property="sfzhg" />
+    <result column="wlbz" jdbcType="VARCHAR" property="wlbz" />
+    <result column="dhtzs" jdbcType="CHAR" property="dhtzs" />
+    <result column="AN_yy" jdbcType="CHAR" property="anYy" />
+    <result column="M_jxxsfywj" jdbcType="CHAR" property="mJxxsfywj" />
+    <result column="tsyy" jdbcType="VARCHAR" property="tsyy" />
+    <result column="tsjd" jdbcType="VARCHAR" property="tsjd" />
+    <result column="sblx" jdbcType="VARCHAR" property="sblx" />
+    <result column="ecwzsbsj" jdbcType="TIMESTAMP" property="ecwzsbsj" />
+    <result column="bgdfxsj" jdbcType="TIMESTAMP" property="bgdfxsj" />
+    <result column="sbfsry" jdbcType="VARCHAR" property="sbfsry" />
+    <result column="yjhdbz" jdbcType="VARCHAR" property="yjhdbz" />
+    <result column="yjtgrq_import_user" jdbcType="VARCHAR" property="yjtgrqImportUser" />
+    <result column="mcq_rq_import_user" jdbcType="VARCHAR" property="mcqRqImportUser" />
+    <result column="kddh_hddz" jdbcType="VARCHAR" property="kddhHddz" />
+    <result column="ywry_wl" jdbcType="VARCHAR" property="ywryWl" />
+    <result column="cwbz" jdbcType="VARCHAR" property="cwbz" />
+    <result column="beizhu_zkj" jdbcType="VARCHAR" property="beizhuZkj" />
+    <result column="AN_je_gb" jdbcType="DOUBLE" property="anJeGb" />
+    <result column="AN_je_mj" jdbcType="DOUBLE" property="anJeMj" />
+    <result column="mjhl" jdbcType="DOUBLE" property="mjhl" />
+    <result column="wjfxsj" jdbcType="TIMESTAMP" property="wjfxsj" />
+    <result column="cyks" jdbcType="VARCHAR" property="cyks" />
+    <result column="fxycsjyy" jdbcType="VARCHAR" property="fxycsjyy" />
+    <result column="sjktgsj" jdbcType="TIMESTAMP" property="sjktgsj" />
+    <result column="yjkgsjtzgx" jdbcType="VARCHAR" property="yjkgsjtzgx" />
+    <result column="fbsh" jdbcType="VARCHAR" property="fbsh" />
+    <result column="fbshsj" jdbcType="TIMESTAMP" property="fbshsj" />
+    <result column="sfhd_user" jdbcType="VARCHAR" property="sfhdUser" />
+    <result column="m_jxxsfywj_user" jdbcType="VARCHAR" property="mJxxsfywjUser" />
+    <result column="an_je_gb_user" jdbcType="VARCHAR" property="anJeGbUser" />
+    <result column="an_je_mj_user" jdbcType="VARCHAR" property="anJeMjUser" />
+    <result column="mjhl_user" jdbcType="VARCHAR" property="mjhlUser" />
+    <result column="lbsbbz" jdbcType="VARCHAR" property="lbsbbz" />
+    <result column="zjbz" jdbcType="VARCHAR" property="zjbz" />
+    <result column="lldh_user" jdbcType="VARCHAR" property="lldhUser" />
+    <result column="fqxs" jdbcType="DOUBLE" property="fqxs" />
+    <result column="fqxs_bj" jdbcType="DOUBLE" property="fqxsBj" />
+    <result column="zrpd_beizhu" jdbcType="VARCHAR" property="zrpdBeizhu" />
+    <result column="zqzqcwxx" jdbcType="VARCHAR" property="zqzqcwxx" />
+    <result column="cjyzxt" jdbcType="VARCHAR" property="cjyzxt" />
+    <result column="cjyzrg" jdbcType="VARCHAR" property="cjyzrg" />
+    <result column="gxtssj" jdbcType="TIMESTAMP" property="gxtssj" />
+    <result column="xgdzqk" jdbcType="VARCHAR" property="xgdzqk" />
+    <result column="xghgsb_j" jdbcType="VARCHAR" property="xghgsbJ" />
+    <result column="xghgsb_c" jdbcType="VARCHAR" property="xghgsbC" />
+    <result column="zjbjh" jdbcType="VARCHAR" property="zjbjh" />
+    <result column="zzqrsh" jdbcType="VARCHAR" property="zzqrsh" />
+    <result column="gzjysbsj" jdbcType="TIMESTAMP" property="gzjysbsj" />
+    <result column="jqsbwcsj" jdbcType="TIMESTAMP" property="jqsbwcsj" />
+    <result column="fbhx" jdbcType="VARCHAR" property="fbhx" />
+    <result column="bcsfdj" jdbcType="VARCHAR" property="bcsfdj" />
+    <result column="cszt" jdbcType="NVARCHAR" property="cszt" />
+    <result column="jckfs" jdbcType="NVARCHAR" property="jckfs" />
+    <result column="lbsb" jdbcType="VARCHAR" property="lbsb" />
+    <result column="khhzzs" jdbcType="VARCHAR" property="khhzzs" />
+    <result column="sfgdzf" jdbcType="VARCHAR" property="sfgdzf" />
+    <result column="gdzf" jdbcType="DECIMAL" property="gdzf" />
+    <result column="hdtdlx" jdbcType="VARCHAR" property="hdtdlx" />
+    <result column="hz_spmcsfss" jdbcType="VARCHAR" property="hzSpmcsfss" />
+    <result column="zjesfss" jdbcType="VARCHAR" property="zjesfss" />
+    <result column="kpjesfss" jdbcType="VARCHAR" property="kpjesfss" />
+    <result column="ejycddm" jdbcType="VARCHAR" property="ejycddm" />
+    <result column="szflag" jdbcType="VARCHAR" property="szflag" />
+    <result column="zbsd" jdbcType="CHAR" property="zbsd" />
+    <result column="fbsd" jdbcType="CHAR" property="fbsd" />
+    <result column="zscssd" jdbcType="CHAR" property="zscssd" />
+    <result column="bah" jdbcType="VARCHAR" property="bah" />
+    <result column="jkrq" jdbcType="DATE" property="jkrq" />
+    <result column="xkzh" jdbcType="VARCHAR" property="xkzh" />
+    <result column="tsgxqr" jdbcType="VARCHAR" property="tsgxqr" />
+    <result column="jgyxqr" jdbcType="VARCHAR" property="jgyxqr" />
+    <result column="txqsyfzfqr" jdbcType="VARCHAR" property="txqsyfzfqr" />
+    <result column="sdwzh" jdbcType="VARCHAR" property="sdwzh" />
+    <result column="zzbs" jdbcType="VARCHAR" property="zzbs" />
+    <result column="dbyf" jdbcType="VARCHAR" property="dbyf" />
+    <result column="qyzzcn" jdbcType="VARCHAR" property="qyzzcn" />
+    <result column="yxys" jdbcType="VARCHAR" property="yxys" />
+    <result column="hgfxfs_user" jdbcType="VARCHAR" property="hgfxfsUser" />
+    <result column="xghgsb_j_date" jdbcType="TIMESTAMP" property="xghgsbJDate" />
+    <result column="xghgsb_c_date" jdbcType="TIMESTAMP" property="xghgsbCDate" />
+    <result column="jgycxx" jdbcType="VARCHAR" property="jgycxx" />
+    <result column="dyck_state" jdbcType="VARCHAR" property="dyckState" />
+    <result column="grab_hbhc" jdbcType="VARCHAR" property="grabHbhc" />
+    <result column="khbm_dlxyh" jdbcType="VARCHAR" property="khbmDlxyh" />
+    <result column="yjcysj_lrsj" jdbcType="TIMESTAMP" property="yjcysjLrsj" />
+    <result column="sfxh" jdbcType="CHAR" property="sfxh" />
+    <result column="jczbzlbz" jdbcType="CHAR" property="jczbzlbz" />
+    <result column="jczbzlsj" jdbcType="TIMESTAMP" property="jczbzlsj" />
+    <result column="xcsdzbzlbz" jdbcType="CHAR" property="xcsdzbzlbz" />
+    <result column="xcsdzbzlsj" jdbcType="TIMESTAMP" property="xcsdzbzlsj" />
+    <result column="xcsdzbzlry" jdbcType="VARCHAR" property="xcsdzbzlry" />
+    <result column="zbsqsj" jdbcType="TIMESTAMP" property="zbsqsj" />
+    <result column="fbsqsj" jdbcType="TIMESTAMP" property="fbsqsj" />
+    <result column="cssqsj" jdbcType="TIMESTAMP" property="cssqsj" />
+    <result column="grab_hbhc_date" jdbcType="TIMESTAMP" property="grabHbhcDate" />
+    <result column="sfxpt" jdbcType="CHAR" property="sfxpt" />
+    <result column="gqzt" jdbcType="VARCHAR" property="gqzt" />
+    <result column="jgsj" jdbcType="TIMESTAMP" property="jgsj" />
+    <result column="sdtzfp" jdbcType="NVARCHAR" property="sdtzfp" />
+    <result column="gzjysbsj_lrry" jdbcType="NVARCHAR" property="gzjysbsjLrry" />
+    <result column="jqsbwcsj_lrry" jdbcType="NVARCHAR" property="jqsbwcsjLrry" />
+    <result column="sddz_bgsj" jdbcType="TIMESTAMP" property="sddzBgsj" />
+    <result column="sddz_czsj" jdbcType="TIMESTAMP" property="sddzCzsj" />
+    <result column="lrwc_czsj" jdbcType="TIMESTAMP" property="lrwcCzsj" />
+    <result column="sddz_sdsj" jdbcType="TIMESTAMP" property="sddzSdsj" />
+    <result column="shwc_sdsj" jdbcType="TIMESTAMP" property="shwcSdsj" />
+    <result column="sdsd_bgsj" jdbcType="TIMESTAMP" property="sdsdBgsj" />
+    <result column="sddz_hxsj" jdbcType="TIMESTAMP" property="sddzHxsj" />
+    <result column="wchx_hxsj" jdbcType="TIMESTAMP" property="wchxHxsj" />
+    <result column="bgdscsj" jdbcType="TIMESTAMP" property="bgdscsj" />
+    <result column="xcsd_lrsj" jdbcType="TIMESTAMP" property="xcsdLrsj" />
+    <result column="xcsd" jdbcType="NVARCHAR" property="xcsd" />
+    <result column="sfgg_llsj" jdbcType="TIMESTAMP" property="sfggLlsj" />
+    <result column="kpcysj" jdbcType="TIMESTAMP" property="kpcysj" />
+    <result column="sjkgsjtzgx" jdbcType="VARCHAR" property="sjkgsjtzgx" />
+    <result column="sfjydjc" jdbcType="NVARCHAR" property="sfjydjc" />
+    <result column="sfjydjcsj" jdbcType="TIMESTAMP" property="sfjydjcsj" />
+    <result column="gxksbsj" jdbcType="TIMESTAMP" property="gxksbsj" />
+    <result column="cyzt" jdbcType="VARCHAR" property="cyzt" />
+    <result column="xcsj_hz" jdbcType="VARCHAR" property="xcsjHz" />
+    <result column="xgxcsj_hz" jdbcType="VARCHAR" property="xgxcsjHz" />
+    <result column="zdxcsj_hz" jdbcType="VARCHAR" property="zdxcsjHz" />
+    <result column="wjlj_hz" jdbcType="VARCHAR" property="wjljHz" />
+    <result column="lldh_hz" jdbcType="VARCHAR" property="lldhHz" />
+    <result column="sfjydsd" jdbcType="NVARCHAR" property="sfjydsd" />
+    <result column="sfjydsdsj" jdbcType="TIMESTAMP" property="sfjydsdsj" />
+    <result column="yglx" jdbcType="VARCHAR" property="yglx" />
+    <result column="sfcy_jyz" jdbcType="NVARCHAR" property="sfcyJyz" />
+    <result column="sfxz_jyz" jdbcType="NVARCHAR" property="sfxzJyz" />
+    <result column="sfjd_jyz" jdbcType="NVARCHAR" property="sfjdJyz" />
+    <result column="sfjdsj_jyz" jdbcType="TIMESTAMP" property="sfjdsjJyz" />
+    <result column="sfnz_jyz" jdbcType="NVARCHAR" property="sfnzJyz" />
+    <result column="xhgq_zq" jdbcType="VARCHAR" property="xhgqZq" />
+    <result column="xhgqbm_zq" jdbcType="VARCHAR" property="xhgqbmZq" />
+    <result column="xhgqpym_zq" jdbcType="VARCHAR" property="xhgqpymZq" />
+    <result column="xhgqjc_zq" jdbcType="VARCHAR" property="xhgqjcZq" />
+    <result column="sfcy_hz_jzxh" jdbcType="VARCHAR" property="sfcyHzJzxh" />
+    <result column="jgycxq" jdbcType="VARCHAR" property="jgycxq" />
+    <result column="hz_bzcdm" jdbcType="VARCHAR" property="hzBzcdm" />
+    <result column="hz_gydm" jdbcType="VARCHAR" property="hzGydm" />
+    <result column="sfhx" jdbcType="VARCHAR" property="sfhx" />
+    <result column="yljtz" jdbcType="VARCHAR" property="yljtz" />
+    <result column="bqzpsfsd" jdbcType="VARCHAR" property="bqzpsfsd" />
+    <result column="lclsyjd" jdbcType="VARCHAR" property="lclsyjd" />
+    <result column="hz_sfscfp" jdbcType="VARCHAR" property="hzSfscfp" />
+    <result column="tgyxq" jdbcType="TIMESTAMP" property="tgyxq" />
+    <result column="cqbz" jdbcType="NVARCHAR" property="cqbz" />
+    <result column="bzcmc" jdbcType="VARCHAR" property="bzcmc" />
+    <result column="gymc" jdbcType="VARCHAR" property="gymc" />
+    <result column="lkmc" jdbcType="VARCHAR" property="lkmc" />
+    <result column="sjhwfxsj" jdbcType="TIMESTAMP" property="sjhwfxsj" />
+    <result column="hdwl_fh" jdbcType="NVARCHAR" property="hdwlFh" />
+    <result column="hdwl_zg" jdbcType="NVARCHAR" property="hdwlZg" />
+    <result column="hdwl_xg" jdbcType="NVARCHAR" property="hdwlXg" />
+    <result column="hdwl_jhd" jdbcType="NVARCHAR" property="hdwlJhd" />
+    <result column="hdwl_jzxpz" jdbcType="DECIMAL" property="hdwlJzxpz" />
+    <result column="ydbl" jdbcType="VARCHAR" property="ydbl" />
+    <result column="anyfk" jdbcType="VARCHAR" property="anyfk" />
+    <result column="tdsfdd" jdbcType="VARCHAR" property="tdsfdd" />
+    <result column="fsdz" jdbcType="VARCHAR" property="fsdz" />
+    <result column="ppmc" jdbcType="VARCHAR" property="ppmc" />
+    <result column="sfhyxqd" jdbcType="VARCHAR" property="sfhyxqd" />
+    <result column="hyxqdtgsj" jdbcType="TIMESTAMP" property="hyxqdtgsj" />
+    <result column="hyxqdqr" jdbcType="VARCHAR" property="hyxqdqr" />
+    <result column="hyxqdqrsj" jdbcType="TIMESTAMP" property="hyxqdqrsj" />
+    <result column="kygclx" jdbcType="VARCHAR" property="kygclx" />
+    <result column="kygcgh" jdbcType="VARCHAR" property="kygcgh" />
+    <result column="yhzt" jdbcType="VARCHAR" property="yhzt" />
+    <result column="yhsj" jdbcType="TIMESTAMP" property="yhsj" />
+    <result column="kcsj" jdbcType="TIMESTAMP" property="kcsj" />
+    <result column="scyjkgsj" jdbcType="TIMESTAMP" property="scyjkgsj" />
+    <result column="jyjyzscxm" jdbcType="NVARCHAR" property="jyjyzscxm" />
+    <result column="jyjyzscxmjssj" jdbcType="VARCHAR" property="jyjyzscxmjssj" />
+    <result column="gsdjqr" jdbcType="VARCHAR" property="gsdjqr" />
+    <result column="zdjgqr" jdbcType="VARCHAR" property="zdjgqr" />
+    <result column="sfbc" jdbcType="CHAR" property="sfbc" />
+    <result column="hxbeizhu" jdbcType="NVARCHAR" property="hxbeizhu" />
+    <result column="jzhjgwq" jdbcType="TIMESTAMP" property="jzhjgwq" />
+    <result column="bgdhsj" jdbcType="TIMESTAMP" property="bgdhsj" />
+    <result column="bgdyczt" jdbcType="VARCHAR" property="bgdyczt" />
+    <result column="sbsxyczt" jdbcType="VARCHAR" property="sbsxyczt" />
+    <result column="zdrbm" jdbcType="VARCHAR" property="zdrbm" />
+    <result column="zdrbmmc" jdbcType="VARCHAR" property="zdrbmmc" />
+    <result column="zbjcqk" jdbcType="VARCHAR" property="zbjcqk" />
+    <result column="zbsdqk" jdbcType="VARCHAR" property="zbsdqk" />
+    <result column="jysjzsscscsj" jdbcType="TIMESTAMP" property="jysjzsscscsj" />
+    <result column="sfjjlx" jdbcType="CHAR" property="sfjjlx" />
+    <result column="sqkp" jdbcType="CHAR" property="sqkp" />
+    <result column="jyz_sz_gzr" jdbcType="INTEGER" property="jyzSzGzr" />
+    <result column="jyz_sz_sfyc" jdbcType="CHAR" property="jyzSzSfyc" />
+    <result column="mnsdsqzt" jdbcType="VARCHAR" property="mnsdsqzt" />
+    <result column="sdtzfpsj" jdbcType="TIMESTAMP" property="sdtzfpsj" />
+    <result column="rpa_xrsj" jdbcType="TIMESTAMP" property="rpaXrsj" />
+  </resultMap>
+  <insert id="insert" parameterType="com.freshport.entity.YwHddz">
+    insert into yw_hddz (ywbh, zbr, zbrq, 
+      dlwtf, hth, dlxyh, 
+      zydl, hdgsbm, hdgsmc, 
+      hdgsjc, hdgspym, bggsbm, 
+      bggsmc, bggsjc, bggspym, 
+      bjgsbm, bjgsmc, bjgsjc, 
+      bjgspym, bjgssjjgdm, khbm, 
+      khmc, khjc, khpym, 
+      shdwbm, shdwmc, shdwjc, 
+      shdwpym, jydwbm, jydwmc, 
+      jydwjc, jydwpym, jydwsjjgdm, 
+      gwgysbm, gwgysmc, gwgysjc, 
+      gwgyspym, zjsbm, zjsmc, 
+      zjsjc, zjspym, gwhdbm, 
+      gwhdmc, gwhdjc, gwhdpym, 
+      tzrbm, tzrmc, tzrjc, 
+      tzrpym, ysfs, tdlx, 
+      cyrbm, cyr, cyrjc, 
+      cyrpym, cdgsbm, cdgs, 
+      cdgsjc, cdgspym, cm, 
+      hcorhbh, hcorhbh_zq, sfzy, 
+      zz_cm, zz_hcorhbh, zzgk, 
+      ztdh, sfshytd, ftdh, 
+      hygsbm, hygsmc, hygsjc, 
+      hygspym, hdhdgs, qyg, 
+      qygdm, qygsjgkdm, mdg, 
+      xhgqbm, xhgq, xhgqjc, 
+      xhgqpym, yjkgsj, sjkgsj, 
+      sfxyechd, ycd, ycddm, 
+      ejycd, mxq, jgfs, wbbb, 
+      zje, zmyhl, zmyje, sfyyf, 
+      yfje, yfbb, sdyffpsj, 
+      khorhd, yfcdrbm, yfcdr, 
+      yfcdrjc, yfcdrpym, kddh, 
+      sdsdsj, yfzfqrsj, yfbz, 
+      gkhfpsj, yfzfjg, state, 
+      beizhu, kyhdsj, sjhdsj, 
+      hdbz, xtdh, gs, zzs, 
+      bzj, sjzfrq, gs_bj, 
+      zzs_bj, bzj_bj, sjzfrq_bj, 
+      bzjzfrbm, bzjzfr, bzjzfrjc, 
+      bzjzfrpym, bzjsj, bzjje, 
+      bzjdjh, bzjjzsj, bzjymxz, 
+      bzjym, stbrysj, shgsj, 
+      hgclsj, tbzj, zzzs, 
+      zgs, hghdjg, tkdzsj, 
+      wsbjsj, bjh, bjsj, 
+      cktgsj, tgdh, wzhfxsj, 
+      bgdh, bgsj, bghgbm, 
+      bghg, bghgjc, bghgpym, 
+      jyjbm, jyjmc, jyjjc, 
+      jyjpym, jyjsjjgdm, sfcy, 
+      cydbm, cyd, cydjc, 
+      cydpym, yjcysj, sjcysj, 
+      cybz, hgfxsj, hgfxsj_srsj, 
+      kgbz, fph, sjzfkhlx, 
+      sjzfkhbm, sjzfkhmc, sjzfkhjc, 
+      sjzfkhpym, zbj, sjbz, 
+      jybz, jydbm, jyd, jydjc, 
+      jydpym, hdsj, bgbz, 
+      hgfxfs, hgtgwt, hz_jzxh, 
+      hz_spmc, sdsdrq, sdkhqzrq, 
+      sdbz, sdkddh, bzjbz, 
+      fxbz, clfs, beizhu_xgrq, 
+      hz_sl, mtdm, sfqycdz, 
+      lzsj, ycdzsh, khmxq, 
+      invoiceno, invoice_date, sfsdhdzl, 
+      sfhd, sfytzcgskp, tzcgskpsj, 
+      sfyfyzf, sfyzbg, cm_zw, 
+      sfsdsd, jsdwbm, jsdwmc, 
+      jsdwjc, jsdwpym, xtdlx, 
+      hgclbh, hdzljcsj, jcgzry, 
+      hdzljcbz, bgsxtdsj, bgscxtdsj, 
+      thhtjhsj, jjcd, tcts, 
+      zthsq, yjlgsj, zthsqsj, 
+      ytjkzt, dzlx, jydwdm, 
+      hzdwdqdm, shdwdm, sbdwdm, 
+      jcka, myfs, zmfs, yfbj, 
+      bxfbj, bxfbb, bxfje, 
+      zxs, zmz, zjz, bzzl, 
+      jckbz, ytbz, qiyunguo, 
+      qiyunguodm, htd, htd_rq, 
+      sfqrbzlx, ytjkwjbh, ytjkfssj, 
+      ytjkfscs, EP15212, EP14515, 
+      EP14516, EP14514, ytzt, 
+      ytsjfszt, sfkydqsjjk, bjgslxr, 
+      bjgslxdh, bjydm, qyxz, 
+      sfwstzcc, tstk, hwcfd, 
+      yt, spts, zsbh, zsmc, 
+      bjlb, mt, ysgj, sfdj, 
+      sfdjbm, rjka, rjmdd, 
+      dfcyf, dfcbxf, sffsrjsj, 
+      rjjkfssj, rjjkfscs, bzjsqly, 
+      clqy, sdlqr, sdlqsj, 
+      sddzsj, sdh, ktgs, 
+      ktzzs, yzbh, skdbtzspd_qt, 
+      skdbtzspd_tzsy, bzj_khsksj, sj_khsksj, 
+      sftk, zcrq, sfyfh, 
+      fh, hz_hgbm, hz_pz, hz_spywmc, 
+      hz_sjshr, hz_sjshrgs, zgggbz, 
+      dmbz, yfbz_dz, yflrbh, 
+      jzxsl, hz_tpsl, hz_szsl, 
+      hz_zhlx, hz_xx, sjzq_cm, 
+      sjzq_hc, sjzq_js, sjzq_zl, 
+      sgzq_dyxx, sjzq_jkdgqrbz, sjzq_lhzt, 
+      sjzq_ckdyzt, sjzq_zqcdsj, sjzq_zqdgsj, 
+      sjzq_zqlhsj, sdry, yfqr, 
+      dqdm, ctr_area2, tycj, 
+      hz_bzsl, pjlx, pjkhthsj, 
+      sddybh, cdxxycyy, mygb, 
+      yjtsbm, SupplierSellID, OcrID, 
+      wzhjdsj, gjsbzt, sfjy, 
+      hgfxsj_zqsj, ohxt_clbz, ohxt_clsj, 
+      bghbjxgbz, fxfsqrbz, qrdf, 
+      sfbhbj, sfxb, sjxgbz, 
+      rgzq_dyxx, qrdfsj, bhbjsj, 
+      sjzq_cdrgzqbz, sfzbzj, zbzjsj, 
+      scsxgbz, yjhdsj, yjhdsj_sr, 
+      sfyzcf, yghgfxsj, jsbz, 
+      bzjsjh, qyrq, yjkgsjsrsj, 
+      yjbl, yj, zcqr, dsdyfzf, 
+      dsdyfyzf, js, hzjs, 
+      jgtkqr, bgdwjmc, gwgys_tymc, 
+      jyjyzs, wjgd, sfyjyjyzs, 
+      sfysd, sfygdwj, dztxts, 
+      tdzt, sdtgfs, zdzfs, 
+      ohdlxy, zzrq, dzqk, fkfs, 
+      jzxgjzxh, qgld, jdrbm, 
+      jdrmc, jdrjc, jdrpym, 
+      tsbz, sfsjjyw, sfsy, 
+      bjys, sjzq_mtdm, sffshb, 
+      sjkgsj_lrsj, sjkgsj_czry, hgfxsj_czry, 
+      bjhsrry, bjhsrsj, wxgj, 
+      cypz, zf, sfpd, gwgysdz, 
+      zjsdz, gjczbz, gjczry, 
+      gjczsj, kylhsj, kylhsj_srry, 
+      kylhsj_lrsj, zbzj, ygkthsj, 
+      ygkthsj_sjd, yjbb, sfqgld, 
+      xfs, xccy, xccy_lrry, 
+      xccy_lrsj, rjhwjyjyzm, bg, 
+      bj, wl, hd, fx, 
+      wlgsbm, wlgsmc, wlgsjc, 
+      wlgspym, hdrbm, hdrmc, 
+      hdrjc, hdrpym, ckdwbm, 
+      ckdwmc, ckdwjc, ckdwpym, 
+      yjkgsj_lrsj, yjkgsj_czry, sfjc, 
+      jclrry, jclrsj, yjccfy, 
+      sfsq, sjccfy, ccfbz, 
+      sfcsbj, sjkbsj, hbzqsj, 
+      bjyw, jhkbsj, jhkbsj_zqsj, 
+      sjzq_hgfxsj, sjzq_zqsj, zbjyzkdsj, 
+      sd_beizhu, jsdw_jsbm, sjzfkh_jsbm, 
+      gbh_ywbh, ysmxcd, sfqr, 
+      sftj, hxzgtgzt, hxzgtgsj, 
+      pcyjhsj, pcyjhsj_tjry, pcyjhsj_tjsj, 
+      mxq_lrry, mxq_lrsj, mcq, 
+      EP25461, sfbhbj_lrry, sfbhbj_lrrq, 
+      sfzbzj_lrry, sfzbzj_lrrq, sfcsbj_lrry, 
+      sfcsbj_lrrq, gwgysdm, zjsdm, 
+      mxqrq, jyjysljg, kajyjyjg, 
+      mddjyjyjg, lzjg, yjzxbs, 
+      sfyzbsd, xc2ccy, xc2ccy_lrry, 
+      xc2ccy_lrrq, hg_cdrq, hg_dgrq, 
+      mcq_rq, jysbjg, id, 
+      xskhbm, xskhmc, xskhjc, 
+      xskhpym, hz_pp, hdzt, 
+      cdzh, zjzh, mtxx, gx, 
+      lldh, ccrn, mjxx, tgrq, 
+      jhrq, clxx, xgcp, 
+      jhdd, jgwq, hgdc, 
+      ggrq, qgrq, xgjbbm, 
+      xgjb, szjbbm, szjb, 
+      tjhm, hgtjhm, hgcp, 
+      sfcs, ysbz, hgrq, 
+      hgdcbm, ssbm, xgccrq, 
+      ccfysqlx, EP25645, sygq, 
+      sygqjc, sygqbm, sygqpym, 
+      gdwz, khzlrq, bm, hxzgqrry, 
+      wxyffp, tqhd, EP26040, EP25894, 
+      ldwc, sjclbz, hb_jhkbsj, 
+      hb_sjkbsj, hb_mt, hb_cdljc, 
+      hkly, zrpd2, zrpd3, 
+      zrpd, jwgysbm, jwgysmc, 
+      jwgysmc_yw, jwgysdz, sfjnsj, 
+      hb_cm, hb_hc, sfsz, szsj, 
+      szry, yssdcsj, glcdyfs, 
+      dyck_bgd_zt, dyck_seqno, sfdztd, 
+      swfxsj, sftb, dzsqqr, 
+      yjtgrq, jyjysljgmc, kajyjyjgmc, 
+      mddjyjyjgmc, lzjgmc, jckamc, 
+      dzlxmc, myfsmc, hzdwdqmc, 
+      bzzlmc, ysgjmc, rjmddmc, 
+      zmfsmc, hb_cm_zqsj, sfyjyyhx, 
+      sdjyyhx_sj, jyyhx, sfgg, 
+      sfjj, jjyy, dyck_sfsj, 
+      dyck_sjsj, dyck_sjry, hkjs, 
+      jjsj, sfcy_jy, cyckmc, 
+      cyrksj, cyhgsj, qdscsj, 
+      jyz_szsj, cyckbm, jylzsj, 
+      jyzjcsj, jyz_bz, hz_khmc, 
+      dyck_scry, rwxz, ysje, 
+      lyyf, cjfsmdf, hgjdjd, 
+      hgjdjdsj, sjzq_ysgjmc, hgcyfs, 
+      hgjhcyrq, fhed, zjyw, 
+      ts, ts_user, glcdwc, glcdwcsj, 
+      sfyyfsj, cydlx, sffxs, 
+      znj, bgy, sfzhg, wlbz, 
+      dhtzs, AN_yy, M_jxxsfywj, tsyy, 
+      tsjd, sblx, ecwzsbsj, 
+      bgdfxsj, sbfsry, yjhdbz, 
+      yjtgrq_import_user, mcq_rq_import_user, kddh_hddz, 
+      ywry_wl, cwbz, beizhu_zkj, 
+      AN_je_gb, AN_je_mj, mjhl, 
+      wjfxsj, cyks, fxycsjyy, 
+      sjktgsj, yjkgsjtzgx, fbsh, 
+      fbshsj, sfhd_user, m_jxxsfywj_user, 
+      an_je_gb_user, an_je_mj_user, mjhl_user, 
+      lbsbbz, zjbz, lldh_user, 
+      fqxs, fqxs_bj, zrpd_beizhu, 
+      zqzqcwxx, cjyzxt, cjyzrg, 
+      gxtssj, xgdzqk, xghgsb_j, 
+      xghgsb_c, zjbjh, zzqrsh, 
+      gzjysbsj, jqsbwcsj, fbhx, 
+      bcsfdj, cszt, jckfs, 
+      lbsb, khhzzs, sfgdzf, 
+      gdzf, hdtdlx, hz_spmcsfss, 
+      zjesfss, kpjesfss, ejycddm, 
+      szflag, zbsd, fbsd, zscssd, 
+      bah, jkrq, xkzh, tsgxqr, 
+      jgyxqr, txqsyfzfqr, sdwzh, 
+      zzbs, dbyf, qyzzcn, 
+      yxys, hgfxfs_user, xghgsb_j_date, 
+      xghgsb_c_date, jgycxx, dyck_state, 
+      grab_hbhc, khbm_dlxyh, yjcysj_lrsj, 
+      sfxh, jczbzlbz, jczbzlsj, 
+      xcsdzbzlbz, xcsdzbzlsj, xcsdzbzlry, 
+      zbsqsj, fbsqsj, cssqsj, 
+      grab_hbhc_date, sfxpt, gqzt, 
+      jgsj, sdtzfp, gzjysbsj_lrry, 
+      jqsbwcsj_lrry, sddz_bgsj, sddz_czsj, 
+      lrwc_czsj, sddz_sdsj, shwc_sdsj, 
+      sdsd_bgsj, sddz_hxsj, wchx_hxsj, 
+      bgdscsj, xcsd_lrsj, xcsd, 
+      sfgg_llsj, kpcysj, sjkgsjtzgx, 
+      sfjydjc, sfjydjcsj, gxksbsj, 
+      cyzt, xcsj_hz, xgxcsj_hz, 
+      zdxcsj_hz, wjlj_hz, lldh_hz, 
+      sfjydsd, sfjydsdsj, yglx, 
+      sfcy_jyz, sfxz_jyz, sfjd_jyz, 
+      sfjdsj_jyz, sfnz_jyz, xhgq_zq, 
+      xhgqbm_zq, xhgqpym_zq, xhgqjc_zq, 
+      sfcy_hz_jzxh, jgycxq, hz_bzcdm, 
+      hz_gydm, sfhx, yljtz, 
+      bqzpsfsd, lclsyjd, hz_sfscfp, 
+      tgyxq, cqbz, bzcmc, 
+      gymc, lkmc, sjhwfxsj, 
+      hdwl_fh, hdwl_zg, hdwl_xg, 
+      hdwl_jhd, hdwl_jzxpz, ydbl, 
+      anyfk, tdsfdd, fsdz, 
+      ppmc, sfhyxqd, hyxqdtgsj, 
+      hyxqdqr, hyxqdqrsj, kygclx, 
+      kygcgh, yhzt, yhsj, 
+      kcsj, scyjkgsj, jyjyzscxm, 
+      jyjyzscxmjssj, gsdjqr, zdjgqr, 
+      sfbc, hxbeizhu, jzhjgwq, 
+      bgdhsj, bgdyczt, sbsxyczt, 
+      zdrbm, zdrbmmc, zbjcqk, 
+      zbsdqk, jysjzsscscsj, sfjjlx, 
+      sqkp, jyz_sz_gzr, jyz_sz_sfyc, 
+      mnsdsqzt, sdtzfpsj, rpa_xrsj
+      )
+    values (#{ywbh,jdbcType=VARCHAR}, #{zbr,jdbcType=VARCHAR}, #{zbrq,jdbcType=TIMESTAMP}, 
+      #{dlwtf,jdbcType=VARCHAR}, #{hth,jdbcType=VARCHAR}, #{dlxyh,jdbcType=VARCHAR}, 
+      #{zydl,jdbcType=VARCHAR}, #{hdgsbm,jdbcType=VARCHAR}, #{hdgsmc,jdbcType=VARCHAR}, 
+      #{hdgsjc,jdbcType=VARCHAR}, #{hdgspym,jdbcType=VARCHAR}, #{bggsbm,jdbcType=VARCHAR}, 
+      #{bggsmc,jdbcType=VARCHAR}, #{bggsjc,jdbcType=VARCHAR}, #{bggspym,jdbcType=VARCHAR}, 
+      #{bjgsbm,jdbcType=VARCHAR}, #{bjgsmc,jdbcType=VARCHAR}, #{bjgsjc,jdbcType=VARCHAR}, 
+      #{bjgspym,jdbcType=VARCHAR}, #{bjgssjjgdm,jdbcType=VARCHAR}, #{khbm,jdbcType=VARCHAR}, 
+      #{khmc,jdbcType=VARCHAR}, #{khjc,jdbcType=VARCHAR}, #{khpym,jdbcType=VARCHAR}, 
+      #{shdwbm,jdbcType=VARCHAR}, #{shdwmc,jdbcType=VARCHAR}, #{shdwjc,jdbcType=VARCHAR}, 
+      #{shdwpym,jdbcType=VARCHAR}, #{jydwbm,jdbcType=VARCHAR}, #{jydwmc,jdbcType=VARCHAR}, 
+      #{jydwjc,jdbcType=VARCHAR}, #{jydwpym,jdbcType=VARCHAR}, #{jydwsjjgdm,jdbcType=VARCHAR}, 
+      #{gwgysbm,jdbcType=VARCHAR}, #{gwgysmc,jdbcType=VARCHAR}, #{gwgysjc,jdbcType=VARCHAR}, 
+      #{gwgyspym,jdbcType=VARCHAR}, #{zjsbm,jdbcType=VARCHAR}, #{zjsmc,jdbcType=VARCHAR}, 
+      #{zjsjc,jdbcType=VARCHAR}, #{zjspym,jdbcType=VARCHAR}, #{gwhdbm,jdbcType=VARCHAR}, 
+      #{gwhdmc,jdbcType=VARCHAR}, #{gwhdjc,jdbcType=VARCHAR}, #{gwhdpym,jdbcType=VARCHAR}, 
+      #{tzrbm,jdbcType=VARCHAR}, #{tzrmc,jdbcType=VARCHAR}, #{tzrjc,jdbcType=VARCHAR}, 
+      #{tzrpym,jdbcType=VARCHAR}, #{ysfs,jdbcType=VARCHAR}, #{tdlx,jdbcType=VARCHAR}, 
+      #{cyrbm,jdbcType=VARCHAR}, #{cyr,jdbcType=VARCHAR}, #{cyrjc,jdbcType=VARCHAR}, 
+      #{cyrpym,jdbcType=VARCHAR}, #{cdgsbm,jdbcType=VARCHAR}, #{cdgs,jdbcType=VARCHAR}, 
+      #{cdgsjc,jdbcType=VARCHAR}, #{cdgspym,jdbcType=VARCHAR}, #{cm,jdbcType=VARCHAR}, 
+      #{hcorhbh,jdbcType=VARCHAR}, #{hcorhbhZq,jdbcType=VARCHAR}, #{sfzy,jdbcType=VARCHAR}, 
+      #{zzCm,jdbcType=VARCHAR}, #{zzHcorhbh,jdbcType=VARCHAR}, #{zzgk,jdbcType=VARCHAR}, 
+      #{ztdh,jdbcType=VARCHAR}, #{sfshytd,jdbcType=VARCHAR}, #{ftdh,jdbcType=VARCHAR}, 
+      #{hygsbm,jdbcType=VARCHAR}, #{hygsmc,jdbcType=VARCHAR}, #{hygsjc,jdbcType=VARCHAR}, 
+      #{hygspym,jdbcType=VARCHAR}, #{hdhdgs,jdbcType=VARCHAR}, #{qyg,jdbcType=VARCHAR}, 
+      #{qygdm,jdbcType=VARCHAR}, #{qygsjgkdm,jdbcType=VARCHAR}, #{mdg,jdbcType=VARCHAR}, 
+      #{xhgqbm,jdbcType=VARCHAR}, #{xhgq,jdbcType=VARCHAR}, #{xhgqjc,jdbcType=VARCHAR}, 
+      #{xhgqpym,jdbcType=VARCHAR}, #{yjkgsj,jdbcType=TIMESTAMP}, #{sjkgsj,jdbcType=TIMESTAMP}, 
+      #{sfxyechd,jdbcType=VARCHAR}, #{ycd,jdbcType=VARCHAR}, #{ycddm,jdbcType=VARCHAR}, 
+      #{ejycd,jdbcType=VARCHAR}, #{mxq,jdbcType=INTEGER}, #{jgfs,jdbcType=VARCHAR}, #{wbbb,jdbcType=VARCHAR}, 
+      #{zje,jdbcType=DOUBLE}, #{zmyhl,jdbcType=DOUBLE}, #{zmyje,jdbcType=DOUBLE}, #{sfyyf,jdbcType=VARCHAR}, 
+      #{yfje,jdbcType=DOUBLE}, #{yfbb,jdbcType=VARCHAR}, #{sdyffpsj,jdbcType=TIMESTAMP}, 
+      #{khorhd,jdbcType=VARCHAR}, #{yfcdrbm,jdbcType=VARCHAR}, #{yfcdr,jdbcType=VARCHAR}, 
+      #{yfcdrjc,jdbcType=VARCHAR}, #{yfcdrpym,jdbcType=VARCHAR}, #{kddh,jdbcType=VARCHAR}, 
+      #{sdsdsj,jdbcType=TIMESTAMP}, #{yfzfqrsj,jdbcType=TIMESTAMP}, #{yfbz,jdbcType=VARCHAR}, 
+      #{gkhfpsj,jdbcType=TIMESTAMP}, #{yfzfjg,jdbcType=VARCHAR}, #{state,jdbcType=VARCHAR}, 
+      #{beizhu,jdbcType=VARCHAR}, #{kyhdsj,jdbcType=TIMESTAMP}, #{sjhdsj,jdbcType=TIMESTAMP}, 
+      #{hdbz,jdbcType=VARCHAR}, #{xtdh,jdbcType=VARCHAR}, #{gs,jdbcType=DOUBLE}, #{zzs,jdbcType=DOUBLE}, 
+      #{bzj,jdbcType=DOUBLE}, #{sjzfrq,jdbcType=TIMESTAMP}, #{gsBj,jdbcType=DOUBLE}, 
+      #{zzsBj,jdbcType=DOUBLE}, #{bzjBj,jdbcType=DOUBLE}, #{sjzfrqBj,jdbcType=TIMESTAMP}, 
+      #{bzjzfrbm,jdbcType=VARCHAR}, #{bzjzfr,jdbcType=VARCHAR}, #{bzjzfrjc,jdbcType=VARCHAR}, 
+      #{bzjzfrpym,jdbcType=VARCHAR}, #{bzjsj,jdbcType=TIMESTAMP}, #{bzjje,jdbcType=DOUBLE}, 
+      #{bzjdjh,jdbcType=VARCHAR}, #{bzjjzsj,jdbcType=TIMESTAMP}, #{bzjymxz,jdbcType=VARCHAR}, 
+      #{bzjym,jdbcType=VARCHAR}, #{stbrysj,jdbcType=TIMESTAMP}, #{shgsj,jdbcType=TIMESTAMP}, 
+      #{hgclsj,jdbcType=TIMESTAMP}, #{tbzj,jdbcType=DOUBLE}, #{zzzs,jdbcType=DOUBLE}, 
+      #{zgs,jdbcType=DOUBLE}, #{hghdjg,jdbcType=DOUBLE}, #{tkdzsj,jdbcType=TIMESTAMP}, 
+      #{wsbjsj,jdbcType=TIMESTAMP}, #{bjh,jdbcType=VARCHAR}, #{bjsj,jdbcType=TIMESTAMP}, 
+      #{cktgsj,jdbcType=TIMESTAMP}, #{tgdh,jdbcType=VARCHAR}, #{wzhfxsj,jdbcType=TIMESTAMP}, 
+      #{bgdh,jdbcType=VARCHAR}, #{bgsj,jdbcType=TIMESTAMP}, #{bghgbm,jdbcType=VARCHAR}, 
+      #{bghg,jdbcType=VARCHAR}, #{bghgjc,jdbcType=VARCHAR}, #{bghgpym,jdbcType=VARCHAR}, 
+      #{jyjbm,jdbcType=VARCHAR}, #{jyjmc,jdbcType=VARCHAR}, #{jyjjc,jdbcType=VARCHAR}, 
+      #{jyjpym,jdbcType=VARCHAR}, #{jyjsjjgdm,jdbcType=VARCHAR}, #{sfcy,jdbcType=VARCHAR}, 
+      #{cydbm,jdbcType=VARCHAR}, #{cyd,jdbcType=VARCHAR}, #{cydjc,jdbcType=VARCHAR}, 
+      #{cydpym,jdbcType=VARCHAR}, #{yjcysj,jdbcType=TIMESTAMP}, #{sjcysj,jdbcType=TIMESTAMP}, 
+      #{cybz,jdbcType=VARCHAR}, #{hgfxsj,jdbcType=TIMESTAMP}, #{hgfxsjSrsj,jdbcType=TIMESTAMP}, 
+      #{kgbz,jdbcType=VARCHAR}, #{fph,jdbcType=VARCHAR}, #{sjzfkhlx,jdbcType=VARCHAR}, 
+      #{sjzfkhbm,jdbcType=VARCHAR}, #{sjzfkhmc,jdbcType=VARCHAR}, #{sjzfkhjc,jdbcType=VARCHAR}, 
+      #{sjzfkhpym,jdbcType=VARCHAR}, #{zbj,jdbcType=DOUBLE}, #{sjbz,jdbcType=VARCHAR}, 
+      #{jybz,jdbcType=VARCHAR}, #{jydbm,jdbcType=VARCHAR}, #{jyd,jdbcType=VARCHAR}, #{jydjc,jdbcType=VARCHAR}, 
+      #{jydpym,jdbcType=VARCHAR}, #{hdsj,jdbcType=TIMESTAMP}, #{bgbz,jdbcType=VARCHAR}, 
+      #{hgfxfs,jdbcType=VARCHAR}, #{hgtgwt,jdbcType=VARCHAR}, #{hzJzxh,jdbcType=VARCHAR}, 
+      #{hzSpmc,jdbcType=VARCHAR}, #{sdsdrq,jdbcType=TIMESTAMP}, #{sdkhqzrq,jdbcType=TIMESTAMP}, 
+      #{sdbz,jdbcType=VARCHAR}, #{sdkddh,jdbcType=VARCHAR}, #{bzjbz,jdbcType=VARCHAR}, 
+      #{fxbz,jdbcType=VARCHAR}, #{clfs,jdbcType=VARCHAR}, #{beizhuXgrq,jdbcType=TIMESTAMP}, 
+      #{hzSl,jdbcType=DOUBLE}, #{mtdm,jdbcType=VARCHAR}, #{sfqycdz,jdbcType=VARCHAR}, 
+      #{lzsj,jdbcType=TIMESTAMP}, #{ycdzsh,jdbcType=VARCHAR}, #{khmxq,jdbcType=INTEGER}, 
+      #{invoiceno,jdbcType=VARCHAR}, #{invoiceDate,jdbcType=TIMESTAMP}, #{sfsdhdzl,jdbcType=VARCHAR}, 
+      #{sfhd,jdbcType=VARCHAR}, #{sfytzcgskp,jdbcType=VARCHAR}, #{tzcgskpsj,jdbcType=TIMESTAMP}, 
+      #{sfyfyzf,jdbcType=VARCHAR}, #{sfyzbg,jdbcType=VARCHAR}, #{cmZw,jdbcType=VARCHAR}, 
+      #{sfsdsd,jdbcType=VARCHAR}, #{jsdwbm,jdbcType=VARCHAR}, #{jsdwmc,jdbcType=VARCHAR}, 
+      #{jsdwjc,jdbcType=VARCHAR}, #{jsdwpym,jdbcType=VARCHAR}, #{xtdlx,jdbcType=VARCHAR}, 
+      #{hgclbh,jdbcType=VARCHAR}, #{hdzljcsj,jdbcType=TIMESTAMP}, #{jcgzry,jdbcType=VARCHAR}, 
+      #{hdzljcbz,jdbcType=VARCHAR}, #{bgsxtdsj,jdbcType=TIMESTAMP}, #{bgscxtdsj,jdbcType=TIMESTAMP}, 
+      #{thhtjhsj,jdbcType=TIMESTAMP}, #{jjcd,jdbcType=VARCHAR}, #{tcts,jdbcType=DOUBLE}, 
+      #{zthsq,jdbcType=VARCHAR}, #{yjlgsj,jdbcType=TIMESTAMP}, #{zthsqsj,jdbcType=TIMESTAMP}, 
+      #{ytjkzt,jdbcType=VARCHAR}, #{dzlx,jdbcType=VARCHAR}, #{jydwdm,jdbcType=VARCHAR}, 
+      #{hzdwdqdm,jdbcType=VARCHAR}, #{shdwdm,jdbcType=VARCHAR}, #{sbdwdm,jdbcType=VARCHAR}, 
+      #{jcka,jdbcType=VARCHAR}, #{myfs,jdbcType=VARCHAR}, #{zmfs,jdbcType=VARCHAR}, #{yfbj,jdbcType=VARCHAR}, 
+      #{bxfbj,jdbcType=VARCHAR}, #{bxfbb,jdbcType=VARCHAR}, #{bxfje,jdbcType=DOUBLE}, 
+      #{zxs,jdbcType=DOUBLE}, #{zmz,jdbcType=DOUBLE}, #{zjz,jdbcType=DOUBLE}, #{bzzl,jdbcType=VARCHAR}, 
+      #{jckbz,jdbcType=VARCHAR}, #{ytbz,jdbcType=VARCHAR}, #{qiyunguo,jdbcType=VARCHAR}, 
+      #{qiyunguodm,jdbcType=VARCHAR}, #{htd,jdbcType=VARCHAR}, #{htdRq,jdbcType=TIMESTAMP}, 
+      #{sfqrbzlx,jdbcType=VARCHAR}, #{ytjkwjbh,jdbcType=VARCHAR}, #{ytjkfssj,jdbcType=TIMESTAMP}, 
+      #{ytjkfscs,jdbcType=INTEGER}, #{ep15212,jdbcType=VARCHAR}, #{ep14515,jdbcType=VARCHAR}, 
+      #{ep14516,jdbcType=VARCHAR}, #{ep14514,jdbcType=NCHAR}, #{ytzt,jdbcType=VARCHAR}, 
+      #{ytsjfszt,jdbcType=VARCHAR}, #{sfkydqsjjk,jdbcType=VARCHAR}, #{bjgslxr,jdbcType=VARCHAR}, 
+      #{bjgslxdh,jdbcType=VARCHAR}, #{bjydm,jdbcType=VARCHAR}, #{qyxz,jdbcType=VARCHAR}, 
+      #{sfwstzcc,jdbcType=VARCHAR}, #{tstk,jdbcType=VARCHAR}, #{hwcfd,jdbcType=VARCHAR}, 
+      #{yt,jdbcType=VARCHAR}, #{spts,jdbcType=INTEGER}, #{zsbh,jdbcType=VARCHAR}, #{zsmc,jdbcType=VARCHAR}, 
+      #{bjlb,jdbcType=VARCHAR}, #{mt,jdbcType=VARCHAR}, #{ysgj,jdbcType=VARCHAR}, #{sfdj,jdbcType=VARCHAR}, 
+      #{sfdjbm,jdbcType=VARCHAR}, #{rjka,jdbcType=VARCHAR}, #{rjmdd,jdbcType=VARCHAR}, 
+      #{dfcyf,jdbcType=DOUBLE}, #{dfcbxf,jdbcType=DOUBLE}, #{sffsrjsj,jdbcType=VARCHAR}, 
+      #{rjjkfssj,jdbcType=TIMESTAMP}, #{rjjkfscs,jdbcType=INTEGER}, #{bzjsqly,jdbcType=VARCHAR}, 
+      #{clqy,jdbcType=VARCHAR}, #{sdlqr,jdbcType=VARCHAR}, #{sdlqsj,jdbcType=TIMESTAMP}, 
+      #{sddzsj,jdbcType=TIMESTAMP}, #{sdh,jdbcType=VARCHAR}, #{ktgs,jdbcType=DOUBLE}, 
+      #{ktzzs,jdbcType=DOUBLE}, #{yzbh,jdbcType=VARCHAR}, #{skdbtzspdQt,jdbcType=VARCHAR}, 
+      #{skdbtzspdTzsy,jdbcType=VARCHAR}, #{bzjKhsksj,jdbcType=TIMESTAMP}, #{sjKhsksj,jdbcType=TIMESTAMP}, 
+      #{sftk,jdbcType=VARCHAR}, #{zcrq,jdbcType=TIMESTAMP}, #{sfyfh,jdbcType=VARCHAR}, 
+      #{fh,jdbcType=VARCHAR}, #{hzHgbm,jdbcType=VARCHAR}, #{hzPz,jdbcType=VARCHAR}, #{hzSpywmc,jdbcType=VARCHAR}, 
+      #{hzSjshr,jdbcType=VARCHAR}, #{hzSjshrgs,jdbcType=INTEGER}, #{zgggbz,jdbcType=VARCHAR}, 
+      #{dmbz,jdbcType=VARCHAR}, #{yfbzDz,jdbcType=VARCHAR}, #{yflrbh,jdbcType=VARCHAR}, 
+      #{jzxsl,jdbcType=INTEGER}, #{hzTpsl,jdbcType=INTEGER}, #{hzSzsl,jdbcType=INTEGER}, 
+      #{hzZhlx,jdbcType=VARCHAR}, #{hzXx,jdbcType=VARCHAR}, #{sjzqCm,jdbcType=VARCHAR}, 
+      #{sjzqHc,jdbcType=VARCHAR}, #{sjzqJs,jdbcType=DOUBLE}, #{sjzqZl,jdbcType=DOUBLE}, 
+      #{sgzqDyxx,jdbcType=VARCHAR}, #{sjzqJkdgqrbz,jdbcType=VARCHAR}, #{sjzqLhzt,jdbcType=VARCHAR}, 
+      #{sjzqCkdyzt,jdbcType=VARCHAR}, #{sjzqZqcdsj,jdbcType=TIMESTAMP}, #{sjzqZqdgsj,jdbcType=TIMESTAMP}, 
+      #{sjzqZqlhsj,jdbcType=TIMESTAMP}, #{sdry,jdbcType=VARCHAR}, #{yfqr,jdbcType=VARCHAR}, 
+      #{dqdm,jdbcType=VARCHAR}, #{ctrArea2,jdbcType=VARCHAR}, #{tycj,jdbcType=VARCHAR}, 
+      #{hzBzsl,jdbcType=INTEGER}, #{pjlx,jdbcType=VARCHAR}, #{pjkhthsj,jdbcType=TIMESTAMP}, 
+      #{sddybh,jdbcType=VARCHAR}, #{cdxxycyy,jdbcType=VARCHAR}, #{mygb,jdbcType=VARCHAR}, 
+      #{yjtsbm,jdbcType=VARCHAR}, #{suppliersellid,jdbcType=VARCHAR}, #{ocrid,jdbcType=VARCHAR}, 
+      #{wzhjdsj,jdbcType=TIMESTAMP}, #{gjsbzt,jdbcType=VARCHAR}, #{sfjy,jdbcType=VARCHAR}, 
+      #{hgfxsjZqsj,jdbcType=TIMESTAMP}, #{ohxtClbz,jdbcType=VARCHAR}, #{ohxtClsj,jdbcType=TIMESTAMP}, 
+      #{bghbjxgbz,jdbcType=VARCHAR}, #{fxfsqrbz,jdbcType=VARCHAR}, #{qrdf,jdbcType=VARCHAR}, 
+      #{sfbhbj,jdbcType=VARCHAR}, #{sfxb,jdbcType=VARCHAR}, #{sjxgbz,jdbcType=VARCHAR}, 
+      #{rgzqDyxx,jdbcType=VARCHAR}, #{qrdfsj,jdbcType=TIMESTAMP}, #{bhbjsj,jdbcType=TIMESTAMP}, 
+      #{sjzqCdrgzqbz,jdbcType=VARCHAR}, #{sfzbzj,jdbcType=VARCHAR}, #{zbzjsj,jdbcType=TIMESTAMP}, 
+      #{scsxgbz,jdbcType=VARCHAR}, #{yjhdsj,jdbcType=TIMESTAMP}, #{yjhdsjSr,jdbcType=TIMESTAMP}, 
+      #{sfyzcf,jdbcType=VARCHAR}, #{yghgfxsj,jdbcType=TIMESTAMP}, #{jsbz,jdbcType=VARCHAR}, 
+      #{bzjsjh,jdbcType=VARCHAR}, #{qyrq,jdbcType=TIMESTAMP}, #{yjkgsjsrsj,jdbcType=TIMESTAMP}, 
+      #{yjbl,jdbcType=DOUBLE}, #{yj,jdbcType=DOUBLE}, #{zcqr,jdbcType=VARCHAR}, #{dsdyfzf,jdbcType=VARCHAR}, 
+      #{dsdyfyzf,jdbcType=VARCHAR}, #{js,jdbcType=VARCHAR}, #{hzjs,jdbcType=VARCHAR}, 
+      #{jgtkqr,jdbcType=VARCHAR}, #{bgdwjmc,jdbcType=VARCHAR}, #{gwgysTymc,jdbcType=VARCHAR}, 
+      #{jyjyzs,jdbcType=VARCHAR}, #{wjgd,jdbcType=VARCHAR}, #{sfyjyjyzs,jdbcType=VARCHAR}, 
+      #{sfysd,jdbcType=VARCHAR}, #{sfygdwj,jdbcType=VARCHAR}, #{dztxts,jdbcType=INTEGER}, 
+      #{tdzt,jdbcType=INTEGER}, #{sdtgfs,jdbcType=INTEGER}, #{zdzfs,jdbcType=INTEGER}, 
+      #{ohdlxy,jdbcType=VARCHAR}, #{zzrq,jdbcType=DATE}, #{dzqk,jdbcType=VARCHAR}, #{fkfs,jdbcType=VARCHAR}, 
+      #{jzxgjzxh,jdbcType=VARCHAR}, #{qgld,jdbcType=VARCHAR}, #{jdrbm,jdbcType=VARCHAR}, 
+      #{jdrmc,jdbcType=VARCHAR}, #{jdrjc,jdbcType=VARCHAR}, #{jdrpym,jdbcType=VARCHAR}, 
+      #{tsbz,jdbcType=VARCHAR}, #{sfsjjyw,jdbcType=VARCHAR}, #{sfsy,jdbcType=VARCHAR}, 
+      #{bjys,jdbcType=VARCHAR}, #{sjzqMtdm,jdbcType=VARCHAR}, #{sffshb,jdbcType=VARCHAR}, 
+      #{sjkgsjLrsj,jdbcType=TIMESTAMP}, #{sjkgsjCzry,jdbcType=VARCHAR}, #{hgfxsjCzry,jdbcType=VARCHAR}, 
+      #{bjhsrry,jdbcType=VARCHAR}, #{bjhsrsj,jdbcType=TIMESTAMP}, #{wxgj,jdbcType=VARCHAR}, 
+      #{cypz,jdbcType=VARCHAR}, #{zf,jdbcType=DOUBLE}, #{sfpd,jdbcType=VARCHAR}, #{gwgysdz,jdbcType=VARCHAR}, 
+      #{zjsdz,jdbcType=VARCHAR}, #{gjczbz,jdbcType=VARCHAR}, #{gjczry,jdbcType=VARCHAR}, 
+      #{gjczsj,jdbcType=TIMESTAMP}, #{kylhsj,jdbcType=TIMESTAMP}, #{kylhsjSrry,jdbcType=VARCHAR}, 
+      #{kylhsjLrsj,jdbcType=TIMESTAMP}, #{zbzj,jdbcType=VARCHAR}, #{ygkthsj,jdbcType=TIMESTAMP}, 
+      #{ygkthsjSjd,jdbcType=VARCHAR}, #{yjbb,jdbcType=VARCHAR}, #{sfqgld,jdbcType=VARCHAR}, 
+      #{xfs,jdbcType=DOUBLE}, #{xccy,jdbcType=VARCHAR}, #{xccyLrry,jdbcType=VARCHAR}, 
+      #{xccyLrsj,jdbcType=TIMESTAMP}, #{rjhwjyjyzm,jdbcType=VARCHAR}, #{bg,jdbcType=VARCHAR}, 
+      #{bj,jdbcType=VARCHAR}, #{wl,jdbcType=VARCHAR}, #{hd,jdbcType=VARCHAR}, #{fx,jdbcType=VARCHAR}, 
+      #{wlgsbm,jdbcType=VARCHAR}, #{wlgsmc,jdbcType=VARCHAR}, #{wlgsjc,jdbcType=VARCHAR}, 
+      #{wlgspym,jdbcType=VARCHAR}, #{hdrbm,jdbcType=VARCHAR}, #{hdrmc,jdbcType=VARCHAR}, 
+      #{hdrjc,jdbcType=VARCHAR}, #{hdrpym,jdbcType=VARCHAR}, #{ckdwbm,jdbcType=VARCHAR}, 
+      #{ckdwmc,jdbcType=VARCHAR}, #{ckdwjc,jdbcType=VARCHAR}, #{ckdwpym,jdbcType=VARCHAR}, 
+      #{yjkgsjLrsj,jdbcType=TIMESTAMP}, #{yjkgsjCzry,jdbcType=VARCHAR}, #{sfjc,jdbcType=VARCHAR}, 
+      #{jclrry,jdbcType=VARCHAR}, #{jclrsj,jdbcType=TIMESTAMP}, #{yjccfy,jdbcType=DOUBLE}, 
+      #{sfsq,jdbcType=VARCHAR}, #{sjccfy,jdbcType=DOUBLE}, #{ccfbz,jdbcType=VARCHAR}, 
+      #{sfcsbj,jdbcType=VARCHAR}, #{sjkbsj,jdbcType=TIMESTAMP}, #{hbzqsj,jdbcType=TIMESTAMP}, 
+      #{bjyw,jdbcType=VARCHAR}, #{jhkbsj,jdbcType=TIMESTAMP}, #{jhkbsjZqsj,jdbcType=TIMESTAMP}, 
+      #{sjzqHgfxsj,jdbcType=TIMESTAMP}, #{sjzqZqsj,jdbcType=TIMESTAMP}, #{zbjyzkdsj,jdbcType=TIMESTAMP}, 
+      #{sdBeizhu,jdbcType=VARCHAR}, #{jsdwJsbm,jdbcType=VARCHAR}, #{sjzfkhJsbm,jdbcType=VARCHAR}, 
+      #{gbhYwbh,jdbcType=VARCHAR}, #{ysmxcd,jdbcType=VARCHAR}, #{sfqr,jdbcType=VARCHAR}, 
+      #{sftj,jdbcType=VARCHAR}, #{hxzgtgzt,jdbcType=VARCHAR}, #{hxzgtgsj,jdbcType=TIMESTAMP}, 
+      #{pcyjhsj,jdbcType=TIMESTAMP}, #{pcyjhsjTjry,jdbcType=VARCHAR}, #{pcyjhsjTjsj,jdbcType=TIMESTAMP}, 
+      #{mxqLrry,jdbcType=VARCHAR}, #{mxqLrsj,jdbcType=TIMESTAMP}, #{mcq,jdbcType=DOUBLE}, 
+      #{ep25461,jdbcType=VARCHAR}, #{sfbhbjLrry,jdbcType=VARCHAR}, #{sfbhbjLrrq,jdbcType=TIMESTAMP}, 
+      #{sfzbzjLrry,jdbcType=VARCHAR}, #{sfzbzjLrrq,jdbcType=TIMESTAMP}, #{sfcsbjLrry,jdbcType=VARCHAR}, 
+      #{sfcsbjLrrq,jdbcType=TIMESTAMP}, #{gwgysdm,jdbcType=VARCHAR}, #{zjsdm,jdbcType=VARCHAR}, 
+      #{mxqrq,jdbcType=DATE}, #{jyjysljg,jdbcType=VARCHAR}, #{kajyjyjg,jdbcType=VARCHAR}, 
+      #{mddjyjyjg,jdbcType=VARCHAR}, #{lzjg,jdbcType=VARCHAR}, #{yjzxbs,jdbcType=VARCHAR}, 
+      #{sfyzbsd,jdbcType=VARCHAR}, #{xc2ccy,jdbcType=VARCHAR}, #{xc2ccyLrry,jdbcType=VARCHAR}, 
+      #{xc2ccyLrrq,jdbcType=TIMESTAMP}, #{hgCdrq,jdbcType=VARCHAR}, #{hgDgrq,jdbcType=VARCHAR}, 
+      #{mcqRq,jdbcType=TIMESTAMP}, #{jysbjg,jdbcType=VARCHAR}, #{id,jdbcType=INTEGER}, 
+      #{xskhbm,jdbcType=VARCHAR}, #{xskhmc,jdbcType=VARCHAR}, #{xskhjc,jdbcType=VARCHAR}, 
+      #{xskhpym,jdbcType=VARCHAR}, #{hzPp,jdbcType=VARCHAR}, #{hdzt,jdbcType=VARCHAR}, 
+      #{cdzh,jdbcType=VARCHAR}, #{zjzh,jdbcType=VARCHAR}, #{mtxx,jdbcType=VARCHAR}, #{gx,jdbcType=VARCHAR}, 
+      #{lldh,jdbcType=VARCHAR}, #{ccrn,jdbcType=VARCHAR}, #{mjxx,jdbcType=VARCHAR}, #{tgrq,jdbcType=TIMESTAMP}, 
+      #{jhrq,jdbcType=TIMESTAMP}, #{clxx,jdbcType=VARCHAR}, #{xgcp,jdbcType=VARCHAR}, 
+      #{jhdd,jdbcType=VARCHAR}, #{jgwq,jdbcType=TIMESTAMP}, #{hgdc,jdbcType=VARCHAR}, 
+      #{ggrq,jdbcType=TIMESTAMP}, #{qgrq,jdbcType=TIMESTAMP}, #{xgjbbm,jdbcType=VARCHAR}, 
+      #{xgjb,jdbcType=VARCHAR}, #{szjbbm,jdbcType=VARCHAR}, #{szjb,jdbcType=VARCHAR}, 
+      #{tjhm,jdbcType=VARCHAR}, #{hgtjhm,jdbcType=VARCHAR}, #{hgcp,jdbcType=VARCHAR}, 
+      #{sfcs,jdbcType=VARCHAR}, #{ysbz,jdbcType=VARCHAR}, #{hgrq,jdbcType=TIMESTAMP}, 
+      #{hgdcbm,jdbcType=VARCHAR}, #{ssbm,jdbcType=VARCHAR}, #{xgccrq,jdbcType=TIMESTAMP}, 
+      #{ccfysqlx,jdbcType=VARCHAR}, #{ep25645,jdbcType=VARCHAR}, #{sygq,jdbcType=VARCHAR}, 
+      #{sygqjc,jdbcType=VARCHAR}, #{sygqbm,jdbcType=VARCHAR}, #{sygqpym,jdbcType=VARCHAR}, 
+      #{gdwz,jdbcType=VARCHAR}, #{khzlrq,jdbcType=DATE}, #{bm,jdbcType=VARCHAR}, #{hxzgqrry,jdbcType=VARCHAR}, 
+      #{wxyffp,jdbcType=VARCHAR}, #{tqhd,jdbcType=CHAR}, #{ep26040,jdbcType=CHAR}, #{ep25894,jdbcType=CHAR}, 
+      #{ldwc,jdbcType=CHAR}, #{sjclbz,jdbcType=VARCHAR}, #{hbJhkbsj,jdbcType=TIMESTAMP}, 
+      #{hbSjkbsj,jdbcType=TIMESTAMP}, #{hbMt,jdbcType=VARCHAR}, #{hbCdljc,jdbcType=VARCHAR}, 
+      #{hkly,jdbcType=VARCHAR}, #{zrpd2,jdbcType=VARCHAR}, #{zrpd3,jdbcType=VARCHAR}, 
+      #{zrpd,jdbcType=VARCHAR}, #{jwgysbm,jdbcType=VARCHAR}, #{jwgysmc,jdbcType=VARCHAR}, 
+      #{jwgysmcYw,jdbcType=VARCHAR}, #{jwgysdz,jdbcType=VARCHAR}, #{sfjnsj,jdbcType=VARCHAR}, 
+      #{hbCm,jdbcType=VARCHAR}, #{hbHc,jdbcType=VARCHAR}, #{sfsz,jdbcType=VARCHAR}, #{szsj,jdbcType=TIMESTAMP}, 
+      #{szry,jdbcType=VARCHAR}, #{yssdcsj,jdbcType=TIMESTAMP}, #{glcdyfs,jdbcType=CHAR}, 
+      #{dyckBgdZt,jdbcType=INTEGER}, #{dyckSeqno,jdbcType=VARCHAR}, #{sfdztd,jdbcType=CHAR}, 
+      #{swfxsj,jdbcType=TIMESTAMP}, #{sftb,jdbcType=VARCHAR}, #{dzsqqr,jdbcType=VARCHAR}, 
+      #{yjtgrq,jdbcType=TIMESTAMP}, #{jyjysljgmc,jdbcType=VARCHAR}, #{kajyjyjgmc,jdbcType=VARCHAR}, 
+      #{mddjyjyjgmc,jdbcType=VARCHAR}, #{lzjgmc,jdbcType=VARCHAR}, #{jckamc,jdbcType=VARCHAR}, 
+      #{dzlxmc,jdbcType=VARCHAR}, #{myfsmc,jdbcType=VARCHAR}, #{hzdwdqmc,jdbcType=VARCHAR}, 
+      #{bzzlmc,jdbcType=VARCHAR}, #{ysgjmc,jdbcType=VARCHAR}, #{rjmddmc,jdbcType=VARCHAR}, 
+      #{zmfsmc,jdbcType=VARCHAR}, #{hbCmZqsj,jdbcType=TIMESTAMP}, #{sfyjyyhx,jdbcType=VARCHAR}, 
+      #{sdjyyhxSj,jdbcType=TIMESTAMP}, #{jyyhx,jdbcType=VARCHAR}, #{sfgg,jdbcType=VARCHAR}, 
+      #{sfjj,jdbcType=CHAR}, #{jjyy,jdbcType=VARCHAR}, #{dyckSfsj,jdbcType=VARCHAR}, 
+      #{dyckSjsj,jdbcType=TIMESTAMP}, #{dyckSjry,jdbcType=VARCHAR}, #{hkjs,jdbcType=INTEGER}, 
+      #{jjsj,jdbcType=TIMESTAMP}, #{sfcyJy,jdbcType=VARCHAR}, #{cyckmc,jdbcType=VARCHAR}, 
+      #{cyrksj,jdbcType=TIMESTAMP}, #{cyhgsj,jdbcType=TIMESTAMP}, #{qdscsj,jdbcType=TIMESTAMP}, 
+      #{jyzSzsj,jdbcType=TIMESTAMP}, #{cyckbm,jdbcType=VARCHAR}, #{jylzsj,jdbcType=TIMESTAMP}, 
+      #{jyzjcsj,jdbcType=TIMESTAMP}, #{jyzBz,jdbcType=VARCHAR}, #{hzKhmc,jdbcType=VARCHAR}, 
+      #{dyckScry,jdbcType=VARCHAR}, #{rwxz,jdbcType=VARCHAR}, #{ysje,jdbcType=DOUBLE}, 
+      #{lyyf,jdbcType=DECIMAL}, #{cjfsmdf,jdbcType=VARCHAR}, #{hgjdjd,jdbcType=VARCHAR}, 
+      #{hgjdjdsj,jdbcType=TIMESTAMP}, #{sjzqYsgjmc,jdbcType=VARCHAR}, #{hgcyfs,jdbcType=CHAR}, 
+      #{hgjhcyrq,jdbcType=TIMESTAMP}, #{fhed,jdbcType=DOUBLE}, #{zjyw,jdbcType=CHAR}, 
+      #{ts,jdbcType=CHAR}, #{tsUser,jdbcType=VARCHAR}, #{glcdwc,jdbcType=CHAR}, #{glcdwcsj,jdbcType=TIMESTAMP}, 
+      #{sfyyfsj,jdbcType=TIMESTAMP}, #{cydlx,jdbcType=VARCHAR}, #{sffxs,jdbcType=CHAR}, 
+      #{znj,jdbcType=DECIMAL}, #{bgy,jdbcType=VARCHAR}, #{sfzhg,jdbcType=CHAR}, #{wlbz,jdbcType=VARCHAR}, 
+      #{dhtzs,jdbcType=CHAR}, #{anYy,jdbcType=CHAR}, #{mJxxsfywj,jdbcType=CHAR}, #{tsyy,jdbcType=VARCHAR}, 
+      #{tsjd,jdbcType=VARCHAR}, #{sblx,jdbcType=VARCHAR}, #{ecwzsbsj,jdbcType=TIMESTAMP}, 
+      #{bgdfxsj,jdbcType=TIMESTAMP}, #{sbfsry,jdbcType=VARCHAR}, #{yjhdbz,jdbcType=VARCHAR}, 
+      #{yjtgrqImportUser,jdbcType=VARCHAR}, #{mcqRqImportUser,jdbcType=VARCHAR}, #{kddhHddz,jdbcType=VARCHAR}, 
+      #{ywryWl,jdbcType=VARCHAR}, #{cwbz,jdbcType=VARCHAR}, #{beizhuZkj,jdbcType=VARCHAR}, 
+      #{anJeGb,jdbcType=DOUBLE}, #{anJeMj,jdbcType=DOUBLE}, #{mjhl,jdbcType=DOUBLE}, 
+      #{wjfxsj,jdbcType=TIMESTAMP}, #{cyks,jdbcType=VARCHAR}, #{fxycsjyy,jdbcType=VARCHAR}, 
+      #{sjktgsj,jdbcType=TIMESTAMP}, #{yjkgsjtzgx,jdbcType=VARCHAR}, #{fbsh,jdbcType=VARCHAR}, 
+      #{fbshsj,jdbcType=TIMESTAMP}, #{sfhdUser,jdbcType=VARCHAR}, #{mJxxsfywjUser,jdbcType=VARCHAR}, 
+      #{anJeGbUser,jdbcType=VARCHAR}, #{anJeMjUser,jdbcType=VARCHAR}, #{mjhlUser,jdbcType=VARCHAR}, 
+      #{lbsbbz,jdbcType=VARCHAR}, #{zjbz,jdbcType=VARCHAR}, #{lldhUser,jdbcType=VARCHAR}, 
+      #{fqxs,jdbcType=DOUBLE}, #{fqxsBj,jdbcType=DOUBLE}, #{zrpdBeizhu,jdbcType=VARCHAR}, 
+      #{zqzqcwxx,jdbcType=VARCHAR}, #{cjyzxt,jdbcType=VARCHAR}, #{cjyzrg,jdbcType=VARCHAR}, 
+      #{gxtssj,jdbcType=TIMESTAMP}, #{xgdzqk,jdbcType=VARCHAR}, #{xghgsbJ,jdbcType=VARCHAR}, 
+      #{xghgsbC,jdbcType=VARCHAR}, #{zjbjh,jdbcType=VARCHAR}, #{zzqrsh,jdbcType=VARCHAR}, 
+      #{gzjysbsj,jdbcType=TIMESTAMP}, #{jqsbwcsj,jdbcType=TIMESTAMP}, #{fbhx,jdbcType=VARCHAR}, 
+      #{bcsfdj,jdbcType=VARCHAR}, #{cszt,jdbcType=NVARCHAR}, #{jckfs,jdbcType=NVARCHAR}, 
+      #{lbsb,jdbcType=VARCHAR}, #{khhzzs,jdbcType=VARCHAR}, #{sfgdzf,jdbcType=VARCHAR}, 
+      #{gdzf,jdbcType=DECIMAL}, #{hdtdlx,jdbcType=VARCHAR}, #{hzSpmcsfss,jdbcType=VARCHAR}, 
+      #{zjesfss,jdbcType=VARCHAR}, #{kpjesfss,jdbcType=VARCHAR}, #{ejycddm,jdbcType=VARCHAR}, 
+      #{szflag,jdbcType=VARCHAR}, #{zbsd,jdbcType=CHAR}, #{fbsd,jdbcType=CHAR}, #{zscssd,jdbcType=CHAR}, 
+      #{bah,jdbcType=VARCHAR}, #{jkrq,jdbcType=DATE}, #{xkzh,jdbcType=VARCHAR}, #{tsgxqr,jdbcType=VARCHAR}, 
+      #{jgyxqr,jdbcType=VARCHAR}, #{txqsyfzfqr,jdbcType=VARCHAR}, #{sdwzh,jdbcType=VARCHAR}, 
+      #{zzbs,jdbcType=VARCHAR}, #{dbyf,jdbcType=VARCHAR}, #{qyzzcn,jdbcType=VARCHAR}, 
+      #{yxys,jdbcType=VARCHAR}, #{hgfxfsUser,jdbcType=VARCHAR}, #{xghgsbJDate,jdbcType=TIMESTAMP}, 
+      #{xghgsbCDate,jdbcType=TIMESTAMP}, #{jgycxx,jdbcType=VARCHAR}, #{dyckState,jdbcType=VARCHAR}, 
+      #{grabHbhc,jdbcType=VARCHAR}, #{khbmDlxyh,jdbcType=VARCHAR}, #{yjcysjLrsj,jdbcType=TIMESTAMP}, 
+      #{sfxh,jdbcType=CHAR}, #{jczbzlbz,jdbcType=CHAR}, #{jczbzlsj,jdbcType=TIMESTAMP}, 
+      #{xcsdzbzlbz,jdbcType=CHAR}, #{xcsdzbzlsj,jdbcType=TIMESTAMP}, #{xcsdzbzlry,jdbcType=VARCHAR}, 
+      #{zbsqsj,jdbcType=TIMESTAMP}, #{fbsqsj,jdbcType=TIMESTAMP}, #{cssqsj,jdbcType=TIMESTAMP}, 
+      #{grabHbhcDate,jdbcType=TIMESTAMP}, #{sfxpt,jdbcType=CHAR}, #{gqzt,jdbcType=VARCHAR}, 
+      #{jgsj,jdbcType=TIMESTAMP}, #{sdtzfp,jdbcType=NVARCHAR}, #{gzjysbsjLrry,jdbcType=NVARCHAR}, 
+      #{jqsbwcsjLrry,jdbcType=NVARCHAR}, #{sddzBgsj,jdbcType=TIMESTAMP}, #{sddzCzsj,jdbcType=TIMESTAMP}, 
+      #{lrwcCzsj,jdbcType=TIMESTAMP}, #{sddzSdsj,jdbcType=TIMESTAMP}, #{shwcSdsj,jdbcType=TIMESTAMP}, 
+      #{sdsdBgsj,jdbcType=TIMESTAMP}, #{sddzHxsj,jdbcType=TIMESTAMP}, #{wchxHxsj,jdbcType=TIMESTAMP}, 
+      #{bgdscsj,jdbcType=TIMESTAMP}, #{xcsdLrsj,jdbcType=TIMESTAMP}, #{xcsd,jdbcType=NVARCHAR}, 
+      #{sfggLlsj,jdbcType=TIMESTAMP}, #{kpcysj,jdbcType=TIMESTAMP}, #{sjkgsjtzgx,jdbcType=VARCHAR}, 
+      #{sfjydjc,jdbcType=NVARCHAR}, #{sfjydjcsj,jdbcType=TIMESTAMP}, #{gxksbsj,jdbcType=TIMESTAMP}, 
+      #{cyzt,jdbcType=VARCHAR}, #{xcsjHz,jdbcType=VARCHAR}, #{xgxcsjHz,jdbcType=VARCHAR}, 
+      #{zdxcsjHz,jdbcType=VARCHAR}, #{wjljHz,jdbcType=VARCHAR}, #{lldhHz,jdbcType=VARCHAR}, 
+      #{sfjydsd,jdbcType=NVARCHAR}, #{sfjydsdsj,jdbcType=TIMESTAMP}, #{yglx,jdbcType=VARCHAR}, 
+      #{sfcyJyz,jdbcType=NVARCHAR}, #{sfxzJyz,jdbcType=NVARCHAR}, #{sfjdJyz,jdbcType=NVARCHAR}, 
+      #{sfjdsjJyz,jdbcType=TIMESTAMP}, #{sfnzJyz,jdbcType=NVARCHAR}, #{xhgqZq,jdbcType=VARCHAR}, 
+      #{xhgqbmZq,jdbcType=VARCHAR}, #{xhgqpymZq,jdbcType=VARCHAR}, #{xhgqjcZq,jdbcType=VARCHAR}, 
+      #{sfcyHzJzxh,jdbcType=VARCHAR}, #{jgycxq,jdbcType=VARCHAR}, #{hzBzcdm,jdbcType=VARCHAR}, 
+      #{hzGydm,jdbcType=VARCHAR}, #{sfhx,jdbcType=VARCHAR}, #{yljtz,jdbcType=VARCHAR}, 
+      #{bqzpsfsd,jdbcType=VARCHAR}, #{lclsyjd,jdbcType=VARCHAR}, #{hzSfscfp,jdbcType=VARCHAR}, 
+      #{tgyxq,jdbcType=TIMESTAMP}, #{cqbz,jdbcType=NVARCHAR}, #{bzcmc,jdbcType=VARCHAR}, 
+      #{gymc,jdbcType=VARCHAR}, #{lkmc,jdbcType=VARCHAR}, #{sjhwfxsj,jdbcType=TIMESTAMP}, 
+      #{hdwlFh,jdbcType=NVARCHAR}, #{hdwlZg,jdbcType=NVARCHAR}, #{hdwlXg,jdbcType=NVARCHAR}, 
+      #{hdwlJhd,jdbcType=NVARCHAR}, #{hdwlJzxpz,jdbcType=DECIMAL}, #{ydbl,jdbcType=VARCHAR}, 
+      #{anyfk,jdbcType=VARCHAR}, #{tdsfdd,jdbcType=VARCHAR}, #{fsdz,jdbcType=VARCHAR}, 
+      #{ppmc,jdbcType=VARCHAR}, #{sfhyxqd,jdbcType=VARCHAR}, #{hyxqdtgsj,jdbcType=TIMESTAMP}, 
+      #{hyxqdqr,jdbcType=VARCHAR}, #{hyxqdqrsj,jdbcType=TIMESTAMP}, #{kygclx,jdbcType=VARCHAR}, 
+      #{kygcgh,jdbcType=VARCHAR}, #{yhzt,jdbcType=VARCHAR}, #{yhsj,jdbcType=TIMESTAMP}, 
+      #{kcsj,jdbcType=TIMESTAMP}, #{scyjkgsj,jdbcType=TIMESTAMP}, #{jyjyzscxm,jdbcType=NVARCHAR}, 
+      #{jyjyzscxmjssj,jdbcType=VARCHAR}, #{gsdjqr,jdbcType=VARCHAR}, #{zdjgqr,jdbcType=VARCHAR}, 
+      #{sfbc,jdbcType=CHAR}, #{hxbeizhu,jdbcType=NVARCHAR}, #{jzhjgwq,jdbcType=TIMESTAMP}, 
+      #{bgdhsj,jdbcType=TIMESTAMP}, #{bgdyczt,jdbcType=VARCHAR}, #{sbsxyczt,jdbcType=VARCHAR}, 
+      #{zdrbm,jdbcType=VARCHAR}, #{zdrbmmc,jdbcType=VARCHAR}, #{zbjcqk,jdbcType=VARCHAR}, 
+      #{zbsdqk,jdbcType=VARCHAR}, #{jysjzsscscsj,jdbcType=TIMESTAMP}, #{sfjjlx,jdbcType=CHAR}, 
+      #{sqkp,jdbcType=CHAR}, #{jyzSzGzr,jdbcType=INTEGER}, #{jyzSzSfyc,jdbcType=CHAR}, 
+      #{mnsdsqzt,jdbcType=VARCHAR}, #{sdtzfpsj,jdbcType=TIMESTAMP}, #{rpaXrsj,jdbcType=TIMESTAMP}
+      )
+  </insert>
+  <insert id="insertSelective" parameterType="com.freshport.entity.YwHddz">
+    insert into yw_hddz
+    <trim prefix="(" suffix=")" suffixOverrides=",">
+      <if test="ywbh != null">
+        ywbh,
+      </if>
+      <if test="zbr != null">
+        zbr,
+      </if>
+      <if test="zbrq != null">
+        zbrq,
+      </if>
+      <if test="dlwtf != null">
+        dlwtf,
+      </if>
+      <if test="hth != null">
+        hth,
+      </if>
+      <if test="dlxyh != null">
+        dlxyh,
+      </if>
+      <if test="zydl != null">
+        zydl,
+      </if>
+      <if test="hdgsbm != null">
+        hdgsbm,
+      </if>
+      <if test="hdgsmc != null">
+        hdgsmc,
+      </if>
+      <if test="hdgsjc != null">
+        hdgsjc,
+      </if>
+      <if test="hdgspym != null">
+        hdgspym,
+      </if>
+      <if test="bggsbm != null">
+        bggsbm,
+      </if>
+      <if test="bggsmc != null">
+        bggsmc,
+      </if>
+      <if test="bggsjc != null">
+        bggsjc,
+      </if>
+      <if test="bggspym != null">
+        bggspym,
+      </if>
+      <if test="bjgsbm != null">
+        bjgsbm,
+      </if>
+      <if test="bjgsmc != null">
+        bjgsmc,
+      </if>
+      <if test="bjgsjc != null">
+        bjgsjc,
+      </if>
+      <if test="bjgspym != null">
+        bjgspym,
+      </if>
+      <if test="bjgssjjgdm != null">
+        bjgssjjgdm,
+      </if>
+      <if test="khbm != null">
+        khbm,
+      </if>
+      <if test="khmc != null">
+        khmc,
+      </if>
+      <if test="khjc != null">
+        khjc,
+      </if>
+      <if test="khpym != null">
+        khpym,
+      </if>
+      <if test="shdwbm != null">
+        shdwbm,
+      </if>
+      <if test="shdwmc != null">
+        shdwmc,
+      </if>
+      <if test="shdwjc != null">
+        shdwjc,
+      </if>
+      <if test="shdwpym != null">
+        shdwpym,
+      </if>
+      <if test="jydwbm != null">
+        jydwbm,
+      </if>
+      <if test="jydwmc != null">
+        jydwmc,
+      </if>
+      <if test="jydwjc != null">
+        jydwjc,
+      </if>
+      <if test="jydwpym != null">
+        jydwpym,
+      </if>
+      <if test="jydwsjjgdm != null">
+        jydwsjjgdm,
+      </if>
+      <if test="gwgysbm != null">
+        gwgysbm,
+      </if>
+      <if test="gwgysmc != null">
+        gwgysmc,
+      </if>
+      <if test="gwgysjc != null">
+        gwgysjc,
+      </if>
+      <if test="gwgyspym != null">
+        gwgyspym,
+      </if>
+      <if test="zjsbm != null">
+        zjsbm,
+      </if>
+      <if test="zjsmc != null">
+        zjsmc,
+      </if>
+      <if test="zjsjc != null">
+        zjsjc,
+      </if>
+      <if test="zjspym != null">
+        zjspym,
+      </if>
+      <if test="gwhdbm != null">
+        gwhdbm,
+      </if>
+      <if test="gwhdmc != null">
+        gwhdmc,
+      </if>
+      <if test="gwhdjc != null">
+        gwhdjc,
+      </if>
+      <if test="gwhdpym != null">
+        gwhdpym,
+      </if>
+      <if test="tzrbm != null">
+        tzrbm,
+      </if>
+      <if test="tzrmc != null">
+        tzrmc,
+      </if>
+      <if test="tzrjc != null">
+        tzrjc,
+      </if>
+      <if test="tzrpym != null">
+        tzrpym,
+      </if>
+      <if test="ysfs != null">
+        ysfs,
+      </if>
+      <if test="tdlx != null">
+        tdlx,
+      </if>
+      <if test="cyrbm != null">
+        cyrbm,
+      </if>
+      <if test="cyr != null">
+        cyr,
+      </if>
+      <if test="cyrjc != null">
+        cyrjc,
+      </if>
+      <if test="cyrpym != null">
+        cyrpym,
+      </if>
+      <if test="cdgsbm != null">
+        cdgsbm,
+      </if>
+      <if test="cdgs != null">
+        cdgs,
+      </if>
+      <if test="cdgsjc != null">
+        cdgsjc,
+      </if>
+      <if test="cdgspym != null">
+        cdgspym,
+      </if>
+      <if test="cm != null">
+        cm,
+      </if>
+      <if test="hcorhbh != null">
+        hcorhbh,
+      </if>
+      <if test="hcorhbhZq != null">
+        hcorhbh_zq,
+      </if>
+      <if test="sfzy != null">
+        sfzy,
+      </if>
+      <if test="zzCm != null">
+        zz_cm,
+      </if>
+      <if test="zzHcorhbh != null">
+        zz_hcorhbh,
+      </if>
+      <if test="zzgk != null">
+        zzgk,
+      </if>
+      <if test="ztdh != null">
+        ztdh,
+      </if>
+      <if test="sfshytd != null">
+        sfshytd,
+      </if>
+      <if test="ftdh != null">
+        ftdh,
+      </if>
+      <if test="hygsbm != null">
+        hygsbm,
+      </if>
+      <if test="hygsmc != null">
+        hygsmc,
+      </if>
+      <if test="hygsjc != null">
+        hygsjc,
+      </if>
+      <if test="hygspym != null">
+        hygspym,
+      </if>
+      <if test="hdhdgs != null">
+        hdhdgs,
+      </if>
+      <if test="qyg != null">
+        qyg,
+      </if>
+      <if test="qygdm != null">
+        qygdm,
+      </if>
+      <if test="qygsjgkdm != null">
+        qygsjgkdm,
+      </if>
+      <if test="mdg != null">
+        mdg,
+      </if>
+      <if test="xhgqbm != null">
+        xhgqbm,
+      </if>
+      <if test="xhgq != null">
+        xhgq,
+      </if>
+      <if test="xhgqjc != null">
+        xhgqjc,
+      </if>
+      <if test="xhgqpym != null">
+        xhgqpym,
+      </if>
+      <if test="yjkgsj != null">
+        yjkgsj,
+      </if>
+      <if test="sjkgsj != null">
+        sjkgsj,
+      </if>
+      <if test="sfxyechd != null">
+        sfxyechd,
+      </if>
+      <if test="ycd != null">
+        ycd,
+      </if>
+      <if test="ycddm != null">
+        ycddm,
+      </if>
+      <if test="ejycd != null">
+        ejycd,
+      </if>
+      <if test="mxq != null">
+        mxq,
+      </if>
+      <if test="jgfs != null">
+        jgfs,
+      </if>
+      <if test="wbbb != null">
+        wbbb,
+      </if>
+      <if test="zje != null">
+        zje,
+      </if>
+      <if test="zmyhl != null">
+        zmyhl,
+      </if>
+      <if test="zmyje != null">
+        zmyje,
+      </if>
+      <if test="sfyyf != null">
+        sfyyf,
+      </if>
+      <if test="yfje != null">
+        yfje,
+      </if>
+      <if test="yfbb != null">
+        yfbb,
+      </if>
+      <if test="sdyffpsj != null">
+        sdyffpsj,
+      </if>
+      <if test="khorhd != null">
+        khorhd,
+      </if>
+      <if test="yfcdrbm != null">
+        yfcdrbm,
+      </if>
+      <if test="yfcdr != null">
+        yfcdr,
+      </if>
+      <if test="yfcdrjc != null">
+        yfcdrjc,
+      </if>
+      <if test="yfcdrpym != null">
+        yfcdrpym,
+      </if>
+      <if test="kddh != null">
+        kddh,
+      </if>
+      <if test="sdsdsj != null">
+        sdsdsj,
+      </if>
+      <if test="yfzfqrsj != null">
+        yfzfqrsj,
+      </if>
+      <if test="yfbz != null">
+        yfbz,
+      </if>
+      <if test="gkhfpsj != null">
+        gkhfpsj,
+      </if>
+      <if test="yfzfjg != null">
+        yfzfjg,
+      </if>
+      <if test="state != null">
+        state,
+      </if>
+      <if test="beizhu != null">
+        beizhu,
+      </if>
+      <if test="kyhdsj != null">
+        kyhdsj,
+      </if>
+      <if test="sjhdsj != null">
+        sjhdsj,
+      </if>
+      <if test="hdbz != null">
+        hdbz,
+      </if>
+      <if test="xtdh != null">
+        xtdh,
+      </if>
+      <if test="gs != null">
+        gs,
+      </if>
+      <if test="zzs != null">
+        zzs,
+      </if>
+      <if test="bzj != null">
+        bzj,
+      </if>
+      <if test="sjzfrq != null">
+        sjzfrq,
+      </if>
+      <if test="gsBj != null">
+        gs_bj,
+      </if>
+      <if test="zzsBj != null">
+        zzs_bj,
+      </if>
+      <if test="bzjBj != null">
+        bzj_bj,
+      </if>
+      <if test="sjzfrqBj != null">
+        sjzfrq_bj,
+      </if>
+      <if test="bzjzfrbm != null">
+        bzjzfrbm,
+      </if>
+      <if test="bzjzfr != null">
+        bzjzfr,
+      </if>
+      <if test="bzjzfrjc != null">
+        bzjzfrjc,
+      </if>
+      <if test="bzjzfrpym != null">
+        bzjzfrpym,
+      </if>
+      <if test="bzjsj != null">
+        bzjsj,
+      </if>
+      <if test="bzjje != null">
+        bzjje,
+      </if>
+      <if test="bzjdjh != null">
+        bzjdjh,
+      </if>
+      <if test="bzjjzsj != null">
+        bzjjzsj,
+      </if>
+      <if test="bzjymxz != null">
+        bzjymxz,
+      </if>
+      <if test="bzjym != null">
+        bzjym,
+      </if>
+      <if test="stbrysj != null">
+        stbrysj,
+      </if>
+      <if test="shgsj != null">
+        shgsj,
+      </if>
+      <if test="hgclsj != null">
+        hgclsj,
+      </if>
+      <if test="tbzj != null">
+        tbzj,
+      </if>
+      <if test="zzzs != null">
+        zzzs,
+      </if>
+      <if test="zgs != null">
+        zgs,
+      </if>
+      <if test="hghdjg != null">
+        hghdjg,
+      </if>
+      <if test="tkdzsj != null">
+        tkdzsj,
+      </if>
+      <if test="wsbjsj != null">
+        wsbjsj,
+      </if>
+      <if test="bjh != null">
+        bjh,
+      </if>
+      <if test="bjsj != null">
+        bjsj,
+      </if>
+      <if test="cktgsj != null">
+        cktgsj,
+      </if>
+      <if test="tgdh != null">
+        tgdh,
+      </if>
+      <if test="wzhfxsj != null">
+        wzhfxsj,
+      </if>
+      <if test="bgdh != null">
+        bgdh,
+      </if>
+      <if test="bgsj != null">
+        bgsj,
+      </if>
+      <if test="bghgbm != null">
+        bghgbm,
+      </if>
+      <if test="bghg != null">
+        bghg,
+      </if>
+      <if test="bghgjc != null">
+        bghgjc,
+      </if>
+      <if test="bghgpym != null">
+        bghgpym,
+      </if>
+      <if test="jyjbm != null">
+        jyjbm,
+      </if>
+      <if test="jyjmc != null">
+        jyjmc,
+      </if>
+      <if test="jyjjc != null">
+        jyjjc,
+      </if>
+      <if test="jyjpym != null">
+        jyjpym,
+      </if>
+      <if test="jyjsjjgdm != null">
+        jyjsjjgdm,
+      </if>
+      <if test="sfcy != null">
+        sfcy,
+      </if>
+      <if test="cydbm != null">
+        cydbm,
+      </if>
+      <if test="cyd != null">
+        cyd,
+      </if>
+      <if test="cydjc != null">
+        cydjc,
+      </if>
+      <if test="cydpym != null">
+        cydpym,
+      </if>
+      <if test="yjcysj != null">
+        yjcysj,
+      </if>
+      <if test="sjcysj != null">
+        sjcysj,
+      </if>
+      <if test="cybz != null">
+        cybz,
+      </if>
+      <if test="hgfxsj != null">
+        hgfxsj,
+      </if>
+      <if test="hgfxsjSrsj != null">
+        hgfxsj_srsj,
+      </if>
+      <if test="kgbz != null">
+        kgbz,
+      </if>
+      <if test="fph != null">
+        fph,
+      </if>
+      <if test="sjzfkhlx != null">
+        sjzfkhlx,
+      </if>
+      <if test="sjzfkhbm != null">
+        sjzfkhbm,
+      </if>
+      <if test="sjzfkhmc != null">
+        sjzfkhmc,
+      </if>
+      <if test="sjzfkhjc != null">
+        sjzfkhjc,
+      </if>
+      <if test="sjzfkhpym != null">
+        sjzfkhpym,
+      </if>
+      <if test="zbj != null">
+        zbj,
+      </if>
+      <if test="sjbz != null">
+        sjbz,
+      </if>
+      <if test="jybz != null">
+        jybz,
+      </if>
+      <if test="jydbm != null">
+        jydbm,
+      </if>
+      <if test="jyd != null">
+        jyd,
+      </if>
+      <if test="jydjc != null">
+        jydjc,
+      </if>
+      <if test="jydpym != null">
+        jydpym,
+      </if>
+      <if test="hdsj != null">
+        hdsj,
+      </if>
+      <if test="bgbz != null">
+        bgbz,
+      </if>
+      <if test="hgfxfs != null">
+        hgfxfs,
+      </if>
+      <if test="hgtgwt != null">
+        hgtgwt,
+      </if>
+      <if test="hzJzxh != null">
+        hz_jzxh,
+      </if>
+      <if test="hzSpmc != null">
+        hz_spmc,
+      </if>
+      <if test="sdsdrq != null">
+        sdsdrq,
+      </if>
+      <if test="sdkhqzrq != null">
+        sdkhqzrq,
+      </if>
+      <if test="sdbz != null">
+        sdbz,
+      </if>
+      <if test="sdkddh != null">
+        sdkddh,
+      </if>
+      <if test="bzjbz != null">
+        bzjbz,
+      </if>
+      <if test="fxbz != null">
+        fxbz,
+      </if>
+      <if test="clfs != null">
+        clfs,
+      </if>
+      <if test="beizhuXgrq != null">
+        beizhu_xgrq,
+      </if>
+      <if test="hzSl != null">
+        hz_sl,
+      </if>
+      <if test="mtdm != null">
+        mtdm,
+      </if>
+      <if test="sfqycdz != null">
+        sfqycdz,
+      </if>
+      <if test="lzsj != null">
+        lzsj,
+      </if>
+      <if test="ycdzsh != null">
+        ycdzsh,
+      </if>
+      <if test="khmxq != null">
+        khmxq,
+      </if>
+      <if test="invoiceno != null">
+        invoiceno,
+      </if>
+      <if test="invoiceDate != null">
+        invoice_date,
+      </if>
+      <if test="sfsdhdzl != null">
+        sfsdhdzl,
+      </if>
+      <if test="sfhd != null">
+        sfhd,
+      </if>
+      <if test="sfytzcgskp != null">
+        sfytzcgskp,
+      </if>
+      <if test="tzcgskpsj != null">
+        tzcgskpsj,
+      </if>
+      <if test="sfyfyzf != null">
+        sfyfyzf,
+      </if>
+      <if test="sfyzbg != null">
+        sfyzbg,
+      </if>
+      <if test="cmZw != null">
+        cm_zw,
+      </if>
+      <if test="sfsdsd != null">
+        sfsdsd,
+      </if>
+      <if test="jsdwbm != null">
+        jsdwbm,
+      </if>
+      <if test="jsdwmc != null">
+        jsdwmc,
+      </if>
+      <if test="jsdwjc != null">
+        jsdwjc,
+      </if>
+      <if test="jsdwpym != null">
+        jsdwpym,
+      </if>
+      <if test="xtdlx != null">
+        xtdlx,
+      </if>
+      <if test="hgclbh != null">
+        hgclbh,
+      </if>
+      <if test="hdzljcsj != null">
+        hdzljcsj,
+      </if>
+      <if test="jcgzry != null">
+        jcgzry,
+      </if>
+      <if test="hdzljcbz != null">
+        hdzljcbz,
+      </if>
+      <if test="bgsxtdsj != null">
+        bgsxtdsj,
+      </if>
+      <if test="bgscxtdsj != null">
+        bgscxtdsj,
+      </if>
+      <if test="thhtjhsj != null">
+        thhtjhsj,
+      </if>
+      <if test="jjcd != null">
+        jjcd,
+      </if>
+      <if test="tcts != null">
+        tcts,
+      </if>
+      <if test="zthsq != null">
+        zthsq,
+      </if>
+      <if test="yjlgsj != null">
+        yjlgsj,
+      </if>
+      <if test="zthsqsj != null">
+        zthsqsj,
+      </if>
+      <if test="ytjkzt != null">
+        ytjkzt,
+      </if>
+      <if test="dzlx != null">
+        dzlx,
+      </if>
+      <if test="jydwdm != null">
+        jydwdm,
+      </if>
+      <if test="hzdwdqdm != null">
+        hzdwdqdm,
+      </if>
+      <if test="shdwdm != null">
+        shdwdm,
+      </if>
+      <if test="sbdwdm != null">
+        sbdwdm,
+      </if>
+      <if test="jcka != null">
+        jcka,
+      </if>
+      <if test="myfs != null">
+        myfs,
+      </if>
+      <if test="zmfs != null">
+        zmfs,
+      </if>
+      <if test="yfbj != null">
+        yfbj,
+      </if>
+      <if test="bxfbj != null">
+        bxfbj,
+      </if>
+      <if test="bxfbb != null">
+        bxfbb,
+      </if>
+      <if test="bxfje != null">
+        bxfje,
+      </if>
+      <if test="zxs != null">
+        zxs,
+      </if>
+      <if test="zmz != null">
+        zmz,
+      </if>
+      <if test="zjz != null">
+        zjz,
+      </if>
+      <if test="bzzl != null">
+        bzzl,
+      </if>
+      <if test="jckbz != null">
+        jckbz,
+      </if>
+      <if test="ytbz != null">
+        ytbz,
+      </if>
+      <if test="qiyunguo != null">
+        qiyunguo,
+      </if>
+      <if test="qiyunguodm != null">
+        qiyunguodm,
+      </if>
+      <if test="htd != null">
+        htd,
+      </if>
+      <if test="htdRq != null">
+        htd_rq,
+      </if>
+      <if test="sfqrbzlx != null">
+        sfqrbzlx,
+      </if>
+      <if test="ytjkwjbh != null">
+        ytjkwjbh,
+      </if>
+      <if test="ytjkfssj != null">
+        ytjkfssj,
+      </if>
+      <if test="ytjkfscs != null">
+        ytjkfscs,
+      </if>
+      <if test="ep15212 != null">
+        EP15212,
+      </if>
+      <if test="ep14515 != null">
+        EP14515,
+      </if>
+      <if test="ep14516 != null">
+        EP14516,
+      </if>
+      <if test="ep14514 != null">
+        EP14514,
+      </if>
+      <if test="ytzt != null">
+        ytzt,
+      </if>
+      <if test="ytsjfszt != null">
+        ytsjfszt,
+      </if>
+      <if test="sfkydqsjjk != null">
+        sfkydqsjjk,
+      </if>
+      <if test="bjgslxr != null">
+        bjgslxr,
+      </if>
+      <if test="bjgslxdh != null">
+        bjgslxdh,
+      </if>
+      <if test="bjydm != null">
+        bjydm,
+      </if>
+      <if test="qyxz != null">
+        qyxz,
+      </if>
+      <if test="sfwstzcc != null">
+        sfwstzcc,
+      </if>
+      <if test="tstk != null">
+        tstk,
+      </if>
+      <if test="hwcfd != null">
+        hwcfd,
+      </if>
+      <if test="yt != null">
+        yt,
+      </if>
+      <if test="spts != null">
+        spts,
+      </if>
+      <if test="zsbh != null">
+        zsbh,
+      </if>
+      <if test="zsmc != null">
+        zsmc,
+      </if>
+      <if test="bjlb != null">
+        bjlb,
+      </if>
+      <if test="mt != null">
+        mt,
+      </if>
+      <if test="ysgj != null">
+        ysgj,
+      </if>
+      <if test="sfdj != null">
+        sfdj,
+      </if>
+      <if test="sfdjbm != null">
+        sfdjbm,
+      </if>
+      <if test="rjka != null">
+        rjka,
+      </if>
+      <if test="rjmdd != null">
+        rjmdd,
+      </if>
+      <if test="dfcyf != null">
+        dfcyf,
+      </if>
+      <if test="dfcbxf != null">
+        dfcbxf,
+      </if>
+      <if test="sffsrjsj != null">
+        sffsrjsj,
+      </if>
+      <if test="rjjkfssj != null">
+        rjjkfssj,
+      </if>
+      <if test="rjjkfscs != null">
+        rjjkfscs,
+      </if>
+      <if test="bzjsqly != null">
+        bzjsqly,
+      </if>
+      <if test="clqy != null">
+        clqy,
+      </if>
+      <if test="sdlqr != null">
+        sdlqr,
+      </if>
+      <if test="sdlqsj != null">
+        sdlqsj,
+      </if>
+      <if test="sddzsj != null">
+        sddzsj,
+      </if>
+      <if test="sdh != null">
+        sdh,
+      </if>
+      <if test="ktgs != null">
+        ktgs,
+      </if>
+      <if test="ktzzs != null">
+        ktzzs,
+      </if>
+      <if test="yzbh != null">
+        yzbh,
+      </if>
+      <if test="skdbtzspdQt != null">
+        skdbtzspd_qt,
+      </if>
+      <if test="skdbtzspdTzsy != null">
+        skdbtzspd_tzsy,
+      </if>
+      <if test="bzjKhsksj != null">
+        bzj_khsksj,
+      </if>
+      <if test="sjKhsksj != null">
+        sj_khsksj,
+      </if>
+      <if test="sftk != null">
+        sftk,
+      </if>
+      <if test="zcrq != null">
+        zcrq,
+      </if>
+      <if test="sfyfh != null">
+        sfyfh,
+      </if>
+      <if test="fh != null">
+        fh,
+      </if>
+      <if test="hzHgbm != null">
+        hz_hgbm,
+      </if>
+      <if test="hzPz != null">
+        hz_pz,
+      </if>
+      <if test="hzSpywmc != null">
+        hz_spywmc,
+      </if>
+      <if test="hzSjshr != null">
+        hz_sjshr,
+      </if>
+      <if test="hzSjshrgs != null">
+        hz_sjshrgs,
+      </if>
+      <if test="zgggbz != null">
+        zgggbz,
+      </if>
+      <if test="dmbz != null">
+        dmbz,
+      </if>
+      <if test="yfbzDz != null">
+        yfbz_dz,
+      </if>
+      <if test="yflrbh != null">
+        yflrbh,
+      </if>
+      <if test="jzxsl != null">
+        jzxsl,
+      </if>
+      <if test="hzTpsl != null">
+        hz_tpsl,
+      </if>
+      <if test="hzSzsl != null">
+        hz_szsl,
+      </if>
+      <if test="hzZhlx != null">
+        hz_zhlx,
+      </if>
+      <if test="hzXx != null">
+        hz_xx,
+      </if>
+      <if test="sjzqCm != null">
+        sjzq_cm,
+      </if>
+      <if test="sjzqHc != null">
+        sjzq_hc,
+      </if>
+      <if test="sjzqJs != null">
+        sjzq_js,
+      </if>
+      <if test="sjzqZl != null">
+        sjzq_zl,
+      </if>
+      <if test="sgzqDyxx != null">
+        sgzq_dyxx,
+      </if>
+      <if test="sjzqJkdgqrbz != null">
+        sjzq_jkdgqrbz,
+      </if>
+      <if test="sjzqLhzt != null">
+        sjzq_lhzt,
+      </if>
+      <if test="sjzqCkdyzt != null">
+        sjzq_ckdyzt,
+      </if>
+      <if test="sjzqZqcdsj != null">
+        sjzq_zqcdsj,
+      </if>
+      <if test="sjzqZqdgsj != null">
+        sjzq_zqdgsj,
+      </if>
+      <if test="sjzqZqlhsj != null">
+        sjzq_zqlhsj,
+      </if>
+      <if test="sdry != null">
+        sdry,
+      </if>
+      <if test="yfqr != null">
+        yfqr,
+      </if>
+      <if test="dqdm != null">
+        dqdm,
+      </if>
+      <if test="ctrArea2 != null">
+        ctr_area2,
+      </if>
+      <if test="tycj != null">
+        tycj,
+      </if>
+      <if test="hzBzsl != null">
+        hz_bzsl,
+      </if>
+      <if test="pjlx != null">
+        pjlx,
+      </if>
+      <if test="pjkhthsj != null">
+        pjkhthsj,
+      </if>
+      <if test="sddybh != null">
+        sddybh,
+      </if>
+      <if test="cdxxycyy != null">
+        cdxxycyy,
+      </if>
+      <if test="mygb != null">
+        mygb,
+      </if>
+      <if test="yjtsbm != null">
+        yjtsbm,
+      </if>
+      <if test="suppliersellid != null">
+        SupplierSellID,
+      </if>
+      <if test="ocrid != null">
+        OcrID,
+      </if>
+      <if test="wzhjdsj != null">
+        wzhjdsj,
+      </if>
+      <if test="gjsbzt != null">
+        gjsbzt,
+      </if>
+      <if test="sfjy != null">
+        sfjy,
+      </if>
+      <if test="hgfxsjZqsj != null">
+        hgfxsj_zqsj,
+      </if>
+      <if test="ohxtClbz != null">
+        ohxt_clbz,
+      </if>
+      <if test="ohxtClsj != null">
+        ohxt_clsj,
+      </if>
+      <if test="bghbjxgbz != null">
+        bghbjxgbz,
+      </if>
+      <if test="fxfsqrbz != null">
+        fxfsqrbz,
+      </if>
+      <if test="qrdf != null">
+        qrdf,
+      </if>
+      <if test="sfbhbj != null">
+        sfbhbj,
+      </if>
+      <if test="sfxb != null">
+        sfxb,
+      </if>
+      <if test="sjxgbz != null">
+        sjxgbz,
+      </if>
+      <if test="rgzqDyxx != null">
+        rgzq_dyxx,
+      </if>
+      <if test="qrdfsj != null">
+        qrdfsj,
+      </if>
+      <if test="bhbjsj != null">
+        bhbjsj,
+      </if>
+      <if test="sjzqCdrgzqbz != null">
+        sjzq_cdrgzqbz,
+      </if>
+      <if test="sfzbzj != null">
+        sfzbzj,
+      </if>
+      <if test="zbzjsj != null">
+        zbzjsj,
+      </if>
+      <if test="scsxgbz != null">
+        scsxgbz,
+      </if>
+      <if test="yjhdsj != null">
+        yjhdsj,
+      </if>
+      <if test="yjhdsjSr != null">
+        yjhdsj_sr,
+      </if>
+      <if test="sfyzcf != null">
+        sfyzcf,
+      </if>
+      <if test="yghgfxsj != null">
+        yghgfxsj,
+      </if>
+      <if test="jsbz != null">
+        jsbz,
+      </if>
+      <if test="bzjsjh != null">
+        bzjsjh,
+      </if>
+      <if test="qyrq != null">
+        qyrq,
+      </if>
+      <if test="yjkgsjsrsj != null">
+        yjkgsjsrsj,
+      </if>
+      <if test="yjbl != null">
+        yjbl,
+      </if>
+      <if test="yj != null">
+        yj,
+      </if>
+      <if test="zcqr != null">
+        zcqr,
+      </if>
+      <if test="dsdyfzf != null">
+        dsdyfzf,
+      </if>
+      <if test="dsdyfyzf != null">
+        dsdyfyzf,
+      </if>
+      <if test="js != null">
+        js,
+      </if>
+      <if test="hzjs != null">
+        hzjs,
+      </if>
+      <if test="jgtkqr != null">
+        jgtkqr,
+      </if>
+      <if test="bgdwjmc != null">
+        bgdwjmc,
+      </if>
+      <if test="gwgysTymc != null">
+        gwgys_tymc,
+      </if>
+      <if test="jyjyzs != null">
+        jyjyzs,
+      </if>
+      <if test="wjgd != null">
+        wjgd,
+      </if>
+      <if test="sfyjyjyzs != null">
+        sfyjyjyzs,
+      </if>
+      <if test="sfysd != null">
+        sfysd,
+      </if>
+      <if test="sfygdwj != null">
+        sfygdwj,
+      </if>
+      <if test="dztxts != null">
+        dztxts,
+      </if>
+      <if test="tdzt != null">
+        tdzt,
+      </if>
+      <if test="sdtgfs != null">
+        sdtgfs,
+      </if>
+      <if test="zdzfs != null">
+        zdzfs,
+      </if>
+      <if test="ohdlxy != null">
+        ohdlxy,
+      </if>
+      <if test="zzrq != null">
+        zzrq,
+      </if>
+      <if test="dzqk != null">
+        dzqk,
+      </if>
+      <if test="fkfs != null">
+        fkfs,
+      </if>
+      <if test="jzxgjzxh != null">
+        jzxgjzxh,
+      </if>
+      <if test="qgld != null">
+        qgld,
+      </if>
+      <if test="jdrbm != null">
+        jdrbm,
+      </if>
+      <if test="jdrmc != null">
+        jdrmc,
+      </if>
+      <if test="jdrjc != null">
+        jdrjc,
+      </if>
+      <if test="jdrpym != null">
+        jdrpym,
+      </if>
+      <if test="tsbz != null">
+        tsbz,
+      </if>
+      <if test="sfsjjyw != null">
+        sfsjjyw,
+      </if>
+      <if test="sfsy != null">
+        sfsy,
+      </if>
+      <if test="bjys != null">
+        bjys,
+      </if>
+      <if test="sjzqMtdm != null">
+        sjzq_mtdm,
+      </if>
+      <if test="sffshb != null">
+        sffshb,
+      </if>
+      <if test="sjkgsjLrsj != null">
+        sjkgsj_lrsj,
+      </if>
+      <if test="sjkgsjCzry != null">
+        sjkgsj_czry,
+      </if>
+      <if test="hgfxsjCzry != null">
+        hgfxsj_czry,
+      </if>
+      <if test="bjhsrry != null">
+        bjhsrry,
+      </if>
+      <if test="bjhsrsj != null">
+        bjhsrsj,
+      </if>
+      <if test="wxgj != null">
+        wxgj,
+      </if>
+      <if test="cypz != null">
+        cypz,
+      </if>
+      <if test="zf != null">
+        zf,
+      </if>
+      <if test="sfpd != null">
+        sfpd,
+      </if>
+      <if test="gwgysdz != null">
+        gwgysdz,
+      </if>
+      <if test="zjsdz != null">
+        zjsdz,
+      </if>
+      <if test="gjczbz != null">
+        gjczbz,
+      </if>
+      <if test="gjczry != null">
+        gjczry,
+      </if>
+      <if test="gjczsj != null">
+        gjczsj,
+      </if>
+      <if test="kylhsj != null">
+        kylhsj,
+      </if>
+      <if test="kylhsjSrry != null">
+        kylhsj_srry,
+      </if>
+      <if test="kylhsjLrsj != null">
+        kylhsj_lrsj,
+      </if>
+      <if test="zbzj != null">
+        zbzj,
+      </if>
+      <if test="ygkthsj != null">
+        ygkthsj,
+      </if>
+      <if test="ygkthsjSjd != null">
+        ygkthsj_sjd,
+      </if>
+      <if test="yjbb != null">
+        yjbb,
+      </if>
+      <if test="sfqgld != null">
+        sfqgld,
+      </if>
+      <if test="xfs != null">
+        xfs,
+      </if>
+      <if test="xccy != null">
+        xccy,
+      </if>
+      <if test="xccyLrry != null">
+        xccy_lrry,
+      </if>
+      <if test="xccyLrsj != null">
+        xccy_lrsj,
+      </if>
+      <if test="rjhwjyjyzm != null">
+        rjhwjyjyzm,
+      </if>
+      <if test="bg != null">
+        bg,
+      </if>
+      <if test="bj != null">
+        bj,
+      </if>
+      <if test="wl != null">
+        wl,
+      </if>
+      <if test="hd != null">
+        hd,
+      </if>
+      <if test="fx != null">
+        fx,
+      </if>
+      <if test="wlgsbm != null">
+        wlgsbm,
+      </if>
+      <if test="wlgsmc != null">
+        wlgsmc,
+      </if>
+      <if test="wlgsjc != null">
+        wlgsjc,
+      </if>
+      <if test="wlgspym != null">
+        wlgspym,
+      </if>
+      <if test="hdrbm != null">
+        hdrbm,
+      </if>
+      <if test="hdrmc != null">
+        hdrmc,
+      </if>
+      <if test="hdrjc != null">
+        hdrjc,
+      </if>
+      <if test="hdrpym != null">
+        hdrpym,
+      </if>
+      <if test="ckdwbm != null">
+        ckdwbm,
+      </if>
+      <if test="ckdwmc != null">
+        ckdwmc,
+      </if>
+      <if test="ckdwjc != null">
+        ckdwjc,
+      </if>
+      <if test="ckdwpym != null">
+        ckdwpym,
+      </if>
+      <if test="yjkgsjLrsj != null">
+        yjkgsj_lrsj,
+      </if>
+      <if test="yjkgsjCzry != null">
+        yjkgsj_czry,
+      </if>
+      <if test="sfjc != null">
+        sfjc,
+      </if>
+      <if test="jclrry != null">
+        jclrry,
+      </if>
+      <if test="jclrsj != null">
+        jclrsj,
+      </if>
+      <if test="yjccfy != null">
+        yjccfy,
+      </if>
+      <if test="sfsq != null">
+        sfsq,
+      </if>
+      <if test="sjccfy != null">
+        sjccfy,
+      </if>
+      <if test="ccfbz != null">
+        ccfbz,
+      </if>
+      <if test="sfcsbj != null">
+        sfcsbj,
+      </if>
+      <if test="sjkbsj != null">
+        sjkbsj,
+      </if>
+      <if test="hbzqsj != null">
+        hbzqsj,
+      </if>
+      <if test="bjyw != null">
+        bjyw,
+      </if>
+      <if test="jhkbsj != null">
+        jhkbsj,
+      </if>
+      <if test="jhkbsjZqsj != null">
+        jhkbsj_zqsj,
+      </if>
+      <if test="sjzqHgfxsj != null">
+        sjzq_hgfxsj,
+      </if>
+      <if test="sjzqZqsj != null">
+        sjzq_zqsj,
+      </if>
+      <if test="zbjyzkdsj != null">
+        zbjyzkdsj,
+      </if>
+      <if test="sdBeizhu != null">
+        sd_beizhu,
+      </if>
+      <if test="jsdwJsbm != null">
+        jsdw_jsbm,
+      </if>
+      <if test="sjzfkhJsbm != null">
+        sjzfkh_jsbm,
+      </if>
+      <if test="gbhYwbh != null">
+        gbh_ywbh,
+      </if>
+      <if test="ysmxcd != null">
+        ysmxcd,
+      </if>
+      <if test="sfqr != null">
+        sfqr,
+      </if>
+      <if test="sftj != null">
+        sftj,
+      </if>
+      <if test="hxzgtgzt != null">
+        hxzgtgzt,
+      </if>
+      <if test="hxzgtgsj != null">
+        hxzgtgsj,
+      </if>
+      <if test="pcyjhsj != null">
+        pcyjhsj,
+      </if>
+      <if test="pcyjhsjTjry != null">
+        pcyjhsj_tjry,
+      </if>
+      <if test="pcyjhsjTjsj != null">
+        pcyjhsj_tjsj,
+      </if>
+      <if test="mxqLrry != null">
+        mxq_lrry,
+      </if>
+      <if test="mxqLrsj != null">
+        mxq_lrsj,
+      </if>
+      <if test="mcq != null">
+        mcq,
+      </if>
+      <if test="ep25461 != null">
+        EP25461,
+      </if>
+      <if test="sfbhbjLrry != null">
+        sfbhbj_lrry,
+      </if>
+      <if test="sfbhbjLrrq != null">
+        sfbhbj_lrrq,
+      </if>
+      <if test="sfzbzjLrry != null">
+        sfzbzj_lrry,
+      </if>
+      <if test="sfzbzjLrrq != null">
+        sfzbzj_lrrq,
+      </if>
+      <if test="sfcsbjLrry != null">
+        sfcsbj_lrry,
+      </if>
+      <if test="sfcsbjLrrq != null">
+        sfcsbj_lrrq,
+      </if>
+      <if test="gwgysdm != null">
+        gwgysdm,
+      </if>
+      <if test="zjsdm != null">
+        zjsdm,
+      </if>
+      <if test="mxqrq != null">
+        mxqrq,
+      </if>
+      <if test="jyjysljg != null">
+        jyjysljg,
+      </if>
+      <if test="kajyjyjg != null">
+        kajyjyjg,
+      </if>
+      <if test="mddjyjyjg != null">
+        mddjyjyjg,
+      </if>
+      <if test="lzjg != null">
+        lzjg,
+      </if>
+      <if test="yjzxbs != null">
+        yjzxbs,
+      </if>
+      <if test="sfyzbsd != null">
+        sfyzbsd,
+      </if>
+      <if test="xc2ccy != null">
+        xc2ccy,
+      </if>
+      <if test="xc2ccyLrry != null">
+        xc2ccy_lrry,
+      </if>
+      <if test="xc2ccyLrrq != null">
+        xc2ccy_lrrq,
+      </if>
+      <if test="hgCdrq != null">
+        hg_cdrq,
+      </if>
+      <if test="hgDgrq != null">
+        hg_dgrq,
+      </if>
+      <if test="mcqRq != null">
+        mcq_rq,
+      </if>
+      <if test="jysbjg != null">
+        jysbjg,
+      </if>
+      <if test="id != null">
+        id,
+      </if>
+      <if test="xskhbm != null">
+        xskhbm,
+      </if>
+      <if test="xskhmc != null">
+        xskhmc,
+      </if>
+      <if test="xskhjc != null">
+        xskhjc,
+      </if>
+      <if test="xskhpym != null">
+        xskhpym,
+      </if>
+      <if test="hzPp != null">
+        hz_pp,
+      </if>
+      <if test="hdzt != null">
+        hdzt,
+      </if>
+      <if test="cdzh != null">
+        cdzh,
+      </if>
+      <if test="zjzh != null">
+        zjzh,
+      </if>
+      <if test="mtxx != null">
+        mtxx,
+      </if>
+      <if test="gx != null">
+        gx,
+      </if>
+      <if test="lldh != null">
+        lldh,
+      </if>
+      <if test="ccrn != null">
+        ccrn,
+      </if>
+      <if test="mjxx != null">
+        mjxx,
+      </if>
+      <if test="tgrq != null">
+        tgrq,
+      </if>
+      <if test="jhrq != null">
+        jhrq,
+      </if>
+      <if test="clxx != null">
+        clxx,
+      </if>
+      <if test="xgcp != null">
+        xgcp,
+      </if>
+      <if test="jhdd != null">
+        jhdd,
+      </if>
+      <if test="jgwq != null">
+        jgwq,
+      </if>
+      <if test="hgdc != null">
+        hgdc,
+      </if>
+      <if test="ggrq != null">
+        ggrq,
+      </if>
+      <if test="qgrq != null">
+        qgrq,
+      </if>
+      <if test="xgjbbm != null">
+        xgjbbm,
+      </if>
+      <if test="xgjb != null">
+        xgjb,
+      </if>
+      <if test="szjbbm != null">
+        szjbbm,
+      </if>
+      <if test="szjb != null">
+        szjb,
+      </if>
+      <if test="tjhm != null">
+        tjhm,
+      </if>
+      <if test="hgtjhm != null">
+        hgtjhm,
+      </if>
+      <if test="hgcp != null">
+        hgcp,
+      </if>
+      <if test="sfcs != null">
+        sfcs,
+      </if>
+      <if test="ysbz != null">
+        ysbz,
+      </if>
+      <if test="hgrq != null">
+        hgrq,
+      </if>
+      <if test="hgdcbm != null">
+        hgdcbm,
+      </if>
+      <if test="ssbm != null">
+        ssbm,
+      </if>
+      <if test="xgccrq != null">
+        xgccrq,
+      </if>
+      <if test="ccfysqlx != null">
+        ccfysqlx,
+      </if>
+      <if test="ep25645 != null">
+        EP25645,
+      </if>
+      <if test="sygq != null">
+        sygq,
+      </if>
+      <if test="sygqjc != null">
+        sygqjc,
+      </if>
+      <if test="sygqbm != null">
+        sygqbm,
+      </if>
+      <if test="sygqpym != null">
+        sygqpym,
+      </if>
+      <if test="gdwz != null">
+        gdwz,
+      </if>
+      <if test="khzlrq != null">
+        khzlrq,
+      </if>
+      <if test="bm != null">
+        bm,
+      </if>
+      <if test="hxzgqrry != null">
+        hxzgqrry,
+      </if>
+      <if test="wxyffp != null">
+        wxyffp,
+      </if>
+      <if test="tqhd != null">
+        tqhd,
+      </if>
+      <if test="ep26040 != null">
+        EP26040,
+      </if>
+      <if test="ep25894 != null">
+        EP25894,
+      </if>
+      <if test="ldwc != null">
+        ldwc,
+      </if>
+      <if test="sjclbz != null">
+        sjclbz,
+      </if>
+      <if test="hbJhkbsj != null">
+        hb_jhkbsj,
+      </if>
+      <if test="hbSjkbsj != null">
+        hb_sjkbsj,
+      </if>
+      <if test="hbMt != null">
+        hb_mt,
+      </if>
+      <if test="hbCdljc != null">
+        hb_cdljc,
+      </if>
+      <if test="hkly != null">
+        hkly,
+      </if>
+      <if test="zrpd2 != null">
+        zrpd2,
+      </if>
+      <if test="zrpd3 != null">
+        zrpd3,
+      </if>
+      <if test="zrpd != null">
+        zrpd,
+      </if>
+      <if test="jwgysbm != null">
+        jwgysbm,
+      </if>
+      <if test="jwgysmc != null">
+        jwgysmc,
+      </if>
+      <if test="jwgysmcYw != null">
+        jwgysmc_yw,
+      </if>
+      <if test="jwgysdz != null">
+        jwgysdz,
+      </if>
+      <if test="sfjnsj != null">
+        sfjnsj,
+      </if>
+      <if test="hbCm != null">
+        hb_cm,
+      </if>
+      <if test="hbHc != null">
+        hb_hc,
+      </if>
+      <if test="sfsz != null">
+        sfsz,
+      </if>
+      <if test="szsj != null">
+        szsj,
+      </if>
+      <if test="szry != null">
+        szry,
+      </if>
+      <if test="yssdcsj != null">
+        yssdcsj,
+      </if>
+      <if test="glcdyfs != null">
+        glcdyfs,
+      </if>
+      <if test="dyckBgdZt != null">
+        dyck_bgd_zt,
+      </if>
+      <if test="dyckSeqno != null">
+        dyck_seqno,
+      </if>
+      <if test="sfdztd != null">
+        sfdztd,
+      </if>
+      <if test="swfxsj != null">
+        swfxsj,
+      </if>
+      <if test="sftb != null">
+        sftb,
+      </if>
+      <if test="dzsqqr != null">
+        dzsqqr,
+      </if>
+      <if test="yjtgrq != null">
+        yjtgrq,
+      </if>
+      <if test="jyjysljgmc != null">
+        jyjysljgmc,
+      </if>
+      <if test="kajyjyjgmc != null">
+        kajyjyjgmc,
+      </if>
+      <if test="mddjyjyjgmc != null">
+        mddjyjyjgmc,
+      </if>
+      <if test="lzjgmc != null">
+        lzjgmc,
+      </if>
+      <if test="jckamc != null">
+        jckamc,
+      </if>
+      <if test="dzlxmc != null">
+        dzlxmc,
+      </if>
+      <if test="myfsmc != null">
+        myfsmc,
+      </if>
+      <if test="hzdwdqmc != null">
+        hzdwdqmc,
+      </if>
+      <if test="bzzlmc != null">
+        bzzlmc,
+      </if>
+      <if test="ysgjmc != null">
+        ysgjmc,
+      </if>
+      <if test="rjmddmc != null">
+        rjmddmc,
+      </if>
+      <if test="zmfsmc != null">
+        zmfsmc,
+      </if>
+      <if test="hbCmZqsj != null">
+        hb_cm_zqsj,
+      </if>
+      <if test="sfyjyyhx != null">
+        sfyjyyhx,
+      </if>
+      <if test="sdjyyhxSj != null">
+        sdjyyhx_sj,
+      </if>
+      <if test="jyyhx != null">
+        jyyhx,
+      </if>
+      <if test="sfgg != null">
+        sfgg,
+      </if>
+      <if test="sfjj != null">
+        sfjj,
+      </if>
+      <if test="jjyy != null">
+        jjyy,
+      </if>
+      <if test="dyckSfsj != null">
+        dyck_sfsj,
+      </if>
+      <if test="dyckSjsj != null">
+        dyck_sjsj,
+      </if>
+      <if test="dyckSjry != null">
+        dyck_sjry,
+      </if>
+      <if test="hkjs != null">
+        hkjs,
+      </if>
+      <if test="jjsj != null">
+        jjsj,
+      </if>
+      <if test="sfcyJy != null">
+        sfcy_jy,
+      </if>
+      <if test="cyckmc != null">
+        cyckmc,
+      </if>
+      <if test="cyrksj != null">
+        cyrksj,
+      </if>
+      <if test="cyhgsj != null">
+        cyhgsj,
+      </if>
+      <if test="qdscsj != null">
+        qdscsj,
+      </if>
+      <if test="jyzSzsj != null">
+        jyz_szsj,
+      </if>
+      <if test="cyckbm != null">
+        cyckbm,
+      </if>
+      <if test="jylzsj != null">
+        jylzsj,
+      </if>
+      <if test="jyzjcsj != null">
+        jyzjcsj,
+      </if>
+      <if test="jyzBz != null">
+        jyz_bz,
+      </if>
+      <if test="hzKhmc != null">
+        hz_khmc,
+      </if>
+      <if test="dyckScry != null">
+        dyck_scry,
+      </if>
+      <if test="rwxz != null">
+        rwxz,
+      </if>
+      <if test="ysje != null">
+        ysje,
+      </if>
+      <if test="lyyf != null">
+        lyyf,
+      </if>
+      <if test="cjfsmdf != null">
+        cjfsmdf,
+      </if>
+      <if test="hgjdjd != null">
+        hgjdjd,
+      </if>
+      <if test="hgjdjdsj != null">
+        hgjdjdsj,
+      </if>
+      <if test="sjzqYsgjmc != null">
+        sjzq_ysgjmc,
+      </if>
+      <if test="hgcyfs != null">
+        hgcyfs,
+      </if>
+      <if test="hgjhcyrq != null">
+        hgjhcyrq,
+      </if>
+      <if test="fhed != null">
+        fhed,
+      </if>
+      <if test="zjyw != null">
+        zjyw,
+      </if>
+      <if test="ts != null">
+        ts,
+      </if>
+      <if test="tsUser != null">
+        ts_user,
+      </if>
+      <if test="glcdwc != null">
+        glcdwc,
+      </if>
+      <if test="glcdwcsj != null">
+        glcdwcsj,
+      </if>
+      <if test="sfyyfsj != null">
+        sfyyfsj,
+      </if>
+      <if test="cydlx != null">
+        cydlx,
+      </if>
+      <if test="sffxs != null">
+        sffxs,
+      </if>
+      <if test="znj != null">
+        znj,
+      </if>
+      <if test="bgy != null">
+        bgy,
+      </if>
+      <if test="sfzhg != null">
+        sfzhg,
+      </if>
+      <if test="wlbz != null">
+        wlbz,
+      </if>
+      <if test="dhtzs != null">
+        dhtzs,
+      </if>
+      <if test="anYy != null">
+        AN_yy,
+      </if>
+      <if test="mJxxsfywj != null">
+        M_jxxsfywj,
+      </if>
+      <if test="tsyy != null">
+        tsyy,
+      </if>
+      <if test="tsjd != null">
+        tsjd,
+      </if>
+      <if test="sblx != null">
+        sblx,
+      </if>
+      <if test="ecwzsbsj != null">
+        ecwzsbsj,
+      </if>
+      <if test="bgdfxsj != null">
+        bgdfxsj,
+      </if>
+      <if test="sbfsry != null">
+        sbfsry,
+      </if>
+      <if test="yjhdbz != null">
+        yjhdbz,
+      </if>
+      <if test="yjtgrqImportUser != null">
+        yjtgrq_import_user,
+      </if>
+      <if test="mcqRqImportUser != null">
+        mcq_rq_import_user,
+      </if>
+      <if test="kddhHddz != null">
+        kddh_hddz,
+      </if>
+      <if test="ywryWl != null">
+        ywry_wl,
+      </if>
+      <if test="cwbz != null">
+        cwbz,
+      </if>
+      <if test="beizhuZkj != null">
+        beizhu_zkj,
+      </if>
+      <if test="anJeGb != null">
+        AN_je_gb,
+      </if>
+      <if test="anJeMj != null">
+        AN_je_mj,
+      </if>
+      <if test="mjhl != null">
+        mjhl,
+      </if>
+      <if test="wjfxsj != null">
+        wjfxsj,
+      </if>
+      <if test="cyks != null">
+        cyks,
+      </if>
+      <if test="fxycsjyy != null">
+        fxycsjyy,
+      </if>
+      <if test="sjktgsj != null">
+        sjktgsj,
+      </if>
+      <if test="yjkgsjtzgx != null">
+        yjkgsjtzgx,
+      </if>
+      <if test="fbsh != null">
+        fbsh,
+      </if>
+      <if test="fbshsj != null">
+        fbshsj,
+      </if>
+      <if test="sfhdUser != null">
+        sfhd_user,
+      </if>
+      <if test="mJxxsfywjUser != null">
+        m_jxxsfywj_user,
+      </if>
+      <if test="anJeGbUser != null">
+        an_je_gb_user,
+      </if>
+      <if test="anJeMjUser != null">
+        an_je_mj_user,
+      </if>
+      <if test="mjhlUser != null">
+        mjhl_user,
+      </if>
+      <if test="lbsbbz != null">
+        lbsbbz,
+      </if>
+      <if test="zjbz != null">
+        zjbz,
+      </if>
+      <if test="lldhUser != null">
+        lldh_user,
+      </if>
+      <if test="fqxs != null">
+        fqxs,
+      </if>
+      <if test="fqxsBj != null">
+        fqxs_bj,
+      </if>
+      <if test="zrpdBeizhu != null">
+        zrpd_beizhu,
+      </if>
+      <if test="zqzqcwxx != null">
+        zqzqcwxx,
+      </if>
+      <if test="cjyzxt != null">
+        cjyzxt,
+      </if>
+      <if test="cjyzrg != null">
+        cjyzrg,
+      </if>
+      <if test="gxtssj != null">
+        gxtssj,
+      </if>
+      <if test="xgdzqk != null">
+        xgdzqk,
+      </if>
+      <if test="xghgsbJ != null">
+        xghgsb_j,
+      </if>
+      <if test="xghgsbC != null">
+        xghgsb_c,
+      </if>
+      <if test="zjbjh != null">
+        zjbjh,
+      </if>
+      <if test="zzqrsh != null">
+        zzqrsh,
+      </if>
+      <if test="gzjysbsj != null">
+        gzjysbsj,
+      </if>
+      <if test="jqsbwcsj != null">
+        jqsbwcsj,
+      </if>
+      <if test="fbhx != null">
+        fbhx,
+      </if>
+      <if test="bcsfdj != null">
+        bcsfdj,
+      </if>
+      <if test="cszt != null">
+        cszt,
+      </if>
+      <if test="jckfs != null">
+        jckfs,
+      </if>
+      <if test="lbsb != null">
+        lbsb,
+      </if>
+      <if test="khhzzs != null">
+        khhzzs,
+      </if>
+      <if test="sfgdzf != null">
+        sfgdzf,
+      </if>
+      <if test="gdzf != null">
+        gdzf,
+      </if>
+      <if test="hdtdlx != null">
+        hdtdlx,
+      </if>
+      <if test="hzSpmcsfss != null">
+        hz_spmcsfss,
+      </if>
+      <if test="zjesfss != null">
+        zjesfss,
+      </if>
+      <if test="kpjesfss != null">
+        kpjesfss,
+      </if>
+      <if test="ejycddm != null">
+        ejycddm,
+      </if>
+      <if test="szflag != null">
+        szflag,
+      </if>
+      <if test="zbsd != null">
+        zbsd,
+      </if>
+      <if test="fbsd != null">
+        fbsd,
+      </if>
+      <if test="zscssd != null">
+        zscssd,
+      </if>
+      <if test="bah != null">
+        bah,
+      </if>
+      <if test="jkrq != null">
+        jkrq,
+      </if>
+      <if test="xkzh != null">
+        xkzh,
+      </if>
+      <if test="tsgxqr != null">
+        tsgxqr,
+      </if>
+      <if test="jgyxqr != null">
+        jgyxqr,
+      </if>
+      <if test="txqsyfzfqr != null">
+        txqsyfzfqr,
+      </if>
+      <if test="sdwzh != null">
+        sdwzh,
+      </if>
+      <if test="zzbs != null">
+        zzbs,
+      </if>
+      <if test="dbyf != null">
+        dbyf,
+      </if>
+      <if test="qyzzcn != null">
+        qyzzcn,
+      </if>
+      <if test="yxys != null">
+        yxys,
+      </if>
+      <if test="hgfxfsUser != null">
+        hgfxfs_user,
+      </if>
+      <if test="xghgsbJDate != null">
+        xghgsb_j_date,
+      </if>
+      <if test="xghgsbCDate != null">
+        xghgsb_c_date,
+      </if>
+      <if test="jgycxx != null">
+        jgycxx,
+      </if>
+      <if test="dyckState != null">
+        dyck_state,
+      </if>
+      <if test="grabHbhc != null">
+        grab_hbhc,
+      </if>
+      <if test="khbmDlxyh != null">
+        khbm_dlxyh,
+      </if>
+      <if test="yjcysjLrsj != null">
+        yjcysj_lrsj,
+      </if>
+      <if test="sfxh != null">
+        sfxh,
+      </if>
+      <if test="jczbzlbz != null">
+        jczbzlbz,
+      </if>
+      <if test="jczbzlsj != null">
+        jczbzlsj,
+      </if>
+      <if test="xcsdzbzlbz != null">
+        xcsdzbzlbz,
+      </if>
+      <if test="xcsdzbzlsj != null">
+        xcsdzbzlsj,
+      </if>
+      <if test="xcsdzbzlry != null">
+        xcsdzbzlry,
+      </if>
+      <if test="zbsqsj != null">
+        zbsqsj,
+      </if>
+      <if test="fbsqsj != null">
+        fbsqsj,
+      </if>
+      <if test="cssqsj != null">
+        cssqsj,
+      </if>
+      <if test="grabHbhcDate != null">
+        grab_hbhc_date,
+      </if>
+      <if test="sfxpt != null">
+        sfxpt,
+      </if>
+      <if test="gqzt != null">
+        gqzt,
+      </if>
+      <if test="jgsj != null">
+        jgsj,
+      </if>
+      <if test="sdtzfp != null">
+        sdtzfp,
+      </if>
+      <if test="gzjysbsjLrry != null">
+        gzjysbsj_lrry,
+      </if>
+      <if test="jqsbwcsjLrry != null">
+        jqsbwcsj_lrry,
+      </if>
+      <if test="sddzBgsj != null">
+        sddz_bgsj,
+      </if>
+      <if test="sddzCzsj != null">
+        sddz_czsj,
+      </if>
+      <if test="lrwcCzsj != null">
+        lrwc_czsj,
+      </if>
+      <if test="sddzSdsj != null">
+        sddz_sdsj,
+      </if>
+      <if test="shwcSdsj != null">
+        shwc_sdsj,
+      </if>
+      <if test="sdsdBgsj != null">
+        sdsd_bgsj,
+      </if>
+      <if test="sddzHxsj != null">
+        sddz_hxsj,
+      </if>
+      <if test="wchxHxsj != null">
+        wchx_hxsj,
+      </if>
+      <if test="bgdscsj != null">
+        bgdscsj,
+      </if>
+      <if test="xcsdLrsj != null">
+        xcsd_lrsj,
+      </if>
+      <if test="xcsd != null">
+        xcsd,
+      </if>
+      <if test="sfggLlsj != null">
+        sfgg_llsj,
+      </if>
+      <if test="kpcysj != null">
+        kpcysj,
+      </if>
+      <if test="sjkgsjtzgx != null">
+        sjkgsjtzgx,
+      </if>
+      <if test="sfjydjc != null">
+        sfjydjc,
+      </if>
+      <if test="sfjydjcsj != null">
+        sfjydjcsj,
+      </if>
+      <if test="gxksbsj != null">
+        gxksbsj,
+      </if>
+      <if test="cyzt != null">
+        cyzt,
+      </if>
+      <if test="xcsjHz != null">
+        xcsj_hz,
+      </if>
+      <if test="xgxcsjHz != null">
+        xgxcsj_hz,
+      </if>
+      <if test="zdxcsjHz != null">
+        zdxcsj_hz,
+      </if>
+      <if test="wjljHz != null">
+        wjlj_hz,
+      </if>
+      <if test="lldhHz != null">
+        lldh_hz,
+      </if>
+      <if test="sfjydsd != null">
+        sfjydsd,
+      </if>
+      <if test="sfjydsdsj != null">
+        sfjydsdsj,
+      </if>
+      <if test="yglx != null">
+        yglx,
+      </if>
+      <if test="sfcyJyz != null">
+        sfcy_jyz,
+      </if>
+      <if test="sfxzJyz != null">
+        sfxz_jyz,
+      </if>
+      <if test="sfjdJyz != null">
+        sfjd_jyz,
+      </if>
+      <if test="sfjdsjJyz != null">
+        sfjdsj_jyz,
+      </if>
+      <if test="sfnzJyz != null">
+        sfnz_jyz,
+      </if>
+      <if test="xhgqZq != null">
+        xhgq_zq,
+      </if>
+      <if test="xhgqbmZq != null">
+        xhgqbm_zq,
+      </if>
+      <if test="xhgqpymZq != null">
+        xhgqpym_zq,
+      </if>
+      <if test="xhgqjcZq != null">
+        xhgqjc_zq,
+      </if>
+      <if test="sfcyHzJzxh != null">
+        sfcy_hz_jzxh,
+      </if>
+      <if test="jgycxq != null">
+        jgycxq,
+      </if>
+      <if test="hzBzcdm != null">
+        hz_bzcdm,
+      </if>
+      <if test="hzGydm != null">
+        hz_gydm,
+      </if>
+      <if test="sfhx != null">
+        sfhx,
+      </if>
+      <if test="yljtz != null">
+        yljtz,
+      </if>
+      <if test="bqzpsfsd != null">
+        bqzpsfsd,
+      </if>
+      <if test="lclsyjd != null">
+        lclsyjd,
+      </if>
+      <if test="hzSfscfp != null">
+        hz_sfscfp,
+      </if>
+      <if test="tgyxq != null">
+        tgyxq,
+      </if>
+      <if test="cqbz != null">
+        cqbz,
+      </if>
+      <if test="bzcmc != null">
+        bzcmc,
+      </if>
+      <if test="gymc != null">
+        gymc,
+      </if>
+      <if test="lkmc != null">
+        lkmc,
+      </if>
+      <if test="sjhwfxsj != null">
+        sjhwfxsj,
+      </if>
+      <if test="hdwlFh != null">
+        hdwl_fh,
+      </if>
+      <if test="hdwlZg != null">
+        hdwl_zg,
+      </if>
+      <if test="hdwlXg != null">
+        hdwl_xg,
+      </if>
+      <if test="hdwlJhd != null">
+        hdwl_jhd,
+      </if>
+      <if test="hdwlJzxpz != null">
+        hdwl_jzxpz,
+      </if>
+      <if test="ydbl != null">
+        ydbl,
+      </if>
+      <if test="anyfk != null">
+        anyfk,
+      </if>
+      <if test="tdsfdd != null">
+        tdsfdd,
+      </if>
+      <if test="fsdz != null">
+        fsdz,
+      </if>
+      <if test="ppmc != null">
+        ppmc,
+      </if>
+      <if test="sfhyxqd != null">
+        sfhyxqd,
+      </if>
+      <if test="hyxqdtgsj != null">
+        hyxqdtgsj,
+      </if>
+      <if test="hyxqdqr != null">
+        hyxqdqr,
+      </if>
+      <if test="hyxqdqrsj != null">
+        hyxqdqrsj,
+      </if>
+      <if test="kygclx != null">
+        kygclx,
+      </if>
+      <if test="kygcgh != null">
+        kygcgh,
+      </if>
+      <if test="yhzt != null">
+        yhzt,
+      </if>
+      <if test="yhsj != null">
+        yhsj,
+      </if>
+      <if test="kcsj != null">
+        kcsj,
+      </if>
+      <if test="scyjkgsj != null">
+        scyjkgsj,
+      </if>
+      <if test="jyjyzscxm != null">
+        jyjyzscxm,
+      </if>
+      <if test="jyjyzscxmjssj != null">
+        jyjyzscxmjssj,
+      </if>
+      <if test="gsdjqr != null">
+        gsdjqr,
+      </if>
+      <if test="zdjgqr != null">
+        zdjgqr,
+      </if>
+      <if test="sfbc != null">
+        sfbc,
+      </if>
+      <if test="hxbeizhu != null">
+        hxbeizhu,
+      </if>
+      <if test="jzhjgwq != null">
+        jzhjgwq,
+      </if>
+      <if test="bgdhsj != null">
+        bgdhsj,
+      </if>
+      <if test="bgdyczt != null">
+        bgdyczt,
+      </if>
+      <if test="sbsxyczt != null">
+        sbsxyczt,
+      </if>
+      <if test="zdrbm != null">
+        zdrbm,
+      </if>
+      <if test="zdrbmmc != null">
+        zdrbmmc,
+      </if>
+      <if test="zbjcqk != null">
+        zbjcqk,
+      </if>
+      <if test="zbsdqk != null">
+        zbsdqk,
+      </if>
+      <if test="jysjzsscscsj != null">
+        jysjzsscscsj,
+      </if>
+      <if test="sfjjlx != null">
+        sfjjlx,
+      </if>
+      <if test="sqkp != null">
+        sqkp,
+      </if>
+      <if test="jyzSzGzr != null">
+        jyz_sz_gzr,
+      </if>
+      <if test="jyzSzSfyc != null">
+        jyz_sz_sfyc,
+      </if>
+      <if test="mnsdsqzt != null">
+        mnsdsqzt,
+      </if>
+      <if test="sdtzfpsj != null">
+        sdtzfpsj,
+      </if>
+      <if test="rpaXrsj != null">
+        rpa_xrsj,
+      </if>
+    </trim>
+    <trim prefix="values (" suffix=")" suffixOverrides=",">
+      <if test="ywbh != null">
+        #{ywbh,jdbcType=VARCHAR},
+      </if>
+      <if test="zbr != null">
+        #{zbr,jdbcType=VARCHAR},
+      </if>
+      <if test="zbrq != null">
+        #{zbrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="dlwtf != null">
+        #{dlwtf,jdbcType=VARCHAR},
+      </if>
+      <if test="hth != null">
+        #{hth,jdbcType=VARCHAR},
+      </if>
+      <if test="dlxyh != null">
+        #{dlxyh,jdbcType=VARCHAR},
+      </if>
+      <if test="zydl != null">
+        #{zydl,jdbcType=VARCHAR},
+      </if>
+      <if test="hdgsbm != null">
+        #{hdgsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="hdgsmc != null">
+        #{hdgsmc,jdbcType=VARCHAR},
+      </if>
+      <if test="hdgsjc != null">
+        #{hdgsjc,jdbcType=VARCHAR},
+      </if>
+      <if test="hdgspym != null">
+        #{hdgspym,jdbcType=VARCHAR},
+      </if>
+      <if test="bggsbm != null">
+        #{bggsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="bggsmc != null">
+        #{bggsmc,jdbcType=VARCHAR},
+      </if>
+      <if test="bggsjc != null">
+        #{bggsjc,jdbcType=VARCHAR},
+      </if>
+      <if test="bggspym != null">
+        #{bggspym,jdbcType=VARCHAR},
+      </if>
+      <if test="bjgsbm != null">
+        #{bjgsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="bjgsmc != null">
+        #{bjgsmc,jdbcType=VARCHAR},
+      </if>
+      <if test="bjgsjc != null">
+        #{bjgsjc,jdbcType=VARCHAR},
+      </if>
+      <if test="bjgspym != null">
+        #{bjgspym,jdbcType=VARCHAR},
+      </if>
+      <if test="bjgssjjgdm != null">
+        #{bjgssjjgdm,jdbcType=VARCHAR},
+      </if>
+      <if test="khbm != null">
+        #{khbm,jdbcType=VARCHAR},
+      </if>
+      <if test="khmc != null">
+        #{khmc,jdbcType=VARCHAR},
+      </if>
+      <if test="khjc != null">
+        #{khjc,jdbcType=VARCHAR},
+      </if>
+      <if test="khpym != null">
+        #{khpym,jdbcType=VARCHAR},
+      </if>
+      <if test="shdwbm != null">
+        #{shdwbm,jdbcType=VARCHAR},
+      </if>
+      <if test="shdwmc != null">
+        #{shdwmc,jdbcType=VARCHAR},
+      </if>
+      <if test="shdwjc != null">
+        #{shdwjc,jdbcType=VARCHAR},
+      </if>
+      <if test="shdwpym != null">
+        #{shdwpym,jdbcType=VARCHAR},
+      </if>
+      <if test="jydwbm != null">
+        #{jydwbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jydwmc != null">
+        #{jydwmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jydwjc != null">
+        #{jydwjc,jdbcType=VARCHAR},
+      </if>
+      <if test="jydwpym != null">
+        #{jydwpym,jdbcType=VARCHAR},
+      </if>
+      <if test="jydwsjjgdm != null">
+        #{jydwsjjgdm,jdbcType=VARCHAR},
+      </if>
+      <if test="gwgysbm != null">
+        #{gwgysbm,jdbcType=VARCHAR},
+      </if>
+      <if test="gwgysmc != null">
+        #{gwgysmc,jdbcType=VARCHAR},
+      </if>
+      <if test="gwgysjc != null">
+        #{gwgysjc,jdbcType=VARCHAR},
+      </if>
+      <if test="gwgyspym != null">
+        #{gwgyspym,jdbcType=VARCHAR},
+      </if>
+      <if test="zjsbm != null">
+        #{zjsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="zjsmc != null">
+        #{zjsmc,jdbcType=VARCHAR},
+      </if>
+      <if test="zjsjc != null">
+        #{zjsjc,jdbcType=VARCHAR},
+      </if>
+      <if test="zjspym != null">
+        #{zjspym,jdbcType=VARCHAR},
+      </if>
+      <if test="gwhdbm != null">
+        #{gwhdbm,jdbcType=VARCHAR},
+      </if>
+      <if test="gwhdmc != null">
+        #{gwhdmc,jdbcType=VARCHAR},
+      </if>
+      <if test="gwhdjc != null">
+        #{gwhdjc,jdbcType=VARCHAR},
+      </if>
+      <if test="gwhdpym != null">
+        #{gwhdpym,jdbcType=VARCHAR},
+      </if>
+      <if test="tzrbm != null">
+        #{tzrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="tzrmc != null">
+        #{tzrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="tzrjc != null">
+        #{tzrjc,jdbcType=VARCHAR},
+      </if>
+      <if test="tzrpym != null">
+        #{tzrpym,jdbcType=VARCHAR},
+      </if>
+      <if test="ysfs != null">
+        #{ysfs,jdbcType=VARCHAR},
+      </if>
+      <if test="tdlx != null">
+        #{tdlx,jdbcType=VARCHAR},
+      </if>
+      <if test="cyrbm != null">
+        #{cyrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="cyr != null">
+        #{cyr,jdbcType=VARCHAR},
+      </if>
+      <if test="cyrjc != null">
+        #{cyrjc,jdbcType=VARCHAR},
+      </if>
+      <if test="cyrpym != null">
+        #{cyrpym,jdbcType=VARCHAR},
+      </if>
+      <if test="cdgsbm != null">
+        #{cdgsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="cdgs != null">
+        #{cdgs,jdbcType=VARCHAR},
+      </if>
+      <if test="cdgsjc != null">
+        #{cdgsjc,jdbcType=VARCHAR},
+      </if>
+      <if test="cdgspym != null">
+        #{cdgspym,jdbcType=VARCHAR},
+      </if>
+      <if test="cm != null">
+        #{cm,jdbcType=VARCHAR},
+      </if>
+      <if test="hcorhbh != null">
+        #{hcorhbh,jdbcType=VARCHAR},
+      </if>
+      <if test="hcorhbhZq != null">
+        #{hcorhbhZq,jdbcType=VARCHAR},
+      </if>
+      <if test="sfzy != null">
+        #{sfzy,jdbcType=VARCHAR},
+      </if>
+      <if test="zzCm != null">
+        #{zzCm,jdbcType=VARCHAR},
+      </if>
+      <if test="zzHcorhbh != null">
+        #{zzHcorhbh,jdbcType=VARCHAR},
+      </if>
+      <if test="zzgk != null">
+        #{zzgk,jdbcType=VARCHAR},
+      </if>
+      <if test="ztdh != null">
+        #{ztdh,jdbcType=VARCHAR},
+      </if>
+      <if test="sfshytd != null">
+        #{sfshytd,jdbcType=VARCHAR},
+      </if>
+      <if test="ftdh != null">
+        #{ftdh,jdbcType=VARCHAR},
+      </if>
+      <if test="hygsbm != null">
+        #{hygsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="hygsmc != null">
+        #{hygsmc,jdbcType=VARCHAR},
+      </if>
+      <if test="hygsjc != null">
+        #{hygsjc,jdbcType=VARCHAR},
+      </if>
+      <if test="hygspym != null">
+        #{hygspym,jdbcType=VARCHAR},
+      </if>
+      <if test="hdhdgs != null">
+        #{hdhdgs,jdbcType=VARCHAR},
+      </if>
+      <if test="qyg != null">
+        #{qyg,jdbcType=VARCHAR},
+      </if>
+      <if test="qygdm != null">
+        #{qygdm,jdbcType=VARCHAR},
+      </if>
+      <if test="qygsjgkdm != null">
+        #{qygsjgkdm,jdbcType=VARCHAR},
+      </if>
+      <if test="mdg != null">
+        #{mdg,jdbcType=VARCHAR},
+      </if>
+      <if test="xhgqbm != null">
+        #{xhgqbm,jdbcType=VARCHAR},
+      </if>
+      <if test="xhgq != null">
+        #{xhgq,jdbcType=VARCHAR},
+      </if>
+      <if test="xhgqjc != null">
+        #{xhgqjc,jdbcType=VARCHAR},
+      </if>
+      <if test="xhgqpym != null">
+        #{xhgqpym,jdbcType=VARCHAR},
+      </if>
+      <if test="yjkgsj != null">
+        #{yjkgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjkgsj != null">
+        #{sjkgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfxyechd != null">
+        #{sfxyechd,jdbcType=VARCHAR},
+      </if>
+      <if test="ycd != null">
+        #{ycd,jdbcType=VARCHAR},
+      </if>
+      <if test="ycddm != null">
+        #{ycddm,jdbcType=VARCHAR},
+      </if>
+      <if test="ejycd != null">
+        #{ejycd,jdbcType=VARCHAR},
+      </if>
+      <if test="mxq != null">
+        #{mxq,jdbcType=INTEGER},
+      </if>
+      <if test="jgfs != null">
+        #{jgfs,jdbcType=VARCHAR},
+      </if>
+      <if test="wbbb != null">
+        #{wbbb,jdbcType=VARCHAR},
+      </if>
+      <if test="zje != null">
+        #{zje,jdbcType=DOUBLE},
+      </if>
+      <if test="zmyhl != null">
+        #{zmyhl,jdbcType=DOUBLE},
+      </if>
+      <if test="zmyje != null">
+        #{zmyje,jdbcType=DOUBLE},
+      </if>
+      <if test="sfyyf != null">
+        #{sfyyf,jdbcType=VARCHAR},
+      </if>
+      <if test="yfje != null">
+        #{yfje,jdbcType=DOUBLE},
+      </if>
+      <if test="yfbb != null">
+        #{yfbb,jdbcType=VARCHAR},
+      </if>
+      <if test="sdyffpsj != null">
+        #{sdyffpsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="khorhd != null">
+        #{khorhd,jdbcType=VARCHAR},
+      </if>
+      <if test="yfcdrbm != null">
+        #{yfcdrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="yfcdr != null">
+        #{yfcdr,jdbcType=VARCHAR},
+      </if>
+      <if test="yfcdrjc != null">
+        #{yfcdrjc,jdbcType=VARCHAR},
+      </if>
+      <if test="yfcdrpym != null">
+        #{yfcdrpym,jdbcType=VARCHAR},
+      </if>
+      <if test="kddh != null">
+        #{kddh,jdbcType=VARCHAR},
+      </if>
+      <if test="sdsdsj != null">
+        #{sdsdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yfzfqrsj != null">
+        #{yfzfqrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yfbz != null">
+        #{yfbz,jdbcType=VARCHAR},
+      </if>
+      <if test="gkhfpsj != null">
+        #{gkhfpsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yfzfjg != null">
+        #{yfzfjg,jdbcType=VARCHAR},
+      </if>
+      <if test="state != null">
+        #{state,jdbcType=VARCHAR},
+      </if>
+      <if test="beizhu != null">
+        #{beizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="kyhdsj != null">
+        #{kyhdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjhdsj != null">
+        #{sjhdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hdbz != null">
+        #{hdbz,jdbcType=VARCHAR},
+      </if>
+      <if test="xtdh != null">
+        #{xtdh,jdbcType=VARCHAR},
+      </if>
+      <if test="gs != null">
+        #{gs,jdbcType=DOUBLE},
+      </if>
+      <if test="zzs != null">
+        #{zzs,jdbcType=DOUBLE},
+      </if>
+      <if test="bzj != null">
+        #{bzj,jdbcType=DOUBLE},
+      </if>
+      <if test="sjzfrq != null">
+        #{sjzfrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gsBj != null">
+        #{gsBj,jdbcType=DOUBLE},
+      </if>
+      <if test="zzsBj != null">
+        #{zzsBj,jdbcType=DOUBLE},
+      </if>
+      <if test="bzjBj != null">
+        #{bzjBj,jdbcType=DOUBLE},
+      </if>
+      <if test="sjzfrqBj != null">
+        #{sjzfrqBj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bzjzfrbm != null">
+        #{bzjzfrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="bzjzfr != null">
+        #{bzjzfr,jdbcType=VARCHAR},
+      </if>
+      <if test="bzjzfrjc != null">
+        #{bzjzfrjc,jdbcType=VARCHAR},
+      </if>
+      <if test="bzjzfrpym != null">
+        #{bzjzfrpym,jdbcType=VARCHAR},
+      </if>
+      <if test="bzjsj != null">
+        #{bzjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bzjje != null">
+        #{bzjje,jdbcType=DOUBLE},
+      </if>
+      <if test="bzjdjh != null">
+        #{bzjdjh,jdbcType=VARCHAR},
+      </if>
+      <if test="bzjjzsj != null">
+        #{bzjjzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bzjymxz != null">
+        #{bzjymxz,jdbcType=VARCHAR},
+      </if>
+      <if test="bzjym != null">
+        #{bzjym,jdbcType=VARCHAR},
+      </if>
+      <if test="stbrysj != null">
+        #{stbrysj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="shgsj != null">
+        #{shgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hgclsj != null">
+        #{hgclsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="tbzj != null">
+        #{tbzj,jdbcType=DOUBLE},
+      </if>
+      <if test="zzzs != null">
+        #{zzzs,jdbcType=DOUBLE},
+      </if>
+      <if test="zgs != null">
+        #{zgs,jdbcType=DOUBLE},
+      </if>
+      <if test="hghdjg != null">
+        #{hghdjg,jdbcType=DOUBLE},
+      </if>
+      <if test="tkdzsj != null">
+        #{tkdzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wsbjsj != null">
+        #{wsbjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bjh != null">
+        #{bjh,jdbcType=VARCHAR},
+      </if>
+      <if test="bjsj != null">
+        #{bjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cktgsj != null">
+        #{cktgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="tgdh != null">
+        #{tgdh,jdbcType=VARCHAR},
+      </if>
+      <if test="wzhfxsj != null">
+        #{wzhfxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bgdh != null">
+        #{bgdh,jdbcType=VARCHAR},
+      </if>
+      <if test="bgsj != null">
+        #{bgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bghgbm != null">
+        #{bghgbm,jdbcType=VARCHAR},
+      </if>
+      <if test="bghg != null">
+        #{bghg,jdbcType=VARCHAR},
+      </if>
+      <if test="bghgjc != null">
+        #{bghgjc,jdbcType=VARCHAR},
+      </if>
+      <if test="bghgpym != null">
+        #{bghgpym,jdbcType=VARCHAR},
+      </if>
+      <if test="jyjbm != null">
+        #{jyjbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jyjmc != null">
+        #{jyjmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jyjjc != null">
+        #{jyjjc,jdbcType=VARCHAR},
+      </if>
+      <if test="jyjpym != null">
+        #{jyjpym,jdbcType=VARCHAR},
+      </if>
+      <if test="jyjsjjgdm != null">
+        #{jyjsjjgdm,jdbcType=VARCHAR},
+      </if>
+      <if test="sfcy != null">
+        #{sfcy,jdbcType=VARCHAR},
+      </if>
+      <if test="cydbm != null">
+        #{cydbm,jdbcType=VARCHAR},
+      </if>
+      <if test="cyd != null">
+        #{cyd,jdbcType=VARCHAR},
+      </if>
+      <if test="cydjc != null">
+        #{cydjc,jdbcType=VARCHAR},
+      </if>
+      <if test="cydpym != null">
+        #{cydpym,jdbcType=VARCHAR},
+      </if>
+      <if test="yjcysj != null">
+        #{yjcysj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjcysj != null">
+        #{sjcysj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cybz != null">
+        #{cybz,jdbcType=VARCHAR},
+      </if>
+      <if test="hgfxsj != null">
+        #{hgfxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hgfxsjSrsj != null">
+        #{hgfxsjSrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kgbz != null">
+        #{kgbz,jdbcType=VARCHAR},
+      </if>
+      <if test="fph != null">
+        #{fph,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzfkhlx != null">
+        #{sjzfkhlx,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzfkhbm != null">
+        #{sjzfkhbm,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzfkhmc != null">
+        #{sjzfkhmc,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzfkhjc != null">
+        #{sjzfkhjc,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzfkhpym != null">
+        #{sjzfkhpym,jdbcType=VARCHAR},
+      </if>
+      <if test="zbj != null">
+        #{zbj,jdbcType=DOUBLE},
+      </if>
+      <if test="sjbz != null">
+        #{sjbz,jdbcType=VARCHAR},
+      </if>
+      <if test="jybz != null">
+        #{jybz,jdbcType=VARCHAR},
+      </if>
+      <if test="jydbm != null">
+        #{jydbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jyd != null">
+        #{jyd,jdbcType=VARCHAR},
+      </if>
+      <if test="jydjc != null">
+        #{jydjc,jdbcType=VARCHAR},
+      </if>
+      <if test="jydpym != null">
+        #{jydpym,jdbcType=VARCHAR},
+      </if>
+      <if test="hdsj != null">
+        #{hdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bgbz != null">
+        #{bgbz,jdbcType=VARCHAR},
+      </if>
+      <if test="hgfxfs != null">
+        #{hgfxfs,jdbcType=VARCHAR},
+      </if>
+      <if test="hgtgwt != null">
+        #{hgtgwt,jdbcType=VARCHAR},
+      </if>
+      <if test="hzJzxh != null">
+        #{hzJzxh,jdbcType=VARCHAR},
+      </if>
+      <if test="hzSpmc != null">
+        #{hzSpmc,jdbcType=VARCHAR},
+      </if>
+      <if test="sdsdrq != null">
+        #{sdsdrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sdkhqzrq != null">
+        #{sdkhqzrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sdbz != null">
+        #{sdbz,jdbcType=VARCHAR},
+      </if>
+      <if test="sdkddh != null">
+        #{sdkddh,jdbcType=VARCHAR},
+      </if>
+      <if test="bzjbz != null">
+        #{bzjbz,jdbcType=VARCHAR},
+      </if>
+      <if test="fxbz != null">
+        #{fxbz,jdbcType=VARCHAR},
+      </if>
+      <if test="clfs != null">
+        #{clfs,jdbcType=VARCHAR},
+      </if>
+      <if test="beizhuXgrq != null">
+        #{beizhuXgrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hzSl != null">
+        #{hzSl,jdbcType=DOUBLE},
+      </if>
+      <if test="mtdm != null">
+        #{mtdm,jdbcType=VARCHAR},
+      </if>
+      <if test="sfqycdz != null">
+        #{sfqycdz,jdbcType=VARCHAR},
+      </if>
+      <if test="lzsj != null">
+        #{lzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="ycdzsh != null">
+        #{ycdzsh,jdbcType=VARCHAR},
+      </if>
+      <if test="khmxq != null">
+        #{khmxq,jdbcType=INTEGER},
+      </if>
+      <if test="invoiceno != null">
+        #{invoiceno,jdbcType=VARCHAR},
+      </if>
+      <if test="invoiceDate != null">
+        #{invoiceDate,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfsdhdzl != null">
+        #{sfsdhdzl,jdbcType=VARCHAR},
+      </if>
+      <if test="sfhd != null">
+        #{sfhd,jdbcType=VARCHAR},
+      </if>
+      <if test="sfytzcgskp != null">
+        #{sfytzcgskp,jdbcType=VARCHAR},
+      </if>
+      <if test="tzcgskpsj != null">
+        #{tzcgskpsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfyfyzf != null">
+        #{sfyfyzf,jdbcType=VARCHAR},
+      </if>
+      <if test="sfyzbg != null">
+        #{sfyzbg,jdbcType=VARCHAR},
+      </if>
+      <if test="cmZw != null">
+        #{cmZw,jdbcType=VARCHAR},
+      </if>
+      <if test="sfsdsd != null">
+        #{sfsdsd,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwbm != null">
+        #{jsdwbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwmc != null">
+        #{jsdwmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwjc != null">
+        #{jsdwjc,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwpym != null">
+        #{jsdwpym,jdbcType=VARCHAR},
+      </if>
+      <if test="xtdlx != null">
+        #{xtdlx,jdbcType=VARCHAR},
+      </if>
+      <if test="hgclbh != null">
+        #{hgclbh,jdbcType=VARCHAR},
+      </if>
+      <if test="hdzljcsj != null">
+        #{hdzljcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jcgzry != null">
+        #{jcgzry,jdbcType=VARCHAR},
+      </if>
+      <if test="hdzljcbz != null">
+        #{hdzljcbz,jdbcType=VARCHAR},
+      </if>
+      <if test="bgsxtdsj != null">
+        #{bgsxtdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bgscxtdsj != null">
+        #{bgscxtdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="thhtjhsj != null">
+        #{thhtjhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jjcd != null">
+        #{jjcd,jdbcType=VARCHAR},
+      </if>
+      <if test="tcts != null">
+        #{tcts,jdbcType=DOUBLE},
+      </if>
+      <if test="zthsq != null">
+        #{zthsq,jdbcType=VARCHAR},
+      </if>
+      <if test="yjlgsj != null">
+        #{yjlgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zthsqsj != null">
+        #{zthsqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="ytjkzt != null">
+        #{ytjkzt,jdbcType=VARCHAR},
+      </if>
+      <if test="dzlx != null">
+        #{dzlx,jdbcType=VARCHAR},
+      </if>
+      <if test="jydwdm != null">
+        #{jydwdm,jdbcType=VARCHAR},
+      </if>
+      <if test="hzdwdqdm != null">
+        #{hzdwdqdm,jdbcType=VARCHAR},
+      </if>
+      <if test="shdwdm != null">
+        #{shdwdm,jdbcType=VARCHAR},
+      </if>
+      <if test="sbdwdm != null">
+        #{sbdwdm,jdbcType=VARCHAR},
+      </if>
+      <if test="jcka != null">
+        #{jcka,jdbcType=VARCHAR},
+      </if>
+      <if test="myfs != null">
+        #{myfs,jdbcType=VARCHAR},
+      </if>
+      <if test="zmfs != null">
+        #{zmfs,jdbcType=VARCHAR},
+      </if>
+      <if test="yfbj != null">
+        #{yfbj,jdbcType=VARCHAR},
+      </if>
+      <if test="bxfbj != null">
+        #{bxfbj,jdbcType=VARCHAR},
+      </if>
+      <if test="bxfbb != null">
+        #{bxfbb,jdbcType=VARCHAR},
+      </if>
+      <if test="bxfje != null">
+        #{bxfje,jdbcType=DOUBLE},
+      </if>
+      <if test="zxs != null">
+        #{zxs,jdbcType=DOUBLE},
+      </if>
+      <if test="zmz != null">
+        #{zmz,jdbcType=DOUBLE},
+      </if>
+      <if test="zjz != null">
+        #{zjz,jdbcType=DOUBLE},
+      </if>
+      <if test="bzzl != null">
+        #{bzzl,jdbcType=VARCHAR},
+      </if>
+      <if test="jckbz != null">
+        #{jckbz,jdbcType=VARCHAR},
+      </if>
+      <if test="ytbz != null">
+        #{ytbz,jdbcType=VARCHAR},
+      </if>
+      <if test="qiyunguo != null">
+        #{qiyunguo,jdbcType=VARCHAR},
+      </if>
+      <if test="qiyunguodm != null">
+        #{qiyunguodm,jdbcType=VARCHAR},
+      </if>
+      <if test="htd != null">
+        #{htd,jdbcType=VARCHAR},
+      </if>
+      <if test="htdRq != null">
+        #{htdRq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfqrbzlx != null">
+        #{sfqrbzlx,jdbcType=VARCHAR},
+      </if>
+      <if test="ytjkwjbh != null">
+        #{ytjkwjbh,jdbcType=VARCHAR},
+      </if>
+      <if test="ytjkfssj != null">
+        #{ytjkfssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="ytjkfscs != null">
+        #{ytjkfscs,jdbcType=INTEGER},
+      </if>
+      <if test="ep15212 != null">
+        #{ep15212,jdbcType=VARCHAR},
+      </if>
+      <if test="ep14515 != null">
+        #{ep14515,jdbcType=VARCHAR},
+      </if>
+      <if test="ep14516 != null">
+        #{ep14516,jdbcType=VARCHAR},
+      </if>
+      <if test="ep14514 != null">
+        #{ep14514,jdbcType=NCHAR},
+      </if>
+      <if test="ytzt != null">
+        #{ytzt,jdbcType=VARCHAR},
+      </if>
+      <if test="ytsjfszt != null">
+        #{ytsjfszt,jdbcType=VARCHAR},
+      </if>
+      <if test="sfkydqsjjk != null">
+        #{sfkydqsjjk,jdbcType=VARCHAR},
+      </if>
+      <if test="bjgslxr != null">
+        #{bjgslxr,jdbcType=VARCHAR},
+      </if>
+      <if test="bjgslxdh != null">
+        #{bjgslxdh,jdbcType=VARCHAR},
+      </if>
+      <if test="bjydm != null">
+        #{bjydm,jdbcType=VARCHAR},
+      </if>
+      <if test="qyxz != null">
+        #{qyxz,jdbcType=VARCHAR},
+      </if>
+      <if test="sfwstzcc != null">
+        #{sfwstzcc,jdbcType=VARCHAR},
+      </if>
+      <if test="tstk != null">
+        #{tstk,jdbcType=VARCHAR},
+      </if>
+      <if test="hwcfd != null">
+        #{hwcfd,jdbcType=VARCHAR},
+      </if>
+      <if test="yt != null">
+        #{yt,jdbcType=VARCHAR},
+      </if>
+      <if test="spts != null">
+        #{spts,jdbcType=INTEGER},
+      </if>
+      <if test="zsbh != null">
+        #{zsbh,jdbcType=VARCHAR},
+      </if>
+      <if test="zsmc != null">
+        #{zsmc,jdbcType=VARCHAR},
+      </if>
+      <if test="bjlb != null">
+        #{bjlb,jdbcType=VARCHAR},
+      </if>
+      <if test="mt != null">
+        #{mt,jdbcType=VARCHAR},
+      </if>
+      <if test="ysgj != null">
+        #{ysgj,jdbcType=VARCHAR},
+      </if>
+      <if test="sfdj != null">
+        #{sfdj,jdbcType=VARCHAR},
+      </if>
+      <if test="sfdjbm != null">
+        #{sfdjbm,jdbcType=VARCHAR},
+      </if>
+      <if test="rjka != null">
+        #{rjka,jdbcType=VARCHAR},
+      </if>
+      <if test="rjmdd != null">
+        #{rjmdd,jdbcType=VARCHAR},
+      </if>
+      <if test="dfcyf != null">
+        #{dfcyf,jdbcType=DOUBLE},
+      </if>
+      <if test="dfcbxf != null">
+        #{dfcbxf,jdbcType=DOUBLE},
+      </if>
+      <if test="sffsrjsj != null">
+        #{sffsrjsj,jdbcType=VARCHAR},
+      </if>
+      <if test="rjjkfssj != null">
+        #{rjjkfssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="rjjkfscs != null">
+        #{rjjkfscs,jdbcType=INTEGER},
+      </if>
+      <if test="bzjsqly != null">
+        #{bzjsqly,jdbcType=VARCHAR},
+      </if>
+      <if test="clqy != null">
+        #{clqy,jdbcType=VARCHAR},
+      </if>
+      <if test="sdlqr != null">
+        #{sdlqr,jdbcType=VARCHAR},
+      </if>
+      <if test="sdlqsj != null">
+        #{sdlqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sddzsj != null">
+        #{sddzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sdh != null">
+        #{sdh,jdbcType=VARCHAR},
+      </if>
+      <if test="ktgs != null">
+        #{ktgs,jdbcType=DOUBLE},
+      </if>
+      <if test="ktzzs != null">
+        #{ktzzs,jdbcType=DOUBLE},
+      </if>
+      <if test="yzbh != null">
+        #{yzbh,jdbcType=VARCHAR},
+      </if>
+      <if test="skdbtzspdQt != null">
+        #{skdbtzspdQt,jdbcType=VARCHAR},
+      </if>
+      <if test="skdbtzspdTzsy != null">
+        #{skdbtzspdTzsy,jdbcType=VARCHAR},
+      </if>
+      <if test="bzjKhsksj != null">
+        #{bzjKhsksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjKhsksj != null">
+        #{sjKhsksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sftk != null">
+        #{sftk,jdbcType=VARCHAR},
+      </if>
+      <if test="zcrq != null">
+        #{zcrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfyfh != null">
+        #{sfyfh,jdbcType=VARCHAR},
+      </if>
+      <if test="fh != null">
+        #{fh,jdbcType=VARCHAR},
+      </if>
+      <if test="hzHgbm != null">
+        #{hzHgbm,jdbcType=VARCHAR},
+      </if>
+      <if test="hzPz != null">
+        #{hzPz,jdbcType=VARCHAR},
+      </if>
+      <if test="hzSpywmc != null">
+        #{hzSpywmc,jdbcType=VARCHAR},
+      </if>
+      <if test="hzSjshr != null">
+        #{hzSjshr,jdbcType=VARCHAR},
+      </if>
+      <if test="hzSjshrgs != null">
+        #{hzSjshrgs,jdbcType=INTEGER},
+      </if>
+      <if test="zgggbz != null">
+        #{zgggbz,jdbcType=VARCHAR},
+      </if>
+      <if test="dmbz != null">
+        #{dmbz,jdbcType=VARCHAR},
+      </if>
+      <if test="yfbzDz != null">
+        #{yfbzDz,jdbcType=VARCHAR},
+      </if>
+      <if test="yflrbh != null">
+        #{yflrbh,jdbcType=VARCHAR},
+      </if>
+      <if test="jzxsl != null">
+        #{jzxsl,jdbcType=INTEGER},
+      </if>
+      <if test="hzTpsl != null">
+        #{hzTpsl,jdbcType=INTEGER},
+      </if>
+      <if test="hzSzsl != null">
+        #{hzSzsl,jdbcType=INTEGER},
+      </if>
+      <if test="hzZhlx != null">
+        #{hzZhlx,jdbcType=VARCHAR},
+      </if>
+      <if test="hzXx != null">
+        #{hzXx,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqCm != null">
+        #{sjzqCm,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqHc != null">
+        #{sjzqHc,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqJs != null">
+        #{sjzqJs,jdbcType=DOUBLE},
+      </if>
+      <if test="sjzqZl != null">
+        #{sjzqZl,jdbcType=DOUBLE},
+      </if>
+      <if test="sgzqDyxx != null">
+        #{sgzqDyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqJkdgqrbz != null">
+        #{sjzqJkdgqrbz,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqLhzt != null">
+        #{sjzqLhzt,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqCkdyzt != null">
+        #{sjzqCkdyzt,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqZqcdsj != null">
+        #{sjzqZqcdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjzqZqdgsj != null">
+        #{sjzqZqdgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjzqZqlhsj != null">
+        #{sjzqZqlhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sdry != null">
+        #{sdry,jdbcType=VARCHAR},
+      </if>
+      <if test="yfqr != null">
+        #{yfqr,jdbcType=VARCHAR},
+      </if>
+      <if test="dqdm != null">
+        #{dqdm,jdbcType=VARCHAR},
+      </if>
+      <if test="ctrArea2 != null">
+        #{ctrArea2,jdbcType=VARCHAR},
+      </if>
+      <if test="tycj != null">
+        #{tycj,jdbcType=VARCHAR},
+      </if>
+      <if test="hzBzsl != null">
+        #{hzBzsl,jdbcType=INTEGER},
+      </if>
+      <if test="pjlx != null">
+        #{pjlx,jdbcType=VARCHAR},
+      </if>
+      <if test="pjkhthsj != null">
+        #{pjkhthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sddybh != null">
+        #{sddybh,jdbcType=VARCHAR},
+      </if>
+      <if test="cdxxycyy != null">
+        #{cdxxycyy,jdbcType=VARCHAR},
+      </if>
+      <if test="mygb != null">
+        #{mygb,jdbcType=VARCHAR},
+      </if>
+      <if test="yjtsbm != null">
+        #{yjtsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="suppliersellid != null">
+        #{suppliersellid,jdbcType=VARCHAR},
+      </if>
+      <if test="ocrid != null">
+        #{ocrid,jdbcType=VARCHAR},
+      </if>
+      <if test="wzhjdsj != null">
+        #{wzhjdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gjsbzt != null">
+        #{gjsbzt,jdbcType=VARCHAR},
+      </if>
+      <if test="sfjy != null">
+        #{sfjy,jdbcType=VARCHAR},
+      </if>
+      <if test="hgfxsjZqsj != null">
+        #{hgfxsjZqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="ohxtClbz != null">
+        #{ohxtClbz,jdbcType=VARCHAR},
+      </if>
+      <if test="ohxtClsj != null">
+        #{ohxtClsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bghbjxgbz != null">
+        #{bghbjxgbz,jdbcType=VARCHAR},
+      </if>
+      <if test="fxfsqrbz != null">
+        #{fxfsqrbz,jdbcType=VARCHAR},
+      </if>
+      <if test="qrdf != null">
+        #{qrdf,jdbcType=VARCHAR},
+      </if>
+      <if test="sfbhbj != null">
+        #{sfbhbj,jdbcType=VARCHAR},
+      </if>
+      <if test="sfxb != null">
+        #{sfxb,jdbcType=VARCHAR},
+      </if>
+      <if test="sjxgbz != null">
+        #{sjxgbz,jdbcType=VARCHAR},
+      </if>
+      <if test="rgzqDyxx != null">
+        #{rgzqDyxx,jdbcType=VARCHAR},
+      </if>
+      <if test="qrdfsj != null">
+        #{qrdfsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bhbjsj != null">
+        #{bhbjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjzqCdrgzqbz != null">
+        #{sjzqCdrgzqbz,jdbcType=VARCHAR},
+      </if>
+      <if test="sfzbzj != null">
+        #{sfzbzj,jdbcType=VARCHAR},
+      </if>
+      <if test="zbzjsj != null">
+        #{zbzjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="scsxgbz != null">
+        #{scsxgbz,jdbcType=VARCHAR},
+      </if>
+      <if test="yjhdsj != null">
+        #{yjhdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjhdsjSr != null">
+        #{yjhdsjSr,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfyzcf != null">
+        #{sfyzcf,jdbcType=VARCHAR},
+      </if>
+      <if test="yghgfxsj != null">
+        #{yghgfxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jsbz != null">
+        #{jsbz,jdbcType=VARCHAR},
+      </if>
+      <if test="bzjsjh != null">
+        #{bzjsjh,jdbcType=VARCHAR},
+      </if>
+      <if test="qyrq != null">
+        #{qyrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjkgsjsrsj != null">
+        #{yjkgsjsrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjbl != null">
+        #{yjbl,jdbcType=DOUBLE},
+      </if>
+      <if test="yj != null">
+        #{yj,jdbcType=DOUBLE},
+      </if>
+      <if test="zcqr != null">
+        #{zcqr,jdbcType=VARCHAR},
+      </if>
+      <if test="dsdyfzf != null">
+        #{dsdyfzf,jdbcType=VARCHAR},
+      </if>
+      <if test="dsdyfyzf != null">
+        #{dsdyfyzf,jdbcType=VARCHAR},
+      </if>
+      <if test="js != null">
+        #{js,jdbcType=VARCHAR},
+      </if>
+      <if test="hzjs != null">
+        #{hzjs,jdbcType=VARCHAR},
+      </if>
+      <if test="jgtkqr != null">
+        #{jgtkqr,jdbcType=VARCHAR},
+      </if>
+      <if test="bgdwjmc != null">
+        #{bgdwjmc,jdbcType=VARCHAR},
+      </if>
+      <if test="gwgysTymc != null">
+        #{gwgysTymc,jdbcType=VARCHAR},
+      </if>
+      <if test="jyjyzs != null">
+        #{jyjyzs,jdbcType=VARCHAR},
+      </if>
+      <if test="wjgd != null">
+        #{wjgd,jdbcType=VARCHAR},
+      </if>
+      <if test="sfyjyjyzs != null">
+        #{sfyjyjyzs,jdbcType=VARCHAR},
+      </if>
+      <if test="sfysd != null">
+        #{sfysd,jdbcType=VARCHAR},
+      </if>
+      <if test="sfygdwj != null">
+        #{sfygdwj,jdbcType=VARCHAR},
+      </if>
+      <if test="dztxts != null">
+        #{dztxts,jdbcType=INTEGER},
+      </if>
+      <if test="tdzt != null">
+        #{tdzt,jdbcType=INTEGER},
+      </if>
+      <if test="sdtgfs != null">
+        #{sdtgfs,jdbcType=INTEGER},
+      </if>
+      <if test="zdzfs != null">
+        #{zdzfs,jdbcType=INTEGER},
+      </if>
+      <if test="ohdlxy != null">
+        #{ohdlxy,jdbcType=VARCHAR},
+      </if>
+      <if test="zzrq != null">
+        #{zzrq,jdbcType=DATE},
+      </if>
+      <if test="dzqk != null">
+        #{dzqk,jdbcType=VARCHAR},
+      </if>
+      <if test="fkfs != null">
+        #{fkfs,jdbcType=VARCHAR},
+      </if>
+      <if test="jzxgjzxh != null">
+        #{jzxgjzxh,jdbcType=VARCHAR},
+      </if>
+      <if test="qgld != null">
+        #{qgld,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrbm != null">
+        #{jdrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrmc != null">
+        #{jdrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrjc != null">
+        #{jdrjc,jdbcType=VARCHAR},
+      </if>
+      <if test="jdrpym != null">
+        #{jdrpym,jdbcType=VARCHAR},
+      </if>
+      <if test="tsbz != null">
+        #{tsbz,jdbcType=VARCHAR},
+      </if>
+      <if test="sfsjjyw != null">
+        #{sfsjjyw,jdbcType=VARCHAR},
+      </if>
+      <if test="sfsy != null">
+        #{sfsy,jdbcType=VARCHAR},
+      </if>
+      <if test="bjys != null">
+        #{bjys,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzqMtdm != null">
+        #{sjzqMtdm,jdbcType=VARCHAR},
+      </if>
+      <if test="sffshb != null">
+        #{sffshb,jdbcType=VARCHAR},
+      </if>
+      <if test="sjkgsjLrsj != null">
+        #{sjkgsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjkgsjCzry != null">
+        #{sjkgsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="hgfxsjCzry != null">
+        #{hgfxsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="bjhsrry != null">
+        #{bjhsrry,jdbcType=VARCHAR},
+      </if>
+      <if test="bjhsrsj != null">
+        #{bjhsrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wxgj != null">
+        #{wxgj,jdbcType=VARCHAR},
+      </if>
+      <if test="cypz != null">
+        #{cypz,jdbcType=VARCHAR},
+      </if>
+      <if test="zf != null">
+        #{zf,jdbcType=DOUBLE},
+      </if>
+      <if test="sfpd != null">
+        #{sfpd,jdbcType=VARCHAR},
+      </if>
+      <if test="gwgysdz != null">
+        #{gwgysdz,jdbcType=VARCHAR},
+      </if>
+      <if test="zjsdz != null">
+        #{zjsdz,jdbcType=VARCHAR},
+      </if>
+      <if test="gjczbz != null">
+        #{gjczbz,jdbcType=VARCHAR},
+      </if>
+      <if test="gjczry != null">
+        #{gjczry,jdbcType=VARCHAR},
+      </if>
+      <if test="gjczsj != null">
+        #{gjczsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kylhsj != null">
+        #{kylhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kylhsjSrry != null">
+        #{kylhsjSrry,jdbcType=VARCHAR},
+      </if>
+      <if test="kylhsjLrsj != null">
+        #{kylhsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zbzj != null">
+        #{zbzj,jdbcType=VARCHAR},
+      </if>
+      <if test="ygkthsj != null">
+        #{ygkthsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="ygkthsjSjd != null">
+        #{ygkthsjSjd,jdbcType=VARCHAR},
+      </if>
+      <if test="yjbb != null">
+        #{yjbb,jdbcType=VARCHAR},
+      </if>
+      <if test="sfqgld != null">
+        #{sfqgld,jdbcType=VARCHAR},
+      </if>
+      <if test="xfs != null">
+        #{xfs,jdbcType=DOUBLE},
+      </if>
+      <if test="xccy != null">
+        #{xccy,jdbcType=VARCHAR},
+      </if>
+      <if test="xccyLrry != null">
+        #{xccyLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="xccyLrsj != null">
+        #{xccyLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="rjhwjyjyzm != null">
+        #{rjhwjyjyzm,jdbcType=VARCHAR},
+      </if>
+      <if test="bg != null">
+        #{bg,jdbcType=VARCHAR},
+      </if>
+      <if test="bj != null">
+        #{bj,jdbcType=VARCHAR},
+      </if>
+      <if test="wl != null">
+        #{wl,jdbcType=VARCHAR},
+      </if>
+      <if test="hd != null">
+        #{hd,jdbcType=VARCHAR},
+      </if>
+      <if test="fx != null">
+        #{fx,jdbcType=VARCHAR},
+      </if>
+      <if test="wlgsbm != null">
+        #{wlgsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="wlgsmc != null">
+        #{wlgsmc,jdbcType=VARCHAR},
+      </if>
+      <if test="wlgsjc != null">
+        #{wlgsjc,jdbcType=VARCHAR},
+      </if>
+      <if test="wlgspym != null">
+        #{wlgspym,jdbcType=VARCHAR},
+      </if>
+      <if test="hdrbm != null">
+        #{hdrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="hdrmc != null">
+        #{hdrmc,jdbcType=VARCHAR},
+      </if>
+      <if test="hdrjc != null">
+        #{hdrjc,jdbcType=VARCHAR},
+      </if>
+      <if test="hdrpym != null">
+        #{hdrpym,jdbcType=VARCHAR},
+      </if>
+      <if test="ckdwbm != null">
+        #{ckdwbm,jdbcType=VARCHAR},
+      </if>
+      <if test="ckdwmc != null">
+        #{ckdwmc,jdbcType=VARCHAR},
+      </if>
+      <if test="ckdwjc != null">
+        #{ckdwjc,jdbcType=VARCHAR},
+      </if>
+      <if test="ckdwpym != null">
+        #{ckdwpym,jdbcType=VARCHAR},
+      </if>
+      <if test="yjkgsjLrsj != null">
+        #{yjkgsjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjkgsjCzry != null">
+        #{yjkgsjCzry,jdbcType=VARCHAR},
+      </if>
+      <if test="sfjc != null">
+        #{sfjc,jdbcType=VARCHAR},
+      </if>
+      <if test="jclrry != null">
+        #{jclrry,jdbcType=VARCHAR},
+      </if>
+      <if test="jclrsj != null">
+        #{jclrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjccfy != null">
+        #{yjccfy,jdbcType=DOUBLE},
+      </if>
+      <if test="sfsq != null">
+        #{sfsq,jdbcType=VARCHAR},
+      </if>
+      <if test="sjccfy != null">
+        #{sjccfy,jdbcType=DOUBLE},
+      </if>
+      <if test="ccfbz != null">
+        #{ccfbz,jdbcType=VARCHAR},
+      </if>
+      <if test="sfcsbj != null">
+        #{sfcsbj,jdbcType=VARCHAR},
+      </if>
+      <if test="sjkbsj != null">
+        #{sjkbsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hbzqsj != null">
+        #{hbzqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bjyw != null">
+        #{bjyw,jdbcType=VARCHAR},
+      </if>
+      <if test="jhkbsj != null">
+        #{jhkbsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jhkbsjZqsj != null">
+        #{jhkbsjZqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjzqHgfxsj != null">
+        #{sjzqHgfxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjzqZqsj != null">
+        #{sjzqZqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="zbjyzkdsj != null">
+        #{zbjyzkdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sdBeizhu != null">
+        #{sdBeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="jsdwJsbm != null">
+        #{jsdwJsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="sjzfkhJsbm != null">
+        #{sjzfkhJsbm,jdbcType=VARCHAR},
+      </if>
+      <if test="gbhYwbh != null">
+        #{gbhYwbh,jdbcType=VARCHAR},
+      </if>
+      <if test="ysmxcd != null">
+        #{ysmxcd,jdbcType=VARCHAR},
+      </if>
+      <if test="sfqr != null">
+        #{sfqr,jdbcType=VARCHAR},
+      </if>
+      <if test="sftj != null">
+        #{sftj,jdbcType=VARCHAR},
+      </if>
+      <if test="hxzgtgzt != null">
+        #{hxzgtgzt,jdbcType=VARCHAR},
+      </if>
+      <if test="hxzgtgsj != null">
+        #{hxzgtgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="pcyjhsj != null">
+        #{pcyjhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="pcyjhsjTjry != null">
+        #{pcyjhsjTjry,jdbcType=VARCHAR},
+      </if>
+      <if test="pcyjhsjTjsj != null">
+        #{pcyjhsjTjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="mxqLrry != null">
+        #{mxqLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="mxqLrsj != null">
+        #{mxqLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="mcq != null">
+        #{mcq,jdbcType=DOUBLE},
+      </if>
+      <if test="ep25461 != null">
+        #{ep25461,jdbcType=VARCHAR},
+      </if>
+      <if test="sfbhbjLrry != null">
+        #{sfbhbjLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="sfbhbjLrrq != null">
+        #{sfbhbjLrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfzbzjLrry != null">
+        #{sfzbzjLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="sfzbzjLrrq != null">
+        #{sfzbzjLrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfcsbjLrry != null">
+        #{sfcsbjLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="sfcsbjLrrq != null">
+        #{sfcsbjLrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gwgysdm != null">
+        #{gwgysdm,jdbcType=VARCHAR},
+      </if>
+      <if test="zjsdm != null">
+        #{zjsdm,jdbcType=VARCHAR},
+      </if>
+      <if test="mxqrq != null">
+        #{mxqrq,jdbcType=DATE},
+      </if>
+      <if test="jyjysljg != null">
+        #{jyjysljg,jdbcType=VARCHAR},
+      </if>
+      <if test="kajyjyjg != null">
+        #{kajyjyjg,jdbcType=VARCHAR},
+      </if>
+      <if test="mddjyjyjg != null">
+        #{mddjyjyjg,jdbcType=VARCHAR},
+      </if>
+      <if test="lzjg != null">
+        #{lzjg,jdbcType=VARCHAR},
+      </if>
+      <if test="yjzxbs != null">
+        #{yjzxbs,jdbcType=VARCHAR},
+      </if>
+      <if test="sfyzbsd != null">
+        #{sfyzbsd,jdbcType=VARCHAR},
+      </if>
+      <if test="xc2ccy != null">
+        #{xc2ccy,jdbcType=VARCHAR},
+      </if>
+      <if test="xc2ccyLrry != null">
+        #{xc2ccyLrry,jdbcType=VARCHAR},
+      </if>
+      <if test="xc2ccyLrrq != null">
+        #{xc2ccyLrrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hgCdrq != null">
+        #{hgCdrq,jdbcType=VARCHAR},
+      </if>
+      <if test="hgDgrq != null">
+        #{hgDgrq,jdbcType=VARCHAR},
+      </if>
+      <if test="mcqRq != null">
+        #{mcqRq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jysbjg != null">
+        #{jysbjg,jdbcType=VARCHAR},
+      </if>
+      <if test="id != null">
+        #{id,jdbcType=INTEGER},
+      </if>
+      <if test="xskhbm != null">
+        #{xskhbm,jdbcType=VARCHAR},
+      </if>
+      <if test="xskhmc != null">
+        #{xskhmc,jdbcType=VARCHAR},
+      </if>
+      <if test="xskhjc != null">
+        #{xskhjc,jdbcType=VARCHAR},
+      </if>
+      <if test="xskhpym != null">
+        #{xskhpym,jdbcType=VARCHAR},
+      </if>
+      <if test="hzPp != null">
+        #{hzPp,jdbcType=VARCHAR},
+      </if>
+      <if test="hdzt != null">
+        #{hdzt,jdbcType=VARCHAR},
+      </if>
+      <if test="cdzh != null">
+        #{cdzh,jdbcType=VARCHAR},
+      </if>
+      <if test="zjzh != null">
+        #{zjzh,jdbcType=VARCHAR},
+      </if>
+      <if test="mtxx != null">
+        #{mtxx,jdbcType=VARCHAR},
+      </if>
+      <if test="gx != null">
+        #{gx,jdbcType=VARCHAR},
+      </if>
+      <if test="lldh != null">
+        #{lldh,jdbcType=VARCHAR},
+      </if>
+      <if test="ccrn != null">
+        #{ccrn,jdbcType=VARCHAR},
+      </if>
+      <if test="mjxx != null">
+        #{mjxx,jdbcType=VARCHAR},
+      </if>
+      <if test="tgrq != null">
+        #{tgrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jhrq != null">
+        #{jhrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="clxx != null">
+        #{clxx,jdbcType=VARCHAR},
+      </if>
+      <if test="xgcp != null">
+        #{xgcp,jdbcType=VARCHAR},
+      </if>
+      <if test="jhdd != null">
+        #{jhdd,jdbcType=VARCHAR},
+      </if>
+      <if test="jgwq != null">
+        #{jgwq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hgdc != null">
+        #{hgdc,jdbcType=VARCHAR},
+      </if>
+      <if test="ggrq != null">
+        #{ggrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qgrq != null">
+        #{qgrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xgjbbm != null">
+        #{xgjbbm,jdbcType=VARCHAR},
+      </if>
+      <if test="xgjb != null">
+        #{xgjb,jdbcType=VARCHAR},
+      </if>
+      <if test="szjbbm != null">
+        #{szjbbm,jdbcType=VARCHAR},
+      </if>
+      <if test="szjb != null">
+        #{szjb,jdbcType=VARCHAR},
+      </if>
+      <if test="tjhm != null">
+        #{tjhm,jdbcType=VARCHAR},
+      </if>
+      <if test="hgtjhm != null">
+        #{hgtjhm,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcp != null">
+        #{hgcp,jdbcType=VARCHAR},
+      </if>
+      <if test="sfcs != null">
+        #{sfcs,jdbcType=VARCHAR},
+      </if>
+      <if test="ysbz != null">
+        #{ysbz,jdbcType=VARCHAR},
+      </if>
+      <if test="hgrq != null">
+        #{hgrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hgdcbm != null">
+        #{hgdcbm,jdbcType=VARCHAR},
+      </if>
+      <if test="ssbm != null">
+        #{ssbm,jdbcType=VARCHAR},
+      </if>
+      <if test="xgccrq != null">
+        #{xgccrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="ccfysqlx != null">
+        #{ccfysqlx,jdbcType=VARCHAR},
+      </if>
+      <if test="ep25645 != null">
+        #{ep25645,jdbcType=VARCHAR},
+      </if>
+      <if test="sygq != null">
+        #{sygq,jdbcType=VARCHAR},
+      </if>
+      <if test="sygqjc != null">
+        #{sygqjc,jdbcType=VARCHAR},
+      </if>
+      <if test="sygqbm != null">
+        #{sygqbm,jdbcType=VARCHAR},
+      </if>
+      <if test="sygqpym != null">
+        #{sygqpym,jdbcType=VARCHAR},
+      </if>
+      <if test="gdwz != null">
+        #{gdwz,jdbcType=VARCHAR},
+      </if>
+      <if test="khzlrq != null">
+        #{khzlrq,jdbcType=DATE},
+      </if>
+      <if test="bm != null">
+        #{bm,jdbcType=VARCHAR},
+      </if>
+      <if test="hxzgqrry != null">
+        #{hxzgqrry,jdbcType=VARCHAR},
+      </if>
+      <if test="wxyffp != null">
+        #{wxyffp,jdbcType=VARCHAR},
+      </if>
+      <if test="tqhd != null">
+        #{tqhd,jdbcType=CHAR},
+      </if>
+      <if test="ep26040 != null">
+        #{ep26040,jdbcType=CHAR},
+      </if>
+      <if test="ep25894 != null">
+        #{ep25894,jdbcType=CHAR},
+      </if>
+      <if test="ldwc != null">
+        #{ldwc,jdbcType=CHAR},
+      </if>
+      <if test="sjclbz != null">
+        #{sjclbz,jdbcType=VARCHAR},
+      </if>
+      <if test="hbJhkbsj != null">
+        #{hbJhkbsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hbSjkbsj != null">
+        #{hbSjkbsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hbMt != null">
+        #{hbMt,jdbcType=VARCHAR},
+      </if>
+      <if test="hbCdljc != null">
+        #{hbCdljc,jdbcType=VARCHAR},
+      </if>
+      <if test="hkly != null">
+        #{hkly,jdbcType=VARCHAR},
+      </if>
+      <if test="zrpd2 != null">
+        #{zrpd2,jdbcType=VARCHAR},
+      </if>
+      <if test="zrpd3 != null">
+        #{zrpd3,jdbcType=VARCHAR},
+      </if>
+      <if test="zrpd != null">
+        #{zrpd,jdbcType=VARCHAR},
+      </if>
+      <if test="jwgysbm != null">
+        #{jwgysbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jwgysmc != null">
+        #{jwgysmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jwgysmcYw != null">
+        #{jwgysmcYw,jdbcType=VARCHAR},
+      </if>
+      <if test="jwgysdz != null">
+        #{jwgysdz,jdbcType=VARCHAR},
+      </if>
+      <if test="sfjnsj != null">
+        #{sfjnsj,jdbcType=VARCHAR},
+      </if>
+      <if test="hbCm != null">
+        #{hbCm,jdbcType=VARCHAR},
+      </if>
+      <if test="hbHc != null">
+        #{hbHc,jdbcType=VARCHAR},
+      </if>
+      <if test="sfsz != null">
+        #{sfsz,jdbcType=VARCHAR},
+      </if>
+      <if test="szsj != null">
+        #{szsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="szry != null">
+        #{szry,jdbcType=VARCHAR},
+      </if>
+      <if test="yssdcsj != null">
+        #{yssdcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="glcdyfs != null">
+        #{glcdyfs,jdbcType=CHAR},
+      </if>
+      <if test="dyckBgdZt != null">
+        #{dyckBgdZt,jdbcType=INTEGER},
+      </if>
+      <if test="dyckSeqno != null">
+        #{dyckSeqno,jdbcType=VARCHAR},
+      </if>
+      <if test="sfdztd != null">
+        #{sfdztd,jdbcType=CHAR},
+      </if>
+      <if test="swfxsj != null">
+        #{swfxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sftb != null">
+        #{sftb,jdbcType=VARCHAR},
+      </if>
+      <if test="dzsqqr != null">
+        #{dzsqqr,jdbcType=VARCHAR},
+      </if>
+      <if test="yjtgrq != null">
+        #{yjtgrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jyjysljgmc != null">
+        #{jyjysljgmc,jdbcType=VARCHAR},
+      </if>
+      <if test="kajyjyjgmc != null">
+        #{kajyjyjgmc,jdbcType=VARCHAR},
+      </if>
+      <if test="mddjyjyjgmc != null">
+        #{mddjyjyjgmc,jdbcType=VARCHAR},
+      </if>
+      <if test="lzjgmc != null">
+        #{lzjgmc,jdbcType=VARCHAR},
+      </if>
+      <if test="jckamc != null">
+        #{jckamc,jdbcType=VARCHAR},
+      </if>
+      <if test="dzlxmc != null">
+        #{dzlxmc,jdbcType=VARCHAR},
+      </if>
+      <if test="myfsmc != null">
+        #{myfsmc,jdbcType=VARCHAR},
+      </if>
+      <if test="hzdwdqmc != null">
+        #{hzdwdqmc,jdbcType=VARCHAR},
+      </if>
+      <if test="bzzlmc != null">
+        #{bzzlmc,jdbcType=VARCHAR},
+      </if>
+      <if test="ysgjmc != null">
+        #{ysgjmc,jdbcType=VARCHAR},
+      </if>
+      <if test="rjmddmc != null">
+        #{rjmddmc,jdbcType=VARCHAR},
+      </if>
+      <if test="zmfsmc != null">
+        #{zmfsmc,jdbcType=VARCHAR},
+      </if>
+      <if test="hbCmZqsj != null">
+        #{hbCmZqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfyjyyhx != null">
+        #{sfyjyyhx,jdbcType=VARCHAR},
+      </if>
+      <if test="sdjyyhxSj != null">
+        #{sdjyyhxSj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jyyhx != null">
+        #{jyyhx,jdbcType=VARCHAR},
+      </if>
+      <if test="sfgg != null">
+        #{sfgg,jdbcType=VARCHAR},
+      </if>
+      <if test="sfjj != null">
+        #{sfjj,jdbcType=CHAR},
+      </if>
+      <if test="jjyy != null">
+        #{jjyy,jdbcType=VARCHAR},
+      </if>
+      <if test="dyckSfsj != null">
+        #{dyckSfsj,jdbcType=VARCHAR},
+      </if>
+      <if test="dyckSjsj != null">
+        #{dyckSjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="dyckSjry != null">
+        #{dyckSjry,jdbcType=VARCHAR},
+      </if>
+      <if test="hkjs != null">
+        #{hkjs,jdbcType=INTEGER},
+      </if>
+      <if test="jjsj != null">
+        #{jjsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfcyJy != null">
+        #{sfcyJy,jdbcType=VARCHAR},
+      </if>
+      <if test="cyckmc != null">
+        #{cyckmc,jdbcType=VARCHAR},
+      </if>
+      <if test="cyrksj != null">
+        #{cyrksj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cyhgsj != null">
+        #{cyhgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="qdscsj != null">
+        #{qdscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jyzSzsj != null">
+        #{jyzSzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cyckbm != null">
+        #{cyckbm,jdbcType=VARCHAR},
+      </if>
+      <if test="jylzsj != null">
+        #{jylzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jyzjcsj != null">
+        #{jyzjcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jyzBz != null">
+        #{jyzBz,jdbcType=VARCHAR},
+      </if>
+      <if test="hzKhmc != null">
+        #{hzKhmc,jdbcType=VARCHAR},
+      </if>
+      <if test="dyckScry != null">
+        #{dyckScry,jdbcType=VARCHAR},
+      </if>
+      <if test="rwxz != null">
+        #{rwxz,jdbcType=VARCHAR},
+      </if>
+      <if test="ysje != null">
+        #{ysje,jdbcType=DOUBLE},
+      </if>
+      <if test="lyyf != null">
+        #{lyyf,jdbcType=DECIMAL},
+      </if>
+      <if test="cjfsmdf != null">
+        #{cjfsmdf,jdbcType=VARCHAR},
+      </if>
+      <if test="hgjdjd != null">
+        #{hgjdjd,jdbcType=VARCHAR},
+      </if>
+      <if test="hgjdjdsj != null">
+        #{hgjdjdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjzqYsgjmc != null">
+        #{sjzqYsgjmc,jdbcType=VARCHAR},
+      </if>
+      <if test="hgcyfs != null">
+        #{hgcyfs,jdbcType=CHAR},
+      </if>
+      <if test="hgjhcyrq != null">
+        #{hgjhcyrq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fhed != null">
+        #{fhed,jdbcType=DOUBLE},
+      </if>
+      <if test="zjyw != null">
+        #{zjyw,jdbcType=CHAR},
+      </if>
+      <if test="ts != null">
+        #{ts,jdbcType=CHAR},
+      </if>
+      <if test="tsUser != null">
+        #{tsUser,jdbcType=VARCHAR},
+      </if>
+      <if test="glcdwc != null">
+        #{glcdwc,jdbcType=CHAR},
+      </if>
+      <if test="glcdwcsj != null">
+        #{glcdwcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfyyfsj != null">
+        #{sfyyfsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cydlx != null">
+        #{cydlx,jdbcType=VARCHAR},
+      </if>
+      <if test="sffxs != null">
+        #{sffxs,jdbcType=CHAR},
+      </if>
+      <if test="znj != null">
+        #{znj,jdbcType=DECIMAL},
+      </if>
+      <if test="bgy != null">
+        #{bgy,jdbcType=VARCHAR},
+      </if>
+      <if test="sfzhg != null">
+        #{sfzhg,jdbcType=CHAR},
+      </if>
+      <if test="wlbz != null">
+        #{wlbz,jdbcType=VARCHAR},
+      </if>
+      <if test="dhtzs != null">
+        #{dhtzs,jdbcType=CHAR},
+      </if>
+      <if test="anYy != null">
+        #{anYy,jdbcType=CHAR},
+      </if>
+      <if test="mJxxsfywj != null">
+        #{mJxxsfywj,jdbcType=CHAR},
+      </if>
+      <if test="tsyy != null">
+        #{tsyy,jdbcType=VARCHAR},
+      </if>
+      <if test="tsjd != null">
+        #{tsjd,jdbcType=VARCHAR},
+      </if>
+      <if test="sblx != null">
+        #{sblx,jdbcType=VARCHAR},
+      </if>
+      <if test="ecwzsbsj != null">
+        #{ecwzsbsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bgdfxsj != null">
+        #{bgdfxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sbfsry != null">
+        #{sbfsry,jdbcType=VARCHAR},
+      </if>
+      <if test="yjhdbz != null">
+        #{yjhdbz,jdbcType=VARCHAR},
+      </if>
+      <if test="yjtgrqImportUser != null">
+        #{yjtgrqImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="mcqRqImportUser != null">
+        #{mcqRqImportUser,jdbcType=VARCHAR},
+      </if>
+      <if test="kddhHddz != null">
+        #{kddhHddz,jdbcType=VARCHAR},
+      </if>
+      <if test="ywryWl != null">
+        #{ywryWl,jdbcType=VARCHAR},
+      </if>
+      <if test="cwbz != null">
+        #{cwbz,jdbcType=VARCHAR},
+      </if>
+      <if test="beizhuZkj != null">
+        #{beizhuZkj,jdbcType=VARCHAR},
+      </if>
+      <if test="anJeGb != null">
+        #{anJeGb,jdbcType=DOUBLE},
+      </if>
+      <if test="anJeMj != null">
+        #{anJeMj,jdbcType=DOUBLE},
+      </if>
+      <if test="mjhl != null">
+        #{mjhl,jdbcType=DOUBLE},
+      </if>
+      <if test="wjfxsj != null">
+        #{wjfxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cyks != null">
+        #{cyks,jdbcType=VARCHAR},
+      </if>
+      <if test="fxycsjyy != null">
+        #{fxycsjyy,jdbcType=VARCHAR},
+      </if>
+      <if test="sjktgsj != null">
+        #{sjktgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yjkgsjtzgx != null">
+        #{yjkgsjtzgx,jdbcType=VARCHAR},
+      </if>
+      <if test="fbsh != null">
+        #{fbsh,jdbcType=VARCHAR},
+      </if>
+      <if test="fbshsj != null">
+        #{fbshsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfhdUser != null">
+        #{sfhdUser,jdbcType=VARCHAR},
+      </if>
+      <if test="mJxxsfywjUser != null">
+        #{mJxxsfywjUser,jdbcType=VARCHAR},
+      </if>
+      <if test="anJeGbUser != null">
+        #{anJeGbUser,jdbcType=VARCHAR},
+      </if>
+      <if test="anJeMjUser != null">
+        #{anJeMjUser,jdbcType=VARCHAR},
+      </if>
+      <if test="mjhlUser != null">
+        #{mjhlUser,jdbcType=VARCHAR},
+      </if>
+      <if test="lbsbbz != null">
+        #{lbsbbz,jdbcType=VARCHAR},
+      </if>
+      <if test="zjbz != null">
+        #{zjbz,jdbcType=VARCHAR},
+      </if>
+      <if test="lldhUser != null">
+        #{lldhUser,jdbcType=VARCHAR},
+      </if>
+      <if test="fqxs != null">
+        #{fqxs,jdbcType=DOUBLE},
+      </if>
+      <if test="fqxsBj != null">
+        #{fqxsBj,jdbcType=DOUBLE},
+      </if>
+      <if test="zrpdBeizhu != null">
+        #{zrpdBeizhu,jdbcType=VARCHAR},
+      </if>
+      <if test="zqzqcwxx != null">
+        #{zqzqcwxx,jdbcType=VARCHAR},
+      </if>
+      <if test="cjyzxt != null">
+        #{cjyzxt,jdbcType=VARCHAR},
+      </if>
+      <if test="cjyzrg != null">
+        #{cjyzrg,jdbcType=VARCHAR},
+      </if>
+      <if test="gxtssj != null">
+        #{gxtssj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xgdzqk != null">
+        #{xgdzqk,jdbcType=VARCHAR},
+      </if>
+      <if test="xghgsbJ != null">
+        #{xghgsbJ,jdbcType=VARCHAR},
+      </if>
+      <if test="xghgsbC != null">
+        #{xghgsbC,jdbcType=VARCHAR},
+      </if>
+      <if test="zjbjh != null">
+        #{zjbjh,jdbcType=VARCHAR},
+      </if>
+      <if test="zzqrsh != null">
+        #{zzqrsh,jdbcType=VARCHAR},
+      </if>
+      <if test="gzjysbsj != null">
+        #{gzjysbsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jqsbwcsj != null">
+        #{jqsbwcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fbhx != null">
+        #{fbhx,jdbcType=VARCHAR},
+      </if>
+      <if test="bcsfdj != null">
+        #{bcsfdj,jdbcType=VARCHAR},
+      </if>
+      <if test="cszt != null">
+        #{cszt,jdbcType=NVARCHAR},
+      </if>
+      <if test="jckfs != null">
+        #{jckfs,jdbcType=NVARCHAR},
+      </if>
+      <if test="lbsb != null">
+        #{lbsb,jdbcType=VARCHAR},
+      </if>
+      <if test="khhzzs != null">
+        #{khhzzs,jdbcType=VARCHAR},
+      </if>
+      <if test="sfgdzf != null">
+        #{sfgdzf,jdbcType=VARCHAR},
+      </if>
+      <if test="gdzf != null">
+        #{gdzf,jdbcType=DECIMAL},
+      </if>
+      <if test="hdtdlx != null">
+        #{hdtdlx,jdbcType=VARCHAR},
+      </if>
+      <if test="hzSpmcsfss != null">
+        #{hzSpmcsfss,jdbcType=VARCHAR},
+      </if>
+      <if test="zjesfss != null">
+        #{zjesfss,jdbcType=VARCHAR},
+      </if>
+      <if test="kpjesfss != null">
+        #{kpjesfss,jdbcType=VARCHAR},
+      </if>
+      <if test="ejycddm != null">
+        #{ejycddm,jdbcType=VARCHAR},
+      </if>
+      <if test="szflag != null">
+        #{szflag,jdbcType=VARCHAR},
+      </if>
+      <if test="zbsd != null">
+        #{zbsd,jdbcType=CHAR},
+      </if>
+      <if test="fbsd != null">
+        #{fbsd,jdbcType=CHAR},
+      </if>
+      <if test="zscssd != null">
+        #{zscssd,jdbcType=CHAR},
+      </if>
+      <if test="bah != null">
+        #{bah,jdbcType=VARCHAR},
+      </if>
+      <if test="jkrq != null">
+        #{jkrq,jdbcType=DATE},
+      </if>
+      <if test="xkzh != null">
+        #{xkzh,jdbcType=VARCHAR},
+      </if>
+      <if test="tsgxqr != null">
+        #{tsgxqr,jdbcType=VARCHAR},
+      </if>
+      <if test="jgyxqr != null">
+        #{jgyxqr,jdbcType=VARCHAR},
+      </if>
+      <if test="txqsyfzfqr != null">
+        #{txqsyfzfqr,jdbcType=VARCHAR},
+      </if>
+      <if test="sdwzh != null">
+        #{sdwzh,jdbcType=VARCHAR},
+      </if>
+      <if test="zzbs != null">
+        #{zzbs,jdbcType=VARCHAR},
+      </if>
+      <if test="dbyf != null">
+        #{dbyf,jdbcType=VARCHAR},
+      </if>
+      <if test="qyzzcn != null">
+        #{qyzzcn,jdbcType=VARCHAR},
+      </if>
+      <if test="yxys != null">
+        #{yxys,jdbcType=VARCHAR},
+      </if>
+      <if test="hgfxfsUser != null">
+        #{hgfxfsUser,jdbcType=VARCHAR},
+      </if>
+      <if test="xghgsbJDate != null">
+        #{xghgsbJDate,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xghgsbCDate != null">
+        #{xghgsbCDate,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jgycxx != null">
+        #{jgycxx,jdbcType=VARCHAR},
+      </if>
+      <if test="dyckState != null">
+        #{dyckState,jdbcType=VARCHAR},
+      </if>
+      <if test="grabHbhc != null">
+        #{grabHbhc,jdbcType=VARCHAR},
+      </if>
+      <if test="khbmDlxyh != null">
+        #{khbmDlxyh,jdbcType=VARCHAR},
+      </if>
+      <if test="yjcysjLrsj != null">
+        #{yjcysjLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfxh != null">
+        #{sfxh,jdbcType=CHAR},
+      </if>
+      <if test="jczbzlbz != null">
+        #{jczbzlbz,jdbcType=CHAR},
+      </if>
+      <if test="jczbzlsj != null">
+        #{jczbzlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xcsdzbzlbz != null">
+        #{xcsdzbzlbz,jdbcType=CHAR},
+      </if>
+      <if test="xcsdzbzlsj != null">
+        #{xcsdzbzlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xcsdzbzlry != null">
+        #{xcsdzbzlry,jdbcType=VARCHAR},
+      </if>
+      <if test="zbsqsj != null">
+        #{zbsqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="fbsqsj != null">
+        #{fbsqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cssqsj != null">
+        #{cssqsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="grabHbhcDate != null">
+        #{grabHbhcDate,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfxpt != null">
+        #{sfxpt,jdbcType=CHAR},
+      </if>
+      <if test="gqzt != null">
+        #{gqzt,jdbcType=VARCHAR},
+      </if>
+      <if test="jgsj != null">
+        #{jgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sdtzfp != null">
+        #{sdtzfp,jdbcType=NVARCHAR},
+      </if>
+      <if test="gzjysbsjLrry != null">
+        #{gzjysbsjLrry,jdbcType=NVARCHAR},
+      </if>
+      <if test="jqsbwcsjLrry != null">
+        #{jqsbwcsjLrry,jdbcType=NVARCHAR},
+      </if>
+      <if test="sddzBgsj != null">
+        #{sddzBgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sddzCzsj != null">
+        #{sddzCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="lrwcCzsj != null">
+        #{lrwcCzsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sddzSdsj != null">
+        #{sddzSdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="shwcSdsj != null">
+        #{shwcSdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sdsdBgsj != null">
+        #{sdsdBgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sddzHxsj != null">
+        #{sddzHxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="wchxHxsj != null">
+        #{wchxHxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bgdscsj != null">
+        #{bgdscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xcsdLrsj != null">
+        #{xcsdLrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="xcsd != null">
+        #{xcsd,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfggLlsj != null">
+        #{sfggLlsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kpcysj != null">
+        #{kpcysj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sjkgsjtzgx != null">
+        #{sjkgsjtzgx,jdbcType=VARCHAR},
+      </if>
+      <if test="sfjydjc != null">
+        #{sfjydjc,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfjydjcsj != null">
+        #{sfjydjcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="gxksbsj != null">
+        #{gxksbsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cyzt != null">
+        #{cyzt,jdbcType=VARCHAR},
+      </if>
+      <if test="xcsjHz != null">
+        #{xcsjHz,jdbcType=VARCHAR},
+      </if>
+      <if test="xgxcsjHz != null">
+        #{xgxcsjHz,jdbcType=VARCHAR},
+      </if>
+      <if test="zdxcsjHz != null">
+        #{zdxcsjHz,jdbcType=VARCHAR},
+      </if>
+      <if test="wjljHz != null">
+        #{wjljHz,jdbcType=VARCHAR},
+      </if>
+      <if test="lldhHz != null">
+        #{lldhHz,jdbcType=VARCHAR},
+      </if>
+      <if test="sfjydsd != null">
+        #{sfjydsd,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfjydsdsj != null">
+        #{sfjydsdsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="yglx != null">
+        #{yglx,jdbcType=VARCHAR},
+      </if>
+      <if test="sfcyJyz != null">
+        #{sfcyJyz,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfxzJyz != null">
+        #{sfxzJyz,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfjdJyz != null">
+        #{sfjdJyz,jdbcType=NVARCHAR},
+      </if>
+      <if test="sfjdsjJyz != null">
+        #{sfjdsjJyz,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfnzJyz != null">
+        #{sfnzJyz,jdbcType=NVARCHAR},
+      </if>
+      <if test="xhgqZq != null">
+        #{xhgqZq,jdbcType=VARCHAR},
+      </if>
+      <if test="xhgqbmZq != null">
+        #{xhgqbmZq,jdbcType=VARCHAR},
+      </if>
+      <if test="xhgqpymZq != null">
+        #{xhgqpymZq,jdbcType=VARCHAR},
+      </if>
+      <if test="xhgqjcZq != null">
+        #{xhgqjcZq,jdbcType=VARCHAR},
+      </if>
+      <if test="sfcyHzJzxh != null">
+        #{sfcyHzJzxh,jdbcType=VARCHAR},
+      </if>
+      <if test="jgycxq != null">
+        #{jgycxq,jdbcType=VARCHAR},
+      </if>
+      <if test="hzBzcdm != null">
+        #{hzBzcdm,jdbcType=VARCHAR},
+      </if>
+      <if test="hzGydm != null">
+        #{hzGydm,jdbcType=VARCHAR},
+      </if>
+      <if test="sfhx != null">
+        #{sfhx,jdbcType=VARCHAR},
+      </if>
+      <if test="yljtz != null">
+        #{yljtz,jdbcType=VARCHAR},
+      </if>
+      <if test="bqzpsfsd != null">
+        #{bqzpsfsd,jdbcType=VARCHAR},
+      </if>
+      <if test="lclsyjd != null">
+        #{lclsyjd,jdbcType=VARCHAR},
+      </if>
+      <if test="hzSfscfp != null">
+        #{hzSfscfp,jdbcType=VARCHAR},
+      </if>
+      <if test="tgyxq != null">
+        #{tgyxq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="cqbz != null">
+        #{cqbz,jdbcType=NVARCHAR},
+      </if>
+      <if test="bzcmc != null">
+        #{bzcmc,jdbcType=VARCHAR},
+      </if>
+      <if test="gymc != null">
+        #{gymc,jdbcType=VARCHAR},
+      </if>
+      <if test="lkmc != null">
+        #{lkmc,jdbcType=VARCHAR},
+      </if>
+      <if test="sjhwfxsj != null">
+        #{sjhwfxsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hdwlFh != null">
+        #{hdwlFh,jdbcType=NVARCHAR},
+      </if>
+      <if test="hdwlZg != null">
+        #{hdwlZg,jdbcType=NVARCHAR},
+      </if>
+      <if test="hdwlXg != null">
+        #{hdwlXg,jdbcType=NVARCHAR},
+      </if>
+      <if test="hdwlJhd != null">
+        #{hdwlJhd,jdbcType=NVARCHAR},
+      </if>
+      <if test="hdwlJzxpz != null">
+        #{hdwlJzxpz,jdbcType=DECIMAL},
+      </if>
+      <if test="ydbl != null">
+        #{ydbl,jdbcType=VARCHAR},
+      </if>
+      <if test="anyfk != null">
+        #{anyfk,jdbcType=VARCHAR},
+      </if>
+      <if test="tdsfdd != null">
+        #{tdsfdd,jdbcType=VARCHAR},
+      </if>
+      <if test="fsdz != null">
+        #{fsdz,jdbcType=VARCHAR},
+      </if>
+      <if test="ppmc != null">
+        #{ppmc,jdbcType=VARCHAR},
+      </if>
+      <if test="sfhyxqd != null">
+        #{sfhyxqd,jdbcType=VARCHAR},
+      </if>
+      <if test="hyxqdtgsj != null">
+        #{hyxqdtgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="hyxqdqr != null">
+        #{hyxqdqr,jdbcType=VARCHAR},
+      </if>
+      <if test="hyxqdqrsj != null">
+        #{hyxqdqrsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kygclx != null">
+        #{kygclx,jdbcType=VARCHAR},
+      </if>
+      <if test="kygcgh != null">
+        #{kygcgh,jdbcType=VARCHAR},
+      </if>
+      <if test="yhzt != null">
+        #{yhzt,jdbcType=VARCHAR},
+      </if>
+      <if test="yhsj != null">
+        #{yhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="kcsj != null">
+        #{kcsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="scyjkgsj != null">
+        #{scyjkgsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="jyjyzscxm != null">
+        #{jyjyzscxm,jdbcType=NVARCHAR},
+      </if>
+      <if test="jyjyzscxmjssj != null">
+        #{jyjyzscxmjssj,jdbcType=VARCHAR},
+      </if>
+      <if test="gsdjqr != null">
+        #{gsdjqr,jdbcType=VARCHAR},
+      </if>
+      <if test="zdjgqr != null">
+        #{zdjgqr,jdbcType=VARCHAR},
+      </if>
+      <if test="sfbc != null">
+        #{sfbc,jdbcType=CHAR},
+      </if>
+      <if test="hxbeizhu != null">
+        #{hxbeizhu,jdbcType=NVARCHAR},
+      </if>
+      <if test="jzhjgwq != null">
+        #{jzhjgwq,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bgdhsj != null">
+        #{bgdhsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="bgdyczt != null">
+        #{bgdyczt,jdbcType=VARCHAR},
+      </if>
+      <if test="sbsxyczt != null">
+        #{sbsxyczt,jdbcType=VARCHAR},
+      </if>
+      <if test="zdrbm != null">
+        #{zdrbm,jdbcType=VARCHAR},
+      </if>
+      <if test="zdrbmmc != null">
+        #{zdrbmmc,jdbcType=VARCHAR},
+      </if>
+      <if test="zbjcqk != null">
+        #{zbjcqk,jdbcType=VARCHAR},
+      </if>
+      <if test="zbsdqk != null">
+        #{zbsdqk,jdbcType=VARCHAR},
+      </if>
+      <if test="jysjzsscscsj != null">
+        #{jysjzsscscsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="sfjjlx != null">
+        #{sfjjlx,jdbcType=CHAR},
+      </if>
+      <if test="sqkp != null">
+        #{sqkp,jdbcType=CHAR},
+      </if>
+      <if test="jyzSzGzr != null">
+        #{jyzSzGzr,jdbcType=INTEGER},
+      </if>
+      <if test="jyzSzSfyc != null">
+        #{jyzSzSfyc,jdbcType=CHAR},
+      </if>
+      <if test="mnsdsqzt != null">
+        #{mnsdsqzt,jdbcType=VARCHAR},
+      </if>
+      <if test="sdtzfpsj != null">
+        #{sdtzfpsj,jdbcType=TIMESTAMP},
+      </if>
+      <if test="rpaXrsj != null">
+        #{rpaXrsj,jdbcType=TIMESTAMP},
+      </if>
+    </trim>
+  </insert>
+</mapper>
\ No newline at end of file
Index: jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/YwShipPortResultMapper.xml
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/YwShipPortResultMapper.xml	(revision 33863)
+++ jinan/trunk/yunna/src/main/java/com/freshport/dao/Mapper/YwShipPortResultMapper.xml	(revision 33864)
@@ -418,7 +418,7 @@
   	  		update yw_ship_port_result
     		<set> 
 		        	eta_status = '1',
-		        	new_eta_time = #{item.newExpectArrivalTime}
+		        	new_eta_time = #{item.newEtaTime}
 		      </set>
 		    where business_no = #{item.businessNo}
 		    	and batch_no = #{item.batchNo}
@@ -430,7 +430,7 @@
   	  		update yw_ship_port_result
     		<set> 
 		        	upd_status = '1',
-		        	new_eta_time = #{item.newExpectArrivalTime}
+		        	new_eta_time = #{item.newEtaTime}
 		      </set>
 		    where business_no = #{item.businessNo}
 		    	and batch_no = #{item.batchNo}
Index: jinan/trunk/yunna/src/main/java/com/freshport/dao/ShipPortMapper.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/dao/ShipPortMapper.java	(revision 33863)
+++ jinan/trunk/yunna/src/main/java/com/freshport/dao/ShipPortMapper.java	(revision 33864)
@@ -4,6 +4,8 @@
 
 import org.apache.ibatis.annotations.Param;
 
+import com.freshport.entity.YwHddz;
+import com.freshport.entity.YwHddzJzxxx;
 import com.freshport.entity.yunna.LoadingNumberResultVO;
 import com.freshport.entity.yunna.PortForHddzVO;
 import com.freshport.entity.yunna.ShipForHddzVO;
@@ -89,7 +91,7 @@
      * @author lixd  
      * @date 2023-03-20 09:28:40
      */
-    void updatePortInfoListForHddz(List<PortForHddzVO> list);
+    void updatePortInfoListForHddz(List<YwHddz> list);
 
     /**
      * 
@@ -100,7 +102,7 @@
      * @author lixd  
      * @date 2023-03-20 09:29:18
      */
-    void updatePortInfoListForJzxh(List<PortForHddzVO> list);
+    void updatePortInfoListForJzxh(List<YwHddzJzxxx> list);
 
     /**
      * 
@@ -123,7 +125,7 @@
      * @author lixd  
      * @date 2023-03-20 13:47:20
      */
-    void updateShipInfoListForHddz(List<ShipForHddzVO> list);
+    void updateShipInfoListForHddz(List<YwHddz> list);
 
     /**
      * 
@@ -134,6 +136,6 @@
      * @author lixd  
      * @date 2023-03-27 11:10:28
      */
-    void updateShipEtaListForHddz(List<ShipForHddzVO> list);
+    void updateShipEtaListForHddz(List<YwHddz> list);
 
 }
\ No newline at end of file
Index: jinan/trunk/yunna/src/main/java/com/freshport/dao/YwHddzJzxxxMapper.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/dao/YwHddzJzxxxMapper.java	(revision 0)
+++ jinan/trunk/yunna/src/main/java/com/freshport/dao/YwHddzJzxxxMapper.java	(revision 33864)
@@ -0,0 +1,17 @@
+package com.freshport.dao;
+
+import com.freshport.entity.YwHddzJzxxx;
+
+public interface YwHddzJzxxxMapper {
+    int deleteByPrimaryKey(Integer id);
+
+    int insert(YwHddzJzxxx record);
+
+    int insertSelective(YwHddzJzxxx record);
+
+    YwHddzJzxxx selectByPrimaryKey(Integer id);
+
+    int updateByPrimaryKeySelective(YwHddzJzxxx record);
+
+    int updateByPrimaryKey(YwHddzJzxxx record);
+}
\ No newline at end of file
Index: jinan/trunk/yunna/src/main/java/com/freshport/dao/YwHddzMapper.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/dao/YwHddzMapper.java	(revision 0)
+++ jinan/trunk/yunna/src/main/java/com/freshport/dao/YwHddzMapper.java	(revision 33864)
@@ -0,0 +1,9 @@
+package com.freshport.dao;
+
+import com.freshport.entity.YwHddz;
+
+public interface YwHddzMapper {
+    int insert(YwHddz record);
+
+    int insertSelective(YwHddz record);
+}
\ No newline at end of file


Index: jinan/trunk/yunna/src/main/java/com/freshport/dao/YwShipPortResultMapper.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/dao/YwShipPortResultMapper.java	(revision 33863)
+++ jinan/trunk/yunna/src/main/java/com/freshport/dao/YwShipPortResultMapper.java	(revision 33864)
@@ -5,8 +5,6 @@
 import org.apache.ibatis.annotations.Param;
 
 import com.freshport.entity.YwShipPortResult;
-import com.freshport.entity.yunna.PortForHddzVO;
-import com.freshport.entity.yunna.ShipForHddzVO;
 
 public interface YwShipPortResultMapper {
     int deleteByPrimaryKey(String ysprId);
@@ -45,7 +43,7 @@
      * @author lixd  
      * @date 2023-03-29 14:55:48
      */
-    void updateEtaStatusAndNewEtaTimeForShip(@Param("list") List<ShipForHddzVO> list);
+    void updateEtaStatusAndNewEtaTimeForShip(@Param("list") List<YwShipPortResult> list);
 
     /**
      * 
@@ -56,5 +54,5 @@
      * @author lixd  
      * @date 2023-03-29 15:16:26
      */
-    void updateUpdStatusAndNewEtaTimeForPort(@Param("list") List<PortForHddzVO> list);
+    void updateUpdStatusAndNewEtaTimeForPort(@Param("list") List<YwShipPortResult> list);
 }
\ No newline at end of file
Index: jinan/trunk/yunna/src/main/java/com/freshport/entity/YwHddz.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/entity/YwHddz.java	(revision 0)
+++ jinan/trunk/yunna/src/main/java/com/freshport/entity/YwHddz.java	(revision 33864)
@@ -0,0 +1,8336 @@
+package com.freshport.entity;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+public class YwHddz {
+    private String ywbh;
+
+    private String zbr;
+
+    private Date zbrq;
+
+    private String dlwtf;
+
+    private String hth;
+
+    private String dlxyh;
+
+    private String zydl;
+
+    private String hdgsbm;
+
+    private String hdgsmc;
+
+    private String hdgsjc;
+
+    private String hdgspym;
+
+    private String bggsbm;
+
+    private String bggsmc;
+
+    private String bggsjc;
+
+    private String bggspym;
+
+    private String bjgsbm;
+
+    private String bjgsmc;
+
+    private String bjgsjc;
+
+    private String bjgspym;
+
+    private String bjgssjjgdm;
+
+    private String khbm;
+
+    private String khmc;
+
+    private String khjc;
+
+    private String khpym;
+
+    private String shdwbm;
+
+    private String shdwmc;
+
+    private String shdwjc;
+
+    private String shdwpym;
+
+    private String jydwbm;
+
+    private String jydwmc;
+
+    private String jydwjc;
+
+    private String jydwpym;
+
+    private String jydwsjjgdm;
+
+    private String gwgysbm;
+
+    private String gwgysmc;
+
+    private String gwgysjc;
+
+    private String gwgyspym;
+
+    private String zjsbm;
+
+    private String zjsmc;
+
+    private String zjsjc;
+
+    private String zjspym;
+
+    private String gwhdbm;
+
+    private String gwhdmc;
+
+    private String gwhdjc;
+
+    private String gwhdpym;
+
+    private String tzrbm;
+
+    private String tzrmc;
+
+    private String tzrjc;
+
+    private String tzrpym;
+
+    private String ysfs;
+
+    private String tdlx;
+
+    private String cyrbm;
+
+    private String cyr;
+
+    private String cyrjc;
+
+    private String cyrpym;
+
+    private String cdgsbm;
+
+    private String cdgs;
+
+    private String cdgsjc;
+
+    private String cdgspym;
+
+    private String cm;
+
+    private String hcorhbh;
+
+    private String hcorhbhZq;
+
+    private String sfzy;
+
+    private String zzCm;
+
+    private String zzHcorhbh;
+
+    private String zzgk;
+
+    private String ztdh;
+
+    private String sfshytd;
+
+    private String ftdh;
+
+    private String hygsbm;
+
+    private String hygsmc;
+
+    private String hygsjc;
+
+    private String hygspym;
+
+    private String hdhdgs;
+
+    private String qyg;
+
+    private String qygdm;
+
+    private String qygsjgkdm;
+
+    private String mdg;
+
+    private String xhgqbm;
+
+    private String xhgq;
+
+    private String xhgqjc;
+
+    private String xhgqpym;
+
+    private Date yjkgsj;
+
+    private Date sjkgsj;
+
+    private String sfxyechd;
+
+    private String ycd;
+
+    private String ycddm;
+
+    private String ejycd;
+
+    private Integer mxq;
+
+    private String jgfs;
+
+    private String wbbb;
+
+    private Double zje;
+
+    private Double zmyhl;
+
+    private Double zmyje;
+
+    private String sfyyf;
+
+    private Double yfje;
+
+    private String yfbb;
+
+    private Date sdyffpsj;
+
+    private String khorhd;
+
+    private String yfcdrbm;
+
+    private String yfcdr;
+
+    private String yfcdrjc;
+
+    private String yfcdrpym;
+
+    private String kddh;
+
+    private Date sdsdsj;
+
+    private Date yfzfqrsj;
+
+    private String yfbz;
+
+    private Date gkhfpsj;
+
+    private String yfzfjg;
+
+    private String state;
+
+    private String beizhu;
+
+    private Date kyhdsj;
+
+    private Date sjhdsj;
+
+    private String hdbz;
+
+    private String xtdh;
+
+    private Double gs;
+
+    private Double zzs;
+
+    private Double bzj;
+
+    private Date sjzfrq;
+
+    private Double gsBj;
+
+    private Double zzsBj;
+
+    private Double bzjBj;
+
+    private Date sjzfrqBj;
+
+    private String bzjzfrbm;
+
+    private String bzjzfr;
+
+    private String bzjzfrjc;
+
+    private String bzjzfrpym;
+
+    private Date bzjsj;
+
+    private Double bzjje;
+
+    private String bzjdjh;
+
+    private Date bzjjzsj;
+
+    private String bzjymxz;
+
+    private String bzjym;
+
+    private Date stbrysj;
+
+    private Date shgsj;
+
+    private Date hgclsj;
+
+    private Double tbzj;
+
+    private Double zzzs;
+
+    private Double zgs;
+
+    private Double hghdjg;
+
+    private Date tkdzsj;
+
+    private Date wsbjsj;
+
+    private String bjh;
+
+    private Date bjsj;
+
+    private Date cktgsj;
+
+    private String tgdh;
+
+    private Date wzhfxsj;
+
+    private String bgdh;
+
+    private Date bgsj;
+
+    private String bghgbm;
+
+    private String bghg;
+
+    private String bghgjc;
+
+    private String bghgpym;
+
+    private String jyjbm;
+
+    private String jyjmc;
+
+    private String jyjjc;
+
+    private String jyjpym;
+
+    private String jyjsjjgdm;
+
+    private String sfcy;
+
+    private String cydbm;
+
+    private String cyd;
+
+    private String cydjc;
+
+    private String cydpym;
+
+    private Date yjcysj;
+
+    private Date sjcysj;
+
+    private String cybz;
+
+    private Date hgfxsj;
+
+    private Date hgfxsjSrsj;
+
+    private String kgbz;
+
+    private String fph;
+
+    private String sjzfkhlx;
+
+    private String sjzfkhbm;
+
+    private String sjzfkhmc;
+
+    private String sjzfkhjc;
+
+    private String sjzfkhpym;
+
+    private Double zbj;
+
+    private String sjbz;
+
+    private String jybz;
+
+    private String jydbm;
+
+    private String jyd;
+
+    private String jydjc;
+
+    private String jydpym;
+
+    private Date hdsj;
+
+    private String bgbz;
+
+    private String hgfxfs;
+
+    private String hgtgwt;
+
+    private String hzJzxh;
+
+    private String hzSpmc;
+
+    private Date sdsdrq;
+
+    private Date sdkhqzrq;
+
+    private String sdbz;
+
+    private String sdkddh;
+
+    private String bzjbz;
+
+    private String fxbz;
+
+    private String clfs;
+
+    private Date beizhuXgrq;
+
+    private Double hzSl;
+
+    private String mtdm;
+
+    private String sfqycdz;
+
+    private Date lzsj;
+
+    private String ycdzsh;
+
+    private Integer khmxq;
+
+    private String invoiceno;
+
+    private Date invoiceDate;
+
+    private String sfsdhdzl;
+
+    private String sfhd;
+
+    private String sfytzcgskp;
+
+    private Date tzcgskpsj;
+
+    private String sfyfyzf;
+
+    private String sfyzbg;
+
+    private String cmZw;
+
+    private String sfsdsd;
+
+    private String jsdwbm;
+
+    private String jsdwmc;
+
+    private String jsdwjc;
+
+    private String jsdwpym;
+
+    private String xtdlx;
+
+    private String hgclbh;
+
+    private Date hdzljcsj;
+
+    private String jcgzry;
+
+    private String hdzljcbz;
+
+    private Date bgsxtdsj;
+
+    private Date bgscxtdsj;
+
+    private Date thhtjhsj;
+
+    private String jjcd;
+
+    private Double tcts;
+
+    private String zthsq;
+
+    private Date yjlgsj;
+
+    private Date zthsqsj;
+
+    private String ytjkzt;
+
+    private String dzlx;
+
+    private String jydwdm;
+
+    private String hzdwdqdm;
+
+    private String shdwdm;
+
+    private String sbdwdm;
+
+    private String jcka;
+
+    private String myfs;
+
+    private String zmfs;
+
+    private String yfbj;
+
+    private String bxfbj;
+
+    private String bxfbb;
+
+    private Double bxfje;
+
+    private Double zxs;
+
+    private Double zmz;
+
+    private Double zjz;
+
+    private String bzzl;
+
+    private String jckbz;
+
+    private String ytbz;
+
+    private String qiyunguo;
+
+    private String qiyunguodm;
+
+    private String htd;
+
+    private Date htdRq;
+
+    private String sfqrbzlx;
+
+    private String ytjkwjbh;
+
+    private Date ytjkfssj;
+
+    private Integer ytjkfscs;
+
+    private String ep15212;
+
+    private String ep14515;
+
+    private String ep14516;
+
+    private String ep14514;
+
+    private String ytzt;
+
+    private String ytsjfszt;
+
+    private String sfkydqsjjk;
+
+    private String bjgslxr;
+
+    private String bjgslxdh;
+
+    private String bjydm;
+
+    private String qyxz;
+
+    private String sfwstzcc;
+
+    private String tstk;
+
+    private String hwcfd;
+
+    private String yt;
+
+    private Integer spts;
+
+    private String zsbh;
+
+    private String zsmc;
+
+    private String bjlb;
+
+    private String mt;
+
+    private String ysgj;
+
+    private String sfdj;
+
+    private String sfdjbm;
+
+    private String rjka;
+
+    private String rjmdd;
+
+    private Double dfcyf;
+
+    private Double dfcbxf;
+
+    private String sffsrjsj;
+
+    private Date rjjkfssj;
+
+    private Integer rjjkfscs;
+
+    private String bzjsqly;
+
+    private String clqy;
+
+    private String sdlqr;
+
+    private Date sdlqsj;
+
+    private Date sddzsj;
+
+    private String sdh;
+
+    private Double ktgs;
+
+    private Double ktzzs;
+
+    private String yzbh;
+
+    private String skdbtzspdQt;
+
+    private String skdbtzspdTzsy;
+
+    private Date bzjKhsksj;
+
+    private Date sjKhsksj;
+
+    private String sftk;
+
+    private Date zcrq;
+
+    private String sfyfh;
+
+    private String fh;
+
+    private String hzHgbm;
+
+    private String hzPz;
+
+    private String hzSpywmc;
+
+    private String hzSjshr;
+
+    private Integer hzSjshrgs;
+
+    private String zgggbz;
+
+    private String dmbz;
+
+    private String yfbzDz;
+
+    private String yflrbh;
+
+    private Integer jzxsl;
+
+    private Integer hzTpsl;
+
+    private Integer hzSzsl;
+
+    private String hzZhlx;
+
+    private String hzXx;
+
+    private String sjzqCm;
+
+    private String sjzqHc;
+
+    private Double sjzqJs;
+
+    private Double sjzqZl;
+
+    private String sgzqDyxx;
+
+    private String sjzqJkdgqrbz;
+
+    private String sjzqLhzt;
+
+    private String sjzqCkdyzt;
+
+    private Date sjzqZqcdsj;
+
+    private Date sjzqZqdgsj;
+
+    private Date sjzqZqlhsj;
+
+    private String sdry;
+
+    private String yfqr;
+
+    private String dqdm;
+
+    private String ctrArea2;
+
+    private String tycj;
+
+    private Integer hzBzsl;
+
+    private String pjlx;
+
+    private Date pjkhthsj;
+
+    private String sddybh;
+
+    private String cdxxycyy;
+
+    private String mygb;
+
+    private String yjtsbm;
+
+    private String suppliersellid;
+
+    private String ocrid;
+
+    private Date wzhjdsj;
+
+    private String gjsbzt;
+
+    private String sfjy;
+
+    private Date hgfxsjZqsj;
+
+    private String ohxtClbz;
+
+    private Date ohxtClsj;
+
+    private String bghbjxgbz;
+
+    private String fxfsqrbz;
+
+    private String qrdf;
+
+    private String sfbhbj;
+
+    private String sfxb;
+
+    private String sjxgbz;
+
+    private String rgzqDyxx;
+
+    private Date qrdfsj;
+
+    private Date bhbjsj;
+
+    private String sjzqCdrgzqbz;
+
+    private String sfzbzj;
+
+    private Date zbzjsj;
+
+    private String scsxgbz;
+
+    private Date yjhdsj;
+
+    private Date yjhdsjSr;
+
+    private String sfyzcf;
+
+    private Date yghgfxsj;
+
+    private String jsbz;
+
+    private String bzjsjh;
+
+    private Date qyrq;
+
+    private Date yjkgsjsrsj;
+
+    private Double yjbl;
+
+    private Double yj;
+
+    private String zcqr;
+
+    private String dsdyfzf;
+
+    private String dsdyfyzf;
+
+    private String js;
+
+    private String hzjs;
+
+    private String jgtkqr;
+
+    private String bgdwjmc;
+
+    private String gwgysTymc;
+
+    private String jyjyzs;
+
+    private String wjgd;
+
+    private String sfyjyjyzs;
+
+    private String sfysd;
+
+    private String sfygdwj;
+
+    private Integer dztxts;
+
+    private Integer tdzt;
+
+    private Integer sdtgfs;
+
+    private Integer zdzfs;
+
+    private String ohdlxy;
+
+    private Date zzrq;
+
+    private String dzqk;
+
+    private String fkfs;
+
+    private String jzxgjzxh;
+
+    private String qgld;
+
+    private String jdrbm;
+
+    private String jdrmc;
+
+    private String jdrjc;
+
+    private String jdrpym;
+
+    private String tsbz;
+
+    private String sfsjjyw;
+
+    private String sfsy;
+
+    private String bjys;
+
+    private String sjzqMtdm;
+
+    private String sffshb;
+
+    private Date sjkgsjLrsj;
+
+    private String sjkgsjCzry;
+
+    private String hgfxsjCzry;
+
+    private String bjhsrry;
+
+    private Date bjhsrsj;
+
+    private String wxgj;
+
+    private String cypz;
+
+    private Double zf;
+
+    private String sfpd;
+
+    private String gwgysdz;
+
+    private String zjsdz;
+
+    private String gjczbz;
+
+    private String gjczry;
+
+    private Date gjczsj;
+
+    private Date kylhsj;
+
+    private String kylhsjSrry;
+
+    private Date kylhsjLrsj;
+
+    private String zbzj;
+
+    private Date ygkthsj;
+
+    private String ygkthsjSjd;
+
+    private String yjbb;
+
+    private String sfqgld;
+
+    private Double xfs;
+
+    private String xccy;
+
+    private String xccyLrry;
+
+    private Date xccyLrsj;
+
+    private String rjhwjyjyzm;
+
+    private String bg;
+
+    private String bj;
+
+    private String wl;
+
+    private String hd;
+
+    private String fx;
+
+    private String wlgsbm;
+
+    private String wlgsmc;
+
+    private String wlgsjc;
+
+    private String wlgspym;
+
+    private String hdrbm;
+
+    private String hdrmc;
+
+    private String hdrjc;
+
+    private String hdrpym;
+
+    private String ckdwbm;
+
+    private String ckdwmc;
+
+    private String ckdwjc;
+
+    private String ckdwpym;
+
+    private Date yjkgsjLrsj;
+
+    private String yjkgsjCzry;
+
+    private String sfjc;
+
+    private String jclrry;
+
+    private Date jclrsj;
+
+    private Double yjccfy;
+
+    private String sfsq;
+
+    private Double sjccfy;
+
+    private String ccfbz;
+
+    private String sfcsbj;
+
+    private Date sjkbsj;
+
+    private Date hbzqsj;
+
+    private String bjyw;
+
+    private Date jhkbsj;
+
+    private Date jhkbsjZqsj;
+
+    private Date sjzqHgfxsj;
+
+    private Date sjzqZqsj;
+
+    private Date zbjyzkdsj;
+
+    private String sdBeizhu;
+
+    private String jsdwJsbm;
+
+    private String sjzfkhJsbm;
+
+    private String gbhYwbh;
+
+    private String ysmxcd;
+
+    private String sfqr;
+
+    private String sftj;
+
+    private String hxzgtgzt;
+
+    private Date hxzgtgsj;
+
+    private Date pcyjhsj;
+
+    private String pcyjhsjTjry;
+
+    private Date pcyjhsjTjsj;
+
+    private String mxqLrry;
+
+    private Date mxqLrsj;
+
+    private Double mcq;
+
+    private String ep25461;
+
+    private String sfbhbjLrry;
+
+    private Date sfbhbjLrrq;
+
+    private String sfzbzjLrry;
+
+    private Date sfzbzjLrrq;
+
+    private String sfcsbjLrry;
+
+    private Date sfcsbjLrrq;
+
+    private String gwgysdm;
+
+    private String zjsdm;
+
+    private Date mxqrq;
+
+    private String jyjysljg;
+
+    private String kajyjyjg;
+
+    private String mddjyjyjg;
+
+    private String lzjg;
+
+    private String yjzxbs;
+
+    private String sfyzbsd;
+
+    private String xc2ccy;
+
+    private String xc2ccyLrry;
+
+    private Date xc2ccyLrrq;
+
+    private String hgCdrq;
+
+    private String hgDgrq;
+
+    private Date mcqRq;
+
+    private String jysbjg;
+
+    private Integer id;
+
+    private String xskhbm;
+
+    private String xskhmc;
+
+    private String xskhjc;
+
+    private String xskhpym;
+
+    private String hzPp;
+
+    private String hdzt;
+
+    private String cdzh;
+
+    private String zjzh;
+
+    private String mtxx;
+
+    private String gx;
+
+    private String lldh;
+
+    private String ccrn;
+
+    private String mjxx;
+
+    private Date tgrq;
+
+    private Date jhrq;
+
+    private String clxx;
+
+    private String xgcp;
+
+    private String jhdd;
+
+    private Date jgwq;
+
+    private String hgdc;
+
+    private Date ggrq;
+
+    private Date qgrq;
+
+    private String xgjbbm;
+
+    private String xgjb;
+
+    private String szjbbm;
+
+    private String szjb;
+
+    private String tjhm;
+
+    private String hgtjhm;
+
+    private String hgcp;
+
+    private String sfcs;
+
+    private String ysbz;
+
+    private Date hgrq;
+
+    private String hgdcbm;
+
+    private String ssbm;
+
+    private Date xgccrq;
+
+    private String ccfysqlx;
+
+    private String ep25645;
+
+    private String sygq;
+
+    private String sygqjc;
+
+    private String sygqbm;
+
+    private String sygqpym;
+
+    private String gdwz;
+
+    private Date khzlrq;
+
+    private String bm;
+
+    private String hxzgqrry;
+
+    private String wxyffp;
+
+    private String tqhd;
+
+    private String ep26040;
+
+    private String ep25894;
+
+    private String ldwc;
+
+    private String sjclbz;
+
+    private Date hbJhkbsj;
+
+    private Date hbSjkbsj;
+
+    private String hbMt;
+
+    private String hbCdljc;
+
+    private String hkly;
+
+    private String zrpd2;
+
+    private String zrpd3;
+
+    private String zrpd;
+
+    private String jwgysbm;
+
+    private String jwgysmc;
+
+    private String jwgysmcYw;
+
+    private String jwgysdz;
+
+    private String sfjnsj;
+
+    private String hbCm;
+
+    private String hbHc;
+
+    private String sfsz;
+
+    private Date szsj;
+
+    private String szry;
+
+    private Date yssdcsj;
+
+    private String glcdyfs;
+
+    private Integer dyckBgdZt;
+
+    private String dyckSeqno;
+
+    private String sfdztd;
+
+    private Date swfxsj;
+
+    private String sftb;
+
+    private String dzsqqr;
+
+    private Date yjtgrq;
+
+    private String jyjysljgmc;
+
+    private String kajyjyjgmc;
+
+    private String mddjyjyjgmc;
+
+    private String lzjgmc;
+
+    private String jckamc;
+
+    private String dzlxmc;
+
+    private String myfsmc;
+
+    private String hzdwdqmc;
+
+    private String bzzlmc;
+
+    private String ysgjmc;
+
+    private String rjmddmc;
+
+    private String zmfsmc;
+
+    private Date hbCmZqsj;
+
+    private String sfyjyyhx;
+
+    private Date sdjyyhxSj;
+
+    private String jyyhx;
+
+    private String sfgg;
+
+    private String sfjj;
+
+    private String jjyy;
+
+    private String dyckSfsj;
+
+    private Date dyckSjsj;
+
+    private String dyckSjry;
+
+    private Integer hkjs;
+
+    private Date jjsj;
+
+    private String sfcyJy;
+
+    private String cyckmc;
+
+    private Date cyrksj;
+
+    private Date cyhgsj;
+
+    private Date qdscsj;
+
+    private Date jyzSzsj;
+
+    private String cyckbm;
+
+    private Date jylzsj;
+
+    private Date jyzjcsj;
+
+    private String jyzBz;
+
+    private String hzKhmc;
+
+    private String dyckScry;
+
+    private String rwxz;
+
+    private Double ysje;
+
+    private BigDecimal lyyf;
+
+    private String cjfsmdf;
+
+    private String hgjdjd;
+
+    private Date hgjdjdsj;
+
+    private String sjzqYsgjmc;
+
+    private String hgcyfs;
+
+    private Date hgjhcyrq;
+
+    private Double fhed;
+
+    private String zjyw;
+
+    private String ts;
+
+    private String tsUser;
+
+    private String glcdwc;
+
+    private Date glcdwcsj;
+
+    private Date sfyyfsj;
+
+    private String cydlx;
+
+    private String sffxs;
+
+    private BigDecimal znj;
+
+    private String bgy;
+
+    private String sfzhg;
+
+    private String wlbz;
+
+    private String dhtzs;
+
+    private String anYy;
+
+    private String mJxxsfywj;
+
+    private String tsyy;
+
+    private String tsjd;
+
+    private String sblx;
+
+    private Date ecwzsbsj;
+
+    private Date bgdfxsj;
+
+    private String sbfsry;
+
+    private String yjhdbz;
+
+    private String yjtgrqImportUser;
+
+    private String mcqRqImportUser;
+
+    private String kddhHddz;
+
+    private String ywryWl;
+
+    private String cwbz;
+
+    private String beizhuZkj;
+
+    private Double anJeGb;
+
+    private Double anJeMj;
+
+    private Double mjhl;
+
+    private Date wjfxsj;
+
+    private String cyks;
+
+    private String fxycsjyy;
+
+    private Date sjktgsj;
+
+    private String yjkgsjtzgx;
+
+    private String fbsh;
+
+    private Date fbshsj;
+
+    private String sfhdUser;
+
+    private String mJxxsfywjUser;
+
+    private String anJeGbUser;
+
+    private String anJeMjUser;
+
+    private String mjhlUser;
+
+    private String lbsbbz;
+
+    private String zjbz;
+
+    private String lldhUser;
+
+    private Double fqxs;
+
+    private Double fqxsBj;
+
+    private String zrpdBeizhu;
+
+    private String zqzqcwxx;
+
+    private String cjyzxt;
+
+    private String cjyzrg;
+
+    private Date gxtssj;
+
+    private String xgdzqk;
+
+    private String xghgsbJ;
+
+    private String xghgsbC;
+
+    private String zjbjh;
+
+    private String zzqrsh;
+
+    private Date gzjysbsj;
+
+    private Date jqsbwcsj;
+
+    private String fbhx;
+
+    private String bcsfdj;
+
+    private String cszt;
+
+    private String jckfs;
+
+    private String lbsb;
+
+    private String khhzzs;
+
+    private String sfgdzf;
+
+    private BigDecimal gdzf;
+
+    private String hdtdlx;
+
+    private String hzSpmcsfss;
+
+    private String zjesfss;
+
+    private String kpjesfss;
+
+    private String ejycddm;
+
+    private String szflag;
+
+    private String zbsd;
+
+    private String fbsd;
+
+    private String zscssd;
+
+    private String bah;
+
+    private Date jkrq;
+
+    private String xkzh;
+
+    private String tsgxqr;
+
+    private String jgyxqr;
+
+    private String txqsyfzfqr;
+
+    private String sdwzh;
+
+    private String zzbs;
+
+    private String dbyf;
+
+    private String qyzzcn;
+
+    private String yxys;
+
+    private String hgfxfsUser;
+
+    private Date xghgsbJDate;
+
+    private Date xghgsbCDate;
+
+    private String jgycxx;
+
+    private String dyckState;
+
+    private String grabHbhc;
+
+    private String khbmDlxyh;
+
+    private Date yjcysjLrsj;
+
+    private String sfxh;
+
+    private String jczbzlbz;
+
+    private Date jczbzlsj;
+
+    private String xcsdzbzlbz;
+
+    private Date xcsdzbzlsj;
+
+    private String xcsdzbzlry;
+
+    private Date zbsqsj;
+
+    private Date fbsqsj;
+
+    private Date cssqsj;
+
+    private Date grabHbhcDate;
+
+    private String sfxpt;
+
+    private String gqzt;
+
+    private Date jgsj;
+
+    private String sdtzfp;
+
+    private String gzjysbsjLrry;
+
+    private String jqsbwcsjLrry;
+
+    private Date sddzBgsj;
+
+    private Date sddzCzsj;
+
+    private Date lrwcCzsj;
+
+    private Date sddzSdsj;
+
+    private Date shwcSdsj;
+
+    private Date sdsdBgsj;
+
+    private Date sddzHxsj;
+
+    private Date wchxHxsj;
+
+    private Date bgdscsj;
+
+    private Date xcsdLrsj;
+
+    private String xcsd;
+
+    private Date sfggLlsj;
+
+    private Date kpcysj;
+
+    private String sjkgsjtzgx;
+
+    private String sfjydjc;
+
+    private Date sfjydjcsj;
+
+    private Date gxksbsj;
+
+    private String cyzt;
+
+    private String xcsjHz;
+
+    private String xgxcsjHz;
+
+    private String zdxcsjHz;
+
+    private String wjljHz;
+
+    private String lldhHz;
+
+    private String sfjydsd;
+
+    private Date sfjydsdsj;
+
+    private String yglx;
+
+    private String sfcyJyz;
+
+    private String sfxzJyz;
+
+    private String sfjdJyz;
+
+    private Date sfjdsjJyz;
+
+    private String sfnzJyz;
+
+    private String xhgqZq;
+
+    private String xhgqbmZq;
+
+    private String xhgqpymZq;
+
+    private String xhgqjcZq;
+
+    private String sfcyHzJzxh;
+
+    private String jgycxq;
+
+    private String hzBzcdm;
+
+    private String hzGydm;
+
+    private String sfhx;
+
+    private String yljtz;
+
+    private String bqzpsfsd;
+
+    private String lclsyjd;
+
+    private String hzSfscfp;
+
+    private Date tgyxq;
+
+    private String cqbz;
+
+    private String bzcmc;
+
+    private String gymc;
+
+    private String lkmc;
+
+    private Date sjhwfxsj;
+
+    private String hdwlFh;
+
+    private String hdwlZg;
+
+    private String hdwlXg;
+
+    private String hdwlJhd;
+
+    private BigDecimal hdwlJzxpz;
+
+    private String ydbl;
+
+    private String anyfk;
+
+    private String tdsfdd;
+
+    private String fsdz;
+
+    private String ppmc;
+
+    private String sfhyxqd;
+
+    private Date hyxqdtgsj;
+
+    private String hyxqdqr;
+
+    private Date hyxqdqrsj;
+
+    private String kygclx;
+
+    private String kygcgh;
+
+    private String yhzt;
+
+    private Date yhsj;
+
+    private Date kcsj;
+
+    private Date scyjkgsj;
+
+    private String jyjyzscxm;
+
+    private String jyjyzscxmjssj;
+
+    private String gsdjqr;
+
+    private String zdjgqr;
+
+    private String sfbc;
+
+    private String hxbeizhu;
+
+    private Date jzhjgwq;
+
+    private Date bgdhsj;
+
+    private String bgdyczt;
+
+    private String sbsxyczt;
+
+    private String zdrbm;
+
+    private String zdrbmmc;
+
+    private String zbjcqk;
+
+    private String zbsdqk;
+
+    private Date jysjzsscscsj;
+
+    private String sfjjlx;
+
+    private String sqkp;
+
+    private Integer jyzSzGzr;
+
+    private String jyzSzSfyc;
+
+    private String mnsdsqzt;
+
+    private Date sdtzfpsj;
+
+    private Date rpaXrsj;
+
+    public String getYwbh() {
+        return ywbh;
+    }
+
+    public void setYwbh(String ywbh) {
+        this.ywbh = ywbh;
+    }
+
+    public String getZbr() {
+        return zbr;
+    }
+
+    public void setZbr(String zbr) {
+        this.zbr = zbr;
+    }
+
+    public Date getZbrq() {
+        return zbrq;
+    }
+
+    public void setZbrq(Date zbrq) {
+        this.zbrq = zbrq;
+    }
+
+    public String getDlwtf() {
+        return dlwtf;
+    }
+
+    public void setDlwtf(String dlwtf) {
+        this.dlwtf = dlwtf;
+    }
+
+    public String getHth() {
+        return hth;
+    }
+
+    public void setHth(String hth) {
+        this.hth = hth;
+    }
+
+    public String getDlxyh() {
+        return dlxyh;
+    }
+
+    public void setDlxyh(String dlxyh) {
+        this.dlxyh = dlxyh;
+    }
+
+    public String getZydl() {
+        return zydl;
+    }
+
+    public void setZydl(String zydl) {
+        this.zydl = zydl;
+    }
+
+    public String getHdgsbm() {
+        return hdgsbm;
+    }
+
+    public void setHdgsbm(String hdgsbm) {
+        this.hdgsbm = hdgsbm;
+    }
+
+    public String getHdgsmc() {
+        return hdgsmc;
+    }
+
+    public void setHdgsmc(String hdgsmc) {
+        this.hdgsmc = hdgsmc;
+    }
+
+    public String getHdgsjc() {
+        return hdgsjc;
+    }
+
+    public void setHdgsjc(String hdgsjc) {
+        this.hdgsjc = hdgsjc;
+    }
+
+    public String getHdgspym() {
+        return hdgspym;
+    }
+
+    public void setHdgspym(String hdgspym) {
+        this.hdgspym = hdgspym;
+    }
+
+    public String getBggsbm() {
+        return bggsbm;
+    }
+
+    public void setBggsbm(String bggsbm) {
+        this.bggsbm = bggsbm;
+    }
+
+    public String getBggsmc() {
+        return bggsmc;
+    }
+
+    public void setBggsmc(String bggsmc) {
+        this.bggsmc = bggsmc;
+    }
+
+    public String getBggsjc() {
+        return bggsjc;
+    }
+
+    public void setBggsjc(String bggsjc) {
+        this.bggsjc = bggsjc;
+    }
+
+    public String getBggspym() {
+        return bggspym;
+    }
+
+    public void setBggspym(String bggspym) {
+        this.bggspym = bggspym;
+    }
+
+    public String getBjgsbm() {
+        return bjgsbm;
+    }
+
+    public void setBjgsbm(String bjgsbm) {
+        this.bjgsbm = bjgsbm;
+    }
+
+    public String getBjgsmc() {
+        return bjgsmc;
+    }
+
+    public void setBjgsmc(String bjgsmc) {
+        this.bjgsmc = bjgsmc;
+    }
+
+    public String getBjgsjc() {
+        return bjgsjc;
+    }
+
+    public void setBjgsjc(String bjgsjc) {
+        this.bjgsjc = bjgsjc;
+    }
+
+    public String getBjgspym() {
+        return bjgspym;
+    }
+
+    public void setBjgspym(String bjgspym) {
+        this.bjgspym = bjgspym;
+    }
+
+    public String getBjgssjjgdm() {
+        return bjgssjjgdm;
+    }
+
+    public void setBjgssjjgdm(String bjgssjjgdm) {
+        this.bjgssjjgdm = bjgssjjgdm;
+    }
+
+    public String getKhbm() {
+        return khbm;
+    }
+
+    public void setKhbm(String khbm) {
+        this.khbm = khbm;
+    }
+
+    public String getKhmc() {
+        return khmc;
+    }
+
+    public void setKhmc(String khmc) {
+        this.khmc = khmc;
+    }
+
+    public String getKhjc() {
+        return khjc;
+    }
+
+    public void setKhjc(String khjc) {
+        this.khjc = khjc;
+    }
+
+    public String getKhpym() {
+        return khpym;
+    }
+
+    public void setKhpym(String khpym) {
+        this.khpym = khpym;
+    }
+
+    public String getShdwbm() {
+        return shdwbm;
+    }
+
+    public void setShdwbm(String shdwbm) {
+        this.shdwbm = shdwbm;
+    }
+
+    public String getShdwmc() {
+        return shdwmc;
+    }
+
+    public void setShdwmc(String shdwmc) {
+        this.shdwmc = shdwmc;
+    }
+
+    public String getShdwjc() {
+        return shdwjc;
+    }
+
+    public void setShdwjc(String shdwjc) {
+        this.shdwjc = shdwjc;
+    }
+
+    public String getShdwpym() {
+        return shdwpym;
+    }
+
+    public void setShdwpym(String shdwpym) {
+        this.shdwpym = shdwpym;
+    }
+
+    public String getJydwbm() {
+        return jydwbm;
+    }
+
+    public void setJydwbm(String jydwbm) {
+        this.jydwbm = jydwbm;
+    }
+
+    public String getJydwmc() {
+        return jydwmc;
+    }
+
+    public void setJydwmc(String jydwmc) {
+        this.jydwmc = jydwmc;
+    }
+
+    public String getJydwjc() {
+        return jydwjc;
+    }
+
+    public void setJydwjc(String jydwjc) {
+        this.jydwjc = jydwjc;
+    }
+
+    public String getJydwpym() {
+        return jydwpym;
+    }
+
+    public void setJydwpym(String jydwpym) {
+        this.jydwpym = jydwpym;
+    }
+
+    public String getJydwsjjgdm() {
+        return jydwsjjgdm;
+    }
+
+    public void setJydwsjjgdm(String jydwsjjgdm) {
+        this.jydwsjjgdm = jydwsjjgdm;
+    }
+
+    public String getGwgysbm() {
+        return gwgysbm;
+    }
+
+    public void setGwgysbm(String gwgysbm) {
+        this.gwgysbm = gwgysbm;
+    }
+
+    public String getGwgysmc() {
+        return gwgysmc;
+    }
+
+    public void setGwgysmc(String gwgysmc) {
+        this.gwgysmc = gwgysmc;
+    }
+
+    public String getGwgysjc() {
+        return gwgysjc;
+    }
+
+    public void setGwgysjc(String gwgysjc) {
+        this.gwgysjc = gwgysjc;
+    }
+
+    public String getGwgyspym() {
+        return gwgyspym;
+    }
+
+    public void setGwgyspym(String gwgyspym) {
+        this.gwgyspym = gwgyspym;
+    }
+
+    public String getZjsbm() {
+        return zjsbm;
+    }
+
+    public void setZjsbm(String zjsbm) {
+        this.zjsbm = zjsbm;
+    }
+
+    public String getZjsmc() {
+        return zjsmc;
+    }
+
+    public void setZjsmc(String zjsmc) {
+        this.zjsmc = zjsmc;
+    }
+
+    public String getZjsjc() {
+        return zjsjc;
+    }
+
+    public void setZjsjc(String zjsjc) {
+        this.zjsjc = zjsjc;
+    }
+
+    public String getZjspym() {
+        return zjspym;
+    }
+
+    public void setZjspym(String zjspym) {
+        this.zjspym = zjspym;
+    }
+
+    public String getGwhdbm() {
+        return gwhdbm;
+    }
+
+    public void setGwhdbm(String gwhdbm) {
+        this.gwhdbm = gwhdbm;
+    }
+
+    public String getGwhdmc() {
+        return gwhdmc;
+    }
+
+    public void setGwhdmc(String gwhdmc) {
+        this.gwhdmc = gwhdmc;
+    }
+
+    public String getGwhdjc() {
+        return gwhdjc;
+    }
+
+    public void setGwhdjc(String gwhdjc) {
+        this.gwhdjc = gwhdjc;
+    }
+
+    public String getGwhdpym() {
+        return gwhdpym;
+    }
+
+    public void setGwhdpym(String gwhdpym) {
+        this.gwhdpym = gwhdpym;
+    }
+
+    public String getTzrbm() {
+        return tzrbm;
+    }
+
+    public void setTzrbm(String tzrbm) {
+        this.tzrbm = tzrbm;
+    }
+
+    public String getTzrmc() {
+        return tzrmc;
+    }
+
+    public void setTzrmc(String tzrmc) {
+        this.tzrmc = tzrmc;
+    }
+
+    public String getTzrjc() {
+        return tzrjc;
+    }
+
+    public void setTzrjc(String tzrjc) {
+        this.tzrjc = tzrjc;
+    }
+
+    public String getTzrpym() {
+        return tzrpym;
+    }
+
+    public void setTzrpym(String tzrpym) {
+        this.tzrpym = tzrpym;
+    }
+
+    public String getYsfs() {
+        return ysfs;
+    }
+
+    public void setYsfs(String ysfs) {
+        this.ysfs = ysfs;
+    }
+
+    public String getTdlx() {
+        return tdlx;
+    }
+
+    public void setTdlx(String tdlx) {
+        this.tdlx = tdlx;
+    }
+
+    public String getCyrbm() {
+        return cyrbm;
+    }
+
+    public void setCyrbm(String cyrbm) {
+        this.cyrbm = cyrbm;
+    }
+
+    public String getCyr() {
+        return cyr;
+    }
+
+    public void setCyr(String cyr) {
+        this.cyr = cyr;
+    }
+
+    public String getCyrjc() {
+        return cyrjc;
+    }
+
+    public void setCyrjc(String cyrjc) {
+        this.cyrjc = cyrjc;
+    }
+
+    public String getCyrpym() {
+        return cyrpym;
+    }
+
+    public void setCyrpym(String cyrpym) {
+        this.cyrpym = cyrpym;
+    }
+
+    public String getCdgsbm() {
+        return cdgsbm;
+    }
+
+    public void setCdgsbm(String cdgsbm) {
+        this.cdgsbm = cdgsbm;
+    }
+
+    public String getCdgs() {
+        return cdgs;
+    }
+
+    public void setCdgs(String cdgs) {
+        this.cdgs = cdgs;
+    }
+
+    public String getCdgsjc() {
+        return cdgsjc;
+    }
+
+    public void setCdgsjc(String cdgsjc) {
+        this.cdgsjc = cdgsjc;
+    }
+
+    public String getCdgspym() {
+        return cdgspym;
+    }
+
+    public void setCdgspym(String cdgspym) {
+        this.cdgspym = cdgspym;
+    }
+
+    public String getCm() {
+        return cm;
+    }
+
+    public void setCm(String cm) {
+        this.cm = cm;
+    }
+
+    public String getHcorhbh() {
+        return hcorhbh;
+    }
+
+    public void setHcorhbh(String hcorhbh) {
+        this.hcorhbh = hcorhbh;
+    }
+
+    public String getHcorhbhZq() {
+        return hcorhbhZq;
+    }
+
+    public void setHcorhbhZq(String hcorhbhZq) {
+        this.hcorhbhZq = hcorhbhZq;
+    }
+
+    public String getSfzy() {
+        return sfzy;
+    }
+
+    public void setSfzy(String sfzy) {
+        this.sfzy = sfzy;
+    }
+
+    public String getZzCm() {
+        return zzCm;
+    }
+
+    public void setZzCm(String zzCm) {
+        this.zzCm = zzCm;
+    }
+
+    public String getZzHcorhbh() {
+        return zzHcorhbh;
+    }
+
+    public void setZzHcorhbh(String zzHcorhbh) {
+        this.zzHcorhbh = zzHcorhbh;
+    }
+
+    public String getZzgk() {
+        return zzgk;
+    }
+
+    public void setZzgk(String zzgk) {
+        this.zzgk = zzgk;
+    }
+
+    public String getZtdh() {
+        return ztdh;
+    }
+
+    public void setZtdh(String ztdh) {
+        this.ztdh = ztdh;
+    }
+
+    public String getSfshytd() {
+        return sfshytd;
+    }
+
+    public void setSfshytd(String sfshytd) {
+        this.sfshytd = sfshytd;
+    }
+
+    public String getFtdh() {
+        return ftdh;
+    }
+
+    public void setFtdh(String ftdh) {
+        this.ftdh = ftdh;
+    }
+
+    public String getHygsbm() {
+        return hygsbm;
+    }
+
+    public void setHygsbm(String hygsbm) {
+        this.hygsbm = hygsbm;
+    }
+
+    public String getHygsmc() {
+        return hygsmc;
+    }
+
+    public void setHygsmc(String hygsmc) {
+        this.hygsmc = hygsmc;
+    }
+
+    public String getHygsjc() {
+        return hygsjc;
+    }
+
+    public void setHygsjc(String hygsjc) {
+        this.hygsjc = hygsjc;
+    }
+
+    public String getHygspym() {
+        return hygspym;
+    }
+
+    public void setHygspym(String hygspym) {
+        this.hygspym = hygspym;
+    }
+
+    public String getHdhdgs() {
+        return hdhdgs;
+    }
+
+    public void setHdhdgs(String hdhdgs) {
+        this.hdhdgs = hdhdgs;
+    }
+
+    public String getQyg() {
+        return qyg;
+    }
+
+    public void setQyg(String qyg) {
+        this.qyg = qyg;
+    }
+
+    public String getQygdm() {
+        return qygdm;
+    }
+
+    public void setQygdm(String qygdm) {
+        this.qygdm = qygdm;
+    }
+
+    public String getQygsjgkdm() {
+        return qygsjgkdm;
+    }
+
+    public void setQygsjgkdm(String qygsjgkdm) {
+        this.qygsjgkdm = qygsjgkdm;
+    }
+
+    public String getMdg() {
+        return mdg;
+    }
+
+    public void setMdg(String mdg) {
+        this.mdg = mdg;
+    }
+
+    public String getXhgqbm() {
+        return xhgqbm;
+    }
+
+    public void setXhgqbm(String xhgqbm) {
+        this.xhgqbm = xhgqbm;
+    }
+
+    public String getXhgq() {
+        return xhgq;
+    }
+
+    public void setXhgq(String xhgq) {
+        this.xhgq = xhgq;
+    }
+
+    public String getXhgqjc() {
+        return xhgqjc;
+    }
+
+    public void setXhgqjc(String xhgqjc) {
+        this.xhgqjc = xhgqjc;
+    }
+
+    public String getXhgqpym() {
+        return xhgqpym;
+    }
+
+    public void setXhgqpym(String xhgqpym) {
+        this.xhgqpym = xhgqpym;
+    }
+
+    public Date getYjkgsj() {
+        return yjkgsj;
+    }
+
+    public void setYjkgsj(Date yjkgsj) {
+        this.yjkgsj = yjkgsj;
+    }
+
+    public Date getSjkgsj() {
+        return sjkgsj;
+    }
+
+    public void setSjkgsj(Date sjkgsj) {
+        this.sjkgsj = sjkgsj;
+    }
+
+    public String getSfxyechd() {
+        return sfxyechd;
+    }
+
+    public void setSfxyechd(String sfxyechd) {
+        this.sfxyechd = sfxyechd;
+    }
+
+    public String getYcd() {
+        return ycd;
+    }
+
+    public void setYcd(String ycd) {
+        this.ycd = ycd;
+    }
+
+    public String getYcddm() {
+        return ycddm;
+    }
+
+    public void setYcddm(String ycddm) {
+        this.ycddm = ycddm;
+    }
+
+    public String getEjycd() {
+        return ejycd;
+    }
+
+    public void setEjycd(String ejycd) {
+        this.ejycd = ejycd;
+    }
+
+    public Integer getMxq() {
+        return mxq;
+    }
+
+    public void setMxq(Integer mxq) {
+        this.mxq = mxq;
+    }
+
+    public String getJgfs() {
+        return jgfs;
+    }
+
+    public void setJgfs(String jgfs) {
+        this.jgfs = jgfs;
+    }
+
+    public String getWbbb() {
+        return wbbb;
+    }
+
+    public void setWbbb(String wbbb) {
+        this.wbbb = wbbb;
+    }
+
+    public Double getZje() {
+        return zje;
+    }
+
+    public void setZje(Double zje) {
+        this.zje = zje;
+    }
+
+    public Double getZmyhl() {
+        return zmyhl;
+    }
+
+    public void setZmyhl(Double zmyhl) {
+        this.zmyhl = zmyhl;
+    }
+
+    public Double getZmyje() {
+        return zmyje;
+    }
+
+    public void setZmyje(Double zmyje) {
+        this.zmyje = zmyje;
+    }
+
+    public String getSfyyf() {
+        return sfyyf;
+    }
+
+    public void setSfyyf(String sfyyf) {
+        this.sfyyf = sfyyf;
+    }
+
+    public Double getYfje() {
+        return yfje;
+    }
+
+    public void setYfje(Double yfje) {
+        this.yfje = yfje;
+    }
+
+    public String getYfbb() {
+        return yfbb;
+    }
+
+    public void setYfbb(String yfbb) {
+        this.yfbb = yfbb;
+    }
+
+    public Date getSdyffpsj() {
+        return sdyffpsj;
+    }
+
+    public void setSdyffpsj(Date sdyffpsj) {
+        this.sdyffpsj = sdyffpsj;
+    }
+
+    public String getKhorhd() {
+        return khorhd;
+    }
+
+    public void setKhorhd(String khorhd) {
+        this.khorhd = khorhd;
+    }
+
+    public String getYfcdrbm() {
+        return yfcdrbm;
+    }
+
+    public void setYfcdrbm(String yfcdrbm) {
+        this.yfcdrbm = yfcdrbm;
+    }
+
+    public String getYfcdr() {
+        return yfcdr;
+    }
+
+    public void setYfcdr(String yfcdr) {
+        this.yfcdr = yfcdr;
+    }
+
+    public String getYfcdrjc() {
+        return yfcdrjc;
+    }
+
+    public void setYfcdrjc(String yfcdrjc) {
+        this.yfcdrjc = yfcdrjc;
+    }
+
+    public String getYfcdrpym() {
+        return yfcdrpym;
+    }
+
+    public void setYfcdrpym(String yfcdrpym) {
+        this.yfcdrpym = yfcdrpym;
+    }
+
+    public String getKddh() {
+        return kddh;
+    }
+
+    public void setKddh(String kddh) {
+        this.kddh = kddh;
+    }
+
+    public Date getSdsdsj() {
+        return sdsdsj;
+    }
+
+    public void setSdsdsj(Date sdsdsj) {
+        this.sdsdsj = sdsdsj;
+    }
+
+    public Date getYfzfqrsj() {
+        return yfzfqrsj;
+    }
+
+    public void setYfzfqrsj(Date yfzfqrsj) {
+        this.yfzfqrsj = yfzfqrsj;
+    }
+
+    public String getYfbz() {
+        return yfbz;
+    }
+
+    public void setYfbz(String yfbz) {
+        this.yfbz = yfbz;
+    }
+
+    public Date getGkhfpsj() {
+        return gkhfpsj;
+    }
+
+    public void setGkhfpsj(Date gkhfpsj) {
+        this.gkhfpsj = gkhfpsj;
+    }
+
+    public String getYfzfjg() {
+        return yfzfjg;
+    }
+
+    public void setYfzfjg(String yfzfjg) {
+        this.yfzfjg = yfzfjg;
+    }
+
+    public String getState() {
+        return state;
+    }
+
+    public void setState(String state) {
+        this.state = state;
+    }
+
+    public String getBeizhu() {
+        return beizhu;
+    }
+
+    public void setBeizhu(String beizhu) {
+        this.beizhu = beizhu;
+    }
+
+    public Date getKyhdsj() {
+        return kyhdsj;
+    }
+
+    public void setKyhdsj(Date kyhdsj) {
+        this.kyhdsj = kyhdsj;
+    }
+
+    public Date getSjhdsj() {
+        return sjhdsj;
+    }
+
+    public void setSjhdsj(Date sjhdsj) {
+        this.sjhdsj = sjhdsj;
+    }
+
+    public String getHdbz() {
+        return hdbz;
+    }
+
+    public void setHdbz(String hdbz) {
+        this.hdbz = hdbz;
+    }
+
+    public String getXtdh() {
+        return xtdh;
+    }
+
+    public void setXtdh(String xtdh) {
+        this.xtdh = xtdh;
+    }
+
+    public Double getGs() {
+        return gs;
+    }
+
+    public void setGs(Double gs) {
+        this.gs = gs;
+    }
+
+    public Double getZzs() {
+        return zzs;
+    }
+
+    public void setZzs(Double zzs) {
+        this.zzs = zzs;
+    }
+
+    public Double getBzj() {
+        return bzj;
+    }
+
+    public void setBzj(Double bzj) {
+        this.bzj = bzj;
+    }
+
+    public Date getSjzfrq() {
+        return sjzfrq;
+    }
+
+    public void setSjzfrq(Date sjzfrq) {
+        this.sjzfrq = sjzfrq;
+    }
+
+    public Double getGsBj() {
+        return gsBj;
+    }
+
+    public void setGsBj(Double gsBj) {
+        this.gsBj = gsBj;
+    }
+
+    public Double getZzsBj() {
+        return zzsBj;
+    }
+
+    public void setZzsBj(Double zzsBj) {
+        this.zzsBj = zzsBj;
+    }
+
+    public Double getBzjBj() {
+        return bzjBj;
+    }
+
+    public void setBzjBj(Double bzjBj) {
+        this.bzjBj = bzjBj;
+    }
+
+    public Date getSjzfrqBj() {
+        return sjzfrqBj;
+    }
+
+    public void setSjzfrqBj(Date sjzfrqBj) {
+        this.sjzfrqBj = sjzfrqBj;
+    }
+
+    public String getBzjzfrbm() {
+        return bzjzfrbm;
+    }
+
+    public void setBzjzfrbm(String bzjzfrbm) {
+        this.bzjzfrbm = bzjzfrbm;
+    }
+
+    public String getBzjzfr() {
+        return bzjzfr;
+    }
+
+    public void setBzjzfr(String bzjzfr) {
+        this.bzjzfr = bzjzfr;
+    }
+
+    public String getBzjzfrjc() {
+        return bzjzfrjc;
+    }
+
+    public void setBzjzfrjc(String bzjzfrjc) {
+        this.bzjzfrjc = bzjzfrjc;
+    }
+
+    public String getBzjzfrpym() {
+        return bzjzfrpym;
+    }
+
+    public void setBzjzfrpym(String bzjzfrpym) {
+        this.bzjzfrpym = bzjzfrpym;
+    }
+
+    public Date getBzjsj() {
+        return bzjsj;
+    }
+
+    public void setBzjsj(Date bzjsj) {
+        this.bzjsj = bzjsj;
+    }
+
+    public Double getBzjje() {
+        return bzjje;
+    }
+
+    public void setBzjje(Double bzjje) {
+        this.bzjje = bzjje;
+    }
+
+    public String getBzjdjh() {
+        return bzjdjh;
+    }
+
+    public void setBzjdjh(String bzjdjh) {
+        this.bzjdjh = bzjdjh;
+    }
+
+    public Date getBzjjzsj() {
+        return bzjjzsj;
+    }
+
+    public void setBzjjzsj(Date bzjjzsj) {
+        this.bzjjzsj = bzjjzsj;
+    }
+
+    public String getBzjymxz() {
+        return bzjymxz;
+    }
+
+    public void setBzjymxz(String bzjymxz) {
+        this.bzjymxz = bzjymxz;
+    }
+
+    public String getBzjym() {
+        return bzjym;
+    }
+
+    public void setBzjym(String bzjym) {
+        this.bzjym = bzjym;
+    }
+
+    public Date getStbrysj() {
+        return stbrysj;
+    }
+
+    public void setStbrysj(Date stbrysj) {
+        this.stbrysj = stbrysj;
+    }
+
+    public Date getShgsj() {
+        return shgsj;
+    }
+
+    public void setShgsj(Date shgsj) {
+        this.shgsj = shgsj;
+    }
+
+    public Date getHgclsj() {
+        return hgclsj;
+    }
+
+    public void setHgclsj(Date hgclsj) {
+        this.hgclsj = hgclsj;
+    }
+
+    public Double getTbzj() {
+        return tbzj;
+    }
+
+    public void setTbzj(Double tbzj) {
+        this.tbzj = tbzj;
+    }
+
+    public Double getZzzs() {
+        return zzzs;
+    }
+
+    public void setZzzs(Double zzzs) {
+        this.zzzs = zzzs;
+    }
+
+    public Double getZgs() {
+        return zgs;
+    }
+
+    public void setZgs(Double zgs) {
+        this.zgs = zgs;
+    }
+
+    public Double getHghdjg() {
+        return hghdjg;
+    }
+
+    public void setHghdjg(Double hghdjg) {
+        this.hghdjg = hghdjg;
+    }
+
+    public Date getTkdzsj() {
+        return tkdzsj;
+    }
+
+    public void setTkdzsj(Date tkdzsj) {
+        this.tkdzsj = tkdzsj;
+    }
+
+    public Date getWsbjsj() {
+        return wsbjsj;
+    }
+
+    public void setWsbjsj(Date wsbjsj) {
+        this.wsbjsj = wsbjsj;
+    }
+
+    public String getBjh() {
+        return bjh;
+    }
+
+    public void setBjh(String bjh) {
+        this.bjh = bjh;
+    }
+
+    public Date getBjsj() {
+        return bjsj;
+    }
+
+    public void setBjsj(Date bjsj) {
+        this.bjsj = bjsj;
+    }
+
+    public Date getCktgsj() {
+        return cktgsj;
+    }
+
+    public void setCktgsj(Date cktgsj) {
+        this.cktgsj = cktgsj;
+    }
+
+    public String getTgdh() {
+        return tgdh;
+    }
+
+    public void setTgdh(String tgdh) {
+        this.tgdh = tgdh;
+    }
+
+    public Date getWzhfxsj() {
+        return wzhfxsj;
+    }
+
+    public void setWzhfxsj(Date wzhfxsj) {
+        this.wzhfxsj = wzhfxsj;
+    }
+
+    public String getBgdh() {
+        return bgdh;
+    }
+
+    public void setBgdh(String bgdh) {
+        this.bgdh = bgdh;
+    }
+
+    public Date getBgsj() {
+        return bgsj;
+    }
+
+    public void setBgsj(Date bgsj) {
+        this.bgsj = bgsj;
+    }
+
+    public String getBghgbm() {
+        return bghgbm;
+    }
+
+    public void setBghgbm(String bghgbm) {
+        this.bghgbm = bghgbm;
+    }
+
+    public String getBghg() {
+        return bghg;
+    }
+
+    public void setBghg(String bghg) {
+        this.bghg = bghg;
+    }
+
+    public String getBghgjc() {
+        return bghgjc;
+    }
+
+    public void setBghgjc(String bghgjc) {
+        this.bghgjc = bghgjc;
+    }
+
+    public String getBghgpym() {
+        return bghgpym;
+    }
+
+    public void setBghgpym(String bghgpym) {
+        this.bghgpym = bghgpym;
+    }
+
+    public String getJyjbm() {
+        return jyjbm;
+    }
+
+    public void setJyjbm(String jyjbm) {
+        this.jyjbm = jyjbm;
+    }
+
+    public String getJyjmc() {
+        return jyjmc;
+    }
+
+    public void setJyjmc(String jyjmc) {
+        this.jyjmc = jyjmc;
+    }
+
+    public String getJyjjc() {
+        return jyjjc;
+    }
+
+    public void setJyjjc(String jyjjc) {
+        this.jyjjc = jyjjc;
+    }
+
+    public String getJyjpym() {
+        return jyjpym;
+    }
+
+    public void setJyjpym(String jyjpym) {
+        this.jyjpym = jyjpym;
+    }
+
+    public String getJyjsjjgdm() {
+        return jyjsjjgdm;
+    }
+
+    public void setJyjsjjgdm(String jyjsjjgdm) {
+        this.jyjsjjgdm = jyjsjjgdm;
+    }
+
+    public String getSfcy() {
+        return sfcy;
+    }
+
+    public void setSfcy(String sfcy) {
+        this.sfcy = sfcy;
+    }
+
+    public String getCydbm() {
+        return cydbm;
+    }
+
+    public void setCydbm(String cydbm) {
+        this.cydbm = cydbm;
+    }
+
+    public String getCyd() {
+        return cyd;
+    }
+
+    public void setCyd(String cyd) {
+        this.cyd = cyd;
+    }
+
+    public String getCydjc() {
+        return cydjc;
+    }
+
+    public void setCydjc(String cydjc) {
+        this.cydjc = cydjc;
+    }
+
+    public String getCydpym() {
+        return cydpym;
+    }
+
+    public void setCydpym(String cydpym) {
+        this.cydpym = cydpym;
+    }
+
+    public Date getYjcysj() {
+        return yjcysj;
+    }
+
+    public void setYjcysj(Date yjcysj) {
+        this.yjcysj = yjcysj;
+    }
+
+    public Date getSjcysj() {
+        return sjcysj;
+    }
+
+    public void setSjcysj(Date sjcysj) {
+        this.sjcysj = sjcysj;
+    }
+
+    public String getCybz() {
+        return cybz;
+    }
+
+    public void setCybz(String cybz) {
+        this.cybz = cybz;
+    }
+
+    public Date getHgfxsj() {
+        return hgfxsj;
+    }
+
+    public void setHgfxsj(Date hgfxsj) {
+        this.hgfxsj = hgfxsj;
+    }
+
+    public Date getHgfxsjSrsj() {
+        return hgfxsjSrsj;
+    }
+
+    public void setHgfxsjSrsj(Date hgfxsjSrsj) {
+        this.hgfxsjSrsj = hgfxsjSrsj;
+    }
+
+    public String getKgbz() {
+        return kgbz;
+    }
+
+    public void setKgbz(String kgbz) {
+        this.kgbz = kgbz;
+    }
+
+    public String getFph() {
+        return fph;
+    }
+
+    public void setFph(String fph) {
+        this.fph = fph;
+    }
+
+    public String getSjzfkhlx() {
+        return sjzfkhlx;
+    }
+
+    public void setSjzfkhlx(String sjzfkhlx) {
+        this.sjzfkhlx = sjzfkhlx;
+    }
+
+    public String getSjzfkhbm() {
+        return sjzfkhbm;
+    }
+
+    public void setSjzfkhbm(String sjzfkhbm) {
+        this.sjzfkhbm = sjzfkhbm;
+    }
+
+    public String getSjzfkhmc() {
+        return sjzfkhmc;
+    }
+
+    public void setSjzfkhmc(String sjzfkhmc) {
+        this.sjzfkhmc = sjzfkhmc;
+    }
+
+    public String getSjzfkhjc() {
+        return sjzfkhjc;
+    }
+
+    public void setSjzfkhjc(String sjzfkhjc) {
+        this.sjzfkhjc = sjzfkhjc;
+    }
+
+    public String getSjzfkhpym() {
+        return sjzfkhpym;
+    }
+
+    public void setSjzfkhpym(String sjzfkhpym) {
+        this.sjzfkhpym = sjzfkhpym;
+    }
+
+    public Double getZbj() {
+        return zbj;
+    }
+
+    public void setZbj(Double zbj) {
+        this.zbj = zbj;
+    }
+
+    public String getSjbz() {
+        return sjbz;
+    }
+
+    public void setSjbz(String sjbz) {
+        this.sjbz = sjbz;
+    }
+
+    public String getJybz() {
+        return jybz;
+    }
+
+    public void setJybz(String jybz) {
+        this.jybz = jybz;
+    }
+
+    public String getJydbm() {
+        return jydbm;
+    }
+
+    public void setJydbm(String jydbm) {
+        this.jydbm = jydbm;
+    }
+
+    public String getJyd() {
+        return jyd;
+    }
+
+    public void setJyd(String jyd) {
+        this.jyd = jyd;
+    }
+
+    public String getJydjc() {
+        return jydjc;
+    }
+
+    public void setJydjc(String jydjc) {
+        this.jydjc = jydjc;
+    }
+
+    public String getJydpym() {
+        return jydpym;
+    }
+
+    public void setJydpym(String jydpym) {
+        this.jydpym = jydpym;
+    }
+
+    public Date getHdsj() {
+        return hdsj;
+    }
+
+    public void setHdsj(Date hdsj) {
+        this.hdsj = hdsj;
+    }
+
+    public String getBgbz() {
+        return bgbz;
+    }
+
+    public void setBgbz(String bgbz) {
+        this.bgbz = bgbz;
+    }
+
+    public String getHgfxfs() {
+        return hgfxfs;
+    }
+
+    public void setHgfxfs(String hgfxfs) {
+        this.hgfxfs = hgfxfs;
+    }
+
+    public String getHgtgwt() {
+        return hgtgwt;
+    }
+
+    public void setHgtgwt(String hgtgwt) {
+        this.hgtgwt = hgtgwt;
+    }
+
+    public String getHzJzxh() {
+        return hzJzxh;
+    }
+
+    public void setHzJzxh(String hzJzxh) {
+        this.hzJzxh = hzJzxh;
+    }
+
+    public String getHzSpmc() {
+        return hzSpmc;
+    }
+
+    public void setHzSpmc(String hzSpmc) {
+        this.hzSpmc = hzSpmc;
+    }
+
+    public Date getSdsdrq() {
+        return sdsdrq;
+    }
+
+    public void setSdsdrq(Date sdsdrq) {
+        this.sdsdrq = sdsdrq;
+    }
+
+    public Date getSdkhqzrq() {
+        return sdkhqzrq;
+    }
+
+    public void setSdkhqzrq(Date sdkhqzrq) {
+        this.sdkhqzrq = sdkhqzrq;
+    }
+
+    public String getSdbz() {
+        return sdbz;
+    }
+
+    public void setSdbz(String sdbz) {
+        this.sdbz = sdbz;
+    }
+
+    public String getSdkddh() {
+        return sdkddh;
+    }
+
+    public void setSdkddh(String sdkddh) {
+        this.sdkddh = sdkddh;
+    }
+
+    public String getBzjbz() {
+        return bzjbz;
+    }
+
+    public void setBzjbz(String bzjbz) {
+        this.bzjbz = bzjbz;
+    }
+
+    public String getFxbz() {
+        return fxbz;
+    }
+
+    public void setFxbz(String fxbz) {
+        this.fxbz = fxbz;
+    }
+
+    public String getClfs() {
+        return clfs;
+    }
+
+    public void setClfs(String clfs) {
+        this.clfs = clfs;
+    }
+
+    public Date getBeizhuXgrq() {
+        return beizhuXgrq;
+    }
+
+    public void setBeizhuXgrq(Date beizhuXgrq) {
+        this.beizhuXgrq = beizhuXgrq;
+    }
+
+    public Double getHzSl() {
+        return hzSl;
+    }
+
+    public void setHzSl(Double hzSl) {
+        this.hzSl = hzSl;
+    }
+
+    public String getMtdm() {
+        return mtdm;
+    }
+
+    public void setMtdm(String mtdm) {
+        this.mtdm = mtdm;
+    }
+
+    public String getSfqycdz() {
+        return sfqycdz;
+    }
+
+    public void setSfqycdz(String sfqycdz) {
+        this.sfqycdz = sfqycdz;
+    }
+
+    public Date getLzsj() {
+        return lzsj;
+    }
+
+    public void setLzsj(Date lzsj) {
+        this.lzsj = lzsj;
+    }
+
+    public String getYcdzsh() {
+        return ycdzsh;
+    }
+
+    public void setYcdzsh(String ycdzsh) {
+        this.ycdzsh = ycdzsh;
+    }
+
+    public Integer getKhmxq() {
+        return khmxq;
+    }
+
+    public void setKhmxq(Integer khmxq) {
+        this.khmxq = khmxq;
+    }
+
+    public String getInvoiceno() {
+        return invoiceno;
+    }
+
+    public void setInvoiceno(String invoiceno) {
+        this.invoiceno = invoiceno;
+    }
+
+    public Date getInvoiceDate() {
+        return invoiceDate;
+    }
+
+    public void setInvoiceDate(Date invoiceDate) {
+        this.invoiceDate = invoiceDate;
+    }
+
+    public String getSfsdhdzl() {
+        return sfsdhdzl;
+    }
+
+    public void setSfsdhdzl(String sfsdhdzl) {
+        this.sfsdhdzl = sfsdhdzl;
+    }
+
+    public String getSfhd() {
+        return sfhd;
+    }
+
+    public void setSfhd(String sfhd) {
+        this.sfhd = sfhd;
+    }
+
+    public String getSfytzcgskp() {
+        return sfytzcgskp;
+    }
+
+    public void setSfytzcgskp(String sfytzcgskp) {
+        this.sfytzcgskp = sfytzcgskp;
+    }
+
+    public Date getTzcgskpsj() {
+        return tzcgskpsj;
+    }
+
+    public void setTzcgskpsj(Date tzcgskpsj) {
+        this.tzcgskpsj = tzcgskpsj;
+    }
+
+    public String getSfyfyzf() {
+        return sfyfyzf;
+    }
+
+    public void setSfyfyzf(String sfyfyzf) {
+        this.sfyfyzf = sfyfyzf;
+    }
+
+    public String getSfyzbg() {
+        return sfyzbg;
+    }
+
+    public void setSfyzbg(String sfyzbg) {
+        this.sfyzbg = sfyzbg;
+    }
+
+    public String getCmZw() {
+        return cmZw;
+    }
+
+    public void setCmZw(String cmZw) {
+        this.cmZw = cmZw;
+    }
+
+    public String getSfsdsd() {
+        return sfsdsd;
+    }
+
+    public void setSfsdsd(String sfsdsd) {
+        this.sfsdsd = sfsdsd;
+    }
+
+    public String getJsdwbm() {
+        return jsdwbm;
+    }
+
+    public void setJsdwbm(String jsdwbm) {
+        this.jsdwbm = jsdwbm;
+    }
+
+    public String getJsdwmc() {
+        return jsdwmc;
+    }
+
+    public void setJsdwmc(String jsdwmc) {
+        this.jsdwmc = jsdwmc;
+    }
+
+    public String getJsdwjc() {
+        return jsdwjc;
+    }
+
+    public void setJsdwjc(String jsdwjc) {
+        this.jsdwjc = jsdwjc;
+    }
+
+    public String getJsdwpym() {
+        return jsdwpym;
+    }
+
+    public void setJsdwpym(String jsdwpym) {
+        this.jsdwpym = jsdwpym;
+    }
+
+    public String getXtdlx() {
+        return xtdlx;
+    }
+
+    public void setXtdlx(String xtdlx) {
+        this.xtdlx = xtdlx;
+    }
+
+    public String getHgclbh() {
+        return hgclbh;
+    }
+
+    public void setHgclbh(String hgclbh) {
+        this.hgclbh = hgclbh;
+    }
+
+    public Date getHdzljcsj() {
+        return hdzljcsj;
+    }
+
+    public void setHdzljcsj(Date hdzljcsj) {
+        this.hdzljcsj = hdzljcsj;
+    }
+
+    public String getJcgzry() {
+        return jcgzry;
+    }
+
+    public void setJcgzry(String jcgzry) {
+        this.jcgzry = jcgzry;
+    }
+
+    public String getHdzljcbz() {
+        return hdzljcbz;
+    }
+
+    public void setHdzljcbz(String hdzljcbz) {
+        this.hdzljcbz = hdzljcbz;
+    }
+
+    public Date getBgsxtdsj() {
+        return bgsxtdsj;
+    }
+
+    public void setBgsxtdsj(Date bgsxtdsj) {
+        this.bgsxtdsj = bgsxtdsj;
+    }
+
+    public Date getBgscxtdsj() {
+        return bgscxtdsj;
+    }
+
+    public void setBgscxtdsj(Date bgscxtdsj) {
+        this.bgscxtdsj = bgscxtdsj;
+    }
+
+    public Date getThhtjhsj() {
+        return thhtjhsj;
+    }
+
+    public void setThhtjhsj(Date thhtjhsj) {
+        this.thhtjhsj = thhtjhsj;
+    }
+
+    public String getJjcd() {
+        return jjcd;
+    }
+
+    public void setJjcd(String jjcd) {
+        this.jjcd = jjcd;
+    }
+
+    public Double getTcts() {
+        return tcts;
+    }
+
+    public void setTcts(Double tcts) {
+        this.tcts = tcts;
+    }
+
+    public String getZthsq() {
+        return zthsq;
+    }
+
+    public void setZthsq(String zthsq) {
+        this.zthsq = zthsq;
+    }
+
+    public Date getYjlgsj() {
+        return yjlgsj;
+    }
+
+    public void setYjlgsj(Date yjlgsj) {
+        this.yjlgsj = yjlgsj;
+    }
+
+    public Date getZthsqsj() {
+        return zthsqsj;
+    }
+
+    public void setZthsqsj(Date zthsqsj) {
+        this.zthsqsj = zthsqsj;
+    }
+
+    public String getYtjkzt() {
+        return ytjkzt;
+    }
+
+    public void setYtjkzt(String ytjkzt) {
+        this.ytjkzt = ytjkzt;
+    }
+
+    public String getDzlx() {
+        return dzlx;
+    }
+
+    public void setDzlx(String dzlx) {
+        this.dzlx = dzlx;
+    }
+
+    public String getJydwdm() {
+        return jydwdm;
+    }
+
+    public void setJydwdm(String jydwdm) {
+        this.jydwdm = jydwdm;
+    }
+
+    public String getHzdwdqdm() {
+        return hzdwdqdm;
+    }
+
+    public void setHzdwdqdm(String hzdwdqdm) {
+        this.hzdwdqdm = hzdwdqdm;
+    }
+
+    public String getShdwdm() {
+        return shdwdm;
+    }
+
+    public void setShdwdm(String shdwdm) {
+        this.shdwdm = shdwdm;
+    }
+
+    public String getSbdwdm() {
+        return sbdwdm;
+    }
+
+    public void setSbdwdm(String sbdwdm) {
+        this.sbdwdm = sbdwdm;
+    }
+
+    public String getJcka() {
+        return jcka;
+    }
+
+    public void setJcka(String jcka) {
+        this.jcka = jcka;
+    }
+
+    public String getMyfs() {
+        return myfs;
+    }
+
+    public void setMyfs(String myfs) {
+        this.myfs = myfs;
+    }
+
+    public String getZmfs() {
+        return zmfs;
+    }
+
+    public void setZmfs(String zmfs) {
+        this.zmfs = zmfs;
+    }
+
+    public String getYfbj() {
+        return yfbj;
+    }
+
+    public void setYfbj(String yfbj) {
+        this.yfbj = yfbj;
+    }
+
+    public String getBxfbj() {
+        return bxfbj;
+    }
+
+    public void setBxfbj(String bxfbj) {
+        this.bxfbj = bxfbj;
+    }
+
+    public String getBxfbb() {
+        return bxfbb;
+    }
+
+    public void setBxfbb(String bxfbb) {
+        this.bxfbb = bxfbb;
+    }
+
+    public Double getBxfje() {
+        return bxfje;
+    }
+
+    public void setBxfje(Double bxfje) {
+        this.bxfje = bxfje;
+    }
+
+    public Double getZxs() {
+        return zxs;
+    }
+
+    public void setZxs(Double zxs) {
+        this.zxs = zxs;
+    }
+
+    public Double getZmz() {
+        return zmz;
+    }
+
+    public void setZmz(Double zmz) {
+        this.zmz = zmz;
+    }
+
+    public Double getZjz() {
+        return zjz;
+    }
+
+    public void setZjz(Double zjz) {
+        this.zjz = zjz;
+    }
+
+    public String getBzzl() {
+        return bzzl;
+    }
+
+    public void setBzzl(String bzzl) {
+        this.bzzl = bzzl;
+    }
+
+    public String getJckbz() {
+        return jckbz;
+    }
+
+    public void setJckbz(String jckbz) {
+        this.jckbz = jckbz;
+    }
+
+    public String getYtbz() {
+        return ytbz;
+    }
+
+    public void setYtbz(String ytbz) {
+        this.ytbz = ytbz;
+    }
+
+    public String getQiyunguo() {
+        return qiyunguo;
+    }
+
+    public void setQiyunguo(String qiyunguo) {
+        this.qiyunguo = qiyunguo;
+    }
+
+    public String getQiyunguodm() {
+        return qiyunguodm;
+    }
+
+    public void setQiyunguodm(String qiyunguodm) {
+        this.qiyunguodm = qiyunguodm;
+    }
+
+    public String getHtd() {
+        return htd;
+    }
+
+    public void setHtd(String htd) {
+        this.htd = htd;
+    }
+
+    public Date getHtdRq() {
+        return htdRq;
+    }
+
+    public void setHtdRq(Date htdRq) {
+        this.htdRq = htdRq;
+    }
+
+    public String getSfqrbzlx() {
+        return sfqrbzlx;
+    }
+
+    public void setSfqrbzlx(String sfqrbzlx) {
+        this.sfqrbzlx = sfqrbzlx;
+    }
+
+    public String getYtjkwjbh() {
+        return ytjkwjbh;
+    }
+
+    public void setYtjkwjbh(String ytjkwjbh) {
+        this.ytjkwjbh = ytjkwjbh;
+    }
+
+    public Date getYtjkfssj() {
+        return ytjkfssj;
+    }
+
+    public void setYtjkfssj(Date ytjkfssj) {
+        this.ytjkfssj = ytjkfssj;
+    }
+
+    public Integer getYtjkfscs() {
+        return ytjkfscs;
+    }
+
+    public void setYtjkfscs(Integer ytjkfscs) {
+        this.ytjkfscs = ytjkfscs;
+    }
+
+    public String getEp15212() {
+        return ep15212;
+    }
+
+    public void setEp15212(String ep15212) {
+        this.ep15212 = ep15212;
+    }
+
+    public String getEp14515() {
+        return ep14515;
+    }
+
+    public void setEp14515(String ep14515) {
+        this.ep14515 = ep14515;
+    }
+
+    public String getEp14516() {
+        return ep14516;
+    }
+
+    public void setEp14516(String ep14516) {
+        this.ep14516 = ep14516;
+    }
+
+    public String getEp14514() {
+        return ep14514;
+    }
+
+    public void setEp14514(String ep14514) {
+        this.ep14514 = ep14514;
+    }
+
+    public String getYtzt() {
+        return ytzt;
+    }
+
+    public void setYtzt(String ytzt) {
+        this.ytzt = ytzt;
+    }
+
+    public String getYtsjfszt() {
+        return ytsjfszt;
+    }
+
+    public void setYtsjfszt(String ytsjfszt) {
+        this.ytsjfszt = ytsjfszt;
+    }
+
+    public String getSfkydqsjjk() {
+        return sfkydqsjjk;
+    }
+
+    public void setSfkydqsjjk(String sfkydqsjjk) {
+        this.sfkydqsjjk = sfkydqsjjk;
+    }
+
+    public String getBjgslxr() {
+        return bjgslxr;
+    }
+
+    public void setBjgslxr(String bjgslxr) {
+        this.bjgslxr = bjgslxr;
+    }
+
+    public String getBjgslxdh() {
+        return bjgslxdh;
+    }
+
+    public void setBjgslxdh(String bjgslxdh) {
+        this.bjgslxdh = bjgslxdh;
+    }
+
+    public String getBjydm() {
+        return bjydm;
+    }
+
+    public void setBjydm(String bjydm) {
+        this.bjydm = bjydm;
+    }
+
+    public String getQyxz() {
+        return qyxz;
+    }
+
+    public void setQyxz(String qyxz) {
+        this.qyxz = qyxz;
+    }
+
+    public String getSfwstzcc() {
+        return sfwstzcc;
+    }
+
+    public void setSfwstzcc(String sfwstzcc) {
+        this.sfwstzcc = sfwstzcc;
+    }
+
+    public String getTstk() {
+        return tstk;
+    }
+
+    public void setTstk(String tstk) {
+        this.tstk = tstk;
+    }
+
+    public String getHwcfd() {
+        return hwcfd;
+    }
+
+    public void setHwcfd(String hwcfd) {
+        this.hwcfd = hwcfd;
+    }
+
+    public String getYt() {
+        return yt;
+    }
+
+    public void setYt(String yt) {
+        this.yt = yt;
+    }
+
+    public Integer getSpts() {
+        return spts;
+    }
+
+    public void setSpts(Integer spts) {
+        this.spts = spts;
+    }
+
+    public String getZsbh() {
+        return zsbh;
+    }
+
+    public void setZsbh(String zsbh) {
+        this.zsbh = zsbh;
+    }
+
+    public String getZsmc() {
+        return zsmc;
+    }
+
+    public void setZsmc(String zsmc) {
+        this.zsmc = zsmc;
+    }
+
+    public String getBjlb() {
+        return bjlb;
+    }
+
+    public void setBjlb(String bjlb) {
+        this.bjlb = bjlb;
+    }
+
+    public String getMt() {
+        return mt;
+    }
+
+    public void setMt(String mt) {
+        this.mt = mt;
+    }
+
+    public String getYsgj() {
+        return ysgj;
+    }
+
+    public void setYsgj(String ysgj) {
+        this.ysgj = ysgj;
+    }
+
+    public String getSfdj() {
+        return sfdj;
+    }
+
+    public void setSfdj(String sfdj) {
+        this.sfdj = sfdj;
+    }
+
+    public String getSfdjbm() {
+        return sfdjbm;
+    }
+
+    public void setSfdjbm(String sfdjbm) {
+        this.sfdjbm = sfdjbm;
+    }
+
+    public String getRjka() {
+        return rjka;
+    }
+
+    public void setRjka(String rjka) {
+        this.rjka = rjka;
+    }
+
+    public String getRjmdd() {
+        return rjmdd;
+    }
+
+    public void setRjmdd(String rjmdd) {
+        this.rjmdd = rjmdd;
+    }
+
+    public Double getDfcyf() {
+        return dfcyf;
+    }
+
+    public void setDfcyf(Double dfcyf) {
+        this.dfcyf = dfcyf;
+    }
+
+    public Double getDfcbxf() {
+        return dfcbxf;
+    }
+
+    public void setDfcbxf(Double dfcbxf) {
+        this.dfcbxf = dfcbxf;
+    }
+
+    public String getSffsrjsj() {
+        return sffsrjsj;
+    }
+
+    public void setSffsrjsj(String sffsrjsj) {
+        this.sffsrjsj = sffsrjsj;
+    }
+
+    public Date getRjjkfssj() {
+        return rjjkfssj;
+    }
+
+    public void setRjjkfssj(Date rjjkfssj) {
+        this.rjjkfssj = rjjkfssj;
+    }
+
+    public Integer getRjjkfscs() {
+        return rjjkfscs;
+    }
+
+    public void setRjjkfscs(Integer rjjkfscs) {
+        this.rjjkfscs = rjjkfscs;
+    }
+
+    public String getBzjsqly() {
+        return bzjsqly;
+    }
+
+    public void setBzjsqly(String bzjsqly) {
+        this.bzjsqly = bzjsqly;
+    }
+
+    public String getClqy() {
+        return clqy;
+    }
+
+    public void setClqy(String clqy) {
+        this.clqy = clqy;
+    }
+
+    public String getSdlqr() {
+        return sdlqr;
+    }
+
+    public void setSdlqr(String sdlqr) {
+        this.sdlqr = sdlqr;
+    }
+
+    public Date getSdlqsj() {
+        return sdlqsj;
+    }
+
+    public void setSdlqsj(Date sdlqsj) {
+        this.sdlqsj = sdlqsj;
+    }
+
+    public Date getSddzsj() {
+        return sddzsj;
+    }
+
+    public void setSddzsj(Date sddzsj) {
+        this.sddzsj = sddzsj;
+    }
+
+    public String getSdh() {
+        return sdh;
+    }
+
+    public void setSdh(String sdh) {
+        this.sdh = sdh;
+    }
+
+    public Double getKtgs() {
+        return ktgs;
+    }
+
+    public void setKtgs(Double ktgs) {
+        this.ktgs = ktgs;
+    }
+
+    public Double getKtzzs() {
+        return ktzzs;
+    }
+
+    public void setKtzzs(Double ktzzs) {
+        this.ktzzs = ktzzs;
+    }
+
+    public String getYzbh() {
+        return yzbh;
+    }
+
+    public void setYzbh(String yzbh) {
+        this.yzbh = yzbh;
+    }
+
+    public String getSkdbtzspdQt() {
+        return skdbtzspdQt;
+    }
+
+    public void setSkdbtzspdQt(String skdbtzspdQt) {
+        this.skdbtzspdQt = skdbtzspdQt;
+    }
+
+    public String getSkdbtzspdTzsy() {
+        return skdbtzspdTzsy;
+    }
+
+    public void setSkdbtzspdTzsy(String skdbtzspdTzsy) {
+        this.skdbtzspdTzsy = skdbtzspdTzsy;
+    }
+
+    public Date getBzjKhsksj() {
+        return bzjKhsksj;
+    }
+
+    public void setBzjKhsksj(Date bzjKhsksj) {
+        this.bzjKhsksj = bzjKhsksj;
+    }
+
+    public Date getSjKhsksj() {
+        return sjKhsksj;
+    }
+
+    public void setSjKhsksj(Date sjKhsksj) {
+        this.sjKhsksj = sjKhsksj;
+    }
+
+    public String getSftk() {
+        return sftk;
+    }
+
+    public void setSftk(String sftk) {
+        this.sftk = sftk;
+    }
+
+    public Date getZcrq() {
+        return zcrq;
+    }
+
+    public void setZcrq(Date zcrq) {
+        this.zcrq = zcrq;
+    }
+
+    public String getSfyfh() {
+        return sfyfh;
+    }
+
+    public void setSfyfh(String sfyfh) {
+        this.sfyfh = sfyfh;
+    }
+
+    public String getFh() {
+        return fh;
+    }
+
+    public void setFh(String fh) {
+        this.fh = fh;
+    }
+
+    public String getHzHgbm() {
+        return hzHgbm;
+    }
+
+    public void setHzHgbm(String hzHgbm) {
+        this.hzHgbm = hzHgbm;
+    }
+
+    public String getHzPz() {
+        return hzPz;
+    }
+
+    public void setHzPz(String hzPz) {
+        this.hzPz = hzPz;
+    }
+
+    public String getHzSpywmc() {
+        return hzSpywmc;
+    }
+
+    public void setHzSpywmc(String hzSpywmc) {
+        this.hzSpywmc = hzSpywmc;
+    }
+
+    public String getHzSjshr() {
+        return hzSjshr;
+    }
+
+    public void setHzSjshr(String hzSjshr) {
+        this.hzSjshr = hzSjshr;
+    }
+
+    public Integer getHzSjshrgs() {
+        return hzSjshrgs;
+    }
+
+    public void setHzSjshrgs(Integer hzSjshrgs) {
+        this.hzSjshrgs = hzSjshrgs;
+    }
+
+    public String getZgggbz() {
+        return zgggbz;
+    }
+
+    public void setZgggbz(String zgggbz) {
+        this.zgggbz = zgggbz;
+    }
+
+    public String getDmbz() {
+        return dmbz;
+    }
+
+    public void setDmbz(String dmbz) {
+        this.dmbz = dmbz;
+    }
+
+    public String getYfbzDz() {
+        return yfbzDz;
+    }
+
+    public void setYfbzDz(String yfbzDz) {
+        this.yfbzDz = yfbzDz;
+    }
+
+    public String getYflrbh() {
+        return yflrbh;
+    }
+
+    public void setYflrbh(String yflrbh) {
+        this.yflrbh = yflrbh;
+    }
+
+    public Integer getJzxsl() {
+        return jzxsl;
+    }
+
+    public void setJzxsl(Integer jzxsl) {
+        this.jzxsl = jzxsl;
+    }
+
+    public Integer getHzTpsl() {
+        return hzTpsl;
+    }
+
+    public void setHzTpsl(Integer hzTpsl) {
+        this.hzTpsl = hzTpsl;
+    }
+
+    public Integer getHzSzsl() {
+        return hzSzsl;
+    }
+
+    public void setHzSzsl(Integer hzSzsl) {
+        this.hzSzsl = hzSzsl;
+    }
+
+    public String getHzZhlx() {
+        return hzZhlx;
+    }
+
+    public void setHzZhlx(String hzZhlx) {
+        this.hzZhlx = hzZhlx;
+    }
+
+    public String getHzXx() {
+        return hzXx;
+    }
+
+    public void setHzXx(String hzXx) {
+        this.hzXx = hzXx;
+    }
+
+    public String getSjzqCm() {
+        return sjzqCm;
+    }
+
+    public void setSjzqCm(String sjzqCm) {
+        this.sjzqCm = sjzqCm;
+    }
+
+    public String getSjzqHc() {
+        return sjzqHc;
+    }
+
+    public void setSjzqHc(String sjzqHc) {
+        this.sjzqHc = sjzqHc;
+    }
+
+    public Double getSjzqJs() {
+        return sjzqJs;
+    }
+
+    public void setSjzqJs(Double sjzqJs) {
+        this.sjzqJs = sjzqJs;
+    }
+
+    public Double getSjzqZl() {
+        return sjzqZl;
+    }
+
+    public void setSjzqZl(Double sjzqZl) {
+        this.sjzqZl = sjzqZl;
+    }
+
+    public String getSgzqDyxx() {
+        return sgzqDyxx;
+    }
+
+    public void setSgzqDyxx(String sgzqDyxx) {
+        this.sgzqDyxx = sgzqDyxx;
+    }
+
+    public String getSjzqJkdgqrbz() {
+        return sjzqJkdgqrbz;
+    }
+
+    public void setSjzqJkdgqrbz(String sjzqJkdgqrbz) {
+        this.sjzqJkdgqrbz = sjzqJkdgqrbz;
+    }
+
+    public String getSjzqLhzt() {
+        return sjzqLhzt;
+    }
+
+    public void setSjzqLhzt(String sjzqLhzt) {
+        this.sjzqLhzt = sjzqLhzt;
+    }
+
+    public String getSjzqCkdyzt() {
+        return sjzqCkdyzt;
+    }
+
+    public void setSjzqCkdyzt(String sjzqCkdyzt) {
+        this.sjzqCkdyzt = sjzqCkdyzt;
+    }
+
+    public Date getSjzqZqcdsj() {
+        return sjzqZqcdsj;
+    }
+
+    public void setSjzqZqcdsj(Date sjzqZqcdsj) {
+        this.sjzqZqcdsj = sjzqZqcdsj;
+    }
+
+    public Date getSjzqZqdgsj() {
+        return sjzqZqdgsj;
+    }
+
+    public void setSjzqZqdgsj(Date sjzqZqdgsj) {
+        this.sjzqZqdgsj = sjzqZqdgsj;
+    }
+
+    public Date getSjzqZqlhsj() {
+        return sjzqZqlhsj;
+    }
+
+    public void setSjzqZqlhsj(Date sjzqZqlhsj) {
+        this.sjzqZqlhsj = sjzqZqlhsj;
+    }
+
+    public String getSdry() {
+        return sdry;
+    }
+
+    public void setSdry(String sdry) {
+        this.sdry = sdry;
+    }
+
+    public String getYfqr() {
+        return yfqr;
+    }
+
+    public void setYfqr(String yfqr) {
+        this.yfqr = yfqr;
+    }
+
+    public String getDqdm() {
+        return dqdm;
+    }
+
+    public void setDqdm(String dqdm) {
+        this.dqdm = dqdm;
+    }
+
+    public String getCtrArea2() {
+        return ctrArea2;
+    }
+
+    public void setCtrArea2(String ctrArea2) {
+        this.ctrArea2 = ctrArea2;
+    }
+
+    public String getTycj() {
+        return tycj;
+    }
+
+    public void setTycj(String tycj) {
+        this.tycj = tycj;
+    }
+
+    public Integer getHzBzsl() {
+        return hzBzsl;
+    }
+
+    public void setHzBzsl(Integer hzBzsl) {
+        this.hzBzsl = hzBzsl;
+    }
+
+    public String getPjlx() {
+        return pjlx;
+    }
+
+    public void setPjlx(String pjlx) {
+        this.pjlx = pjlx;
+    }
+
+    public Date getPjkhthsj() {
+        return pjkhthsj;
+    }
+
+    public void setPjkhthsj(Date pjkhthsj) {
+        this.pjkhthsj = pjkhthsj;
+    }
+
+    public String getSddybh() {
+        return sddybh;
+    }
+
+    public void setSddybh(String sddybh) {
+        this.sddybh = sddybh;
+    }
+
+    public String getCdxxycyy() {
+        return cdxxycyy;
+    }
+
+    public void setCdxxycyy(String cdxxycyy) {
+        this.cdxxycyy = cdxxycyy;
+    }
+
+    public String getMygb() {
+        return mygb;
+    }
+
+    public void setMygb(String mygb) {
+        this.mygb = mygb;
+    }
+
+    public String getYjtsbm() {
+        return yjtsbm;
+    }
+
+    public void setYjtsbm(String yjtsbm) {
+        this.yjtsbm = yjtsbm;
+    }
+
+    public String getSuppliersellid() {
+        return suppliersellid;
+    }
+
+    public void setSuppliersellid(String suppliersellid) {
+        this.suppliersellid = suppliersellid;
+    }
+
+    public String getOcrid() {
+        return ocrid;
+    }
+
+    public void setOcrid(String ocrid) {
+        this.ocrid = ocrid;
+    }
+
+    public Date getWzhjdsj() {
+        return wzhjdsj;
+    }
+
+    public void setWzhjdsj(Date wzhjdsj) {
+        this.wzhjdsj = wzhjdsj;
+    }
+
+    public String getGjsbzt() {
+        return gjsbzt;
+    }
+
+    public void setGjsbzt(String gjsbzt) {
+        this.gjsbzt = gjsbzt;
+    }
+
+    public String getSfjy() {
+        return sfjy;
+    }
+
+    public void setSfjy(String sfjy) {
+        this.sfjy = sfjy;
+    }
+
+    public Date getHgfxsjZqsj() {
+        return hgfxsjZqsj;
+    }
+
+    public void setHgfxsjZqsj(Date hgfxsjZqsj) {
+        this.hgfxsjZqsj = hgfxsjZqsj;
+    }
+
+    public String getOhxtClbz() {
+        return ohxtClbz;
+    }
+
+    public void setOhxtClbz(String ohxtClbz) {
+        this.ohxtClbz = ohxtClbz;
+    }
+
+    public Date getOhxtClsj() {
+        return ohxtClsj;
+    }
+
+    public void setOhxtClsj(Date ohxtClsj) {
+        this.ohxtClsj = ohxtClsj;
+    }
+
+    public String getBghbjxgbz() {
+        return bghbjxgbz;
+    }
+
+    public void setBghbjxgbz(String bghbjxgbz) {
+        this.bghbjxgbz = bghbjxgbz;
+    }
+
+    public String getFxfsqrbz() {
+        return fxfsqrbz;
+    }
+
+    public void setFxfsqrbz(String fxfsqrbz) {
+        this.fxfsqrbz = fxfsqrbz;
+    }
+
+    public String getQrdf() {
+        return qrdf;
+    }
+
+    public void setQrdf(String qrdf) {
+        this.qrdf = qrdf;
+    }
+
+    public String getSfbhbj() {
+        return sfbhbj;
+    }
+
+    public void setSfbhbj(String sfbhbj) {
+        this.sfbhbj = sfbhbj;
+    }
+
+    public String getSfxb() {
+        return sfxb;
+    }
+
+    public void setSfxb(String sfxb) {
+        this.sfxb = sfxb;
+    }
+
+    public String getSjxgbz() {
+        return sjxgbz;
+    }
+
+    public void setSjxgbz(String sjxgbz) {
+        this.sjxgbz = sjxgbz;
+    }
+
+    public String getRgzqDyxx() {
+        return rgzqDyxx;
+    }
+
+    public void setRgzqDyxx(String rgzqDyxx) {
+        this.rgzqDyxx = rgzqDyxx;
+    }
+
+    public Date getQrdfsj() {
+        return qrdfsj;
+    }
+
+    public void setQrdfsj(Date qrdfsj) {
+        this.qrdfsj = qrdfsj;
+    }
+
+    public Date getBhbjsj() {
+        return bhbjsj;
+    }
+
+    public void setBhbjsj(Date bhbjsj) {
+        this.bhbjsj = bhbjsj;
+    }
+
+    public String getSjzqCdrgzqbz() {
+        return sjzqCdrgzqbz;
+    }
+
+    public void setSjzqCdrgzqbz(String sjzqCdrgzqbz) {
+        this.sjzqCdrgzqbz = sjzqCdrgzqbz;
+    }
+
+    public String getSfzbzj() {
+        return sfzbzj;
+    }
+
+    public void setSfzbzj(String sfzbzj) {
+        this.sfzbzj = sfzbzj;
+    }
+
+    public Date getZbzjsj() {
+        return zbzjsj;
+    }
+
+    public void setZbzjsj(Date zbzjsj) {
+        this.zbzjsj = zbzjsj;
+    }
+
+    public String getScsxgbz() {
+        return scsxgbz;
+    }
+
+    public void setScsxgbz(String scsxgbz) {
+        this.scsxgbz = scsxgbz;
+    }
+
+    public Date getYjhdsj() {
+        return yjhdsj;
+    }
+
+    public void setYjhdsj(Date yjhdsj) {
+        this.yjhdsj = yjhdsj;
+    }
+
+    public Date getYjhdsjSr() {
+        return yjhdsjSr;
+    }
+
+    public void setYjhdsjSr(Date yjhdsjSr) {
+        this.yjhdsjSr = yjhdsjSr;
+    }
+
+    public String getSfyzcf() {
+        return sfyzcf;
+    }
+
+    public void setSfyzcf(String sfyzcf) {
+        this.sfyzcf = sfyzcf;
+    }
+
+    public Date getYghgfxsj() {
+        return yghgfxsj;
+    }
+
+    public void setYghgfxsj(Date yghgfxsj) {
+        this.yghgfxsj = yghgfxsj;
+    }
+
+    public String getJsbz() {
+        return jsbz;
+    }
+
+    public void setJsbz(String jsbz) {
+        this.jsbz = jsbz;
+    }
+
+    public String getBzjsjh() {
+        return bzjsjh;
+    }
+
+    public void setBzjsjh(String bzjsjh) {
+        this.bzjsjh = bzjsjh;
+    }
+
+    public Date getQyrq() {
+        return qyrq;
+    }
+
+    public void setQyrq(Date qyrq) {
+        this.qyrq = qyrq;
+    }
+
+    public Date getYjkgsjsrsj() {
+        return yjkgsjsrsj;
+    }
+
+    public void setYjkgsjsrsj(Date yjkgsjsrsj) {
+        this.yjkgsjsrsj = yjkgsjsrsj;
+    }
+
+    public Double getYjbl() {
+        return yjbl;
+    }
+
+    public void setYjbl(Double yjbl) {
+        this.yjbl = yjbl;
+    }
+
+    public Double getYj() {
+        return yj;
+    }
+
+    public void setYj(Double yj) {
+        this.yj = yj;
+    }
+
+    public String getZcqr() {
+        return zcqr;
+    }
+
+    public void setZcqr(String zcqr) {
+        this.zcqr = zcqr;
+    }
+
+    public String getDsdyfzf() {
+        return dsdyfzf;
+    }
+
+    public void setDsdyfzf(String dsdyfzf) {
+        this.dsdyfzf = dsdyfzf;
+    }
+
+    public String getDsdyfyzf() {
+        return dsdyfyzf;
+    }
+
+    public void setDsdyfyzf(String dsdyfyzf) {
+        this.dsdyfyzf = dsdyfyzf;
+    }
+
+    public String getJs() {
+        return js;
+    }
+
+    public void setJs(String js) {
+        this.js = js;
+    }
+
+    public String getHzjs() {
+        return hzjs;
+    }
+
+    public void setHzjs(String hzjs) {
+        this.hzjs = hzjs;
+    }
+
+    public String getJgtkqr() {
+        return jgtkqr;
+    }
+
+    public void setJgtkqr(String jgtkqr) {
+        this.jgtkqr = jgtkqr;
+    }
+
+    public String getBgdwjmc() {
+        return bgdwjmc;
+    }
+
+    public void setBgdwjmc(String bgdwjmc) {
+        this.bgdwjmc = bgdwjmc;
+    }
+
+    public String getGwgysTymc() {
+        return gwgysTymc;
+    }
+
+    public void setGwgysTymc(String gwgysTymc) {
+        this.gwgysTymc = gwgysTymc;
+    }
+
+    public String getJyjyzs() {
+        return jyjyzs;
+    }
+
+    public void setJyjyzs(String jyjyzs) {
+        this.jyjyzs = jyjyzs;
+    }
+
+    public String getWjgd() {
+        return wjgd;
+    }
+
+    public void setWjgd(String wjgd) {
+        this.wjgd = wjgd;
+    }
+
+    public String getSfyjyjyzs() {
+        return sfyjyjyzs;
+    }
+
+    public void setSfyjyjyzs(String sfyjyjyzs) {
+        this.sfyjyjyzs = sfyjyjyzs;
+    }
+
+    public String getSfysd() {
+        return sfysd;
+    }
+
+    public void setSfysd(String sfysd) {
+        this.sfysd = sfysd;
+    }
+
+    public String getSfygdwj() {
+        return sfygdwj;
+    }
+
+    public void setSfygdwj(String sfygdwj) {
+        this.sfygdwj = sfygdwj;
+    }
+
+    public Integer getDztxts() {
+        return dztxts;
+    }
+
+    public void setDztxts(Integer dztxts) {
+        this.dztxts = dztxts;
+    }
+
+    public Integer getTdzt() {
+        return tdzt;
+    }
+
+    public void setTdzt(Integer tdzt) {
+        this.tdzt = tdzt;
+    }
+
+    public Integer getSdtgfs() {
+        return sdtgfs;
+    }
+
+    public void setSdtgfs(Integer sdtgfs) {
+        this.sdtgfs = sdtgfs;
+    }
+
+    public Integer getZdzfs() {
+        return zdzfs;
+    }
+
+    public void setZdzfs(Integer zdzfs) {
+        this.zdzfs = zdzfs;
+    }
+
+    public String getOhdlxy() {
+        return ohdlxy;
+    }
+
+    public void setOhdlxy(String ohdlxy) {
+        this.ohdlxy = ohdlxy;
+    }
+
+    public Date getZzrq() {
+        return zzrq;
+    }
+
+    public void setZzrq(Date zzrq) {
+        this.zzrq = zzrq;
+    }
+
+    public String getDzqk() {
+        return dzqk;
+    }
+
+    public void setDzqk(String dzqk) {
+        this.dzqk = dzqk;
+    }
+
+    public String getFkfs() {
+        return fkfs;
+    }
+
+    public void setFkfs(String fkfs) {
+        this.fkfs = fkfs;
+    }
+
+    public String getJzxgjzxh() {
+        return jzxgjzxh;
+    }
+
+    public void setJzxgjzxh(String jzxgjzxh) {
+        this.jzxgjzxh = jzxgjzxh;
+    }
+
+    public String getQgld() {
+        return qgld;
+    }
+
+    public void setQgld(String qgld) {
+        this.qgld = qgld;
+    }
+
+    public String getJdrbm() {
+        return jdrbm;
+    }
+
+    public void setJdrbm(String jdrbm) {
+        this.jdrbm = jdrbm;
+    }
+
+    public String getJdrmc() {
+        return jdrmc;
+    }
+
+    public void setJdrmc(String jdrmc) {
+        this.jdrmc = jdrmc;
+    }
+
+    public String getJdrjc() {
+        return jdrjc;
+    }
+
+    public void setJdrjc(String jdrjc) {
+        this.jdrjc = jdrjc;
+    }
+
+    public String getJdrpym() {
+        return jdrpym;
+    }
+
+    public void setJdrpym(String jdrpym) {
+        this.jdrpym = jdrpym;
+    }
+
+    public String getTsbz() {
+        return tsbz;
+    }
+
+    public void setTsbz(String tsbz) {
+        this.tsbz = tsbz;
+    }
+
+    public String getSfsjjyw() {
+        return sfsjjyw;
+    }
+
+    public void setSfsjjyw(String sfsjjyw) {
+        this.sfsjjyw = sfsjjyw;
+    }
+
+    public String getSfsy() {
+        return sfsy;
+    }
+
+    public void setSfsy(String sfsy) {
+        this.sfsy = sfsy;
+    }
+
+    public String getBjys() {
+        return bjys;
+    }
+
+    public void setBjys(String bjys) {
+        this.bjys = bjys;
+    }
+
+    public String getSjzqMtdm() {
+        return sjzqMtdm;
+    }
+
+    public void setSjzqMtdm(String sjzqMtdm) {
+        this.sjzqMtdm = sjzqMtdm;
+    }
+
+    public String getSffshb() {
+        return sffshb;
+    }
+
+    public void setSffshb(String sffshb) {
+        this.sffshb = sffshb;
+    }
+
+    public Date getSjkgsjLrsj() {
+        return sjkgsjLrsj;
+    }
+
+    public void setSjkgsjLrsj(Date sjkgsjLrsj) {
+        this.sjkgsjLrsj = sjkgsjLrsj;
+    }
+
+    public String getSjkgsjCzry() {
+        return sjkgsjCzry;
+    }
+
+    public void setSjkgsjCzry(String sjkgsjCzry) {
+        this.sjkgsjCzry = sjkgsjCzry;
+    }
+
+    public String getHgfxsjCzry() {
+        return hgfxsjCzry;
+    }
+
+    public void setHgfxsjCzry(String hgfxsjCzry) {
+        this.hgfxsjCzry = hgfxsjCzry;
+    }
+
+    public String getBjhsrry() {
+        return bjhsrry;
+    }
+
+    public void setBjhsrry(String bjhsrry) {
+        this.bjhsrry = bjhsrry;
+    }
+
+    public Date getBjhsrsj() {
+        return bjhsrsj;
+    }
+
+    public void setBjhsrsj(Date bjhsrsj) {
+        this.bjhsrsj = bjhsrsj;
+    }
+
+    public String getWxgj() {
+        return wxgj;
+    }
+
+    public void setWxgj(String wxgj) {
+        this.wxgj = wxgj;
+    }
+
+    public String getCypz() {
+        return cypz;
+    }
+
+    public void setCypz(String cypz) {
+        this.cypz = cypz;
+    }
+
+    public Double getZf() {
+        return zf;
+    }
+
+    public void setZf(Double zf) {
+        this.zf = zf;
+    }
+
+    public String getSfpd() {
+        return sfpd;
+    }
+
+    public void setSfpd(String sfpd) {
+        this.sfpd = sfpd;
+    }
+
+    public String getGwgysdz() {
+        return gwgysdz;
+    }
+
+    public void setGwgysdz(String gwgysdz) {
+        this.gwgysdz = gwgysdz;
+    }
+
+    public String getZjsdz() {
+        return zjsdz;
+    }
+
+    public void setZjsdz(String zjsdz) {
+        this.zjsdz = zjsdz;
+    }
+
+    public String getGjczbz() {
+        return gjczbz;
+    }
+
+    public void setGjczbz(String gjczbz) {
+        this.gjczbz = gjczbz;
+    }
+
+    public String getGjczry() {
+        return gjczry;
+    }
+
+    public void setGjczry(String gjczry) {
+        this.gjczry = gjczry;
+    }
+
+    public Date getGjczsj() {
+        return gjczsj;
+    }
+
+    public void setGjczsj(Date gjczsj) {
+        this.gjczsj = gjczsj;
+    }
+
+    public Date getKylhsj() {
+        return kylhsj;
+    }
+
+    public void setKylhsj(Date kylhsj) {
+        this.kylhsj = kylhsj;
+    }
+
+    public String getKylhsjSrry() {
+        return kylhsjSrry;
+    }
+
+    public void setKylhsjSrry(String kylhsjSrry) {
+        this.kylhsjSrry = kylhsjSrry;
+    }
+
+    public Date getKylhsjLrsj() {
+        return kylhsjLrsj;
+    }
+
+    public void setKylhsjLrsj(Date kylhsjLrsj) {
+        this.kylhsjLrsj = kylhsjLrsj;
+    }
+
+    public String getZbzj() {
+        return zbzj;
+    }
+
+    public void setZbzj(String zbzj) {
+        this.zbzj = zbzj;
+    }
+
+    public Date getYgkthsj() {
+        return ygkthsj;
+    }
+
+    public void setYgkthsj(Date ygkthsj) {
+        this.ygkthsj = ygkthsj;
+    }
+
+    public String getYgkthsjSjd() {
+        return ygkthsjSjd;
+    }
+
+    public void setYgkthsjSjd(String ygkthsjSjd) {
+        this.ygkthsjSjd = ygkthsjSjd;
+    }
+
+    public String getYjbb() {
+        return yjbb;
+    }
+
+    public void setYjbb(String yjbb) {
+        this.yjbb = yjbb;
+    }
+
+    public String getSfqgld() {
+        return sfqgld;
+    }
+
+    public void setSfqgld(String sfqgld) {
+        this.sfqgld = sfqgld;
+    }
+
+    public Double getXfs() {
+        return xfs;
+    }
+
+    public void setXfs(Double xfs) {
+        this.xfs = xfs;
+    }
+
+    public String getXccy() {
+        return xccy;
+    }
+
+    public void setXccy(String xccy) {
+        this.xccy = xccy;
+    }
+
+    public String getXccyLrry() {
+        return xccyLrry;
+    }
+
+    public void setXccyLrry(String xccyLrry) {
+        this.xccyLrry = xccyLrry;
+    }
+
+    public Date getXccyLrsj() {
+        return xccyLrsj;
+    }
+
+    public void setXccyLrsj(Date xccyLrsj) {
+        this.xccyLrsj = xccyLrsj;
+    }
+
+    public String getRjhwjyjyzm() {
+        return rjhwjyjyzm;
+    }
+
+    public void setRjhwjyjyzm(String rjhwjyjyzm) {
+        this.rjhwjyjyzm = rjhwjyjyzm;
+    }
+
+    public String getBg() {
+        return bg;
+    }
+
+    public void setBg(String bg) {
+        this.bg = bg;
+    }
+
+    public String getBj() {
+        return bj;
+    }
+
+    public void setBj(String bj) {
+        this.bj = bj;
+    }
+
+    public String getWl() {
+        return wl;
+    }
+
+    public void setWl(String wl) {
+        this.wl = wl;
+    }
+
+    public String getHd() {
+        return hd;
+    }
+
+    public void setHd(String hd) {
+        this.hd = hd;
+    }
+
+    public String getFx() {
+        return fx;
+    }
+
+    public void setFx(String fx) {
+        this.fx = fx;
+    }
+
+    public String getWlgsbm() {
+        return wlgsbm;
+    }
+
+    public void setWlgsbm(String wlgsbm) {
+        this.wlgsbm = wlgsbm;
+    }
+
+    public String getWlgsmc() {
+        return wlgsmc;
+    }
+
+    public void setWlgsmc(String wlgsmc) {
+        this.wlgsmc = wlgsmc;
+    }
+
+    public String getWlgsjc() {
+        return wlgsjc;
+    }
+
+    public void setWlgsjc(String wlgsjc) {
+        this.wlgsjc = wlgsjc;
+    }
+
+    public String getWlgspym() {
+        return wlgspym;
+    }
+
+    public void setWlgspym(String wlgspym) {
+        this.wlgspym = wlgspym;
+    }
+
+    public String getHdrbm() {
+        return hdrbm;
+    }
+
+    public void setHdrbm(String hdrbm) {
+        this.hdrbm = hdrbm;
+    }
+
+    public String getHdrmc() {
+        return hdrmc;
+    }
+
+    public void setHdrmc(String hdrmc) {
+        this.hdrmc = hdrmc;
+    }
+
+    public String getHdrjc() {
+        return hdrjc;
+    }
+
+    public void setHdrjc(String hdrjc) {
+        this.hdrjc = hdrjc;
+    }
+
+    public String getHdrpym() {
+        return hdrpym;
+    }
+
+    public void setHdrpym(String hdrpym) {
+        this.hdrpym = hdrpym;
+    }
+
+    public String getCkdwbm() {
+        return ckdwbm;
+    }
+
+    public void setCkdwbm(String ckdwbm) {
+        this.ckdwbm = ckdwbm;
+    }
+
+    public String getCkdwmc() {
+        return ckdwmc;
+    }
+
+    public void setCkdwmc(String ckdwmc) {
+        this.ckdwmc = ckdwmc;
+    }
+
+    public String getCkdwjc() {
+        return ckdwjc;
+    }
+
+    public void setCkdwjc(String ckdwjc) {
+        this.ckdwjc = ckdwjc;
+    }
+
+    public String getCkdwpym() {
+        return ckdwpym;
+    }
+
+    public void setCkdwpym(String ckdwpym) {
+        this.ckdwpym = ckdwpym;
+    }
+
+    public Date getYjkgsjLrsj() {
+        return yjkgsjLrsj;
+    }
+
+    public void setYjkgsjLrsj(Date yjkgsjLrsj) {
+        this.yjkgsjLrsj = yjkgsjLrsj;
+    }
+
+    public String getYjkgsjCzry() {
+        return yjkgsjCzry;
+    }
+
+    public void setYjkgsjCzry(String yjkgsjCzry) {
+        this.yjkgsjCzry = yjkgsjCzry;
+    }
+
+    public String getSfjc() {
+        return sfjc;
+    }
+
+    public void setSfjc(String sfjc) {
+        this.sfjc = sfjc;
+    }
+
+    public String getJclrry() {
+        return jclrry;
+    }
+
+    public void setJclrry(String jclrry) {
+        this.jclrry = jclrry;
+    }
+
+    public Date getJclrsj() {
+        return jclrsj;
+    }
+
+    public void setJclrsj(Date jclrsj) {
+        this.jclrsj = jclrsj;
+    }
+
+    public Double getYjccfy() {
+        return yjccfy;
+    }
+
+    public void setYjccfy(Double yjccfy) {
+        this.yjccfy = yjccfy;
+    }
+
+    public String getSfsq() {
+        return sfsq;
+    }
+
+    public void setSfsq(String sfsq) {
+        this.sfsq = sfsq;
+    }
+
+    public Double getSjccfy() {
+        return sjccfy;
+    }
+
+    public void setSjccfy(Double sjccfy) {
+        this.sjccfy = sjccfy;
+    }
+
+    public String getCcfbz() {
+        return ccfbz;
+    }
+
+    public void setCcfbz(String ccfbz) {
+        this.ccfbz = ccfbz;
+    }
+
+    public String getSfcsbj() {
+        return sfcsbj;
+    }
+
+    public void setSfcsbj(String sfcsbj) {
+        this.sfcsbj = sfcsbj;
+    }
+
+    public Date getSjkbsj() {
+        return sjkbsj;
+    }
+
+    public void setSjkbsj(Date sjkbsj) {
+        this.sjkbsj = sjkbsj;
+    }
+
+    public Date getHbzqsj() {
+        return hbzqsj;
+    }
+
+    public void setHbzqsj(Date hbzqsj) {
+        this.hbzqsj = hbzqsj;
+    }
+
+    public String getBjyw() {
+        return bjyw;
+    }
+
+    public void setBjyw(String bjyw) {
+        this.bjyw = bjyw;
+    }
+
+    public Date getJhkbsj() {
+        return jhkbsj;
+    }
+
+    public void setJhkbsj(Date jhkbsj) {
+        this.jhkbsj = jhkbsj;
+    }
+
+    public Date getJhkbsjZqsj() {
+        return jhkbsjZqsj;
+    }
+
+    public void setJhkbsjZqsj(Date jhkbsjZqsj) {
+        this.jhkbsjZqsj = jhkbsjZqsj;
+    }
+
+    public Date getSjzqHgfxsj() {
+        return sjzqHgfxsj;
+    }
+
+    public void setSjzqHgfxsj(Date sjzqHgfxsj) {
+        this.sjzqHgfxsj = sjzqHgfxsj;
+    }
+
+    public Date getSjzqZqsj() {
+        return sjzqZqsj;
+    }
+
+    public void setSjzqZqsj(Date sjzqZqsj) {
+        this.sjzqZqsj = sjzqZqsj;
+    }
+
+    public Date getZbjyzkdsj() {
+        return zbjyzkdsj;
+    }
+
+    public void setZbjyzkdsj(Date zbjyzkdsj) {
+        this.zbjyzkdsj = zbjyzkdsj;
+    }
+
+    public String getSdBeizhu() {
+        return sdBeizhu;
+    }
+
+    public void setSdBeizhu(String sdBeizhu) {
+        this.sdBeizhu = sdBeizhu;
+    }
+
+    public String getJsdwJsbm() {
+        return jsdwJsbm;
+    }
+
+    public void setJsdwJsbm(String jsdwJsbm) {
+        this.jsdwJsbm = jsdwJsbm;
+    }
+
+    public String getSjzfkhJsbm() {
+        return sjzfkhJsbm;
+    }
+
+    public void setSjzfkhJsbm(String sjzfkhJsbm) {
+        this.sjzfkhJsbm = sjzfkhJsbm;
+    }
+
+    public String getGbhYwbh() {
+        return gbhYwbh;
+    }
+
+    public void setGbhYwbh(String gbhYwbh) {
+        this.gbhYwbh = gbhYwbh;
+    }
+
+    public String getYsmxcd() {
+        return ysmxcd;
+    }
+
+    public void setYsmxcd(String ysmxcd) {
+        this.ysmxcd = ysmxcd;
+    }
+
+    public String getSfqr() {
+        return sfqr;
+    }
+
+    public void setSfqr(String sfqr) {
+        this.sfqr = sfqr;
+    }
+
+    public String getSftj() {
+        return sftj;
+    }
+
+    public void setSftj(String sftj) {
+        this.sftj = sftj;
+    }
+
+    public String getHxzgtgzt() {
+        return hxzgtgzt;
+    }
+
+    public void setHxzgtgzt(String hxzgtgzt) {
+        this.hxzgtgzt = hxzgtgzt;
+    }
+
+    public Date getHxzgtgsj() {
+        return hxzgtgsj;
+    }
+
+    public void setHxzgtgsj(Date hxzgtgsj) {
+        this.hxzgtgsj = hxzgtgsj;
+    }
+
+    public Date getPcyjhsj() {
+        return pcyjhsj;
+    }
+
+    public void setPcyjhsj(Date pcyjhsj) {
+        this.pcyjhsj = pcyjhsj;
+    }
+
+    public String getPcyjhsjTjry() {
+        return pcyjhsjTjry;
+    }
+
+    public void setPcyjhsjTjry(String pcyjhsjTjry) {
+        this.pcyjhsjTjry = pcyjhsjTjry;
+    }
+
+    public Date getPcyjhsjTjsj() {
+        return pcyjhsjTjsj;
+    }
+
+    public void setPcyjhsjTjsj(Date pcyjhsjTjsj) {
+        this.pcyjhsjTjsj = pcyjhsjTjsj;
+    }
+
+    public String getMxqLrry() {
+        return mxqLrry;
+    }
+
+    public void setMxqLrry(String mxqLrry) {
+        this.mxqLrry = mxqLrry;
+    }
+
+    public Date getMxqLrsj() {
+        return mxqLrsj;
+    }
+
+    public void setMxqLrsj(Date mxqLrsj) {
+        this.mxqLrsj = mxqLrsj;
+    }
+
+    public Double getMcq() {
+        return mcq;
+    }
+
+    public void setMcq(Double mcq) {
+        this.mcq = mcq;
+    }
+
+    public String getEp25461() {
+        return ep25461;
+    }
+
+    public void setEp25461(String ep25461) {
+        this.ep25461 = ep25461;
+    }
+
+    public String getSfbhbjLrry() {
+        return sfbhbjLrry;
+    }
+
+    public void setSfbhbjLrry(String sfbhbjLrry) {
+        this.sfbhbjLrry = sfbhbjLrry;
+    }
+
+    public Date getSfbhbjLrrq() {
+        return sfbhbjLrrq;
+    }
+
+    public void setSfbhbjLrrq(Date sfbhbjLrrq) {
+        this.sfbhbjLrrq = sfbhbjLrrq;
+    }
+
+    public String getSfzbzjLrry() {
+        return sfzbzjLrry;
+    }
+
+    public void setSfzbzjLrry(String sfzbzjLrry) {
+        this.sfzbzjLrry = sfzbzjLrry;
+    }
+
+    public Date getSfzbzjLrrq() {
+        return sfzbzjLrrq;
+    }
+
+    public void setSfzbzjLrrq(Date sfzbzjLrrq) {
+        this.sfzbzjLrrq = sfzbzjLrrq;
+    }
+
+    public String getSfcsbjLrry() {
+        return sfcsbjLrry;
+    }
+
+    public void setSfcsbjLrry(String sfcsbjLrry) {
+        this.sfcsbjLrry = sfcsbjLrry;
+    }
+
+    public Date getSfcsbjLrrq() {
+        return sfcsbjLrrq;
+    }
+
+    public void setSfcsbjLrrq(Date sfcsbjLrrq) {
+        this.sfcsbjLrrq = sfcsbjLrrq;
+    }
+
+    public String getGwgysdm() {
+        return gwgysdm;
+    }
+
+    public void setGwgysdm(String gwgysdm) {
+        this.gwgysdm = gwgysdm;
+    }
+
+    public String getZjsdm() {
+        return zjsdm;
+    }
+
+    public void setZjsdm(String zjsdm) {
+        this.zjsdm = zjsdm;
+    }
+
+    public Date getMxqrq() {
+        return mxqrq;
+    }
+
+    public void setMxqrq(Date mxqrq) {
+        this.mxqrq = mxqrq;
+    }
+
+    public String getJyjysljg() {
+        return jyjysljg;
+    }
+
+    public void setJyjysljg(String jyjysljg) {
+        this.jyjysljg = jyjysljg;
+    }
+
+    public String getKajyjyjg() {
+        return kajyjyjg;
+    }
+
+    public void setKajyjyjg(String kajyjyjg) {
+        this.kajyjyjg = kajyjyjg;
+    }
+
+    public String getMddjyjyjg() {
+        return mddjyjyjg;
+    }
+
+    public void setMddjyjyjg(String mddjyjyjg) {
+        this.mddjyjyjg = mddjyjyjg;
+    }
+
+    public String getLzjg() {
+        return lzjg;
+    }
+
+    public void setLzjg(String lzjg) {
+        this.lzjg = lzjg;
+    }
+
+    public String getYjzxbs() {
+        return yjzxbs;
+    }
+
+    public void setYjzxbs(String yjzxbs) {
+        this.yjzxbs = yjzxbs;
+    }
+
+    public String getSfyzbsd() {
+        return sfyzbsd;
+    }
+
+    public void setSfyzbsd(String sfyzbsd) {
+        this.sfyzbsd = sfyzbsd;
+    }
+
+    public String getXc2ccy() {
+        return xc2ccy;
+    }
+
+    public void setXc2ccy(String xc2ccy) {
+        this.xc2ccy = xc2ccy;
+    }
+
+    public String getXc2ccyLrry() {
+        return xc2ccyLrry;
+    }
+
+    public void setXc2ccyLrry(String xc2ccyLrry) {
+        this.xc2ccyLrry = xc2ccyLrry;
+    }
+
+    public Date getXc2ccyLrrq() {
+        return xc2ccyLrrq;
+    }
+
+    public void setXc2ccyLrrq(Date xc2ccyLrrq) {
+        this.xc2ccyLrrq = xc2ccyLrrq;
+    }
+
+    public String getHgCdrq() {
+        return hgCdrq;
+    }
+
+    public void setHgCdrq(String hgCdrq) {
+        this.hgCdrq = hgCdrq;
+    }
+
+    public String getHgDgrq() {
+        return hgDgrq;
+    }
+
+    public void setHgDgrq(String hgDgrq) {
+        this.hgDgrq = hgDgrq;
+    }
+
+    public Date getMcqRq() {
+        return mcqRq;
+    }
+
+    public void setMcqRq(Date mcqRq) {
+        this.mcqRq = mcqRq;
+    }
+
+    public String getJysbjg() {
+        return jysbjg;
+    }
+
+    public void setJysbjg(String jysbjg) {
+        this.jysbjg = jysbjg;
+    }
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getXskhbm() {
+        return xskhbm;
+    }
+
+    public void setXskhbm(String xskhbm) {
+        this.xskhbm = xskhbm;
+    }
+
+    public String getXskhmc() {
+        return xskhmc;
+    }
+
+    public void setXskhmc(String xskhmc) {
+        this.xskhmc = xskhmc;
+    }
+
+    public String getXskhjc() {
+        return xskhjc;
+    }
+
+    public void setXskhjc(String xskhjc) {
+        this.xskhjc = xskhjc;
+    }
+
+    public String getXskhpym() {
+        return xskhpym;
+    }
+
+    public void setXskhpym(String xskhpym) {
+        this.xskhpym = xskhpym;
+    }
+
+    public String getHzPp() {
+        return hzPp;
+    }
+
+    public void setHzPp(String hzPp) {
+        this.hzPp = hzPp;
+    }
+
+    public String getHdzt() {
+        return hdzt;
+    }
+
+    public void setHdzt(String hdzt) {
+        this.hdzt = hdzt;
+    }
+
+    public String getCdzh() {
+        return cdzh;
+    }
+
+    public void setCdzh(String cdzh) {
+        this.cdzh = cdzh;
+    }
+
+    public String getZjzh() {
+        return zjzh;
+    }
+
+    public void setZjzh(String zjzh) {
+        this.zjzh = zjzh;
+    }
+
+    public String getMtxx() {
+        return mtxx;
+    }
+
+    public void setMtxx(String mtxx) {
+        this.mtxx = mtxx;
+    }
+
+    public String getGx() {
+        return gx;
+    }
+
+    public void setGx(String gx) {
+        this.gx = gx;
+    }
+
+    public String getLldh() {
+        return lldh;
+    }
+
+    public void setLldh(String lldh) {
+        this.lldh = lldh;
+    }
+
+    public String getCcrn() {
+        return ccrn;
+    }
+
+    public void setCcrn(String ccrn) {
+        this.ccrn = ccrn;
+    }
+
+    public String getMjxx() {
+        return mjxx;
+    }
+
+    public void setMjxx(String mjxx) {
+        this.mjxx = mjxx;
+    }
+
+    public Date getTgrq() {
+        return tgrq;
+    }
+
+    public void setTgrq(Date tgrq) {
+        this.tgrq = tgrq;
+    }
+
+    public Date getJhrq() {
+        return jhrq;
+    }
+
+    public void setJhrq(Date jhrq) {
+        this.jhrq = jhrq;
+    }
+
+    public String getClxx() {
+        return clxx;
+    }
+
+    public void setClxx(String clxx) {
+        this.clxx = clxx;
+    }
+
+    public String getXgcp() {
+        return xgcp;
+    }
+
+    public void setXgcp(String xgcp) {
+        this.xgcp = xgcp;
+    }
+
+    public String getJhdd() {
+        return jhdd;
+    }
+
+    public void setJhdd(String jhdd) {
+        this.jhdd = jhdd;
+    }
+
+    public Date getJgwq() {
+        return jgwq;
+    }
+
+    public void setJgwq(Date jgwq) {
+        this.jgwq = jgwq;
+    }
+
+    public String getHgdc() {
+        return hgdc;
+    }
+
+    public void setHgdc(String hgdc) {
+        this.hgdc = hgdc;
+    }
+
+    public Date getGgrq() {
+        return ggrq;
+    }
+
+    public void setGgrq(Date ggrq) {
+        this.ggrq = ggrq;
+    }
+
+    public Date getQgrq() {
+        return qgrq;
+    }
+
+    public void setQgrq(Date qgrq) {
+        this.qgrq = qgrq;
+    }
+
+    public String getXgjbbm() {
+        return xgjbbm;
+    }
+
+    public void setXgjbbm(String xgjbbm) {
+        this.xgjbbm = xgjbbm;
+    }
+
+    public String getXgjb() {
+        return xgjb;
+    }
+
+    public void setXgjb(String xgjb) {
+        this.xgjb = xgjb;
+    }
+
+    public String getSzjbbm() {
+        return szjbbm;
+    }
+
+    public void setSzjbbm(String szjbbm) {
+        this.szjbbm = szjbbm;
+    }
+
+    public String getSzjb() {
+        return szjb;
+    }
+
+    public void setSzjb(String szjb) {
+        this.szjb = szjb;
+    }
+
+    public String getTjhm() {
+        return tjhm;
+    }
+
+    public void setTjhm(String tjhm) {
+        this.tjhm = tjhm;
+    }
+
+    public String getHgtjhm() {
+        return hgtjhm;
+    }
+
+    public void setHgtjhm(String hgtjhm) {
+        this.hgtjhm = hgtjhm;
+    }
+
+    public String getHgcp() {
+        return hgcp;
+    }
+
+    public void setHgcp(String hgcp) {
+        this.hgcp = hgcp;
+    }
+
+    public String getSfcs() {
+        return sfcs;
+    }
+
+    public void setSfcs(String sfcs) {
+        this.sfcs = sfcs;
+    }
+
+    public String getYsbz() {
+        return ysbz;
+    }
+
+    public void setYsbz(String ysbz) {
+        this.ysbz = ysbz;
+    }
+
+    public Date getHgrq() {
+        return hgrq;
+    }
+
+    public void setHgrq(Date hgrq) {
+        this.hgrq = hgrq;
+    }
+
+    public String getHgdcbm() {
+        return hgdcbm;
+    }
+
+    public void setHgdcbm(String hgdcbm) {
+        this.hgdcbm = hgdcbm;
+    }
+
+    public String getSsbm() {
+        return ssbm;
+    }
+
+    public void setSsbm(String ssbm) {
+        this.ssbm = ssbm;
+    }
+
+    public Date getXgccrq() {
+        return xgccrq;
+    }
+
+    public void setXgccrq(Date xgccrq) {
+        this.xgccrq = xgccrq;
+    }
+
+    public String getCcfysqlx() {
+        return ccfysqlx;
+    }
+
+    public void setCcfysqlx(String ccfysqlx) {
+        this.ccfysqlx = ccfysqlx;
+    }
+
+    public String getEp25645() {
+        return ep25645;
+    }
+
+    public void setEp25645(String ep25645) {
+        this.ep25645 = ep25645;
+    }
+
+    public String getSygq() {
+        return sygq;
+    }
+
+    public void setSygq(String sygq) {
+        this.sygq = sygq;
+    }
+
+    public String getSygqjc() {
+        return sygqjc;
+    }
+
+    public void setSygqjc(String sygqjc) {
+        this.sygqjc = sygqjc;
+    }
+
+    public String getSygqbm() {
+        return sygqbm;
+    }
+
+    public void setSygqbm(String sygqbm) {
+        this.sygqbm = sygqbm;
+    }
+
+    public String getSygqpym() {
+        return sygqpym;
+    }
+
+    public void setSygqpym(String sygqpym) {
+        this.sygqpym = sygqpym;
+    }
+
+    public String getGdwz() {
+        return gdwz;
+    }
+
+    public void setGdwz(String gdwz) {
+        this.gdwz = gdwz;
+    }
+
+    public Date getKhzlrq() {
+        return khzlrq;
+    }
+
+    public void setKhzlrq(Date khzlrq) {
+        this.khzlrq = khzlrq;
+    }
+
+    public String getBm() {
+        return bm;
+    }
+
+    public void setBm(String bm) {
+        this.bm = bm;
+    }
+
+    public String getHxzgqrry() {
+        return hxzgqrry;
+    }
+
+    public void setHxzgqrry(String hxzgqrry) {
+        this.hxzgqrry = hxzgqrry;
+    }
+
+    public String getWxyffp() {
+        return wxyffp;
+    }
+
+    public void setWxyffp(String wxyffp) {
+        this.wxyffp = wxyffp;
+    }
+
+    public String getTqhd() {
+        return tqhd;
+    }
+
+    public void setTqhd(String tqhd) {
+        this.tqhd = tqhd;
+    }
+
+    public String getEp26040() {
+        return ep26040;
+    }
+
+    public void setEp26040(String ep26040) {
+        this.ep26040 = ep26040;
+    }
+
+    public String getEp25894() {
+        return ep25894;
+    }
+
+    public void setEp25894(String ep25894) {
+        this.ep25894 = ep25894;
+    }
+
+    public String getLdwc() {
+        return ldwc;
+    }
+
+    public void setLdwc(String ldwc) {
+        this.ldwc = ldwc;
+    }
+
+    public String getSjclbz() {
+        return sjclbz;
+    }
+
+    public void setSjclbz(String sjclbz) {
+        this.sjclbz = sjclbz;
+    }
+
+    public Date getHbJhkbsj() {
+        return hbJhkbsj;
+    }
+
+    public void setHbJhkbsj(Date hbJhkbsj) {
+        this.hbJhkbsj = hbJhkbsj;
+    }
+
+    public Date getHbSjkbsj() {
+        return hbSjkbsj;
+    }
+
+    public void setHbSjkbsj(Date hbSjkbsj) {
+        this.hbSjkbsj = hbSjkbsj;
+    }
+
+    public String getHbMt() {
+        return hbMt;
+    }
+
+    public void setHbMt(String hbMt) {
+        this.hbMt = hbMt;
+    }
+
+    public String getHbCdljc() {
+        return hbCdljc;
+    }
+
+    public void setHbCdljc(String hbCdljc) {
+        this.hbCdljc = hbCdljc;
+    }
+
+    public String getHkly() {
+        return hkly;
+    }
+
+    public void setHkly(String hkly) {
+        this.hkly = hkly;
+    }
+
+    public String getZrpd2() {
+        return zrpd2;
+    }
+
+    public void setZrpd2(String zrpd2) {
+        this.zrpd2 = zrpd2;
+    }
+
+    public String getZrpd3() {
+        return zrpd3;
+    }
+
+    public void setZrpd3(String zrpd3) {
+        this.zrpd3 = zrpd3;
+    }
+
+    public String getZrpd() {
+        return zrpd;
+    }
+
+    public void setZrpd(String zrpd) {
+        this.zrpd = zrpd;
+    }
+
+    public String getJwgysbm() {
+        return jwgysbm;
+    }
+
+    public void setJwgysbm(String jwgysbm) {
+        this.jwgysbm = jwgysbm;
+    }
+
+    public String getJwgysmc() {
+        return jwgysmc;
+    }
+
+    public void setJwgysmc(String jwgysmc) {
+        this.jwgysmc = jwgysmc;
+    }
+
+    public String getJwgysmcYw() {
+        return jwgysmcYw;
+    }
+
+    public void setJwgysmcYw(String jwgysmcYw) {
+        this.jwgysmcYw = jwgysmcYw;
+    }
+
+    public String getJwgysdz() {
+        return jwgysdz;
+    }
+
+    public void setJwgysdz(String jwgysdz) {
+        this.jwgysdz = jwgysdz;
+    }
+
+    public String getSfjnsj() {
+        return sfjnsj;
+    }
+
+    public void setSfjnsj(String sfjnsj) {
+        this.sfjnsj = sfjnsj;
+    }
+
+    public String getHbCm() {
+        return hbCm;
+    }
+
+    public void setHbCm(String hbCm) {
+        this.hbCm = hbCm;
+    }
+
+    public String getHbHc() {
+        return hbHc;
+    }
+
+    public void setHbHc(String hbHc) {
+        this.hbHc = hbHc;
+    }
+
+    public String getSfsz() {
+        return sfsz;
+    }
+
+    public void setSfsz(String sfsz) {
+        this.sfsz = sfsz;
+    }
+
+    public Date getSzsj() {
+        return szsj;
+    }
+
+    public void setSzsj(Date szsj) {
+        this.szsj = szsj;
+    }
+
+    public String getSzry() {
+        return szry;
+    }
+
+    public void setSzry(String szry) {
+        this.szry = szry;
+    }
+
+    public Date getYssdcsj() {
+        return yssdcsj;
+    }
+
+    public void setYssdcsj(Date yssdcsj) {
+        this.yssdcsj = yssdcsj;
+    }
+
+    public String getGlcdyfs() {
+        return glcdyfs;
+    }
+
+    public void setGlcdyfs(String glcdyfs) {
+        this.glcdyfs = glcdyfs;
+    }
+
+    public Integer getDyckBgdZt() {
+        return dyckBgdZt;
+    }
+
+    public void setDyckBgdZt(Integer dyckBgdZt) {
+        this.dyckBgdZt = dyckBgdZt;
+    }
+
+    public String getDyckSeqno() {
+        return dyckSeqno;
+    }
+
+    public void setDyckSeqno(String dyckSeqno) {
+        this.dyckSeqno = dyckSeqno;
+    }
+
+    public String getSfdztd() {
+        return sfdztd;
+    }
+
+    public void setSfdztd(String sfdztd) {
+        this.sfdztd = sfdztd;
+    }
+
+    public Date getSwfxsj() {
+        return swfxsj;
+    }
+
+    public void setSwfxsj(Date swfxsj) {
+        this.swfxsj = swfxsj;
+    }
+
+    public String getSftb() {
+        return sftb;
+    }
+
+    public void setSftb(String sftb) {
+        this.sftb = sftb;
+    }
+
+    public String getDzsqqr() {
+        return dzsqqr;
+    }
+
+    public void setDzsqqr(String dzsqqr) {
+        this.dzsqqr = dzsqqr;
+    }
+
+    public Date getYjtgrq() {
+        return yjtgrq;
+    }
+
+    public void setYjtgrq(Date yjtgrq) {
+        this.yjtgrq = yjtgrq;
+    }
+
+    public String getJyjysljgmc() {
+        return jyjysljgmc;
+    }
+
+    public void setJyjysljgmc(String jyjysljgmc) {
+        this.jyjysljgmc = jyjysljgmc;
+    }
+
+    public String getKajyjyjgmc() {
+        return kajyjyjgmc;
+    }
+
+    public void setKajyjyjgmc(String kajyjyjgmc) {
+        this.kajyjyjgmc = kajyjyjgmc;
+    }
+
+    public String getMddjyjyjgmc() {
+        return mddjyjyjgmc;
+    }
+
+    public void setMddjyjyjgmc(String mddjyjyjgmc) {
+        this.mddjyjyjgmc = mddjyjyjgmc;
+    }
+
+    public String getLzjgmc() {
+        return lzjgmc;
+    }
+
+    public void setLzjgmc(String lzjgmc) {
+        this.lzjgmc = lzjgmc;
+    }
+
+    public String getJckamc() {
+        return jckamc;
+    }
+
+    public void setJckamc(String jckamc) {
+        this.jckamc = jckamc;
+    }
+
+    public String getDzlxmc() {
+        return dzlxmc;
+    }
+
+    public void setDzlxmc(String dzlxmc) {
+        this.dzlxmc = dzlxmc;
+    }
+
+    public String getMyfsmc() {
+        return myfsmc;
+    }
+
+    public void setMyfsmc(String myfsmc) {
+        this.myfsmc = myfsmc;
+    }
+
+    public String getHzdwdqmc() {
+        return hzdwdqmc;
+    }
+
+    public void setHzdwdqmc(String hzdwdqmc) {
+        this.hzdwdqmc = hzdwdqmc;
+    }
+
+    public String getBzzlmc() {
+        return bzzlmc;
+    }
+
+    public void setBzzlmc(String bzzlmc) {
+        this.bzzlmc = bzzlmc;
+    }
+
+    public String getYsgjmc() {
+        return ysgjmc;
+    }
+
+    public void setYsgjmc(String ysgjmc) {
+        this.ysgjmc = ysgjmc;
+    }
+
+    public String getRjmddmc() {
+        return rjmddmc;
+    }
+
+    public void setRjmddmc(String rjmddmc) {
+        this.rjmddmc = rjmddmc;
+    }
+
+    public String getZmfsmc() {
+        return zmfsmc;
+    }
+
+    public void setZmfsmc(String zmfsmc) {
+        this.zmfsmc = zmfsmc;
+    }
+
+    public Date getHbCmZqsj() {
+        return hbCmZqsj;
+    }
+
+    public void setHbCmZqsj(Date hbCmZqsj) {
+        this.hbCmZqsj = hbCmZqsj;
+    }
+
+    public String getSfyjyyhx() {
+        return sfyjyyhx;
+    }
+
+    public void setSfyjyyhx(String sfyjyyhx) {
+        this.sfyjyyhx = sfyjyyhx;
+    }
+
+    public Date getSdjyyhxSj() {
+        return sdjyyhxSj;
+    }
+
+    public void setSdjyyhxSj(Date sdjyyhxSj) {
+        this.sdjyyhxSj = sdjyyhxSj;
+    }
+
+    public String getJyyhx() {
+        return jyyhx;
+    }
+
+    public void setJyyhx(String jyyhx) {
+        this.jyyhx = jyyhx;
+    }
+
+    public String getSfgg() {
+        return sfgg;
+    }
+
+    public void setSfgg(String sfgg) {
+        this.sfgg = sfgg;
+    }
+
+    public String getSfjj() {
+        return sfjj;
+    }
+
+    public void setSfjj(String sfjj) {
+        this.sfjj = sfjj;
+    }
+
+    public String getJjyy() {
+        return jjyy;
+    }
+
+    public void setJjyy(String jjyy) {
+        this.jjyy = jjyy;
+    }
+
+    public String getDyckSfsj() {
+        return dyckSfsj;
+    }
+
+    public void setDyckSfsj(String dyckSfsj) {
+        this.dyckSfsj = dyckSfsj;
+    }
+
+    public Date getDyckSjsj() {
+        return dyckSjsj;
+    }
+
+    public void setDyckSjsj(Date dyckSjsj) {
+        this.dyckSjsj = dyckSjsj;
+    }
+
+    public String getDyckSjry() {
+        return dyckSjry;
+    }
+
+    public void setDyckSjry(String dyckSjry) {
+        this.dyckSjry = dyckSjry;
+    }
+
+    public Integer getHkjs() {
+        return hkjs;
+    }
+
+    public void setHkjs(Integer hkjs) {
+        this.hkjs = hkjs;
+    }
+
+    public Date getJjsj() {
+        return jjsj;
+    }
+
+    public void setJjsj(Date jjsj) {
+        this.jjsj = jjsj;
+    }
+
+    public String getSfcyJy() {
+        return sfcyJy;
+    }
+
+    public void setSfcyJy(String sfcyJy) {
+        this.sfcyJy = sfcyJy;
+    }
+
+    public String getCyckmc() {
+        return cyckmc;
+    }
+
+    public void setCyckmc(String cyckmc) {
+        this.cyckmc = cyckmc;
+    }
+
+    public Date getCyrksj() {
+        return cyrksj;
+    }
+
+    public void setCyrksj(Date cyrksj) {
+        this.cyrksj = cyrksj;
+    }
+
+    public Date getCyhgsj() {
+        return cyhgsj;
+    }
+
+    public void setCyhgsj(Date cyhgsj) {
+        this.cyhgsj = cyhgsj;
+    }
+
+    public Date getQdscsj() {
+        return qdscsj;
+    }
+
+    public void setQdscsj(Date qdscsj) {
+        this.qdscsj = qdscsj;
+    }
+
+    public Date getJyzSzsj() {
+        return jyzSzsj;
+    }
+
+    public void setJyzSzsj(Date jyzSzsj) {
+        this.jyzSzsj = jyzSzsj;
+    }
+
+    public String getCyckbm() {
+        return cyckbm;
+    }
+
+    public void setCyckbm(String cyckbm) {
+        this.cyckbm = cyckbm;
+    }
+
+    public Date getJylzsj() {
+        return jylzsj;
+    }
+
+    public void setJylzsj(Date jylzsj) {
+        this.jylzsj = jylzsj;
+    }
+
+    public Date getJyzjcsj() {
+        return jyzjcsj;
+    }
+
+    public void setJyzjcsj(Date jyzjcsj) {
+        this.jyzjcsj = jyzjcsj;
+    }
+
+    public String getJyzBz() {
+        return jyzBz;
+    }
+
+    public void setJyzBz(String jyzBz) {
+        this.jyzBz = jyzBz;
+    }
+
+    public String getHzKhmc() {
+        return hzKhmc;
+    }
+
+    public void setHzKhmc(String hzKhmc) {
+        this.hzKhmc = hzKhmc;
+    }
+
+    public String getDyckScry() {
+        return dyckScry;
+    }
+
+    public void setDyckScry(String dyckScry) {
+        this.dyckScry = dyckScry;
+    }
+
+    public String getRwxz() {
+        return rwxz;
+    }
+
+    public void setRwxz(String rwxz) {
+        this.rwxz = rwxz;
+    }
+
+    public Double getYsje() {
+        return ysje;
+    }
+
+    public void setYsje(Double ysje) {
+        this.ysje = ysje;
+    }
+
+    public BigDecimal getLyyf() {
+        return lyyf;
+    }
+
+    public void setLyyf(BigDecimal lyyf) {
+        this.lyyf = lyyf;
+    }
+
+    public String getCjfsmdf() {
+        return cjfsmdf;
+    }
+
+    public void setCjfsmdf(String cjfsmdf) {
+        this.cjfsmdf = cjfsmdf;
+    }
+
+    public String getHgjdjd() {
+        return hgjdjd;
+    }
+
+    public void setHgjdjd(String hgjdjd) {
+        this.hgjdjd = hgjdjd;
+    }
+
+    public Date getHgjdjdsj() {
+        return hgjdjdsj;
+    }
+
+    public void setHgjdjdsj(Date hgjdjdsj) {
+        this.hgjdjdsj = hgjdjdsj;
+    }
+
+    public String getSjzqYsgjmc() {
+        return sjzqYsgjmc;
+    }
+
+    public void setSjzqYsgjmc(String sjzqYsgjmc) {
+        this.sjzqYsgjmc = sjzqYsgjmc;
+    }
+
+    public String getHgcyfs() {
+        return hgcyfs;
+    }
+
+    public void setHgcyfs(String hgcyfs) {
+        this.hgcyfs = hgcyfs;
+    }
+
+    public Date getHgjhcyrq() {
+        return hgjhcyrq;
+    }
+
+    public void setHgjhcyrq(Date hgjhcyrq) {
+        this.hgjhcyrq = hgjhcyrq;
+    }
+
+    public Double getFhed() {
+        return fhed;
+    }
+
+    public void setFhed(Double fhed) {
+        this.fhed = fhed;
+    }
+
+    public String getZjyw() {
+        return zjyw;
+    }
+
+    public void setZjyw(String zjyw) {
+        this.zjyw = zjyw;
+    }
+
+    public String getTs() {
+        return ts;
+    }
+
+    public void setTs(String ts) {
+        this.ts = ts;
+    }
+
+    public String getTsUser() {
+        return tsUser;
+    }
+
+    public void setTsUser(String tsUser) {
+        this.tsUser = tsUser;
+    }
+
+    public String getGlcdwc() {
+        return glcdwc;
+    }
+
+    public void setGlcdwc(String glcdwc) {
+        this.glcdwc = glcdwc;
+    }
+
+    public Date getGlcdwcsj() {
+        return glcdwcsj;
+    }
+
+    public void setGlcdwcsj(Date glcdwcsj) {
+        this.glcdwcsj = glcdwcsj;
+    }
+
+    public Date getSfyyfsj() {
+        return sfyyfsj;
+    }
+
+    public void setSfyyfsj(Date sfyyfsj) {
+        this.sfyyfsj = sfyyfsj;
+    }
+
+    public String getCydlx() {
+        return cydlx;
+    }
+
+    public void setCydlx(String cydlx) {
+        this.cydlx = cydlx;
+    }
+
+    public String getSffxs() {
+        return sffxs;
+    }
+
+    public void setSffxs(String sffxs) {
+        this.sffxs = sffxs;
+    }
+
+    public BigDecimal getZnj() {
+        return znj;
+    }
+
+    public void setZnj(BigDecimal znj) {
+        this.znj = znj;
+    }
+
+    public String getBgy() {
+        return bgy;
+    }
+
+    public void setBgy(String bgy) {
+        this.bgy = bgy;
+    }
+
+    public String getSfzhg() {
+        return sfzhg;
+    }
+
+    public void setSfzhg(String sfzhg) {
+        this.sfzhg = sfzhg;
+    }
+
+    public String getWlbz() {
+        return wlbz;
+    }
+
+    public void setWlbz(String wlbz) {
+        this.wlbz = wlbz;
+    }
+
+    public String getDhtzs() {
+        return dhtzs;
+    }
+
+    public void setDhtzs(String dhtzs) {
+        this.dhtzs = dhtzs;
+    }
+
+    public String getAnYy() {
+        return anYy;
+    }
+
+    public void setAnYy(String anYy) {
+        this.anYy = anYy;
+    }
+
+    public String getmJxxsfywj() {
+        return mJxxsfywj;
+    }
+
+    public void setmJxxsfywj(String mJxxsfywj) {
+        this.mJxxsfywj = mJxxsfywj;
+    }
+
+    public String getTsyy() {
+        return tsyy;
+    }
+
+    public void setTsyy(String tsyy) {
+        this.tsyy = tsyy;
+    }
+
+    public String getTsjd() {
+        return tsjd;
+    }
+
+    public void setTsjd(String tsjd) {
+        this.tsjd = tsjd;
+    }
+
+    public String getSblx() {
+        return sblx;
+    }
+
+    public void setSblx(String sblx) {
+        this.sblx = sblx;
+    }
+
+    public Date getEcwzsbsj() {
+        return ecwzsbsj;
+    }
+
+    public void setEcwzsbsj(Date ecwzsbsj) {
+        this.ecwzsbsj = ecwzsbsj;
+    }
+
+    public Date getBgdfxsj() {
+        return bgdfxsj;
+    }
+
+    public void setBgdfxsj(Date bgdfxsj) {
+        this.bgdfxsj = bgdfxsj;
+    }
+
+    public String getSbfsry() {
+        return sbfsry;
+    }
+
+    public void setSbfsry(String sbfsry) {
+        this.sbfsry = sbfsry;
+    }
+
+    public String getYjhdbz() {
+        return yjhdbz;
+    }
+
+    public void setYjhdbz(String yjhdbz) {
+        this.yjhdbz = yjhdbz;
+    }
+
+    public String getYjtgrqImportUser() {
+        return yjtgrqImportUser;
+    }
+
+    public void setYjtgrqImportUser(String yjtgrqImportUser) {
+        this.yjtgrqImportUser = yjtgrqImportUser;
+    }
+
+    public String getMcqRqImportUser() {
+        return mcqRqImportUser;
+    }
+
+    public void setMcqRqImportUser(String mcqRqImportUser) {
+        this.mcqRqImportUser = mcqRqImportUser;
+    }
+
+    public String getKddhHddz() {
+        return kddhHddz;
+    }
+
+    public void setKddhHddz(String kddhHddz) {
+        this.kddhHddz = kddhHddz;
+    }
+
+    public String getYwryWl() {
+        return ywryWl;
+    }
+
+    public void setYwryWl(String ywryWl) {
+        this.ywryWl = ywryWl;
+    }
+
+    public String getCwbz() {
+        return cwbz;
+    }
+
+    public void setCwbz(String cwbz) {
+        this.cwbz = cwbz;
+    }
+
+    public String getBeizhuZkj() {
+        return beizhuZkj;
+    }
+
+    public void setBeizhuZkj(String beizhuZkj) {
+        this.beizhuZkj = beizhuZkj;
+    }
+
+    public Double getAnJeGb() {
+        return anJeGb;
+    }
+
+    public void setAnJeGb(Double anJeGb) {
+        this.anJeGb = anJeGb;
+    }
+
+    public Double getAnJeMj() {
+        return anJeMj;
+    }
+
+    public void setAnJeMj(Double anJeMj) {
+        this.anJeMj = anJeMj;
+    }
+
+    public Double getMjhl() {
+        return mjhl;
+    }
+
+    public void setMjhl(Double mjhl) {
+        this.mjhl = mjhl;
+    }
+
+    public Date getWjfxsj() {
+        return wjfxsj;
+    }
+
+    public void setWjfxsj(Date wjfxsj) {
+        this.wjfxsj = wjfxsj;
+    }
+
+    public String getCyks() {
+        return cyks;
+    }
+
+    public void setCyks(String cyks) {
+        this.cyks = cyks;
+    }
+
+    public String getFxycsjyy() {
+        return fxycsjyy;
+    }
+
+    public void setFxycsjyy(String fxycsjyy) {
+        this.fxycsjyy = fxycsjyy;
+    }
+
+    public Date getSjktgsj() {
+        return sjktgsj;
+    }
+
+    public void setSjktgsj(Date sjktgsj) {
+        this.sjktgsj = sjktgsj;
+    }
+
+    public String getYjkgsjtzgx() {
+        return yjkgsjtzgx;
+    }
+
+    public void setYjkgsjtzgx(String yjkgsjtzgx) {
+        this.yjkgsjtzgx = yjkgsjtzgx;
+    }
+
+    public String getFbsh() {
+        return fbsh;
+    }
+
+    public void setFbsh(String fbsh) {
+        this.fbsh = fbsh;
+    }
+
+    public Date getFbshsj() {
+        return fbshsj;
+    }
+
+    public void setFbshsj(Date fbshsj) {
+        this.fbshsj = fbshsj;
+    }
+
+    public String getSfhdUser() {
+        return sfhdUser;
+    }
+
+    public void setSfhdUser(String sfhdUser) {
+        this.sfhdUser = sfhdUser;
+    }
+
+    public String getmJxxsfywjUser() {
+        return mJxxsfywjUser;
+    }
+
+    public void setmJxxsfywjUser(String mJxxsfywjUser) {
+        this.mJxxsfywjUser = mJxxsfywjUser;
+    }
+
+    public String getAnJeGbUser() {
+        return anJeGbUser;
+    }
+
+    public void setAnJeGbUser(String anJeGbUser) {
+        this.anJeGbUser = anJeGbUser;
+    }
+
+    public String getAnJeMjUser() {
+        return anJeMjUser;
+    }
+
+    public void setAnJeMjUser(String anJeMjUser) {
+        this.anJeMjUser = anJeMjUser;
+    }
+
+    public String getMjhlUser() {
+        return mjhlUser;
+    }
+
+    public void setMjhlUser(String mjhlUser) {
+        this.mjhlUser = mjhlUser;
+    }
+
+    public String getLbsbbz() {
+        return lbsbbz;
+    }
+
+    public void setLbsbbz(String lbsbbz) {
+        this.lbsbbz = lbsbbz;
+    }
+
+    public String getZjbz() {
+        return zjbz;
+    }
+
+    public void setZjbz(String zjbz) {
+        this.zjbz = zjbz;
+    }
+
+    public String getLldhUser() {
+        return lldhUser;
+    }
+
+    public void setLldhUser(String lldhUser) {
+        this.lldhUser = lldhUser;
+    }
+
+    public Double getFqxs() {
+        return fqxs;
+    }
+
+    public void setFqxs(Double fqxs) {
+        this.fqxs = fqxs;
+    }
+
+    public Double getFqxsBj() {
+        return fqxsBj;
+    }
+
+    public void setFqxsBj(Double fqxsBj) {
+        this.fqxsBj = fqxsBj;
+    }
+
+    public String getZrpdBeizhu() {
+        return zrpdBeizhu;
+    }
+
+    public void setZrpdBeizhu(String zrpdBeizhu) {
+        this.zrpdBeizhu = zrpdBeizhu;
+    }
+
+    public String getZqzqcwxx() {
+        return zqzqcwxx;
+    }
+
+    public void setZqzqcwxx(String zqzqcwxx) {
+        this.zqzqcwxx = zqzqcwxx;
+    }
+
+    public String getCjyzxt() {
+        return cjyzxt;
+    }
+
+    public void setCjyzxt(String cjyzxt) {
+        this.cjyzxt = cjyzxt;
+    }
+
+    public String getCjyzrg() {
+        return cjyzrg;
+    }
+
+    public void setCjyzrg(String cjyzrg) {
+        this.cjyzrg = cjyzrg;
+    }
+
+    public Date getGxtssj() {
+        return gxtssj;
+    }
+
+    public void setGxtssj(Date gxtssj) {
+        this.gxtssj = gxtssj;
+    }
+
+    public String getXgdzqk() {
+        return xgdzqk;
+    }
+
+    public void setXgdzqk(String xgdzqk) {
+        this.xgdzqk = xgdzqk;
+    }
+
+    public String getXghgsbJ() {
+        return xghgsbJ;
+    }
+
+    public void setXghgsbJ(String xghgsbJ) {
+        this.xghgsbJ = xghgsbJ;
+    }
+
+    public String getXghgsbC() {
+        return xghgsbC;
+    }
+
+    public void setXghgsbC(String xghgsbC) {
+        this.xghgsbC = xghgsbC;
+    }
+
+    public String getZjbjh() {
+        return zjbjh;
+    }
+
+    public void setZjbjh(String zjbjh) {
+        this.zjbjh = zjbjh;
+    }
+
+    public String getZzqrsh() {
+        return zzqrsh;
+    }
+
+    public void setZzqrsh(String zzqrsh) {
+        this.zzqrsh = zzqrsh;
+    }
+
+    public Date getGzjysbsj() {
+        return gzjysbsj;
+    }
+
+    public void setGzjysbsj(Date gzjysbsj) {
+        this.gzjysbsj = gzjysbsj;
+    }
+
+    public Date getJqsbwcsj() {
+        return jqsbwcsj;
+    }
+
+    public void setJqsbwcsj(Date jqsbwcsj) {
+        this.jqsbwcsj = jqsbwcsj;
+    }
+
+    public String getFbhx() {
+        return fbhx;
+    }
+
+    public void setFbhx(String fbhx) {
+        this.fbhx = fbhx;
+    }
+
+    public String getBcsfdj() {
+        return bcsfdj;
+    }
+
+    public void setBcsfdj(String bcsfdj) {
+        this.bcsfdj = bcsfdj;
+    }
+
+    public String getCszt() {
+        return cszt;
+    }
+
+    public void setCszt(String cszt) {
+        this.cszt = cszt;
+    }
+
+    public String getJckfs() {
+        return jckfs;
+    }
+
+    public void setJckfs(String jckfs) {
+        this.jckfs = jckfs;
+    }
+
+    public String getLbsb() {
+        return lbsb;
+    }
+
+    public void setLbsb(String lbsb) {
+        this.lbsb = lbsb;
+    }
+
+    public String getKhhzzs() {
+        return khhzzs;
+    }
+
+    public void setKhhzzs(String khhzzs) {
+        this.khhzzs = khhzzs;
+    }
+
+    public String getSfgdzf() {
+        return sfgdzf;
+    }
+
+    public void setSfgdzf(String sfgdzf) {
+        this.sfgdzf = sfgdzf;
+    }
+
+    public BigDecimal getGdzf() {
+        return gdzf;
+    }
+
+    public void setGdzf(BigDecimal gdzf) {
+        this.gdzf = gdzf;
+    }
+
+    public String getHdtdlx() {
+        return hdtdlx;
+    }
+
+    public void setHdtdlx(String hdtdlx) {
+        this.hdtdlx = hdtdlx;
+    }
+
+    public String getHzSpmcsfss() {
+        return hzSpmcsfss;
+    }
+
+    public void setHzSpmcsfss(String hzSpmcsfss) {
+        this.hzSpmcsfss = hzSpmcsfss;
+    }
+
+    public String getZjesfss() {
+        return zjesfss;
+    }
+
+    public void setZjesfss(String zjesfss) {
+        this.zjesfss = zjesfss;
+    }
+
+    public String getKpjesfss() {
+        return kpjesfss;
+    }
+
+    public void setKpjesfss(String kpjesfss) {
+        this.kpjesfss = kpjesfss;
+    }
+
+    public String getEjycddm() {
+        return ejycddm;
+    }
+
+    public void setEjycddm(String ejycddm) {
+        this.ejycddm = ejycddm;
+    }
+
+    public String getSzflag() {
+        return szflag;
+    }
+
+    public void setSzflag(String szflag) {
+        this.szflag = szflag;
+    }
+
+    public String getZbsd() {
+        return zbsd;
+    }
+
+    public void setZbsd(String zbsd) {
+        this.zbsd = zbsd;
+    }
+
+    public String getFbsd() {
+        return fbsd;
+    }
+
+    public void setFbsd(String fbsd) {
+        this.fbsd = fbsd;
+    }
+
+    public String getZscssd() {
+        return zscssd;
+    }
+
+    public void setZscssd(String zscssd) {
+        this.zscssd = zscssd;
+    }
+
+    public String getBah() {
+        return bah;
+    }
+
+    public void setBah(String bah) {
+        this.bah = bah;
+    }
+
+    public Date getJkrq() {
+        return jkrq;
+    }
+
+    public void setJkrq(Date jkrq) {
+        this.jkrq = jkrq;
+    }
+
+    public String getXkzh() {
+        return xkzh;
+    }
+
+    public void setXkzh(String xkzh) {
+        this.xkzh = xkzh;
+    }
+
+    public String getTsgxqr() {
+        return tsgxqr;
+    }
+
+    public void setTsgxqr(String tsgxqr) {
+        this.tsgxqr = tsgxqr;
+    }
+
+    public String getJgyxqr() {
+        return jgyxqr;
+    }
+
+    public void setJgyxqr(String jgyxqr) {
+        this.jgyxqr = jgyxqr;
+    }
+
+    public String getTxqsyfzfqr() {
+        return txqsyfzfqr;
+    }
+
+    public void setTxqsyfzfqr(String txqsyfzfqr) {
+        this.txqsyfzfqr = txqsyfzfqr;
+    }
+
+    public String getSdwzh() {
+        return sdwzh;
+    }
+
+    public void setSdwzh(String sdwzh) {
+        this.sdwzh = sdwzh;
+    }
+
+    public String getZzbs() {
+        return zzbs;
+    }
+
+    public void setZzbs(String zzbs) {
+        this.zzbs = zzbs;
+    }
+
+    public String getDbyf() {
+        return dbyf;
+    }
+
+    public void setDbyf(String dbyf) {
+        this.dbyf = dbyf;
+    }
+
+    public String getQyzzcn() {
+        return qyzzcn;
+    }
+
+    public void setQyzzcn(String qyzzcn) {
+        this.qyzzcn = qyzzcn;
+    }
+
+    public String getYxys() {
+        return yxys;
+    }
+
+    public void setYxys(String yxys) {
+        this.yxys = yxys;
+    }
+
+    public String getHgfxfsUser() {
+        return hgfxfsUser;
+    }
+
+    public void setHgfxfsUser(String hgfxfsUser) {
+        this.hgfxfsUser = hgfxfsUser;
+    }
+
+    public Date getXghgsbJDate() {
+        return xghgsbJDate;
+    }
+
+    public void setXghgsbJDate(Date xghgsbJDate) {
+        this.xghgsbJDate = xghgsbJDate;
+    }
+
+    public Date getXghgsbCDate() {
+        return xghgsbCDate;
+    }
+
+    public void setXghgsbCDate(Date xghgsbCDate) {
+        this.xghgsbCDate = xghgsbCDate;
+    }
+
+    public String getJgycxx() {
+        return jgycxx;
+    }
+
+    public void setJgycxx(String jgycxx) {
+        this.jgycxx = jgycxx;
+    }
+
+    public String getDyckState() {
+        return dyckState;
+    }
+
+    public void setDyckState(String dyckState) {
+        this.dyckState = dyckState;
+    }
+
+    public String getGrabHbhc() {
+        return grabHbhc;
+    }
+
+    public void setGrabHbhc(String grabHbhc) {
+        this.grabHbhc = grabHbhc;
+    }
+
+    public String getKhbmDlxyh() {
+        return khbmDlxyh;
+    }
+
+    public void setKhbmDlxyh(String khbmDlxyh) {
+        this.khbmDlxyh = khbmDlxyh;
+    }
+
+    public Date getYjcysjLrsj() {
+        return yjcysjLrsj;
+    }
+
+    public void setYjcysjLrsj(Date yjcysjLrsj) {
+        this.yjcysjLrsj = yjcysjLrsj;
+    }
+
+    public String getSfxh() {
+        return sfxh;
+    }
+
+    public void setSfxh(String sfxh) {
+        this.sfxh = sfxh;
+    }
+
+    public String getJczbzlbz() {
+        return jczbzlbz;
+    }
+
+    public void setJczbzlbz(String jczbzlbz) {
+        this.jczbzlbz = jczbzlbz;
+    }
+
+    public Date getJczbzlsj() {
+        return jczbzlsj;
+    }
+
+    public void setJczbzlsj(Date jczbzlsj) {
+        this.jczbzlsj = jczbzlsj;
+    }
+
+    public String getXcsdzbzlbz() {
+        return xcsdzbzlbz;
+    }
+
+    public void setXcsdzbzlbz(String xcsdzbzlbz) {
+        this.xcsdzbzlbz = xcsdzbzlbz;
+    }
+
+    public Date getXcsdzbzlsj() {
+        return xcsdzbzlsj;
+    }
+
+    public void setXcsdzbzlsj(Date xcsdzbzlsj) {
+        this.xcsdzbzlsj = xcsdzbzlsj;
+    }
+
+    public String getXcsdzbzlry() {
+        return xcsdzbzlry;
+    }
+
+    public void setXcsdzbzlry(String xcsdzbzlry) {
+        this.xcsdzbzlry = xcsdzbzlry;
+    }
+
+    public Date getZbsqsj() {
+        return zbsqsj;
+    }
+
+    public void setZbsqsj(Date zbsqsj) {
+        this.zbsqsj = zbsqsj;
+    }
+
+    public Date getFbsqsj() {
+        return fbsqsj;
+    }
+
+    public void setFbsqsj(Date fbsqsj) {
+        this.fbsqsj = fbsqsj;
+    }
+
+    public Date getCssqsj() {
+        return cssqsj;
+    }
+
+    public void setCssqsj(Date cssqsj) {
+        this.cssqsj = cssqsj;
+    }
+
+    public Date getGrabHbhcDate() {
+        return grabHbhcDate;
+    }
+
+    public void setGrabHbhcDate(Date grabHbhcDate) {
+        this.grabHbhcDate = grabHbhcDate;
+    }
+
+    public String getSfxpt() {
+        return sfxpt;
+    }
+
+    public void setSfxpt(String sfxpt) {
+        this.sfxpt = sfxpt;
+    }
+
+    public String getGqzt() {
+        return gqzt;
+    }
+
+    public void setGqzt(String gqzt) {
+        this.gqzt = gqzt;
+    }
+
+    public Date getJgsj() {
+        return jgsj;
+    }
+
+    public void setJgsj(Date jgsj) {
+        this.jgsj = jgsj;
+    }
+
+    public String getSdtzfp() {
+        return sdtzfp;
+    }
+
+    public void setSdtzfp(String sdtzfp) {
+        this.sdtzfp = sdtzfp;
+    }
+
+    public String getGzjysbsjLrry() {
+        return gzjysbsjLrry;
+    }
+
+    public void setGzjysbsjLrry(String gzjysbsjLrry) {
+        this.gzjysbsjLrry = gzjysbsjLrry;
+    }
+
+    public String getJqsbwcsjLrry() {
+        return jqsbwcsjLrry;
+    }
+
+    public void setJqsbwcsjLrry(String jqsbwcsjLrry) {
+        this.jqsbwcsjLrry = jqsbwcsjLrry;
+    }
+
+    public Date getSddzBgsj() {
+        return sddzBgsj;
+    }
+
+    public void setSddzBgsj(Date sddzBgsj) {
+        this.sddzBgsj = sddzBgsj;
+    }
+
+    public Date getSddzCzsj() {
+        return sddzCzsj;
+    }
+
+    public void setSddzCzsj(Date sddzCzsj) {
+        this.sddzCzsj = sddzCzsj;
+    }
+
+    public Date getLrwcCzsj() {
+        return lrwcCzsj;
+    }
+
+    public void setLrwcCzsj(Date lrwcCzsj) {
+        this.lrwcCzsj = lrwcCzsj;
+    }
+
+    public Date getSddzSdsj() {
+        return sddzSdsj;
+    }
+
+    public void setSddzSdsj(Date sddzSdsj) {
+        this.sddzSdsj = sddzSdsj;
+    }
+
+    public Date getShwcSdsj() {
+        return shwcSdsj;
+    }
+
+    public void setShwcSdsj(Date shwcSdsj) {
+        this.shwcSdsj = shwcSdsj;
+    }
+
+    public Date getSdsdBgsj() {
+        return sdsdBgsj;
+    }
+
+    public void setSdsdBgsj(Date sdsdBgsj) {
+        this.sdsdBgsj = sdsdBgsj;
+    }
+
+    public Date getSddzHxsj() {
+        return sddzHxsj;
+    }
+
+    public void setSddzHxsj(Date sddzHxsj) {
+        this.sddzHxsj = sddzHxsj;
+    }
+
+    public Date getWchxHxsj() {
+        return wchxHxsj;
+    }
+
+    public void setWchxHxsj(Date wchxHxsj) {
+        this.wchxHxsj = wchxHxsj;
+    }
+
+    public Date getBgdscsj() {
+        return bgdscsj;
+    }
+
+    public void setBgdscsj(Date bgdscsj) {
+        this.bgdscsj = bgdscsj;
+    }
+
+    public Date getXcsdLrsj() {
+        return xcsdLrsj;
+    }
+
+    public void setXcsdLrsj(Date xcsdLrsj) {
+        this.xcsdLrsj = xcsdLrsj;
+    }
+
+    public String getXcsd() {
+        return xcsd;
+    }
+
+    public void setXcsd(String xcsd) {
+        this.xcsd = xcsd;
+    }
+
+    public Date getSfggLlsj() {
+        return sfggLlsj;
+    }
+
+    public void setSfggLlsj(Date sfggLlsj) {
+        this.sfggLlsj = sfggLlsj;
+    }
+
+    public Date getKpcysj() {
+        return kpcysj;
+    }
+
+    public void setKpcysj(Date kpcysj) {
+        this.kpcysj = kpcysj;
+    }
+
+    public String getSjkgsjtzgx() {
+        return sjkgsjtzgx;
+    }
+
+    public void setSjkgsjtzgx(String sjkgsjtzgx) {
+        this.sjkgsjtzgx = sjkgsjtzgx;
+    }
+
+    public String getSfjydjc() {
+        return sfjydjc;
+    }
+
+    public void setSfjydjc(String sfjydjc) {
+        this.sfjydjc = sfjydjc;
+    }
+
+    public Date getSfjydjcsj() {
+        return sfjydjcsj;
+    }
+
+    public void setSfjydjcsj(Date sfjydjcsj) {
+        this.sfjydjcsj = sfjydjcsj;
+    }
+
+    public Date getGxksbsj() {
+        return gxksbsj;
+    }
+
+    public void setGxksbsj(Date gxksbsj) {
+        this.gxksbsj = gxksbsj;
+    }
+
+    public String getCyzt() {
+        return cyzt;
+    }
+
+    public void setCyzt(String cyzt) {
+        this.cyzt = cyzt;
+    }
+
+    public String getXcsjHz() {
+        return xcsjHz;
+    }
+
+    public void setXcsjHz(String xcsjHz) {
+        this.xcsjHz = xcsjHz;
+    }
+
+    public String getXgxcsjHz() {
+        return xgxcsjHz;
+    }
+
+    public void setXgxcsjHz(String xgxcsjHz) {
+        this.xgxcsjHz = xgxcsjHz;
+    }
+
+    public String getZdxcsjHz() {
+        return zdxcsjHz;
+    }
+
+    public void setZdxcsjHz(String zdxcsjHz) {
+        this.zdxcsjHz = zdxcsjHz;
+    }
+
+    public String getWjljHz() {
+        return wjljHz;
+    }
+
+    public void setWjljHz(String wjljHz) {
+        this.wjljHz = wjljHz;
+    }
+
+    public String getLldhHz() {
+        return lldhHz;
+    }
+
+    public void setLldhHz(String lldhHz) {
+        this.lldhHz = lldhHz;
+    }
+
+    public String getSfjydsd() {
+        return sfjydsd;
+    }
+
+    public void setSfjydsd(String sfjydsd) {
+        this.sfjydsd = sfjydsd;
+    }
+
+    public Date getSfjydsdsj() {
+        return sfjydsdsj;
+    }
+
+    public void setSfjydsdsj(Date sfjydsdsj) {
+        this.sfjydsdsj = sfjydsdsj;
+    }
+
+    public String getYglx() {
+        return yglx;
+    }
+
+    public void setYglx(String yglx) {
+        this.yglx = yglx;
+    }
+
+    public String getSfcyJyz() {
+        return sfcyJyz;
+    }
+
+    public void setSfcyJyz(String sfcyJyz) {
+        this.sfcyJyz = sfcyJyz;
+    }
+
+    public String getSfxzJyz() {
+        return sfxzJyz;
+    }
+
+    public void setSfxzJyz(String sfxzJyz) {
+        this.sfxzJyz = sfxzJyz;
+    }
+
+    public String getSfjdJyz() {
+        return sfjdJyz;
+    }
+
+    public void setSfjdJyz(String sfjdJyz) {
+        this.sfjdJyz = sfjdJyz;
+    }
+
+    public Date getSfjdsjJyz() {
+        return sfjdsjJyz;
+    }
+
+    public void setSfjdsjJyz(Date sfjdsjJyz) {
+        this.sfjdsjJyz = sfjdsjJyz;
+    }
+
+    public String getSfnzJyz() {
+        return sfnzJyz;
+    }
+
+    public void setSfnzJyz(String sfnzJyz) {
+        this.sfnzJyz = sfnzJyz;
+    }
+
+    public String getXhgqZq() {
+        return xhgqZq;
+    }
+
+    public void setXhgqZq(String xhgqZq) {
+        this.xhgqZq = xhgqZq;
+    }
+
+    public String getXhgqbmZq() {
+        return xhgqbmZq;
+    }
+
+    public void setXhgqbmZq(String xhgqbmZq) {
+        this.xhgqbmZq = xhgqbmZq;
+    }
+
+    public String getXhgqpymZq() {
+        return xhgqpymZq;
+    }
+
+    public void setXhgqpymZq(String xhgqpymZq) {
+        this.xhgqpymZq = xhgqpymZq;
+    }
+
+    public String getXhgqjcZq() {
+        return xhgqjcZq;
+    }
+
+    public void setXhgqjcZq(String xhgqjcZq) {
+        this.xhgqjcZq = xhgqjcZq;
+    }
+
+    public String getSfcyHzJzxh() {
+        return sfcyHzJzxh;
+    }
+
+    public void setSfcyHzJzxh(String sfcyHzJzxh) {
+        this.sfcyHzJzxh = sfcyHzJzxh;
+    }
+
+    public String getJgycxq() {
+        return jgycxq;
+    }
+
+    public void setJgycxq(String jgycxq) {
+        this.jgycxq = jgycxq;
+    }
+
+    public String getHzBzcdm() {
+        return hzBzcdm;
+    }
+
+    public void setHzBzcdm(String hzBzcdm) {
+        this.hzBzcdm = hzBzcdm;
+    }
+
+    public String getHzGydm() {
+        return hzGydm;
+    }
+
+    public void setHzGydm(String hzGydm) {
+        this.hzGydm = hzGydm;
+    }
+
+    public String getSfhx() {
+        return sfhx;
+    }
+
+    public void setSfhx(String sfhx) {
+        this.sfhx = sfhx;
+    }
+
+    public String getYljtz() {
+        return yljtz;
+    }
+
+    public void setYljtz(String yljtz) {
+        this.yljtz = yljtz;
+    }
+
+    public String getBqzpsfsd() {
+        return bqzpsfsd;
+    }
+
+    public void setBqzpsfsd(String bqzpsfsd) {
+        this.bqzpsfsd = bqzpsfsd;
+    }
+
+    public String getLclsyjd() {
+        return lclsyjd;
+    }
+
+    public void setLclsyjd(String lclsyjd) {
+        this.lclsyjd = lclsyjd;
+    }
+
+    public String getHzSfscfp() {
+        return hzSfscfp;
+    }
+
+    public void setHzSfscfp(String hzSfscfp) {
+        this.hzSfscfp = hzSfscfp;
+    }
+
+    public Date getTgyxq() {
+        return tgyxq;
+    }
+
+    public void setTgyxq(Date tgyxq) {
+        this.tgyxq = tgyxq;
+    }
+
+    public String getCqbz() {
+        return cqbz;
+    }
+
+    public void setCqbz(String cqbz) {
+        this.cqbz = cqbz;
+    }
+
+    public String getBzcmc() {
+        return bzcmc;
+    }
+
+    public void setBzcmc(String bzcmc) {
+        this.bzcmc = bzcmc;
+    }
+
+    public String getGymc() {
+        return gymc;
+    }
+
+    public void setGymc(String gymc) {
+        this.gymc = gymc;
+    }
+
+    public String getLkmc() {
+        return lkmc;
+    }
+
+    public void setLkmc(String lkmc) {
+        this.lkmc = lkmc;
+    }
+
+    public Date getSjhwfxsj() {
+        return sjhwfxsj;
+    }
+
+    public void setSjhwfxsj(Date sjhwfxsj) {
+        this.sjhwfxsj = sjhwfxsj;
+    }
+
+    public String getHdwlFh() {
+        return hdwlFh;
+    }
+
+    public void setHdwlFh(String hdwlFh) {
+        this.hdwlFh = hdwlFh;
+    }
+
+    public String getHdwlZg() {
+        return hdwlZg;
+    }
+
+    public void setHdwlZg(String hdwlZg) {
+        this.hdwlZg = hdwlZg;
+    }
+
+    public String getHdwlXg() {
+        return hdwlXg;
+    }
+
+    public void setHdwlXg(String hdwlXg) {
+        this.hdwlXg = hdwlXg;
+    }
+
+    public String getHdwlJhd() {
+        return hdwlJhd;
+    }
+
+    public void setHdwlJhd(String hdwlJhd) {
+        this.hdwlJhd = hdwlJhd;
+    }
+
+    public BigDecimal getHdwlJzxpz() {
+        return hdwlJzxpz;
+    }
+
+    public void setHdwlJzxpz(BigDecimal hdwlJzxpz) {
+        this.hdwlJzxpz = hdwlJzxpz;
+    }
+
+    public String getYdbl() {
+        return ydbl;
+    }
+
+    public void setYdbl(String ydbl) {
+        this.ydbl = ydbl;
+    }
+
+    public String getAnyfk() {
+        return anyfk;
+    }
+
+    public void setAnyfk(String anyfk) {
+        this.anyfk = anyfk;
+    }
+
+    public String getTdsfdd() {
+        return tdsfdd;
+    }
+
+    public void setTdsfdd(String tdsfdd) {
+        this.tdsfdd = tdsfdd;
+    }
+
+    public String getFsdz() {
+        return fsdz;
+    }
+
+    public void setFsdz(String fsdz) {
+        this.fsdz = fsdz;
+    }
+
+    public String getPpmc() {
+        return ppmc;
+    }
+
+    public void setPpmc(String ppmc) {
+        this.ppmc = ppmc;
+    }
+
+    public String getSfhyxqd() {
+        return sfhyxqd;
+    }
+
+    public void setSfhyxqd(String sfhyxqd) {
+        this.sfhyxqd = sfhyxqd;
+    }
+
+    public Date getHyxqdtgsj() {
+        return hyxqdtgsj;
+    }
+
+    public void setHyxqdtgsj(Date hyxqdtgsj) {
+        this.hyxqdtgsj = hyxqdtgsj;
+    }
+
+    public String getHyxqdqr() {
+        return hyxqdqr;
+    }
+
+    public void setHyxqdqr(String hyxqdqr) {
+        this.hyxqdqr = hyxqdqr;
+    }
+
+    public Date getHyxqdqrsj() {
+        return hyxqdqrsj;
+    }
+
+    public void setHyxqdqrsj(Date hyxqdqrsj) {
+        this.hyxqdqrsj = hyxqdqrsj;
+    }
+
+    public String getKygclx() {
+        return kygclx;
+    }
+
+    public void setKygclx(String kygclx) {
+        this.kygclx = kygclx;
+    }
+
+    public String getKygcgh() {
+        return kygcgh;
+    }
+
+    public void setKygcgh(String kygcgh) {
+        this.kygcgh = kygcgh;
+    }
+
+    public String getYhzt() {
+        return yhzt;
+    }
+
+    public void setYhzt(String yhzt) {
+        this.yhzt = yhzt;
+    }
+
+    public Date getYhsj() {
+        return yhsj;
+    }
+
+    public void setYhsj(Date yhsj) {
+        this.yhsj = yhsj;
+    }
+
+    public Date getKcsj() {
+        return kcsj;
+    }
+
+    public void setKcsj(Date kcsj) {
+        this.kcsj = kcsj;
+    }
+
+    public Date getScyjkgsj() {
+        return scyjkgsj;
+    }
+
+    public void setScyjkgsj(Date scyjkgsj) {
+        this.scyjkgsj = scyjkgsj;
+    }
+
+    public String getJyjyzscxm() {
+        return jyjyzscxm;
+    }
+
+    public void setJyjyzscxm(String jyjyzscxm) {
+        this.jyjyzscxm = jyjyzscxm;
+    }
+
+    public String getJyjyzscxmjssj() {
+        return jyjyzscxmjssj;
+    }
+
+    public void setJyjyzscxmjssj(String jyjyzscxmjssj) {
+        this.jyjyzscxmjssj = jyjyzscxmjssj;
+    }
+
+    public String getGsdjqr() {
+        return gsdjqr;
+    }
+
+    public void setGsdjqr(String gsdjqr) {
+        this.gsdjqr = gsdjqr;
+    }
+
+    public String getZdjgqr() {
+        return zdjgqr;
+    }
+
+    public void setZdjgqr(String zdjgqr) {
+        this.zdjgqr = zdjgqr;
+    }
+
+    public String getSfbc() {
+        return sfbc;
+    }
+
+    public void setSfbc(String sfbc) {
+        this.sfbc = sfbc;
+    }
+
+    public String getHxbeizhu() {
+        return hxbeizhu;
+    }
+
+    public void setHxbeizhu(String hxbeizhu) {
+        this.hxbeizhu = hxbeizhu;
+    }
+
+    public Date getJzhjgwq() {
+        return jzhjgwq;
+    }
+
+    public void setJzhjgwq(Date jzhjgwq) {
+        this.jzhjgwq = jzhjgwq;
+    }
+
+    public Date getBgdhsj() {
+        return bgdhsj;
+    }
+
+    public void setBgdhsj(Date bgdhsj) {
+        this.bgdhsj = bgdhsj;
+    }
+
+    public String getBgdyczt() {
+        return bgdyczt;
+    }
+
+    public void setBgdyczt(String bgdyczt) {
+        this.bgdyczt = bgdyczt;
+    }
+
+    public String getSbsxyczt() {
+        return sbsxyczt;
+    }
+
+    public void setSbsxyczt(String sbsxyczt) {
+        this.sbsxyczt = sbsxyczt;
+    }
+
+    public String getZdrbm() {
+        return zdrbm;
+    }
+
+    public void setZdrbm(String zdrbm) {
+        this.zdrbm = zdrbm;
+    }
+
+    public String getZdrbmmc() {
+        return zdrbmmc;
+    }
+
+    public void setZdrbmmc(String zdrbmmc) {
+        this.zdrbmmc = zdrbmmc;
+    }
+
+    public String getZbjcqk() {
+        return zbjcqk;
+    }
+
+    public void setZbjcqk(String zbjcqk) {
+        this.zbjcqk = zbjcqk;
+    }
+
+    public String getZbsdqk() {
+        return zbsdqk;
+    }
+
+    public void setZbsdqk(String zbsdqk) {
+        this.zbsdqk = zbsdqk;
+    }
+
+    public Date getJysjzsscscsj() {
+        return jysjzsscscsj;
+    }
+
+    public void setJysjzsscscsj(Date jysjzsscscsj) {
+        this.jysjzsscscsj = jysjzsscscsj;
+    }
+
+    public String getSfjjlx() {
+        return sfjjlx;
+    }
+
+    public void setSfjjlx(String sfjjlx) {
+        this.sfjjlx = sfjjlx;
+    }
+
+    public String getSqkp() {
+        return sqkp;
+    }
+
+    public void setSqkp(String sqkp) {
+        this.sqkp = sqkp;
+    }
+
+    public Integer getJyzSzGzr() {
+        return jyzSzGzr;
+    }
+
+    public void setJyzSzGzr(Integer jyzSzGzr) {
+        this.jyzSzGzr = jyzSzGzr;
+    }
+
+    public String getJyzSzSfyc() {
+        return jyzSzSfyc;
+    }
+
+    public void setJyzSzSfyc(String jyzSzSfyc) {
+        this.jyzSzSfyc = jyzSzSfyc;
+    }
+
+    public String getMnsdsqzt() {
+        return mnsdsqzt;
+    }
+
+    public void setMnsdsqzt(String mnsdsqzt) {
+        this.mnsdsqzt = mnsdsqzt;
+    }
+
+    public Date getSdtzfpsj() {
+        return sdtzfpsj;
+    }
+
+    public void setSdtzfpsj(Date sdtzfpsj) {
+        this.sdtzfpsj = sdtzfpsj;
+    }
+
+    public Date getRpaXrsj() {
+        return rpaXrsj;
+    }
+
+    public void setRpaXrsj(Date rpaXrsj) {
+        this.rpaXrsj = rpaXrsj;
+    }
+}
\ No newline at end of file
Index: jinan/trunk/yunna/src/main/java/com/freshport/entity/YwHddzJzxxx.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/entity/YwHddzJzxxx.java	(revision 0)
+++ jinan/trunk/yunna/src/main/java/com/freshport/entity/YwHddzJzxxx.java	(revision 33864)
@@ -0,0 +1,4646 @@
+package com.freshport.entity;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+public class YwHddzJzxxx {
+    private Integer id;
+
+    private String ywbh;
+
+    private Integer cxh;
+
+    private String ysfs;
+
+    private String jzxh;
+
+    private String xx;
+
+    private String xl;
+
+    private String sjshrbm;
+
+    private String sjshrmc;
+
+    private String shdz;
+
+    private String zyxx;
+
+    private String clfs;
+
+    private Integer tpxx;
+
+    private Date htjhthsj;
+
+    private String htjhthsjLb;
+
+    private Date xcjhthsj;
+
+    private String thjjcd;
+
+    private String beizhu;
+
+    private String gqBz;
+
+    private String gqSj;
+
+    private String gqCp;
+
+    private String gqSjlxfs;
+
+    private String gqRwbh;
+
+    private String gqCRwbh;
+
+    private String hgcydBz;
+
+    private String hgcydSj;
+
+    private String hgcydCp;
+
+    private String hgcydSjlxfs;
+
+    private String hgcydRwbh;
+
+    private String hgcydCRwbh;
+
+    private String jydBz;
+
+    private String jydSj;
+
+    private String jydCp;
+
+    private String jydSjlxfs;
+
+    private String jydBm;
+
+    private String jydMc;
+
+    private String jydJc;
+
+    private String jydPym;
+
+    private String jydRwbh;
+
+    private String jydCRwbh;
+
+    private String zjfscwldBz;
+
+    private String zjfscwldSfjsc;
+
+    private String zjfscwldSj;
+
+    private String zjfscwldCp;
+
+    private String zjfscwldSjlxfs;
+
+    private String zjfscwldShrbm;
+
+    private String zjfscwldShrmc;
+
+    private String zjfscwldZyxx;
+
+    private String zjfscwldRwbh;
+
+    private String zjfscwldCRwbh;
+
+    private String scBz;
+
+    private String scSj;
+
+    private String scCp;
+
+    private String scSjlxfs;
+
+    private String scBm;
+
+    private String scMc;
+
+    private String scJc;
+
+    private String scPym;
+
+    private String scLgfs;
+
+    private String scRwbh;
+
+    private String scCRwbh;
+
+    private String jschfscwldBz;
+
+    private String jschfscwldSfjsc;
+
+    private String jschfscwldSj;
+
+    private String jschfscwldCp;
+
+    private String jschfscwldSjlxfs;
+
+    private String jschfscwldShrbm;
+
+    private String jschfscwldShrmc;
+
+    private String jschfscwldZyxx;
+
+    private String jschfscwldRwbh;
+
+    private String jschfscwldCRwbh;
+
+    private String fscwld3Bz;
+
+    private String fscwld3Sfjsc;
+
+    private String fscwld3Sj;
+
+    private String fscwld3Cp;
+
+    private String fscwld3Sjlxfs;
+
+    private String fscwld3Shrbm;
+
+    private String fscwld3Shrmc;
+
+    private String fscwld3Zyxx;
+
+    private String fscwld3Rwbh;
+
+    private String fscwld3CRwbh;
+
+    private String fscwld4Bz;
+
+    private String fscwld4Sfjsc;
+
+    private String fscwld4Sj;
+
+    private String fscwld4Cp;
+
+    private String fscwld4Sjlxfs;
+
+    private String fscwld4Shrbm;
+
+    private String fscwld4Shrmc;
+
+    private String fscwld4Zyxx;
+
+    private String fscwld4Rwbh;
+
+    private String fscwld4CRwbh;
+
+    private String dcBz;
+
+    private String dcSj;
+
+    private String dcCp;
+
+    private String dcSjlxfs;
+
+    private String dcBm;
+
+    private String dcMc;
+
+    private String dcJc;
+
+    private String dcPym;
+
+    private String dcRwbh;
+
+    private Date sdxtdsj;
+
+    private String fxgsbm;
+
+    private String fxgsmc;
+
+    private String fxgsjc;
+
+    private String fxgspym;
+
+    private String cgsfxdbm;
+
+    private String cgsfxdmc;
+
+    private String cgsfxdjc;
+
+    private String cgsfxdpym;
+
+    private String sbjjdh;
+
+    private String fxdcbm;
+
+    private String fxdcmc;
+
+    private String fxdcjc;
+
+    private String fxdcpym;
+
+    private Date gqjhsj;
+
+    private String gqjhsjLb;
+
+    private String sjmc;
+
+    private String cph;
+
+    private String mtywclbz;
+
+    private Date ccsj;
+
+    private Date hdcsj;
+
+    private Date cgqsj;
+
+    private Date cydsj;
+
+    private String cydbz;
+
+    private Date djydsj;
+
+    private Date tgjysj;
+
+    private String jycydzt;
+
+    private String kghcl;
+
+    private Date rscsj;
+
+    private Date khtzhxsj;
+
+    private Date xqrqksj;
+
+    private Date ccjhsj;
+
+    private Date cscsj;
+
+    private String hxfs;
+
+    private Date jzxydgsj;
+
+    private Date jzxzscsj;
+
+    private Date jzxytzqksj;
+
+    private String scbz;
+
+    private Date fscwlDdsj;
+
+    private Date fscwlLksj;
+
+    private Date fscwl2Ddsj;
+
+    private Date fscwl2Lksj;
+
+    private Date fscwl3Ddsj;
+
+    private Date fscwl3Lksj;
+
+    private Date fscwl4Ddsj;
+
+    private Date fscwl4Lksj;
+
+    private String csbz;
+
+    private String zhlx;
+
+    private Date lkjydsj;
+
+    private String jydbz;
+
+    private Date yqfssj;
+
+    private String sffsbz;
+
+    private Date sdxxsj;
+
+    private String sfsdxxbz;
+
+    private String sfyxcjh;
+
+    private String sfsdfxhz;
+
+    private String dcsfyd;
+
+    private Date hmtsj;
+
+    private Date dhxgssj;
+
+    private String zybz;
+
+    private BigDecimal cqfje;
+
+    private Date cqjsbzrq;
+
+    private String khjydzt;
+
+    private String yfkdbh;
+
+    private String sfyyfk;
+
+    private String state;
+
+    private String jsdwbm;
+
+    private String jsdwmc;
+
+    private String jsdwjc;
+
+    private String jsdwpym;
+
+    private String jsbm;
+
+    private String jsdwqr;
+
+    private String sfyjsbm;
+
+    private String yscqfqr;
+
+    private BigDecimal yscqfje;
+
+    private Date yscqfqrrq;
+
+    private String wlfyqr;
+
+    private Date wlfyqrrq;
+
+    private BigDecimal wlfyje;
+
+    private BigDecimal wlfylclfje;
+
+    private Date tjrq;
+
+    private BigDecimal tsycdzyjsje;
+
+    private String yshdfygjbh;
+
+    private Date gjsj;
+
+    private Integer gjcs;
+
+    private String yshdfygjbhCqf;
+
+    private Date gjsjCqf;
+
+    private Integer gjcsCqf;
+
+    private String lxr;
+
+    private String lxdh;
+
+    private String wxsffsCqf;
+
+    private Date wllxqdrq;
+
+    private String jssfwc;
+
+    private Date jswcsj;
+
+    private String sflc;
+
+    private String lxr2;
+
+    private String lxdh2;
+
+    private String lxr3;
+
+    private String lxdh3;
+
+    private String lxr4;
+
+    private String lxdh4;
+
+    private Date kgsj;
+
+    private String ssys;
+
+    private Date kghclsj;
+
+    private String wllhzt;
+
+    private Date wllhsj;
+
+    private String sqlhpc;
+
+    private String lhbz;
+
+    private Date sqsj;
+
+    private String cdbm;
+
+    private String cdmc;
+
+    private String cdjc;
+
+    private String cdpym;
+
+    private Date fxsj;
+
+    private String htjhthsjSjd;
+
+    private Date htjhthscsj;
+
+    private String cdjsdwbm;
+
+    private String cdjsdwmc;
+
+    private String cdjsdwjc;
+
+    private String cdjsdwpym;
+
+    private String contractcontainerid;
+
+    private Date jgqsj;
+
+    private Date cjydsj;
+
+    private String dj;
+
+    private Date cgqsjLrsj;
+
+    private Date djydsjLrsj;
+
+    private Date tgjysjLrsj;
+
+    private Date kgsjLrsj;
+
+    private String cgqsjCzry;
+
+    private String djydsjCzry;
+
+    private String tgjysjCzry;
+
+    private String kgsjCzry;
+
+    private Date kghclsjLrsj;
+
+    private String kghclsjCzry;
+
+    private String dzdd;
+
+    private Date zqCgqsj;
+
+    private Date cjydsjLrsj;
+
+    private String cjydsjCzry;
+
+    private String jdrjc;
+
+    private String jdrmc;
+
+    private String jdrbm;
+
+    private String jdrpym;
+
+    private Date htjhthsjLrsj;
+
+    private String lrcxQrbz;
+
+    private Date lrcxQrrq;
+
+    private String lrcxBz;
+
+    private String jzxlrcxBz;
+
+    private Date xcsj;
+
+    private String jzxlrcxQrbz;
+
+    private Date jzxlrcxQrrq;
+
+    private String clsscd;
+
+    private String lkBz;
+
+    private Date khzdthsj;
+
+    private Date khzdthsjLrsj;
+
+    private String khzdthsjCzry;
+
+    private Date yqsdsj;
+
+    private String shr;
+
+    private String shrdh;
+
+    private Date ggsj;
+
+    private String spxh;
+
+    private String sggqbm;
+
+    private String sggqmc;
+
+    private String sggqjc;
+
+    private String sggqpym;
+
+    private String cqfcxBz;
+
+    private String sbjjd;
+
+    private String sbjjdLrry;
+
+    private Date sbjjdLrsj;
+
+    private String hzSc;
+
+    private String pdy;
+
+    private String gjbeizhu;
+
+    private String wlbgz;
+
+    private String wlbgzLrry;
+
+    private Date wlbgzLrsj;
+
+    private String lldh;
+
+    private String ccrn;
+
+    private Date tgrq;
+
+    private Date qgrq;
+
+    private String szjb;
+
+    private Date jhrq1;
+
+    private Date jgwq1;
+
+    private String wlgzState;
+
+    private String wlgzJjyy;
+
+    private String sjzqCcfs;
+
+    private String sfzlc;
+
+    private String ycbeizhu;
+
+    private String zzhwsqh;
+
+    private String zzqrsh;
+
+    private Date xfdysj;
+
+    private Date zzsdysj;
+
+    private Date lldhLrsj;
+
+    private Date sjzqCgqsj;
+
+    private String htjhthsjXgyy;
+
+    private String khgtjlBeizhu;
+
+    private String jsdwqrRy;
+
+    private String khmc;
+
+    private String khjc;
+
+    private String khpym;
+
+    private String khbm;
+
+    private String lrqr;
+
+    private String qrry;
+
+    private String ycyyrl;
+
+    private Date zdjkKssj;
+
+    private Date zdjkJssj;
+
+    private String lc;
+
+    private Date lcStarttime;
+
+    private Date lcEndtime;
+
+    private String kgyy;
+
+    private String beizhuRy;
+
+    private Date rlksj;
+
+    private String gzryqr;
+
+    private String khzbth;
+
+    private Date khzbthQrsj;
+
+    private String sfycb;
+
+    private String sfyys;
+
+    private String gzryqrry;
+
+    private Date cgqsjXg;
+
+    private Date xcsjXg;
+
+    private Date cgqsjSz;
+
+    private Date xcsjSz;
+
+    private String gzryhxqr;
+
+    private String gzryhxqrry;
+
+    private String wlbz;
+
+    private String zyxxImportUser;
+
+    private String cwbz;
+
+    private Double anJeGb;
+
+    private Double anJeMj;
+
+    private Double mjhl;
+
+    private Date wlqrsj;
+
+    private BigDecimal fylr;
+
+    private String hgfs;
+
+    private String sjzqJcfs;
+
+    private String hgfsZhm;
+
+    private Date hgfsXgsj;
+
+    private String cgfxqfyGd;
+
+    private String cgfxhfyWl;
+
+    private String jssqr;
+
+    private String jsyy;
+
+    private String jsStart;
+
+    private Date qgrqLrsj;
+
+    private String qgrqLrry;
+
+    private String sfypz;
+
+    private String xwxfdjsBeizhu;
+
+    private String scfyBeizhu;
+
+    private String xzz;
+
+    private String sfzg;
+
+    private Date zgxksj;
+
+    private Date xklrsj;
+
+    private String zjbjh;
+
+    private Date gzjysbsj;
+
+    private Date jqsbwcsj;
+
+    private Date grabOutTime;
+
+    private Date grabDownTime;
+
+    private BigDecimal wlqryf;
+
+    private Date wlzyjthsj;
+
+    private String wlzyjthpc;
+
+    private Date yjxcsj;
+
+    private String qcdl;
+
+    private Date dcthkhyqsdsj;
+
+    private Date dcthwlzfksdsj;
+
+    private String jjnsc;
+
+    private String ydsdcl;
+
+    private Date dcsfydCzsj;
+
+    private String bgid;
+
+    private Date yjtgrq;
+
+    private String yjtgrqImportUser;
+
+    private String jhyap;
+
+    private Date jhyapCzsj;
+
+    private String lxrImportUser;
+
+    private String qcdlImportUser;
+
+    private String jjnscImportUser;
+
+    private String sfzgImportUser;
+
+    private String khzbthImportUser;
+
+    private String cgfxqfyGdImportUser;
+
+    private Date jjnscsj;
+
+    private Date gzryqrLrsj;
+
+    private Date xqrqksjLrsj;
+
+    private String qcbz;
+
+    private String tch;
+
+    private String fxzt;
+
+    private String dqwz;
+
+    private String sfapth;
+
+    private Date sfapthczsj;
+
+    private Date yqthsj;
+
+    private String apthBz;
+
+    private String xc2ccyDy;
+
+    private String cphDyc;
+
+    private Date khxqtcsj;
+
+    private Date jhxgwlsj;
+
+    private String jhdbjdl;
+
+    private Date jhdbjdlLlsj;
+
+    private String wxpdy;
+
+    private Date wlzyjthsjLlsj;
+
+    private Date yjyqsdsj;
+
+    private String qrqk;
+
+    private String ecph;
+
+    private Date wlzyjthpcLlsj;
+
+    private Date yjxcsjLlsj;
+
+    private Date yjtgrqLlsj;
+
+    private Date khxqtcsjLlsj;
+
+    private Date mzsj;
+
+    private String jjzt;
+
+    private Integer sfxs;
+
+    private String xsbglj;
+
+    private String xsgsmc;
+
+    private String xslxr;
+
+    private String xclxr;
+
+    private String czxxsftg;
+
+    private String xslx;
+
+    private String hsjcbz;
+
+    private String fybz;
+
+    private Date wlpdsj;
+
+    private String szsfxs;
+
+    private String sfhs;
+
+    private String sfsjddc;
+
+    private Date sfhssj;
+
+    private String zbgd;
+
+    private Date zbgdrq;
+
+    private Date gzryhxqrCxsj;
+
+    private Date xsbgljsj;
+
+    private String sfdd;
+
+    private String sfcyjzx;
+
+    private String gcsfcy;
+
+    private Date gcsfcyCzsj;
+
+    private Date szktsj;
+
+    private Date szkgsj;
+
+    private Date szclfxsj;
+
+    private String szcyyc;
+
+    private String szktsjCzry;
+
+    private Date szktsjCzsj;
+
+    private String szkgsjCzry;
+
+    private Date szkgsjCzsj;
+
+    private String szclfxsjCzry;
+
+    private Date szclfxsjCzsj;
+
+    private String gcsfcyCzry;
+
+    private String cyfybz;
+
+    private String gczl;
+
+    private Date jhrq;
+
+    private Date cskhg;
+
+    private Date cszhg;
+
+    private Date cxghg;
+
+    private String jcgzj;
+
+    private String jchxdc;
+
+    private Date sdsj;
+
+    private String sfylr;
+
+    private String jhd;
+
+    private Date ddsj;
+
+    private String sffwdj;
+
+    private String sfwsttjsc;
+
+    private Date wlkthsj;
+
+    private String sfwlkt;
+
+    private String sfkhwlxq;
+
+    private String zggtpc;
+
+    private Date zgwlpdsj;
+
+    private String kjzyme;
+
+    private Date kjzymesj;
+
+    private Date cgzjsj;
+
+    private Date zgwlzyjtgsj;
+
+    private Date cmyzhjbcsj;
+
+    private Date cjkjzydsj;
+
+    private String kjzyddz;
+
+    private Integer hxq;
+
+    private Integer mtmDuiQ;
+
+    private Integer mtmDianQ;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getYwbh() {
+        return ywbh;
+    }
+
+    public void setYwbh(String ywbh) {
+        this.ywbh = ywbh;
+    }
+
+    public Integer getCxh() {
+        return cxh;
+    }
+
+    public void setCxh(Integer cxh) {
+        this.cxh = cxh;
+    }
+
+    public String getYsfs() {
+        return ysfs;
+    }
+
+    public void setYsfs(String ysfs) {
+        this.ysfs = ysfs;
+    }
+
+    public String getJzxh() {
+        return jzxh;
+    }
+
+    public void setJzxh(String jzxh) {
+        this.jzxh = jzxh;
+    }
+
+    public String getXx() {
+        return xx;
+    }
+
+    public void setXx(String xx) {
+        this.xx = xx;
+    }
+
+    public String getXl() {
+        return xl;
+    }
+
+    public void setXl(String xl) {
+        this.xl = xl;
+    }
+
+    public String getSjshrbm() {
+        return sjshrbm;
+    }
+
+    public void setSjshrbm(String sjshrbm) {
+        this.sjshrbm = sjshrbm;
+    }
+
+    public String getSjshrmc() {
+        return sjshrmc;
+    }
+
+    public void setSjshrmc(String sjshrmc) {
+        this.sjshrmc = sjshrmc;
+    }
+
+    public String getShdz() {
+        return shdz;
+    }
+
+    public void setShdz(String shdz) {
+        this.shdz = shdz;
+    }
+
+    public String getZyxx() {
+        return zyxx;
+    }
+
+    public void setZyxx(String zyxx) {
+        this.zyxx = zyxx;
+    }
+
+    public String getClfs() {
+        return clfs;
+    }
+
+    public void setClfs(String clfs) {
+        this.clfs = clfs;
+    }
+
+    public Integer getTpxx() {
+        return tpxx;
+    }
+
+    public void setTpxx(Integer tpxx) {
+        this.tpxx = tpxx;
+    }
+
+    public Date getHtjhthsj() {
+        return htjhthsj;
+    }
+
+    public void setHtjhthsj(Date htjhthsj) {
+        this.htjhthsj = htjhthsj;
+    }
+
+    public String getHtjhthsjLb() {
+        return htjhthsjLb;
+    }
+
+    public void setHtjhthsjLb(String htjhthsjLb) {
+        this.htjhthsjLb = htjhthsjLb;
+    }
+
+    public Date getXcjhthsj() {
+        return xcjhthsj;
+    }
+
+    public void setXcjhthsj(Date xcjhthsj) {
+        this.xcjhthsj = xcjhthsj;
+    }
+
+    public String getThjjcd() {
+        return thjjcd;
+    }
+
+    public void setThjjcd(String thjjcd) {
+        this.thjjcd = thjjcd;
+    }
+
+    public String getBeizhu() {
+        return beizhu;
+    }
+
+    public void setBeizhu(String beizhu) {
+        this.beizhu = beizhu;
+    }
+
+    public String getGqBz() {
+        return gqBz;
+    }
+
+    public void setGqBz(String gqBz) {
+        this.gqBz = gqBz;
+    }
+
+    public String getGqSj() {
+        return gqSj;
+    }
+
+    public void setGqSj(String gqSj) {
+        this.gqSj = gqSj;
+    }
+
+    public String getGqCp() {
+        return gqCp;
+    }
+
+    public void setGqCp(String gqCp) {
+        this.gqCp = gqCp;
+    }
+
+    public String getGqSjlxfs() {
+        return gqSjlxfs;
+    }
+
+    public void setGqSjlxfs(String gqSjlxfs) {
+        this.gqSjlxfs = gqSjlxfs;
+    }
+
+    public String getGqRwbh() {
+        return gqRwbh;
+    }
+
+    public void setGqRwbh(String gqRwbh) {
+        this.gqRwbh = gqRwbh;
+    }
+
+    public String getGqCRwbh() {
+        return gqCRwbh;
+    }
+
+    public void setGqCRwbh(String gqCRwbh) {
+        this.gqCRwbh = gqCRwbh;
+    }
+
+    public String getHgcydBz() {
+        return hgcydBz;
+    }
+
+    public void setHgcydBz(String hgcydBz) {
+        this.hgcydBz = hgcydBz;
+    }
+
+    public String getHgcydSj() {
+        return hgcydSj;
+    }
+
+    public void setHgcydSj(String hgcydSj) {
+        this.hgcydSj = hgcydSj;
+    }
+
+    public String getHgcydCp() {
+        return hgcydCp;
+    }
+
+    public void setHgcydCp(String hgcydCp) {
+        this.hgcydCp = hgcydCp;
+    }
+
+    public String getHgcydSjlxfs() {
+        return hgcydSjlxfs;
+    }
+
+    public void setHgcydSjlxfs(String hgcydSjlxfs) {
+        this.hgcydSjlxfs = hgcydSjlxfs;
+    }
+
+    public String getHgcydRwbh() {
+        return hgcydRwbh;
+    }
+
+    public void setHgcydRwbh(String hgcydRwbh) {
+        this.hgcydRwbh = hgcydRwbh;
+    }
+
+    public String getHgcydCRwbh() {
+        return hgcydCRwbh;
+    }
+
+    public void setHgcydCRwbh(String hgcydCRwbh) {
+        this.hgcydCRwbh = hgcydCRwbh;
+    }
+
+    public String getJydBz() {
+        return jydBz;
+    }
+
+    public void setJydBz(String jydBz) {
+        this.jydBz = jydBz;
+    }
+
+    public String getJydSj() {
+        return jydSj;
+    }
+
+    public void setJydSj(String jydSj) {
+        this.jydSj = jydSj;
+    }
+
+    public String getJydCp() {
+        return jydCp;
+    }
+
+    public void setJydCp(String jydCp) {
+        this.jydCp = jydCp;
+    }
+
+    public String getJydSjlxfs() {
+        return jydSjlxfs;
+    }
+
+    public void setJydSjlxfs(String jydSjlxfs) {
+        this.jydSjlxfs = jydSjlxfs;
+    }
+
+    public String getJydBm() {
+        return jydBm;
+    }
+
+    public void setJydBm(String jydBm) {
+        this.jydBm = jydBm;
+    }
+
+    public String getJydMc() {
+        return jydMc;
+    }
+
+    public void setJydMc(String jydMc) {
+        this.jydMc = jydMc;
+    }
+
+    public String getJydJc() {
+        return jydJc;
+    }
+
+    public void setJydJc(String jydJc) {
+        this.jydJc = jydJc;
+    }
+
+    public String getJydPym() {
+        return jydPym;
+    }
+
+    public void setJydPym(String jydPym) {
+        this.jydPym = jydPym;
+    }
+
+    public String getJydRwbh() {
+        return jydRwbh;
+    }
+
+    public void setJydRwbh(String jydRwbh) {
+        this.jydRwbh = jydRwbh;
+    }
+
+    public String getJydCRwbh() {
+        return jydCRwbh;
+    }
+
+    public void setJydCRwbh(String jydCRwbh) {
+        this.jydCRwbh = jydCRwbh;
+    }
+
+    public String getZjfscwldBz() {
+        return zjfscwldBz;
+    }
+
+    public void setZjfscwldBz(String zjfscwldBz) {
+        this.zjfscwldBz = zjfscwldBz;
+    }
+
+    public String getZjfscwldSfjsc() {
+        return zjfscwldSfjsc;
+    }
+
+    public void setZjfscwldSfjsc(String zjfscwldSfjsc) {
+        this.zjfscwldSfjsc = zjfscwldSfjsc;
+    }
+
+    public String getZjfscwldSj() {
+        return zjfscwldSj;
+    }
+
+    public void setZjfscwldSj(String zjfscwldSj) {
+        this.zjfscwldSj = zjfscwldSj;
+    }
+
+    public String getZjfscwldCp() {
+        return zjfscwldCp;
+    }
+
+    public void setZjfscwldCp(String zjfscwldCp) {
+        this.zjfscwldCp = zjfscwldCp;
+    }
+
+    public String getZjfscwldSjlxfs() {
+        return zjfscwldSjlxfs;
+    }
+
+    public void setZjfscwldSjlxfs(String zjfscwldSjlxfs) {
+        this.zjfscwldSjlxfs = zjfscwldSjlxfs;
+    }
+
+    public String getZjfscwldShrbm() {
+        return zjfscwldShrbm;
+    }
+
+    public void setZjfscwldShrbm(String zjfscwldShrbm) {
+        this.zjfscwldShrbm = zjfscwldShrbm;
+    }
+
+    public String getZjfscwldShrmc() {
+        return zjfscwldShrmc;
+    }
+
+    public void setZjfscwldShrmc(String zjfscwldShrmc) {
+        this.zjfscwldShrmc = zjfscwldShrmc;
+    }
+
+    public String getZjfscwldZyxx() {
+        return zjfscwldZyxx;
+    }
+
+    public void setZjfscwldZyxx(String zjfscwldZyxx) {
+        this.zjfscwldZyxx = zjfscwldZyxx;
+    }
+
+    public String getZjfscwldRwbh() {
+        return zjfscwldRwbh;
+    }
+
+    public void setZjfscwldRwbh(String zjfscwldRwbh) {
+        this.zjfscwldRwbh = zjfscwldRwbh;
+    }
+
+    public String getZjfscwldCRwbh() {
+        return zjfscwldCRwbh;
+    }
+
+    public void setZjfscwldCRwbh(String zjfscwldCRwbh) {
+        this.zjfscwldCRwbh = zjfscwldCRwbh;
+    }
+
+    public String getScBz() {
+        return scBz;
+    }
+
+    public void setScBz(String scBz) {
+        this.scBz = scBz;
+    }
+
+    public String getScSj() {
+        return scSj;
+    }
+
+    public void setScSj(String scSj) {
+        this.scSj = scSj;
+    }
+
+    public String getScCp() {
+        return scCp;
+    }
+
+    public void setScCp(String scCp) {
+        this.scCp = scCp;
+    }
+
+    public String getScSjlxfs() {
+        return scSjlxfs;
+    }
+
+    public void setScSjlxfs(String scSjlxfs) {
+        this.scSjlxfs = scSjlxfs;
+    }
+
+    public String getScBm() {
+        return scBm;
+    }
+
+    public void setScBm(String scBm) {
+        this.scBm = scBm;
+    }
+
+    public String getScMc() {
+        return scMc;
+    }
+
+    public void setScMc(String scMc) {
+        this.scMc = scMc;
+    }
+
+    public String getScJc() {
+        return scJc;
+    }
+
+    public void setScJc(String scJc) {
+        this.scJc = scJc;
+    }
+
+    public String getScPym() {
+        return scPym;
+    }
+
+    public void setScPym(String scPym) {
+        this.scPym = scPym;
+    }
+
+    public String getScLgfs() {
+        return scLgfs;
+    }
+
+    public void setScLgfs(String scLgfs) {
+        this.scLgfs = scLgfs;
+    }
+
+    public String getScRwbh() {
+        return scRwbh;
+    }
+
+    public void setScRwbh(String scRwbh) {
+        this.scRwbh = scRwbh;
+    }
+
+    public String getScCRwbh() {
+        return scCRwbh;
+    }
+
+    public void setScCRwbh(String scCRwbh) {
+        this.scCRwbh = scCRwbh;
+    }
+
+    public String getJschfscwldBz() {
+        return jschfscwldBz;
+    }
+
+    public void setJschfscwldBz(String jschfscwldBz) {
+        this.jschfscwldBz = jschfscwldBz;
+    }
+
+    public String getJschfscwldSfjsc() {
+        return jschfscwldSfjsc;
+    }
+
+    public void setJschfscwldSfjsc(String jschfscwldSfjsc) {
+        this.jschfscwldSfjsc = jschfscwldSfjsc;
+    }
+
+    public String getJschfscwldSj() {
+        return jschfscwldSj;
+    }
+
+    public void setJschfscwldSj(String jschfscwldSj) {
+        this.jschfscwldSj = jschfscwldSj;
+    }
+
+    public String getJschfscwldCp() {
+        return jschfscwldCp;
+    }
+
+    public void setJschfscwldCp(String jschfscwldCp) {
+        this.jschfscwldCp = jschfscwldCp;
+    }
+
+    public String getJschfscwldSjlxfs() {
+        return jschfscwldSjlxfs;
+    }
+
+    public void setJschfscwldSjlxfs(String jschfscwldSjlxfs) {
+        this.jschfscwldSjlxfs = jschfscwldSjlxfs;
+    }
+
+    public String getJschfscwldShrbm() {
+        return jschfscwldShrbm;
+    }
+
+    public void setJschfscwldShrbm(String jschfscwldShrbm) {
+        this.jschfscwldShrbm = jschfscwldShrbm;
+    }
+
+    public String getJschfscwldShrmc() {
+        return jschfscwldShrmc;
+    }
+
+    public void setJschfscwldShrmc(String jschfscwldShrmc) {
+        this.jschfscwldShrmc = jschfscwldShrmc;
+    }
+
+    public String getJschfscwldZyxx() {
+        return jschfscwldZyxx;
+    }
+
+    public void setJschfscwldZyxx(String jschfscwldZyxx) {
+        this.jschfscwldZyxx = jschfscwldZyxx;
+    }
+
+    public String getJschfscwldRwbh() {
+        return jschfscwldRwbh;
+    }
+
+    public void setJschfscwldRwbh(String jschfscwldRwbh) {
+        this.jschfscwldRwbh = jschfscwldRwbh;
+    }
+
+    public String getJschfscwldCRwbh() {
+        return jschfscwldCRwbh;
+    }
+
+    public void setJschfscwldCRwbh(String jschfscwldCRwbh) {
+        this.jschfscwldCRwbh = jschfscwldCRwbh;
+    }
+
+    public String getFscwld3Bz() {
+        return fscwld3Bz;
+    }
+
+    public void setFscwld3Bz(String fscwld3Bz) {
+        this.fscwld3Bz = fscwld3Bz;
+    }
+
+    public String getFscwld3Sfjsc() {
+        return fscwld3Sfjsc;
+    }
+
+    public void setFscwld3Sfjsc(String fscwld3Sfjsc) {
+        this.fscwld3Sfjsc = fscwld3Sfjsc;
+    }
+
+    public String getFscwld3Sj() {
+        return fscwld3Sj;
+    }
+
+    public void setFscwld3Sj(String fscwld3Sj) {
+        this.fscwld3Sj = fscwld3Sj;
+    }
+
+    public String getFscwld3Cp() {
+        return fscwld3Cp;
+    }
+
+    public void setFscwld3Cp(String fscwld3Cp) {
+        this.fscwld3Cp = fscwld3Cp;
+    }
+
+    public String getFscwld3Sjlxfs() {
+        return fscwld3Sjlxfs;
+    }
+
+    public void setFscwld3Sjlxfs(String fscwld3Sjlxfs) {
+        this.fscwld3Sjlxfs = fscwld3Sjlxfs;
+    }
+
+    public String getFscwld3Shrbm() {
+        return fscwld3Shrbm;
+    }
+
+    public void setFscwld3Shrbm(String fscwld3Shrbm) {
+        this.fscwld3Shrbm = fscwld3Shrbm;
+    }
+
+    public String getFscwld3Shrmc() {
+        return fscwld3Shrmc;
+    }
+
+    public void setFscwld3Shrmc(String fscwld3Shrmc) {
+        this.fscwld3Shrmc = fscwld3Shrmc;
+    }
+
+    public String getFscwld3Zyxx() {
+        return fscwld3Zyxx;
+    }
+
+    public void setFscwld3Zyxx(String fscwld3Zyxx) {
+        this.fscwld3Zyxx = fscwld3Zyxx;
+    }
+
+    public String getFscwld3Rwbh() {
+        return fscwld3Rwbh;
+    }
+
+    public void setFscwld3Rwbh(String fscwld3Rwbh) {
+        this.fscwld3Rwbh = fscwld3Rwbh;
+    }
+
+    public String getFscwld3CRwbh() {
+        return fscwld3CRwbh;
+    }
+
+    public void setFscwld3CRwbh(String fscwld3CRwbh) {
+        this.fscwld3CRwbh = fscwld3CRwbh;
+    }
+
+    public String getFscwld4Bz() {
+        return fscwld4Bz;
+    }
+
+    public void setFscwld4Bz(String fscwld4Bz) {
+        this.fscwld4Bz = fscwld4Bz;
+    }
+
+    public String getFscwld4Sfjsc() {
+        return fscwld4Sfjsc;
+    }
+
+    public void setFscwld4Sfjsc(String fscwld4Sfjsc) {
+        this.fscwld4Sfjsc = fscwld4Sfjsc;
+    }
+
+    public String getFscwld4Sj() {
+        return fscwld4Sj;
+    }
+
+    public void setFscwld4Sj(String fscwld4Sj) {
+        this.fscwld4Sj = fscwld4Sj;
+    }
+
+    public String getFscwld4Cp() {
+        return fscwld4Cp;
+    }
+
+    public void setFscwld4Cp(String fscwld4Cp) {
+        this.fscwld4Cp = fscwld4Cp;
+    }
+
+    public String getFscwld4Sjlxfs() {
+        return fscwld4Sjlxfs;
+    }
+
+    public void setFscwld4Sjlxfs(String fscwld4Sjlxfs) {
+        this.fscwld4Sjlxfs = fscwld4Sjlxfs;
+    }
+
+    public String getFscwld4Shrbm() {
+        return fscwld4Shrbm;
+    }
+
+    public void setFscwld4Shrbm(String fscwld4Shrbm) {
+        this.fscwld4Shrbm = fscwld4Shrbm;
+    }
+
+    public String getFscwld4Shrmc() {
+        return fscwld4Shrmc;
+    }
+
+    public void setFscwld4Shrmc(String fscwld4Shrmc) {
+        this.fscwld4Shrmc = fscwld4Shrmc;
+    }
+
+    public String getFscwld4Zyxx() {
+        return fscwld4Zyxx;
+    }
+
+    public void setFscwld4Zyxx(String fscwld4Zyxx) {
+        this.fscwld4Zyxx = fscwld4Zyxx;
+    }
+
+    public String getFscwld4Rwbh() {
+        return fscwld4Rwbh;
+    }
+
+    public void setFscwld4Rwbh(String fscwld4Rwbh) {
+        this.fscwld4Rwbh = fscwld4Rwbh;
+    }
+
+    public String getFscwld4CRwbh() {
+        return fscwld4CRwbh;
+    }
+
+    public void setFscwld4CRwbh(String fscwld4CRwbh) {
+        this.fscwld4CRwbh = fscwld4CRwbh;
+    }
+
+    public String getDcBz() {
+        return dcBz;
+    }
+
+    public void setDcBz(String dcBz) {
+        this.dcBz = dcBz;
+    }
+
+    public String getDcSj() {
+        return dcSj;
+    }
+
+    public void setDcSj(String dcSj) {
+        this.dcSj = dcSj;
+    }
+
+    public String getDcCp() {
+        return dcCp;
+    }
+
+    public void setDcCp(String dcCp) {
+        this.dcCp = dcCp;
+    }
+
+    public String getDcSjlxfs() {
+        return dcSjlxfs;
+    }
+
+    public void setDcSjlxfs(String dcSjlxfs) {
+        this.dcSjlxfs = dcSjlxfs;
+    }
+
+    public String getDcBm() {
+        return dcBm;
+    }
+
+    public void setDcBm(String dcBm) {
+        this.dcBm = dcBm;
+    }
+
+    public String getDcMc() {
+        return dcMc;
+    }
+
+    public void setDcMc(String dcMc) {
+        this.dcMc = dcMc;
+    }
+
+    public String getDcJc() {
+        return dcJc;
+    }
+
+    public void setDcJc(String dcJc) {
+        this.dcJc = dcJc;
+    }
+
+    public String getDcPym() {
+        return dcPym;
+    }
+
+    public void setDcPym(String dcPym) {
+        this.dcPym = dcPym;
+    }
+
+    public String getDcRwbh() {
+        return dcRwbh;
+    }
+
+    public void setDcRwbh(String dcRwbh) {
+        this.dcRwbh = dcRwbh;
+    }
+
+    public Date getSdxtdsj() {
+        return sdxtdsj;
+    }
+
+    public void setSdxtdsj(Date sdxtdsj) {
+        this.sdxtdsj = sdxtdsj;
+    }
+
+    public String getFxgsbm() {
+        return fxgsbm;
+    }
+
+    public void setFxgsbm(String fxgsbm) {
+        this.fxgsbm = fxgsbm;
+    }
+
+    public String getFxgsmc() {
+        return fxgsmc;
+    }
+
+    public void setFxgsmc(String fxgsmc) {
+        this.fxgsmc = fxgsmc;
+    }
+
+    public String getFxgsjc() {
+        return fxgsjc;
+    }
+
+    public void setFxgsjc(String fxgsjc) {
+        this.fxgsjc = fxgsjc;
+    }
+
+    public String getFxgspym() {
+        return fxgspym;
+    }
+
+    public void setFxgspym(String fxgspym) {
+        this.fxgspym = fxgspym;
+    }
+
+    public String getCgsfxdbm() {
+        return cgsfxdbm;
+    }
+
+    public void setCgsfxdbm(String cgsfxdbm) {
+        this.cgsfxdbm = cgsfxdbm;
+    }
+
+    public String getCgsfxdmc() {
+        return cgsfxdmc;
+    }
+
+    public void setCgsfxdmc(String cgsfxdmc) {
+        this.cgsfxdmc = cgsfxdmc;
+    }
+
+    public String getCgsfxdjc() {
+        return cgsfxdjc;
+    }
+
+    public void setCgsfxdjc(String cgsfxdjc) {
+        this.cgsfxdjc = cgsfxdjc;
+    }
+
+    public String getCgsfxdpym() {
+        return cgsfxdpym;
+    }
+
+    public void setCgsfxdpym(String cgsfxdpym) {
+        this.cgsfxdpym = cgsfxdpym;
+    }
+
+    public String getSbjjdh() {
+        return sbjjdh;
+    }
+
+    public void setSbjjdh(String sbjjdh) {
+        this.sbjjdh = sbjjdh;
+    }
+
+    public String getFxdcbm() {
+        return fxdcbm;
+    }
+
+    public void setFxdcbm(String fxdcbm) {
+        this.fxdcbm = fxdcbm;
+    }
+
+    public String getFxdcmc() {
+        return fxdcmc;
+    }
+
+    public void setFxdcmc(String fxdcmc) {
+        this.fxdcmc = fxdcmc;
+    }
+
+    public String getFxdcjc() {
+        return fxdcjc;
+    }
+
+    public void setFxdcjc(String fxdcjc) {
+        this.fxdcjc = fxdcjc;
+    }
+
+    public String getFxdcpym() {
+        return fxdcpym;
+    }
+
+    public void setFxdcpym(String fxdcpym) {
+        this.fxdcpym = fxdcpym;
+    }
+
+    public Date getGqjhsj() {
+        return gqjhsj;
+    }
+
+    public void setGqjhsj(Date gqjhsj) {
+        this.gqjhsj = gqjhsj;
+    }
+
+    public String getGqjhsjLb() {
+        return gqjhsjLb;
+    }
+
+    public void setGqjhsjLb(String gqjhsjLb) {
+        this.gqjhsjLb = gqjhsjLb;
+    }
+
+    public String getSjmc() {
+        return sjmc;
+    }
+
+    public void setSjmc(String sjmc) {
+        this.sjmc = sjmc;
+    }
+
+    public String getCph() {
+        return cph;
+    }
+
+    public void setCph(String cph) {
+        this.cph = cph;
+    }
+
+    public String getMtywclbz() {
+        return mtywclbz;
+    }
+
+    public void setMtywclbz(String mtywclbz) {
+        this.mtywclbz = mtywclbz;
+    }
+
+    public Date getCcsj() {
+        return ccsj;
+    }
+
+    public void setCcsj(Date ccsj) {
+        this.ccsj = ccsj;
+    }
+
+    public Date getHdcsj() {
+        return hdcsj;
+    }
+
+    public void setHdcsj(Date hdcsj) {
+        this.hdcsj = hdcsj;
+    }
+
+    public Date getCgqsj() {
+        return cgqsj;
+    }
+
+    public void setCgqsj(Date cgqsj) {
+        this.cgqsj = cgqsj;
+    }
+
+    public Date getCydsj() {
+        return cydsj;
+    }
+
+    public void setCydsj(Date cydsj) {
+        this.cydsj = cydsj;
+    }
+
+    public String getCydbz() {
+        return cydbz;
+    }
+
+    public void setCydbz(String cydbz) {
+        this.cydbz = cydbz;
+    }
+
+    public Date getDjydsj() {
+        return djydsj;
+    }
+
+    public void setDjydsj(Date djydsj) {
+        this.djydsj = djydsj;
+    }
+
+    public Date getTgjysj() {
+        return tgjysj;
+    }
+
+    public void setTgjysj(Date tgjysj) {
+        this.tgjysj = tgjysj;
+    }
+
+    public String getJycydzt() {
+        return jycydzt;
+    }
+
+    public void setJycydzt(String jycydzt) {
+        this.jycydzt = jycydzt;
+    }
+
+    public String getKghcl() {
+        return kghcl;
+    }
+
+    public void setKghcl(String kghcl) {
+        this.kghcl = kghcl;
+    }
+
+    public Date getRscsj() {
+        return rscsj;
+    }
+
+    public void setRscsj(Date rscsj) {
+        this.rscsj = rscsj;
+    }
+
+    public Date getKhtzhxsj() {
+        return khtzhxsj;
+    }
+
+    public void setKhtzhxsj(Date khtzhxsj) {
+        this.khtzhxsj = khtzhxsj;
+    }
+
+    public Date getXqrqksj() {
+        return xqrqksj;
+    }
+
+    public void setXqrqksj(Date xqrqksj) {
+        this.xqrqksj = xqrqksj;
+    }
+
+    public Date getCcjhsj() {
+        return ccjhsj;
+    }
+
+    public void setCcjhsj(Date ccjhsj) {
+        this.ccjhsj = ccjhsj;
+    }
+
+    public Date getCscsj() {
+        return cscsj;
+    }
+
+    public void setCscsj(Date cscsj) {
+        this.cscsj = cscsj;
+    }
+
+    public String getHxfs() {
+        return hxfs;
+    }
+
+    public void setHxfs(String hxfs) {
+        this.hxfs = hxfs;
+    }
+
+    public Date getJzxydgsj() {
+        return jzxydgsj;
+    }
+
+    public void setJzxydgsj(Date jzxydgsj) {
+        this.jzxydgsj = jzxydgsj;
+    }
+
+    public Date getJzxzscsj() {
+        return jzxzscsj;
+    }
+
+    public void setJzxzscsj(Date jzxzscsj) {
+        this.jzxzscsj = jzxzscsj;
+    }
+
+    public Date getJzxytzqksj() {
+        return jzxytzqksj;
+    }
+
+    public void setJzxytzqksj(Date jzxytzqksj) {
+        this.jzxytzqksj = jzxytzqksj;
+    }
+
+    public String getScbz() {
+        return scbz;
+    }
+
+    public void setScbz(String scbz) {
+        this.scbz = scbz;
+    }
+
+    public Date getFscwlDdsj() {
+        return fscwlDdsj;
+    }
+
+    public void setFscwlDdsj(Date fscwlDdsj) {
+        this.fscwlDdsj = fscwlDdsj;
+    }
+
+    public Date getFscwlLksj() {
+        return fscwlLksj;
+    }
+
+    public void setFscwlLksj(Date fscwlLksj) {
+        this.fscwlLksj = fscwlLksj;
+    }
+
+    public Date getFscwl2Ddsj() {
+        return fscwl2Ddsj;
+    }
+
+    public void setFscwl2Ddsj(Date fscwl2Ddsj) {
+        this.fscwl2Ddsj = fscwl2Ddsj;
+    }
+
+    public Date getFscwl2Lksj() {
+        return fscwl2Lksj;
+    }
+
+    public void setFscwl2Lksj(Date fscwl2Lksj) {
+        this.fscwl2Lksj = fscwl2Lksj;
+    }
+
+    public Date getFscwl3Ddsj() {
+        return fscwl3Ddsj;
+    }
+
+    public void setFscwl3Ddsj(Date fscwl3Ddsj) {
+        this.fscwl3Ddsj = fscwl3Ddsj;
+    }
+
+    public Date getFscwl3Lksj() {
+        return fscwl3Lksj;
+    }
+
+    public void setFscwl3Lksj(Date fscwl3Lksj) {
+        this.fscwl3Lksj = fscwl3Lksj;
+    }
+
+    public Date getFscwl4Ddsj() {
+        return fscwl4Ddsj;
+    }
+
+    public void setFscwl4Ddsj(Date fscwl4Ddsj) {
+        this.fscwl4Ddsj = fscwl4Ddsj;
+    }
+
+    public Date getFscwl4Lksj() {
+        return fscwl4Lksj;
+    }
+
+    public void setFscwl4Lksj(Date fscwl4Lksj) {
+        this.fscwl4Lksj = fscwl4Lksj;
+    }
+
+    public String getCsbz() {
+        return csbz;
+    }
+
+    public void setCsbz(String csbz) {
+        this.csbz = csbz;
+    }
+
+    public String getZhlx() {
+        return zhlx;
+    }
+
+    public void setZhlx(String zhlx) {
+        this.zhlx = zhlx;
+    }
+
+    public Date getLkjydsj() {
+        return lkjydsj;
+    }
+
+    public void setLkjydsj(Date lkjydsj) {
+        this.lkjydsj = lkjydsj;
+    }
+
+    public String getJydbz() {
+        return jydbz;
+    }
+
+    public void setJydbz(String jydbz) {
+        this.jydbz = jydbz;
+    }
+
+    public Date getYqfssj() {
+        return yqfssj;
+    }
+
+    public void setYqfssj(Date yqfssj) {
+        this.yqfssj = yqfssj;
+    }
+
+    public String getSffsbz() {
+        return sffsbz;
+    }
+
+    public void setSffsbz(String sffsbz) {
+        this.sffsbz = sffsbz;
+    }
+
+    public Date getSdxxsj() {
+        return sdxxsj;
+    }
+
+    public void setSdxxsj(Date sdxxsj) {
+        this.sdxxsj = sdxxsj;
+    }
+
+    public String getSfsdxxbz() {
+        return sfsdxxbz;
+    }
+
+    public void setSfsdxxbz(String sfsdxxbz) {
+        this.sfsdxxbz = sfsdxxbz;
+    }
+
+    public String getSfyxcjh() {
+        return sfyxcjh;
+    }
+
+    public void setSfyxcjh(String sfyxcjh) {
+        this.sfyxcjh = sfyxcjh;
+    }
+
+    public String getSfsdfxhz() {
+        return sfsdfxhz;
+    }
+
+    public void setSfsdfxhz(String sfsdfxhz) {
+        this.sfsdfxhz = sfsdfxhz;
+    }
+
+    public String getDcsfyd() {
+        return dcsfyd;
+    }
+
+    public void setDcsfyd(String dcsfyd) {
+        this.dcsfyd = dcsfyd;
+    }
+
+    public Date getHmtsj() {
+        return hmtsj;
+    }
+
+    public void setHmtsj(Date hmtsj) {
+        this.hmtsj = hmtsj;
+    }
+
+    public Date getDhxgssj() {
+        return dhxgssj;
+    }
+
+    public void setDhxgssj(Date dhxgssj) {
+        this.dhxgssj = dhxgssj;
+    }
+
+    public String getZybz() {
+        return zybz;
+    }
+
+    public void setZybz(String zybz) {
+        this.zybz = zybz;
+    }
+
+    public BigDecimal getCqfje() {
+        return cqfje;
+    }
+
+    public void setCqfje(BigDecimal cqfje) {
+        this.cqfje = cqfje;
+    }
+
+    public Date getCqjsbzrq() {
+        return cqjsbzrq;
+    }
+
+    public void setCqjsbzrq(Date cqjsbzrq) {
+        this.cqjsbzrq = cqjsbzrq;
+    }
+
+    public String getKhjydzt() {
+        return khjydzt;
+    }
+
+    public void setKhjydzt(String khjydzt) {
+        this.khjydzt = khjydzt;
+    }
+
+    public String getYfkdbh() {
+        return yfkdbh;
+    }
+
+    public void setYfkdbh(String yfkdbh) {
+        this.yfkdbh = yfkdbh;
+    }
+
+    public String getSfyyfk() {
+        return sfyyfk;
+    }
+
+    public void setSfyyfk(String sfyyfk) {
+        this.sfyyfk = sfyyfk;
+    }
+
+    public String getState() {
+        return state;
+    }
+
+    public void setState(String state) {
+        this.state = state;
+    }
+
+    public String getJsdwbm() {
+        return jsdwbm;
+    }
+
+    public void setJsdwbm(String jsdwbm) {
+        this.jsdwbm = jsdwbm;
+    }
+
+    public String getJsdwmc() {
+        return jsdwmc;
+    }
+
+    public void setJsdwmc(String jsdwmc) {
+        this.jsdwmc = jsdwmc;
+    }
+
+    public String getJsdwjc() {
+        return jsdwjc;
+    }
+
+    public void setJsdwjc(String jsdwjc) {
+        this.jsdwjc = jsdwjc;
+    }
+
+    public String getJsdwpym() {
+        return jsdwpym;
+    }
+
+    public void setJsdwpym(String jsdwpym) {
+        this.jsdwpym = jsdwpym;
+    }
+
+    public String getJsbm() {
+        return jsbm;
+    }
+
+    public void setJsbm(String jsbm) {
+        this.jsbm = jsbm;
+    }
+
+    public String getJsdwqr() {
+        return jsdwqr;
+    }
+
+    public void setJsdwqr(String jsdwqr) {
+        this.jsdwqr = jsdwqr;
+    }
+
+    public String getSfyjsbm() {
+        return sfyjsbm;
+    }
+
+    public void setSfyjsbm(String sfyjsbm) {
+        this.sfyjsbm = sfyjsbm;
+    }
+
+    public String getYscqfqr() {
+        return yscqfqr;
+    }
+
+    public void setYscqfqr(String yscqfqr) {
+        this.yscqfqr = yscqfqr;
+    }
+
+    public BigDecimal getYscqfje() {
+        return yscqfje;
+    }
+
+    public void setYscqfje(BigDecimal yscqfje) {
+        this.yscqfje = yscqfje;
+    }
+
+    public Date getYscqfqrrq() {
+        return yscqfqrrq;
+    }
+
+    public void setYscqfqrrq(Date yscqfqrrq) {
+        this.yscqfqrrq = yscqfqrrq;
+    }
+
+    public String getWlfyqr() {
+        return wlfyqr;
+    }
+
+    public void setWlfyqr(String wlfyqr) {
+        this.wlfyqr = wlfyqr;
+    }
+
+    public Date getWlfyqrrq() {
+        return wlfyqrrq;
+    }
+
+    public void setWlfyqrrq(Date wlfyqrrq) {
+        this.wlfyqrrq = wlfyqrrq;
+    }
+
+    public BigDecimal getWlfyje() {
+        return wlfyje;
+    }
+
+    public void setWlfyje(BigDecimal wlfyje) {
+        this.wlfyje = wlfyje;
+    }
+
+    public BigDecimal getWlfylclfje() {
+        return wlfylclfje;
+    }
+
+    public void setWlfylclfje(BigDecimal wlfylclfje) {
+        this.wlfylclfje = wlfylclfje;
+    }
+
+    public Date getTjrq() {
+        return tjrq;
+    }
+
+    public void setTjrq(Date tjrq) {
+        this.tjrq = tjrq;
+    }
+
+    public BigDecimal getTsycdzyjsje() {
+        return tsycdzyjsje;
+    }
+
+    public void setTsycdzyjsje(BigDecimal tsycdzyjsje) {
+        this.tsycdzyjsje = tsycdzyjsje;
+    }
+
+    public String getYshdfygjbh() {
+        return yshdfygjbh;
+    }
+
+    public void setYshdfygjbh(String yshdfygjbh) {
+        this.yshdfygjbh = yshdfygjbh;
+    }
+
+    public Date getGjsj() {
+        return gjsj;
+    }
+
+    public void setGjsj(Date gjsj) {
+        this.gjsj = gjsj;
+    }
+
+    public Integer getGjcs() {
+        return gjcs;
+    }
+
+    public void setGjcs(Integer gjcs) {
+        this.gjcs = gjcs;
+    }
+
+    public String getYshdfygjbhCqf() {
+        return yshdfygjbhCqf;
+    }
+
+    public void setYshdfygjbhCqf(String yshdfygjbhCqf) {
+        this.yshdfygjbhCqf = yshdfygjbhCqf;
+    }
+
+    public Date getGjsjCqf() {
+        return gjsjCqf;
+    }
+
+    public void setGjsjCqf(Date gjsjCqf) {
+        this.gjsjCqf = gjsjCqf;
+    }
+
+    public Integer getGjcsCqf() {
+        return gjcsCqf;
+    }
+
+    public void setGjcsCqf(Integer gjcsCqf) {
+        this.gjcsCqf = gjcsCqf;
+    }
+
+    public String getLxr() {
+        return lxr;
+    }
+
+    public void setLxr(String lxr) {
+        this.lxr = lxr;
+    }
+
+    public String getLxdh() {
+        return lxdh;
+    }
+
+    public void setLxdh(String lxdh) {
+        this.lxdh = lxdh;
+    }
+
+    public String getWxsffsCqf() {
+        return wxsffsCqf;
+    }
+
+    public void setWxsffsCqf(String wxsffsCqf) {
+        this.wxsffsCqf = wxsffsCqf;
+    }
+
+    public Date getWllxqdrq() {
+        return wllxqdrq;
+    }
+
+    public void setWllxqdrq(Date wllxqdrq) {
+        this.wllxqdrq = wllxqdrq;
+    }
+
+    public String getJssfwc() {
+        return jssfwc;
+    }
+
+    public void setJssfwc(String jssfwc) {
+        this.jssfwc = jssfwc;
+    }
+
+    public Date getJswcsj() {
+        return jswcsj;
+    }
+
+    public void setJswcsj(Date jswcsj) {
+        this.jswcsj = jswcsj;
+    }
+
+    public String getSflc() {
+        return sflc;
+    }
+
+    public void setSflc(String sflc) {
+        this.sflc = sflc;
+    }
+
+    public String getLxr2() {
+        return lxr2;
+    }
+
+    public void setLxr2(String lxr2) {
+        this.lxr2 = lxr2;
+    }
+
+    public String getLxdh2() {
+        return lxdh2;
+    }
+
+    public void setLxdh2(String lxdh2) {
+        this.lxdh2 = lxdh2;
+    }
+
+    public String getLxr3() {
+        return lxr3;
+    }
+
+    public void setLxr3(String lxr3) {
+        this.lxr3 = lxr3;
+    }
+
+    public String getLxdh3() {
+        return lxdh3;
+    }
+
+    public void setLxdh3(String lxdh3) {
+        this.lxdh3 = lxdh3;
+    }
+
+    public String getLxr4() {
+        return lxr4;
+    }
+
+    public void setLxr4(String lxr4) {
+        this.lxr4 = lxr4;
+    }
+
+    public String getLxdh4() {
+        return lxdh4;
+    }
+
+    public void setLxdh4(String lxdh4) {
+        this.lxdh4 = lxdh4;
+    }
+
+    public Date getKgsj() {
+        return kgsj;
+    }
+
+    public void setKgsj(Date kgsj) {
+        this.kgsj = kgsj;
+    }
+
+    public String getSsys() {
+        return ssys;
+    }
+
+    public void setSsys(String ssys) {
+        this.ssys = ssys;
+    }
+
+    public Date getKghclsj() {
+        return kghclsj;
+    }
+
+    public void setKghclsj(Date kghclsj) {
+        this.kghclsj = kghclsj;
+    }
+
+    public String getWllhzt() {
+        return wllhzt;
+    }
+
+    public void setWllhzt(String wllhzt) {
+        this.wllhzt = wllhzt;
+    }
+
+    public Date getWllhsj() {
+        return wllhsj;
+    }
+
+    public void setWllhsj(Date wllhsj) {
+        this.wllhsj = wllhsj;
+    }
+
+    public String getSqlhpc() {
+        return sqlhpc;
+    }
+
+    public void setSqlhpc(String sqlhpc) {
+        this.sqlhpc = sqlhpc;
+    }
+
+    public String getLhbz() {
+        return lhbz;
+    }
+
+    public void setLhbz(String lhbz) {
+        this.lhbz = lhbz;
+    }
+
+    public Date getSqsj() {
+        return sqsj;
+    }
+
+    public void setSqsj(Date sqsj) {
+        this.sqsj = sqsj;
+    }
+
+    public String getCdbm() {
+        return cdbm;
+    }
+
+    public void setCdbm(String cdbm) {
+        this.cdbm = cdbm;
+    }
+
+    public String getCdmc() {
+        return cdmc;
+    }
+
+    public void setCdmc(String cdmc) {
+        this.cdmc = cdmc;
+    }
+
+    public String getCdjc() {
+        return cdjc;
+    }
+
+    public void setCdjc(String cdjc) {
+        this.cdjc = cdjc;
+    }
+
+    public String getCdpym() {
+        return cdpym;
+    }
+
+    public void setCdpym(String cdpym) {
+        this.cdpym = cdpym;
+    }
+
+    public Date getFxsj() {
+        return fxsj;
+    }
+
+    public void setFxsj(Date fxsj) {
+        this.fxsj = fxsj;
+    }
+
+    public String getHtjhthsjSjd() {
+        return htjhthsjSjd;
+    }
+
+    public void setHtjhthsjSjd(String htjhthsjSjd) {
+        this.htjhthsjSjd = htjhthsjSjd;
+    }
+
+    public Date getHtjhthscsj() {
+        return htjhthscsj;
+    }
+
+    public void setHtjhthscsj(Date htjhthscsj) {
+        this.htjhthscsj = htjhthscsj;
+    }
+
+    public String getCdjsdwbm() {
+        return cdjsdwbm;
+    }
+
+    public void setCdjsdwbm(String cdjsdwbm) {
+        this.cdjsdwbm = cdjsdwbm;
+    }
+
+    public String getCdjsdwmc() {
+        return cdjsdwmc;
+    }
+
+    public void setCdjsdwmc(String cdjsdwmc) {
+        this.cdjsdwmc = cdjsdwmc;
+    }
+
+    public String getCdjsdwjc() {
+        return cdjsdwjc;
+    }
+
+    public void setCdjsdwjc(String cdjsdwjc) {
+        this.cdjsdwjc = cdjsdwjc;
+    }
+
+    public String getCdjsdwpym() {
+        return cdjsdwpym;
+    }
+
+    public void setCdjsdwpym(String cdjsdwpym) {
+        this.cdjsdwpym = cdjsdwpym;
+    }
+
+    public String getContractcontainerid() {
+        return contractcontainerid;
+    }
+
+    public void setContractcontainerid(String contractcontainerid) {
+        this.contractcontainerid = contractcontainerid;
+    }
+
+    public Date getJgqsj() {
+        return jgqsj;
+    }
+
+    public void setJgqsj(Date jgqsj) {
+        this.jgqsj = jgqsj;
+    }
+
+    public Date getCjydsj() {
+        return cjydsj;
+    }
+
+    public void setCjydsj(Date cjydsj) {
+        this.cjydsj = cjydsj;
+    }
+
+    public String getDj() {
+        return dj;
+    }
+
+    public void setDj(String dj) {
+        this.dj = dj;
+    }
+
+    public Date getCgqsjLrsj() {
+        return cgqsjLrsj;
+    }
+
+    public void setCgqsjLrsj(Date cgqsjLrsj) {
+        this.cgqsjLrsj = cgqsjLrsj;
+    }
+
+    public Date getDjydsjLrsj() {
+        return djydsjLrsj;
+    }
+
+    public void setDjydsjLrsj(Date djydsjLrsj) {
+        this.djydsjLrsj = djydsjLrsj;
+    }
+
+    public Date getTgjysjLrsj() {
+        return tgjysjLrsj;
+    }
+
+    public void setTgjysjLrsj(Date tgjysjLrsj) {
+        this.tgjysjLrsj = tgjysjLrsj;
+    }
+
+    public Date getKgsjLrsj() {
+        return kgsjLrsj;
+    }
+
+    public void setKgsjLrsj(Date kgsjLrsj) {
+        this.kgsjLrsj = kgsjLrsj;
+    }
+
+    public String getCgqsjCzry() {
+        return cgqsjCzry;
+    }
+
+    public void setCgqsjCzry(String cgqsjCzry) {
+        this.cgqsjCzry = cgqsjCzry;
+    }
+
+    public String getDjydsjCzry() {
+        return djydsjCzry;
+    }
+
+    public void setDjydsjCzry(String djydsjCzry) {
+        this.djydsjCzry = djydsjCzry;
+    }
+
+    public String getTgjysjCzry() {
+        return tgjysjCzry;
+    }
+
+    public void setTgjysjCzry(String tgjysjCzry) {
+        this.tgjysjCzry = tgjysjCzry;
+    }
+
+    public String getKgsjCzry() {
+        return kgsjCzry;
+    }
+
+    public void setKgsjCzry(String kgsjCzry) {
+        this.kgsjCzry = kgsjCzry;
+    }
+
+    public Date getKghclsjLrsj() {
+        return kghclsjLrsj;
+    }
+
+    public void setKghclsjLrsj(Date kghclsjLrsj) {
+        this.kghclsjLrsj = kghclsjLrsj;
+    }
+
+    public String getKghclsjCzry() {
+        return kghclsjCzry;
+    }
+
+    public void setKghclsjCzry(String kghclsjCzry) {
+        this.kghclsjCzry = kghclsjCzry;
+    }
+
+    public String getDzdd() {
+        return dzdd;
+    }
+
+    public void setDzdd(String dzdd) {
+        this.dzdd = dzdd;
+    }
+
+    public Date getZqCgqsj() {
+        return zqCgqsj;
+    }
+
+    public void setZqCgqsj(Date zqCgqsj) {
+        this.zqCgqsj = zqCgqsj;
+    }
+
+    public Date getCjydsjLrsj() {
+        return cjydsjLrsj;
+    }
+
+    public void setCjydsjLrsj(Date cjydsjLrsj) {
+        this.cjydsjLrsj = cjydsjLrsj;
+    }
+
+    public String getCjydsjCzry() {
+        return cjydsjCzry;
+    }
+
+    public void setCjydsjCzry(String cjydsjCzry) {
+        this.cjydsjCzry = cjydsjCzry;
+    }
+
+    public String getJdrjc() {
+        return jdrjc;
+    }
+
+    public void setJdrjc(String jdrjc) {
+        this.jdrjc = jdrjc;
+    }
+
+    public String getJdrmc() {
+        return jdrmc;
+    }
+
+    public void setJdrmc(String jdrmc) {
+        this.jdrmc = jdrmc;
+    }
+
+    public String getJdrbm() {
+        return jdrbm;
+    }
+
+    public void setJdrbm(String jdrbm) {
+        this.jdrbm = jdrbm;
+    }
+
+    public String getJdrpym() {
+        return jdrpym;
+    }
+
+    public void setJdrpym(String jdrpym) {
+        this.jdrpym = jdrpym;
+    }
+
+    public Date getHtjhthsjLrsj() {
+        return htjhthsjLrsj;
+    }
+
+    public void setHtjhthsjLrsj(Date htjhthsjLrsj) {
+        this.htjhthsjLrsj = htjhthsjLrsj;
+    }
+
+    public String getLrcxQrbz() {
+        return lrcxQrbz;
+    }
+
+    public void setLrcxQrbz(String lrcxQrbz) {
+        this.lrcxQrbz = lrcxQrbz;
+    }
+
+    public Date getLrcxQrrq() {
+        return lrcxQrrq;
+    }
+
+    public void setLrcxQrrq(Date lrcxQrrq) {
+        this.lrcxQrrq = lrcxQrrq;
+    }
+
+    public String getLrcxBz() {
+        return lrcxBz;
+    }
+
+    public void setLrcxBz(String lrcxBz) {
+        this.lrcxBz = lrcxBz;
+    }
+
+    public String getJzxlrcxBz() {
+        return jzxlrcxBz;
+    }
+
+    public void setJzxlrcxBz(String jzxlrcxBz) {
+        this.jzxlrcxBz = jzxlrcxBz;
+    }
+
+    public Date getXcsj() {
+        return xcsj;
+    }
+
+    public void setXcsj(Date xcsj) {
+        this.xcsj = xcsj;
+    }
+
+    public String getJzxlrcxQrbz() {
+        return jzxlrcxQrbz;
+    }
+
+    public void setJzxlrcxQrbz(String jzxlrcxQrbz) {
+        this.jzxlrcxQrbz = jzxlrcxQrbz;
+    }
+
+    public Date getJzxlrcxQrrq() {
+        return jzxlrcxQrrq;
+    }
+
+    public void setJzxlrcxQrrq(Date jzxlrcxQrrq) {
+        this.jzxlrcxQrrq = jzxlrcxQrrq;
+    }
+
+    public String getClsscd() {
+        return clsscd;
+    }
+
+    public void setClsscd(String clsscd) {
+        this.clsscd = clsscd;
+    }
+
+    public String getLkBz() {
+        return lkBz;
+    }
+
+    public void setLkBz(String lkBz) {
+        this.lkBz = lkBz;
+    }
+
+    public Date getKhzdthsj() {
+        return khzdthsj;
+    }
+
+    public void setKhzdthsj(Date khzdthsj) {
+        this.khzdthsj = khzdthsj;
+    }
+
+    public Date getKhzdthsjLrsj() {
+        return khzdthsjLrsj;
+    }
+
+    public void setKhzdthsjLrsj(Date khzdthsjLrsj) {
+        this.khzdthsjLrsj = khzdthsjLrsj;
+    }
+
+    public String getKhzdthsjCzry() {
+        return khzdthsjCzry;
+    }
+
+    public void setKhzdthsjCzry(String khzdthsjCzry) {
+        this.khzdthsjCzry = khzdthsjCzry;
+    }
+
+    public Date getYqsdsj() {
+        return yqsdsj;
+    }
+
+    public void setYqsdsj(Date yqsdsj) {
+        this.yqsdsj = yqsdsj;
+    }
+
+    public String getShr() {
+        return shr;
+    }
+
+    public void setShr(String shr) {
+        this.shr = shr;
+    }
+
+    public String getShrdh() {
+        return shrdh;
+    }
+
+    public void setShrdh(String shrdh) {
+        this.shrdh = shrdh;
+    }
+
+    public Date getGgsj() {
+        return ggsj;
+    }
+
+    public void setGgsj(Date ggsj) {
+        this.ggsj = ggsj;
+    }
+
+    public String getSpxh() {
+        return spxh;
+    }
+
+    public void setSpxh(String spxh) {
+        this.spxh = spxh;
+    }
+
+    public String getSggqbm() {
+        return sggqbm;
+    }
+
+    public void setSggqbm(String sggqbm) {
+        this.sggqbm = sggqbm;
+    }
+
+    public String getSggqmc() {
+        return sggqmc;
+    }
+
+    public void setSggqmc(String sggqmc) {
+        this.sggqmc = sggqmc;
+    }
+
+    public String getSggqjc() {
+        return sggqjc;
+    }
+
+    public void setSggqjc(String sggqjc) {
+        this.sggqjc = sggqjc;
+    }
+
+    public String getSggqpym() {
+        return sggqpym;
+    }
+
+    public void setSggqpym(String sggqpym) {
+        this.sggqpym = sggqpym;
+    }
+
+    public String getCqfcxBz() {
+        return cqfcxBz;
+    }
+
+    public void setCqfcxBz(String cqfcxBz) {
+        this.cqfcxBz = cqfcxBz;
+    }
+
+    public String getSbjjd() {
+        return sbjjd;
+    }
+
+    public void setSbjjd(String sbjjd) {
+        this.sbjjd = sbjjd;
+    }
+
+    public String getSbjjdLrry() {
+        return sbjjdLrry;
+    }
+
+    public void setSbjjdLrry(String sbjjdLrry) {
+        this.sbjjdLrry = sbjjdLrry;
+    }
+
+    public Date getSbjjdLrsj() {
+        return sbjjdLrsj;
+    }
+
+    public void setSbjjdLrsj(Date sbjjdLrsj) {
+        this.sbjjdLrsj = sbjjdLrsj;
+    }
+
+    public String getHzSc() {
+        return hzSc;
+    }
+
+    public void setHzSc(String hzSc) {
+        this.hzSc = hzSc;
+    }
+
+    public String getPdy() {
+        return pdy;
+    }
+
+    public void setPdy(String pdy) {
+        this.pdy = pdy;
+    }
+
+    public String getGjbeizhu() {
+        return gjbeizhu;
+    }
+
+    public void setGjbeizhu(String gjbeizhu) {
+        this.gjbeizhu = gjbeizhu;
+    }
+
+    public String getWlbgz() {
+        return wlbgz;
+    }
+
+    public void setWlbgz(String wlbgz) {
+        this.wlbgz = wlbgz;
+    }
+
+    public String getWlbgzLrry() {
+        return wlbgzLrry;
+    }
+
+    public void setWlbgzLrry(String wlbgzLrry) {
+        this.wlbgzLrry = wlbgzLrry;
+    }
+
+    public Date getWlbgzLrsj() {
+        return wlbgzLrsj;
+    }
+
+    public void setWlbgzLrsj(Date wlbgzLrsj) {
+        this.wlbgzLrsj = wlbgzLrsj;
+    }
+
+    public String getLldh() {
+        return lldh;
+    }
+
+    public void setLldh(String lldh) {
+        this.lldh = lldh;
+    }
+
+    public String getCcrn() {
+        return ccrn;
+    }
+
+    public void setCcrn(String ccrn) {
+        this.ccrn = ccrn;
+    }
+
+    public Date getTgrq() {
+        return tgrq;
+    }
+
+    public void setTgrq(Date tgrq) {
+        this.tgrq = tgrq;
+    }
+
+    public Date getQgrq() {
+        return qgrq;
+    }
+
+    public void setQgrq(Date qgrq) {
+        this.qgrq = qgrq;
+    }
+
+    public String getSzjb() {
+        return szjb;
+    }
+
+    public void setSzjb(String szjb) {
+        this.szjb = szjb;
+    }
+
+    public Date getJhrq1() {
+        return jhrq1;
+    }
+
+    public void setJhrq1(Date jhrq1) {
+        this.jhrq1 = jhrq1;
+    }
+
+    public Date getJgwq1() {
+        return jgwq1;
+    }
+
+    public void setJgwq1(Date jgwq1) {
+        this.jgwq1 = jgwq1;
+    }
+
+    public String getWlgzState() {
+        return wlgzState;
+    }
+
+    public void setWlgzState(String wlgzState) {
+        this.wlgzState = wlgzState;
+    }
+
+    public String getWlgzJjyy() {
+        return wlgzJjyy;
+    }
+
+    public void setWlgzJjyy(String wlgzJjyy) {
+        this.wlgzJjyy = wlgzJjyy;
+    }
+
+    public String getSjzqCcfs() {
+        return sjzqCcfs;
+    }
+
+    public void setSjzqCcfs(String sjzqCcfs) {
+        this.sjzqCcfs = sjzqCcfs;
+    }
+
+    public String getSfzlc() {
+        return sfzlc;
+    }
+
+    public void setSfzlc(String sfzlc) {
+        this.sfzlc = sfzlc;
+    }
+
+    public String getYcbeizhu() {
+        return ycbeizhu;
+    }
+
+    public void setYcbeizhu(String ycbeizhu) {
+        this.ycbeizhu = ycbeizhu;
+    }
+
+    public String getZzhwsqh() {
+        return zzhwsqh;
+    }
+
+    public void setZzhwsqh(String zzhwsqh) {
+        this.zzhwsqh = zzhwsqh;
+    }
+
+    public String getZzqrsh() {
+        return zzqrsh;
+    }
+
+    public void setZzqrsh(String zzqrsh) {
+        this.zzqrsh = zzqrsh;
+    }
+
+    public Date getXfdysj() {
+        return xfdysj;
+    }
+
+    public void setXfdysj(Date xfdysj) {
+        this.xfdysj = xfdysj;
+    }
+
+    public Date getZzsdysj() {
+        return zzsdysj;
+    }
+
+    public void setZzsdysj(Date zzsdysj) {
+        this.zzsdysj = zzsdysj;
+    }
+
+    public Date getLldhLrsj() {
+        return lldhLrsj;
+    }
+
+    public void setLldhLrsj(Date lldhLrsj) {
+        this.lldhLrsj = lldhLrsj;
+    }
+
+    public Date getSjzqCgqsj() {
+        return sjzqCgqsj;
+    }
+
+    public void setSjzqCgqsj(Date sjzqCgqsj) {
+        this.sjzqCgqsj = sjzqCgqsj;
+    }
+
+    public String getHtjhthsjXgyy() {
+        return htjhthsjXgyy;
+    }
+
+    public void setHtjhthsjXgyy(String htjhthsjXgyy) {
+        this.htjhthsjXgyy = htjhthsjXgyy;
+    }
+
+    public String getKhgtjlBeizhu() {
+        return khgtjlBeizhu;
+    }
+
+    public void setKhgtjlBeizhu(String khgtjlBeizhu) {
+        this.khgtjlBeizhu = khgtjlBeizhu;
+    }
+
+    public String getJsdwqrRy() {
+        return jsdwqrRy;
+    }
+
+    public void setJsdwqrRy(String jsdwqrRy) {
+        this.jsdwqrRy = jsdwqrRy;
+    }
+
+    public String getKhmc() {
+        return khmc;
+    }
+
+    public void setKhmc(String khmc) {
+        this.khmc = khmc;
+    }
+
+    public String getKhjc() {
+        return khjc;
+    }
+
+    public void setKhjc(String khjc) {
+        this.khjc = khjc;
+    }
+
+    public String getKhpym() {
+        return khpym;
+    }
+
+    public void setKhpym(String khpym) {
+        this.khpym = khpym;
+    }
+
+    public String getKhbm() {
+        return khbm;
+    }
+
+    public void setKhbm(String khbm) {
+        this.khbm = khbm;
+    }
+
+    public String getLrqr() {
+        return lrqr;
+    }
+
+    public void setLrqr(String lrqr) {
+        this.lrqr = lrqr;
+    }
+
+    public String getQrry() {
+        return qrry;
+    }
+
+    public void setQrry(String qrry) {
+        this.qrry = qrry;
+    }
+
+    public String getYcyyrl() {
+        return ycyyrl;
+    }
+
+    public void setYcyyrl(String ycyyrl) {
+        this.ycyyrl = ycyyrl;
+    }
+
+    public Date getZdjkKssj() {
+        return zdjkKssj;
+    }
+
+    public void setZdjkKssj(Date zdjkKssj) {
+        this.zdjkKssj = zdjkKssj;
+    }
+
+    public Date getZdjkJssj() {
+        return zdjkJssj;
+    }
+
+    public void setZdjkJssj(Date zdjkJssj) {
+        this.zdjkJssj = zdjkJssj;
+    }
+
+    public String getLc() {
+        return lc;
+    }
+
+    public void setLc(String lc) {
+        this.lc = lc;
+    }
+
+    public Date getLcStarttime() {
+        return lcStarttime;
+    }
+
+    public void setLcStarttime(Date lcStarttime) {
+        this.lcStarttime = lcStarttime;
+    }
+
+    public Date getLcEndtime() {
+        return lcEndtime;
+    }
+
+    public void setLcEndtime(Date lcEndtime) {
+        this.lcEndtime = lcEndtime;
+    }
+
+    public String getKgyy() {
+        return kgyy;
+    }
+
+    public void setKgyy(String kgyy) {
+        this.kgyy = kgyy;
+    }
+
+    public String getBeizhuRy() {
+        return beizhuRy;
+    }
+
+    public void setBeizhuRy(String beizhuRy) {
+        this.beizhuRy = beizhuRy;
+    }
+
+    public Date getRlksj() {
+        return rlksj;
+    }
+
+    public void setRlksj(Date rlksj) {
+        this.rlksj = rlksj;
+    }
+
+    public String getGzryqr() {
+        return gzryqr;
+    }
+
+    public void setGzryqr(String gzryqr) {
+        this.gzryqr = gzryqr;
+    }
+
+    public String getKhzbth() {
+        return khzbth;
+    }
+
+    public void setKhzbth(String khzbth) {
+        this.khzbth = khzbth;
+    }
+
+    public Date getKhzbthQrsj() {
+        return khzbthQrsj;
+    }
+
+    public void setKhzbthQrsj(Date khzbthQrsj) {
+        this.khzbthQrsj = khzbthQrsj;
+    }
+
+    public String getSfycb() {
+        return sfycb;
+    }
+
+    public void setSfycb(String sfycb) {
+        this.sfycb = sfycb;
+    }
+
+    public String getSfyys() {
+        return sfyys;
+    }
+
+    public void setSfyys(String sfyys) {
+        this.sfyys = sfyys;
+    }
+
+    public String getGzryqrry() {
+        return gzryqrry;
+    }
+
+    public void setGzryqrry(String gzryqrry) {
+        this.gzryqrry = gzryqrry;
+    }
+
+    public Date getCgqsjXg() {
+        return cgqsjXg;
+    }
+
+    public void setCgqsjXg(Date cgqsjXg) {
+        this.cgqsjXg = cgqsjXg;
+    }
+
+    public Date getXcsjXg() {
+        return xcsjXg;
+    }
+
+    public void setXcsjXg(Date xcsjXg) {
+        this.xcsjXg = xcsjXg;
+    }
+
+    public Date getCgqsjSz() {
+        return cgqsjSz;
+    }
+
+    public void setCgqsjSz(Date cgqsjSz) {
+        this.cgqsjSz = cgqsjSz;
+    }
+
+    public Date getXcsjSz() {
+        return xcsjSz;
+    }
+
+    public void setXcsjSz(Date xcsjSz) {
+        this.xcsjSz = xcsjSz;
+    }
+
+    public String getGzryhxqr() {
+        return gzryhxqr;
+    }
+
+    public void setGzryhxqr(String gzryhxqr) {
+        this.gzryhxqr = gzryhxqr;
+    }
+
+    public String getGzryhxqrry() {
+        return gzryhxqrry;
+    }
+
+    public void setGzryhxqrry(String gzryhxqrry) {
+        this.gzryhxqrry = gzryhxqrry;
+    }
+
+    public String getWlbz() {
+        return wlbz;
+    }
+
+    public void setWlbz(String wlbz) {
+        this.wlbz = wlbz;
+    }
+
+    public String getZyxxImportUser() {
+        return zyxxImportUser;
+    }
+
+    public void setZyxxImportUser(String zyxxImportUser) {
+        this.zyxxImportUser = zyxxImportUser;
+    }
+
+    public String getCwbz() {
+        return cwbz;
+    }
+
+    public void setCwbz(String cwbz) {
+        this.cwbz = cwbz;
+    }
+
+    public Double getAnJeGb() {
+        return anJeGb;
+    }
+
+    public void setAnJeGb(Double anJeGb) {
+        this.anJeGb = anJeGb;
+    }
+
+    public Double getAnJeMj() {
+        return anJeMj;
+    }
+
+    public void setAnJeMj(Double anJeMj) {
+        this.anJeMj = anJeMj;
+    }
+
+    public Double getMjhl() {
+        return mjhl;
+    }
+
+    public void setMjhl(Double mjhl) {
+        this.mjhl = mjhl;
+    }
+
+    public Date getWlqrsj() {
+        return wlqrsj;
+    }
+
+    public void setWlqrsj(Date wlqrsj) {
+        this.wlqrsj = wlqrsj;
+    }
+
+    public BigDecimal getFylr() {
+        return fylr;
+    }
+
+    public void setFylr(BigDecimal fylr) {
+        this.fylr = fylr;
+    }
+
+    public String getHgfs() {
+        return hgfs;
+    }
+
+    public void setHgfs(String hgfs) {
+        this.hgfs = hgfs;
+    }
+
+    public String getSjzqJcfs() {
+        return sjzqJcfs;
+    }
+
+    public void setSjzqJcfs(String sjzqJcfs) {
+        this.sjzqJcfs = sjzqJcfs;
+    }
+
+    public String getHgfsZhm() {
+        return hgfsZhm;
+    }
+
+    public void setHgfsZhm(String hgfsZhm) {
+        this.hgfsZhm = hgfsZhm;
+    }
+
+    public Date getHgfsXgsj() {
+        return hgfsXgsj;
+    }
+
+    public void setHgfsXgsj(Date hgfsXgsj) {
+        this.hgfsXgsj = hgfsXgsj;
+    }
+
+    public String getCgfxqfyGd() {
+        return cgfxqfyGd;
+    }
+
+    public void setCgfxqfyGd(String cgfxqfyGd) {
+        this.cgfxqfyGd = cgfxqfyGd;
+    }
+
+    public String getCgfxhfyWl() {
+        return cgfxhfyWl;
+    }
+
+    public void setCgfxhfyWl(String cgfxhfyWl) {
+        this.cgfxhfyWl = cgfxhfyWl;
+    }
+
+    public String getJssqr() {
+        return jssqr;
+    }
+
+    public void setJssqr(String jssqr) {
+        this.jssqr = jssqr;
+    }
+
+    public String getJsyy() {
+        return jsyy;
+    }
+
+    public void setJsyy(String jsyy) {
+        this.jsyy = jsyy;
+    }
+
+    public String getJsStart() {
+        return jsStart;
+    }
+
+    public void setJsStart(String jsStart) {
+        this.jsStart = jsStart;
+    }
+
+    public Date getQgrqLrsj() {
+        return qgrqLrsj;
+    }
+
+    public void setQgrqLrsj(Date qgrqLrsj) {
+        this.qgrqLrsj = qgrqLrsj;
+    }
+
+    public String getQgrqLrry() {
+        return qgrqLrry;
+    }
+
+    public void setQgrqLrry(String qgrqLrry) {
+        this.qgrqLrry = qgrqLrry;
+    }
+
+    public String getSfypz() {
+        return sfypz;
+    }
+
+    public void setSfypz(String sfypz) {
+        this.sfypz = sfypz;
+    }
+
+    public String getXwxfdjsBeizhu() {
+        return xwxfdjsBeizhu;
+    }
+
+    public void setXwxfdjsBeizhu(String xwxfdjsBeizhu) {
+        this.xwxfdjsBeizhu = xwxfdjsBeizhu;
+    }
+
+    public String getScfyBeizhu() {
+        return scfyBeizhu;
+    }
+
+    public void setScfyBeizhu(String scfyBeizhu) {
+        this.scfyBeizhu = scfyBeizhu;
+    }
+
+    public String getXzz() {
+        return xzz;
+    }
+
+    public void setXzz(String xzz) {
+        this.xzz = xzz;
+    }
+
+    public String getSfzg() {
+        return sfzg;
+    }
+
+    public void setSfzg(String sfzg) {
+        this.sfzg = sfzg;
+    }
+
+    public Date getZgxksj() {
+        return zgxksj;
+    }
+
+    public void setZgxksj(Date zgxksj) {
+        this.zgxksj = zgxksj;
+    }
+
+    public Date getXklrsj() {
+        return xklrsj;
+    }
+
+    public void setXklrsj(Date xklrsj) {
+        this.xklrsj = xklrsj;
+    }
+
+    public String getZjbjh() {
+        return zjbjh;
+    }
+
+    public void setZjbjh(String zjbjh) {
+        this.zjbjh = zjbjh;
+    }
+
+    public Date getGzjysbsj() {
+        return gzjysbsj;
+    }
+
+    public void setGzjysbsj(Date gzjysbsj) {
+        this.gzjysbsj = gzjysbsj;
+    }
+
+    public Date getJqsbwcsj() {
+        return jqsbwcsj;
+    }
+
+    public void setJqsbwcsj(Date jqsbwcsj) {
+        this.jqsbwcsj = jqsbwcsj;
+    }
+
+    public Date getGrabOutTime() {
+        return grabOutTime;
+    }
+
+    public void setGrabOutTime(Date grabOutTime) {
+        this.grabOutTime = grabOutTime;
+    }
+
+    public Date getGrabDownTime() {
+        return grabDownTime;
+    }
+
+    public void setGrabDownTime(Date grabDownTime) {
+        this.grabDownTime = grabDownTime;
+    }
+
+    public BigDecimal getWlqryf() {
+        return wlqryf;
+    }
+
+    public void setWlqryf(BigDecimal wlqryf) {
+        this.wlqryf = wlqryf;
+    }
+
+    public Date getWlzyjthsj() {
+        return wlzyjthsj;
+    }
+
+    public void setWlzyjthsj(Date wlzyjthsj) {
+        this.wlzyjthsj = wlzyjthsj;
+    }
+
+    public String getWlzyjthpc() {
+        return wlzyjthpc;
+    }
+
+    public void setWlzyjthpc(String wlzyjthpc) {
+        this.wlzyjthpc = wlzyjthpc;
+    }
+
+    public Date getYjxcsj() {
+        return yjxcsj;
+    }
+
+    public void setYjxcsj(Date yjxcsj) {
+        this.yjxcsj = yjxcsj;
+    }
+
+    public String getQcdl() {
+        return qcdl;
+    }
+
+    public void setQcdl(String qcdl) {
+        this.qcdl = qcdl;
+    }
+
+    public Date getDcthkhyqsdsj() {
+        return dcthkhyqsdsj;
+    }
+
+    public void setDcthkhyqsdsj(Date dcthkhyqsdsj) {
+        this.dcthkhyqsdsj = dcthkhyqsdsj;
+    }
+
+    public Date getDcthwlzfksdsj() {
+        return dcthwlzfksdsj;
+    }
+
+    public void setDcthwlzfksdsj(Date dcthwlzfksdsj) {
+        this.dcthwlzfksdsj = dcthwlzfksdsj;
+    }
+
+    public String getJjnsc() {
+        return jjnsc;
+    }
+
+    public void setJjnsc(String jjnsc) {
+        this.jjnsc = jjnsc;
+    }
+
+    public String getYdsdcl() {
+        return ydsdcl;
+    }
+
+    public void setYdsdcl(String ydsdcl) {
+        this.ydsdcl = ydsdcl;
+    }
+
+    public Date getDcsfydCzsj() {
+        return dcsfydCzsj;
+    }
+
+    public void setDcsfydCzsj(Date dcsfydCzsj) {
+        this.dcsfydCzsj = dcsfydCzsj;
+    }
+
+    public String getBgid() {
+        return bgid;
+    }
+
+    public void setBgid(String bgid) {
+        this.bgid = bgid;
+    }
+
+    public Date getYjtgrq() {
+        return yjtgrq;
+    }
+
+    public void setYjtgrq(Date yjtgrq) {
+        this.yjtgrq = yjtgrq;
+    }
+
+    public String getYjtgrqImportUser() {
+        return yjtgrqImportUser;
+    }
+
+    public void setYjtgrqImportUser(String yjtgrqImportUser) {
+        this.yjtgrqImportUser = yjtgrqImportUser;
+    }
+
+    public String getJhyap() {
+        return jhyap;
+    }
+
+    public void setJhyap(String jhyap) {
+        this.jhyap = jhyap;
+    }
+
+    public Date getJhyapCzsj() {
+        return jhyapCzsj;
+    }
+
+    public void setJhyapCzsj(Date jhyapCzsj) {
+        this.jhyapCzsj = jhyapCzsj;
+    }
+
+    public String getLxrImportUser() {
+        return lxrImportUser;
+    }
+
+    public void setLxrImportUser(String lxrImportUser) {
+        this.lxrImportUser = lxrImportUser;
+    }
+
+    public String getQcdlImportUser() {
+        return qcdlImportUser;
+    }
+
+    public void setQcdlImportUser(String qcdlImportUser) {
+        this.qcdlImportUser = qcdlImportUser;
+    }
+
+    public String getJjnscImportUser() {
+        return jjnscImportUser;
+    }
+
+    public void setJjnscImportUser(String jjnscImportUser) {
+        this.jjnscImportUser = jjnscImportUser;
+    }
+
+    public String getSfzgImportUser() {
+        return sfzgImportUser;
+    }
+
+    public void setSfzgImportUser(String sfzgImportUser) {
+        this.sfzgImportUser = sfzgImportUser;
+    }
+
+    public String getKhzbthImportUser() {
+        return khzbthImportUser;
+    }
+
+    public void setKhzbthImportUser(String khzbthImportUser) {
+        this.khzbthImportUser = khzbthImportUser;
+    }
+
+    public String getCgfxqfyGdImportUser() {
+        return cgfxqfyGdImportUser;
+    }
+
+    public void setCgfxqfyGdImportUser(String cgfxqfyGdImportUser) {
+        this.cgfxqfyGdImportUser = cgfxqfyGdImportUser;
+    }
+
+    public Date getJjnscsj() {
+        return jjnscsj;
+    }
+
+    public void setJjnscsj(Date jjnscsj) {
+        this.jjnscsj = jjnscsj;
+    }
+
+    public Date getGzryqrLrsj() {
+        return gzryqrLrsj;
+    }
+
+    public void setGzryqrLrsj(Date gzryqrLrsj) {
+        this.gzryqrLrsj = gzryqrLrsj;
+    }
+
+    public Date getXqrqksjLrsj() {
+        return xqrqksjLrsj;
+    }
+
+    public void setXqrqksjLrsj(Date xqrqksjLrsj) {
+        this.xqrqksjLrsj = xqrqksjLrsj;
+    }
+
+    public String getQcbz() {
+        return qcbz;
+    }
+
+    public void setQcbz(String qcbz) {
+        this.qcbz = qcbz;
+    }
+
+    public String getTch() {
+        return tch;
+    }
+
+    public void setTch(String tch) {
+        this.tch = tch;
+    }
+
+    public String getFxzt() {
+        return fxzt;
+    }
+
+    public void setFxzt(String fxzt) {
+        this.fxzt = fxzt;
+    }
+
+    public String getDqwz() {
+        return dqwz;
+    }
+
+    public void setDqwz(String dqwz) {
+        this.dqwz = dqwz;
+    }
+
+    public String getSfapth() {
+        return sfapth;
+    }
+
+    public void setSfapth(String sfapth) {
+        this.sfapth = sfapth;
+    }
+
+    public Date getSfapthczsj() {
+        return sfapthczsj;
+    }
+
+    public void setSfapthczsj(Date sfapthczsj) {
+        this.sfapthczsj = sfapthczsj;
+    }
+
+    public Date getYqthsj() {
+        return yqthsj;
+    }
+
+    public void setYqthsj(Date yqthsj) {
+        this.yqthsj = yqthsj;
+    }
+
+    public String getApthBz() {
+        return apthBz;
+    }
+
+    public void setApthBz(String apthBz) {
+        this.apthBz = apthBz;
+    }
+
+    public String getXc2ccyDy() {
+        return xc2ccyDy;
+    }
+
+    public void setXc2ccyDy(String xc2ccyDy) {
+        this.xc2ccyDy = xc2ccyDy;
+    }
+
+    public String getCphDyc() {
+        return cphDyc;
+    }
+
+    public void setCphDyc(String cphDyc) {
+        this.cphDyc = cphDyc;
+    }
+
+    public Date getKhxqtcsj() {
+        return khxqtcsj;
+    }
+
+    public void setKhxqtcsj(Date khxqtcsj) {
+        this.khxqtcsj = khxqtcsj;
+    }
+
+    public Date getJhxgwlsj() {
+        return jhxgwlsj;
+    }
+
+    public void setJhxgwlsj(Date jhxgwlsj) {
+        this.jhxgwlsj = jhxgwlsj;
+    }
+
+    public String getJhdbjdl() {
+        return jhdbjdl;
+    }
+
+    public void setJhdbjdl(String jhdbjdl) {
+        this.jhdbjdl = jhdbjdl;
+    }
+
+    public Date getJhdbjdlLlsj() {
+        return jhdbjdlLlsj;
+    }
+
+    public void setJhdbjdlLlsj(Date jhdbjdlLlsj) {
+        this.jhdbjdlLlsj = jhdbjdlLlsj;
+    }
+
+    public String getWxpdy() {
+        return wxpdy;
+    }
+
+    public void setWxpdy(String wxpdy) {
+        this.wxpdy = wxpdy;
+    }
+
+    public Date getWlzyjthsjLlsj() {
+        return wlzyjthsjLlsj;
+    }
+
+    public void setWlzyjthsjLlsj(Date wlzyjthsjLlsj) {
+        this.wlzyjthsjLlsj = wlzyjthsjLlsj;
+    }
+
+    public Date getYjyqsdsj() {
+        return yjyqsdsj;
+    }
+
+    public void setYjyqsdsj(Date yjyqsdsj) {
+        this.yjyqsdsj = yjyqsdsj;
+    }
+
+    public String getQrqk() {
+        return qrqk;
+    }
+
+    public void setQrqk(String qrqk) {
+        this.qrqk = qrqk;
+    }
+
+    public String getEcph() {
+        return ecph;
+    }
+
+    public void setEcph(String ecph) {
+        this.ecph = ecph;
+    }
+
+    public Date getWlzyjthpcLlsj() {
+        return wlzyjthpcLlsj;
+    }
+
+    public void setWlzyjthpcLlsj(Date wlzyjthpcLlsj) {
+        this.wlzyjthpcLlsj = wlzyjthpcLlsj;
+    }
+
+    public Date getYjxcsjLlsj() {
+        return yjxcsjLlsj;
+    }
+
+    public void setYjxcsjLlsj(Date yjxcsjLlsj) {
+        this.yjxcsjLlsj = yjxcsjLlsj;
+    }
+
+    public Date getYjtgrqLlsj() {
+        return yjtgrqLlsj;
+    }
+
+    public void setYjtgrqLlsj(Date yjtgrqLlsj) {
+        this.yjtgrqLlsj = yjtgrqLlsj;
+    }
+
+    public Date getKhxqtcsjLlsj() {
+        return khxqtcsjLlsj;
+    }
+
+    public void setKhxqtcsjLlsj(Date khxqtcsjLlsj) {
+        this.khxqtcsjLlsj = khxqtcsjLlsj;
+    }
+
+    public Date getMzsj() {
+        return mzsj;
+    }
+
+    public void setMzsj(Date mzsj) {
+        this.mzsj = mzsj;
+    }
+
+    public String getJjzt() {
+        return jjzt;
+    }
+
+    public void setJjzt(String jjzt) {
+        this.jjzt = jjzt;
+    }
+
+    public Integer getSfxs() {
+        return sfxs;
+    }
+
+    public void setSfxs(Integer sfxs) {
+        this.sfxs = sfxs;
+    }
+
+    public String getXsbglj() {
+        return xsbglj;
+    }
+
+    public void setXsbglj(String xsbglj) {
+        this.xsbglj = xsbglj;
+    }
+
+    public String getXsgsmc() {
+        return xsgsmc;
+    }
+
+    public void setXsgsmc(String xsgsmc) {
+        this.xsgsmc = xsgsmc;
+    }
+
+    public String getXslxr() {
+        return xslxr;
+    }
+
+    public void setXslxr(String xslxr) {
+        this.xslxr = xslxr;
+    }
+
+    public String getXclxr() {
+        return xclxr;
+    }
+
+    public void setXclxr(String xclxr) {
+        this.xclxr = xclxr;
+    }
+
+    public String getCzxxsftg() {
+        return czxxsftg;
+    }
+
+    public void setCzxxsftg(String czxxsftg) {
+        this.czxxsftg = czxxsftg;
+    }
+
+    public String getXslx() {
+        return xslx;
+    }
+
+    public void setXslx(String xslx) {
+        this.xslx = xslx;
+    }
+
+    public String getHsjcbz() {
+        return hsjcbz;
+    }
+
+    public void setHsjcbz(String hsjcbz) {
+        this.hsjcbz = hsjcbz;
+    }
+
+    public String getFybz() {
+        return fybz;
+    }
+
+    public void setFybz(String fybz) {
+        this.fybz = fybz;
+    }
+
+    public Date getWlpdsj() {
+        return wlpdsj;
+    }
+
+    public void setWlpdsj(Date wlpdsj) {
+        this.wlpdsj = wlpdsj;
+    }
+
+    public String getSzsfxs() {
+        return szsfxs;
+    }
+
+    public void setSzsfxs(String szsfxs) {
+        this.szsfxs = szsfxs;
+    }
+
+    public String getSfhs() {
+        return sfhs;
+    }
+
+    public void setSfhs(String sfhs) {
+        this.sfhs = sfhs;
+    }
+
+    public String getSfsjddc() {
+        return sfsjddc;
+    }
+
+    public void setSfsjddc(String sfsjddc) {
+        this.sfsjddc = sfsjddc;
+    }
+
+    public Date getSfhssj() {
+        return sfhssj;
+    }
+
+    public void setSfhssj(Date sfhssj) {
+        this.sfhssj = sfhssj;
+    }
+
+    public String getZbgd() {
+        return zbgd;
+    }
+
+    public void setZbgd(String zbgd) {
+        this.zbgd = zbgd;
+    }
+
+    public Date getZbgdrq() {
+        return zbgdrq;
+    }
+
+    public void setZbgdrq(Date zbgdrq) {
+        this.zbgdrq = zbgdrq;
+    }
+
+    public Date getGzryhxqrCxsj() {
+        return gzryhxqrCxsj;
+    }
+
+    public void setGzryhxqrCxsj(Date gzryhxqrCxsj) {
+        this.gzryhxqrCxsj = gzryhxqrCxsj;
+    }
+
+    public Date getXsbgljsj() {
+        return xsbgljsj;
+    }
+
+    public void setXsbgljsj(Date xsbgljsj) {
+        this.xsbgljsj = xsbgljsj;
+    }
+
+    public String getSfdd() {
+        return sfdd;
+    }
+
+    public void setSfdd(String sfdd) {
+        this.sfdd = sfdd;
+    }
+
+    public String getSfcyjzx() {
+        return sfcyjzx;
+    }
+
+    public void setSfcyjzx(String sfcyjzx) {
+        this.sfcyjzx = sfcyjzx;
+    }
+
+    public String getGcsfcy() {
+        return gcsfcy;
+    }
+
+    public void setGcsfcy(String gcsfcy) {
+        this.gcsfcy = gcsfcy;
+    }
+
+    public Date getGcsfcyCzsj() {
+        return gcsfcyCzsj;
+    }
+
+    public void setGcsfcyCzsj(Date gcsfcyCzsj) {
+        this.gcsfcyCzsj = gcsfcyCzsj;
+    }
+
+    public Date getSzktsj() {
+        return szktsj;
+    }
+
+    public void setSzktsj(Date szktsj) {
+        this.szktsj = szktsj;
+    }
+
+    public Date getSzkgsj() {
+        return szkgsj;
+    }
+
+    public void setSzkgsj(Date szkgsj) {
+        this.szkgsj = szkgsj;
+    }
+
+    public Date getSzclfxsj() {
+        return szclfxsj;
+    }
+
+    public void setSzclfxsj(Date szclfxsj) {
+        this.szclfxsj = szclfxsj;
+    }
+
+    public String getSzcyyc() {
+        return szcyyc;
+    }
+
+    public void setSzcyyc(String szcyyc) {
+        this.szcyyc = szcyyc;
+    }
+
+    public String getSzktsjCzry() {
+        return szktsjCzry;
+    }
+
+    public void setSzktsjCzry(String szktsjCzry) {
+        this.szktsjCzry = szktsjCzry;
+    }
+
+    public Date getSzktsjCzsj() {
+        return szktsjCzsj;
+    }
+
+    public void setSzktsjCzsj(Date szktsjCzsj) {
+        this.szktsjCzsj = szktsjCzsj;
+    }
+
+    public String getSzkgsjCzry() {
+        return szkgsjCzry;
+    }
+
+    public void setSzkgsjCzry(String szkgsjCzry) {
+        this.szkgsjCzry = szkgsjCzry;
+    }
+
+    public Date getSzkgsjCzsj() {
+        return szkgsjCzsj;
+    }
+
+    public void setSzkgsjCzsj(Date szkgsjCzsj) {
+        this.szkgsjCzsj = szkgsjCzsj;
+    }
+
+    public String getSzclfxsjCzry() {
+        return szclfxsjCzry;
+    }
+
+    public void setSzclfxsjCzry(String szclfxsjCzry) {
+        this.szclfxsjCzry = szclfxsjCzry;
+    }
+
+    public Date getSzclfxsjCzsj() {
+        return szclfxsjCzsj;
+    }
+
+    public void setSzclfxsjCzsj(Date szclfxsjCzsj) {
+        this.szclfxsjCzsj = szclfxsjCzsj;
+    }
+
+    public String getGcsfcyCzry() {
+        return gcsfcyCzry;
+    }
+
+    public void setGcsfcyCzry(String gcsfcyCzry) {
+        this.gcsfcyCzry = gcsfcyCzry;
+    }
+
+    public String getCyfybz() {
+        return cyfybz;
+    }
+
+    public void setCyfybz(String cyfybz) {
+        this.cyfybz = cyfybz;
+    }
+
+    public String getGczl() {
+        return gczl;
+    }
+
+    public void setGczl(String gczl) {
+        this.gczl = gczl;
+    }
+
+    public Date getJhrq() {
+        return jhrq;
+    }
+
+    public void setJhrq(Date jhrq) {
+        this.jhrq = jhrq;
+    }
+
+    public Date getCskhg() {
+        return cskhg;
+    }
+
+    public void setCskhg(Date cskhg) {
+        this.cskhg = cskhg;
+    }
+
+    public Date getCszhg() {
+        return cszhg;
+    }
+
+    public void setCszhg(Date cszhg) {
+        this.cszhg = cszhg;
+    }
+
+    public Date getCxghg() {
+        return cxghg;
+    }
+
+    public void setCxghg(Date cxghg) {
+        this.cxghg = cxghg;
+    }
+
+    public String getJcgzj() {
+        return jcgzj;
+    }
+
+    public void setJcgzj(String jcgzj) {
+        this.jcgzj = jcgzj;
+    }
+
+    public String getJchxdc() {
+        return jchxdc;
+    }
+
+    public void setJchxdc(String jchxdc) {
+        this.jchxdc = jchxdc;
+    }
+
+    public Date getSdsj() {
+        return sdsj;
+    }
+
+    public void setSdsj(Date sdsj) {
+        this.sdsj = sdsj;
+    }
+
+    public String getSfylr() {
+        return sfylr;
+    }
+
+    public void setSfylr(String sfylr) {
+        this.sfylr = sfylr;
+    }
+
+    public String getJhd() {
+        return jhd;
+    }
+
+    public void setJhd(String jhd) {
+        this.jhd = jhd;
+    }
+
+    public Date getDdsj() {
+        return ddsj;
+    }
+
+    public void setDdsj(Date ddsj) {
+        this.ddsj = ddsj;
+    }
+
+    public String getSffwdj() {
+        return sffwdj;
+    }
+
+    public void setSffwdj(String sffwdj) {
+        this.sffwdj = sffwdj;
+    }
+
+    public String getSfwsttjsc() {
+        return sfwsttjsc;
+    }
+
+    public void setSfwsttjsc(String sfwsttjsc) {
+        this.sfwsttjsc = sfwsttjsc;
+    }
+
+    public Date getWlkthsj() {
+        return wlkthsj;
+    }
+
+    public void setWlkthsj(Date wlkthsj) {
+        this.wlkthsj = wlkthsj;
+    }
+
+    public String getSfwlkt() {
+        return sfwlkt;
+    }
+
+    public void setSfwlkt(String sfwlkt) {
+        this.sfwlkt = sfwlkt;
+    }
+
+    public String getSfkhwlxq() {
+        return sfkhwlxq;
+    }
+
+    public void setSfkhwlxq(String sfkhwlxq) {
+        this.sfkhwlxq = sfkhwlxq;
+    }
+
+    public String getZggtpc() {
+        return zggtpc;
+    }
+
+    public void setZggtpc(String zggtpc) {
+        this.zggtpc = zggtpc;
+    }
+
+    public Date getZgwlpdsj() {
+        return zgwlpdsj;
+    }
+
+    public void setZgwlpdsj(Date zgwlpdsj) {
+        this.zgwlpdsj = zgwlpdsj;
+    }
+
+    public String getKjzyme() {
+        return kjzyme;
+    }
+
+    public void setKjzyme(String kjzyme) {
+        this.kjzyme = kjzyme;
+    }
+
+    public Date getKjzymesj() {
+        return kjzymesj;
+    }
+
+    public void setKjzymesj(Date kjzymesj) {
+        this.kjzymesj = kjzymesj;
+    }
+
+    public Date getCgzjsj() {
+        return cgzjsj;
+    }
+
+    public void setCgzjsj(Date cgzjsj) {
+        this.cgzjsj = cgzjsj;
+    }
+
+    public Date getZgwlzyjtgsj() {
+        return zgwlzyjtgsj;
+    }
+
+    public void setZgwlzyjtgsj(Date zgwlzyjtgsj) {
+        this.zgwlzyjtgsj = zgwlzyjtgsj;
+    }
+
+    public Date getCmyzhjbcsj() {
+        return cmyzhjbcsj;
+    }
+
+    public void setCmyzhjbcsj(Date cmyzhjbcsj) {
+        this.cmyzhjbcsj = cmyzhjbcsj;
+    }
+
+    public Date getCjkjzydsj() {
+        return cjkjzydsj;
+    }
+
+    public void setCjkjzydsj(Date cjkjzydsj) {
+        this.cjkjzydsj = cjkjzydsj;
+    }
+
+    public String getKjzyddz() {
+        return kjzyddz;
+    }
+
+    public void setKjzyddz(String kjzyddz) {
+        this.kjzyddz = kjzyddz;
+    }
+
+    public Integer getHxq() {
+        return hxq;
+    }
+
+    public void setHxq(Integer hxq) {
+        this.hxq = hxq;
+    }
+
+    public Integer getMtmDuiQ() {
+        return mtmDuiQ;
+    }
+
+    public void setMtmDuiQ(Integer mtmDuiQ) {
+        this.mtmDuiQ = mtmDuiQ;
+    }
+
+    public Integer getMtmDianQ() {
+        return mtmDianQ;
+    }
+
+    public void setMtmDianQ(Integer mtmDianQ) {
+        this.mtmDianQ = mtmDianQ;
+    }
+}
\ No newline at end of file
Index: jinan/trunk/yunna/src/main/java/com/freshport/entity/yunna/LoadingNumberQueryParam.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/entity/yunna/LoadingNumberQueryParam.java	(revision 33863)
+++ jinan/trunk/yunna/src/main/java/com/freshport/entity/yunna/LoadingNumberQueryParam.java	(revision 33864)
@@ -9,6 +9,8 @@
  */
 package com.freshport.entity.yunna;
 
+import org.hibernate.validator.constraints.NotBlank;
+
 import lombok.Data;
 
 /**
@@ -31,5 +33,6 @@
     /**
      *  提单号查询类型：SHIP-船司；SHIP_TMP-船司(当天)；PORT-港口；PORT_TMP-港口(当天);
      */
+    @NotBlank(message = "提单号类型不能为空")
     private String type;
 }
Index: jinan/trunk/yunna/src/main/java/com/freshport/service/FruitShipPortService.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/service/FruitShipPortService.java	(revision 33863)
+++ jinan/trunk/yunna/src/main/java/com/freshport/service/FruitShipPortService.java	(revision 33864)
@@ -33,6 +33,18 @@
 
     /**
      * 
+     * handleLoadingNumberInfoMain(处理提单号接口-主入口)      
+     * @param params
+     * @return  
+     * @return List<LoadingNumberResultVO>  
+     * @Exception 异常对象    
+     * @author lixd  
+     * @date 2023-04-12 10:36:49
+     */
+    List<LoadingNumberResultVO> handleLoadingNumberInfoMain(LoadingNumberQueryParam params);
+
+    /**
+     * 
      * queryLoadingNumberInfoList(查询提单号信息)     
      * @param params
      * @return  
Index: jinan/trunk/yunna/src/main/java/com/freshport/service/ShipService.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/service/ShipService.java	(revision 33863)
+++ jinan/trunk/yunna/src/main/java/com/freshport/service/ShipService.java	(revision 33864)
@@ -11,6 +11,7 @@
 
 import java.util.List;
 
+import com.freshport.entity.YwHddz;
 import com.freshport.entity.yunna.LoadingNumberResultVO;
 import com.freshport.entity.yunna.ShipForHddzVO;
 
@@ -85,18 +86,19 @@
      * @author lixd  
      * @date 2023-03-27 10:11:51
      */
-    void updateHddzEtaForShip(List<ShipForHddzVO> list, List<ShipForHddzVO> etaStatusList);
+    void updateHddzEtaForShip(List<ShipForHddzVO> list, List<YwHddz> etaStatusList);
 
     /**
      * 
      * updateShipResultEtaStatus(船司ETA更新状态)       
      * @param etaStatusList  
+     * @param batchNo  
      * @return void  
      * @Exception 异常对象    
      * @author lixd  
      * @date 2023-03-29 14:53:46
      */
-    void updateShipResultEtaStatus(List<ShipForHddzVO> etaStatusList);
+    void updateShipResultEtaStatus(List<YwHddz> etaStatusList, String batchNo);
 
     /**
      * 
Index: jinan/trunk/yunna/src/main/java/com/freshport/service/impl/FruitShipPortServiceImpl.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/service/impl/FruitShipPortServiceImpl.java	(revision 33863)
+++ jinan/trunk/yunna/src/main/java/com/freshport/service/impl/FruitShipPortServiceImpl.java	(revision 33864)
@@ -40,8 +40,6 @@
 import com.freshport.service.FruitShipPortService;
 import com.freshport.service.PortService;
 import com.freshport.service.ShipService;
-import com.freshport.util.BaseException;
-import com.freshport.util.CommonEnum;
 import com.freshport.util.CommonInfo;
 import com.freshport.util.CommonUtils;
 import com.freshport.util.DateUtils;
@@ -95,31 +93,11 @@
 
     @Transactional(propagation = Propagation.NOT_SUPPORTED, readOnly = true)
     @Override
-    public List<LoadingNumberResultVO> queryLoadingNumberInfoList(LoadingNumberQueryParam params) {
+    public List<LoadingNumberResultVO> handleLoadingNumberInfoMain(LoadingNumberQueryParam params) {
 
-        if (CommonUtils.isEmpty(params)) {
-            throw new BaseException(CommonEnum.PARAM_ERROR.getCode(), "参数为空");
-        }
-        if (CommonUtils.isEmpty(ShipPortEnum.getShipPortEnum(params.getType()))) {
-            throw new BaseException(CommonEnum.PARAM_ERROR.getCode(), "参数类型错误");
-        }
+        // 查询提单号信息
+        List<LoadingNumberResultVO> result = fruitShipPortService.queryLoadingNumberInfoList(params);
 
-        List<LoadingNumberResultVO> result = new ArrayList<LoadingNumberResultVO>();
-        if (ShipPortEnum.SHIP.getCode().equals(params.getType())) {
-
-            result = shipService.queryLoadingNumberInfoList();
-        } else if (ShipPortEnum.SHIP_TMP.getCode().equals(params.getType())) {
-
-            result = shipService.queryLoadingNumberInfoListForTmp();
-        } else if (ShipPortEnum.PORT.getCode().equals(params.getType())) {
-
-            result = portService.queryLoadingNumberInfoList();
-        } else if (ShipPortEnum.PORT_TMP.getCode().equals(params.getType())) {
-
-            result = portService.queryLoadingNumberInfoListForTmp();
-        }
-        log.info("===============查询提单号类型：{}, 返回结果条数：{}", params.getType(), result.size());
-
         String batchNo = "";
         if (!CommonUtils.isEmpty(result)) {
 
@@ -134,6 +112,7 @@
             // 保存传过去原始提单号数据
             fruitShipPortService.saveShipPortLoading(result, type, batchNo);
         }
+
         // 保存日志表
         fruitShipPortService.saveShipPortLog(JSONObject.toJSON(params).toString(),
                 JSONObject.toJSON(JsonModel.success(result)).toString(),
@@ -142,6 +121,29 @@
         return result;
     }
 
+    @Transactional(propagation = Propagation.NOT_SUPPORTED, readOnly = true)
+    @Override
+    public List<LoadingNumberResultVO> queryLoadingNumberInfoList(LoadingNumberQueryParam params) {
+
+        List<LoadingNumberResultVO> result = new ArrayList<LoadingNumberResultVO>();
+        if (ShipPortEnum.SHIP.getCode().equals(params.getType())) {
+
+            result = shipService.queryLoadingNumberInfoList();
+        } else if (ShipPortEnum.SHIP_TMP.getCode().equals(params.getType())) {
+
+            result = shipService.queryLoadingNumberInfoListForTmp();
+        } else if (ShipPortEnum.PORT.getCode().equals(params.getType())) {
+
+            result = portService.queryLoadingNumberInfoList();
+        } else if (ShipPortEnum.PORT_TMP.getCode().equals(params.getType())) {
+
+            result = portService.queryLoadingNumberInfoListForTmp();
+        }
+        log.info("===============查询提单号类型：{}, 返回结果条数：{}", params.getType(), result.size());
+
+        return result;
+    }
+
     @Transactional
     @Override
     public void saveShipPortLoading(List<LoadingNumberResultVO> list, String type, String batchNo) {
@@ -195,7 +197,7 @@
         return lad;
     }
 
-    @Transactional
+    @Transactional(propagation = Propagation.REQUIRES_NEW)
     @Override
     public void saveShipPortLog(String msg, String result, String type, Integer totalNumber, String batchNo) {
         YwShipPortLogWithBLOBs log = YwShipPortLogWithBLOBs.childBuilder().ysplId(UUID.randomUUID().toString()).msg(msg)
@@ -276,32 +278,25 @@
     public void saveShipInfo(List<ShipPortResultVO> result) {
 
         log.info("======================回传船司结果，总条数：{}", result.size());
-        if (CommonUtils.isEmpty(result)) {
-            throw new BaseException(CommonEnum.PARAM_ERROR.getCode(), "参数为空");
+        String batchNo = result.get(0).getBatchNo();
+
+        // 判断数据量是否一致，不一致放入异常信息表
+        int loadingNum = ywShipPortLoadingMapper.countByBatchNo(batchNo);
+        if (loadingNum != result.size()) {
+            fruitShipPortService.saveShipPortError(CommonInfo.ERROR_CODE_SHIP_NUM, batchNo,
+                    "船司数量异常：(推送数量" + loadingNum + " 返回数量" + result.size() + ")");
         }
 
-        if (!CommonUtils.isEmpty(result)) {
+        // 1. 保存原始数据表
+        fruitShipPortService.saveShipPortResult(result, CommonInfo.TYPE_SHIP, batchNo);
 
-            String batchNo = result.get(0).getBatchNo();
+        // 2. 保存日志
+        fruitShipPortService.saveShipPortLog(JSONObject.toJSON(result).toString(),
+                JSONObject.toJSON(JsonModel.success(null)).toString(), CommonInfo.LOG_TYPE_RESULT_SHIP, result.size(),
+                batchNo);
 
-            // 判断数据量是否一致，不一致放入异常信息表
-            int loadingNum = ywShipPortLoadingMapper.countByBatchNo(batchNo);
-            if (loadingNum != result.size()) {
-                fruitShipPortService.saveShipPortError(CommonInfo.ERROR_CODE_SHIP_NUM, batchNo,
-                        "船司数量异常：(推送数量" + loadingNum + " 返回数量" + result.size() + ")");
-            }
-
-            // 1. 保存原始数据表
-            fruitShipPortService.saveShipPortResult(result, CommonInfo.TYPE_SHIP, batchNo);
-
-            // 2. 保存日志
-            fruitShipPortService.saveShipPortLog(JSONObject.toJSON(result).toString(),
-                    JSONObject.toJSON(JsonModel.success(null)).toString(), CommonInfo.LOG_TYPE_RESULT_SHIP,
-                    result.size(), batchNo);
-
-            // 3. 预警 / 反写
-            shipService.updateHddzAndWarnningInfo(batchNo);
-        }
+        // 3. 预警 / 反写
+        shipService.updateHddzAndWarnningInfo(batchNo);
     }
 
     @Transactional(propagation = Propagation.NOT_SUPPORTED, readOnly = true)
@@ -309,32 +304,25 @@
     public void savePortInfo(List<ShipPortResultVO> result) {
 
         log.info("======================回传港口结果，总条数：{}", result.size());
-        if (CommonUtils.isEmpty(result)) {
-            throw new BaseException(CommonEnum.PARAM_ERROR.getCode(), "参数为空");
+        String batchNo = result.get(0).getBatchNo();
+
+        // 判断数据量是否一致，不一致放入异常信息表
+        int loadingNum = ywShipPortLoadingMapper.countByBatchNo(batchNo);
+        if (loadingNum != result.size()) {
+            fruitShipPortService.saveShipPortError(CommonInfo.ERROR_CODE_PORT_NUM, batchNo,
+                    "港口数量异常：(推送数量" + loadingNum + " 返回数量" + result.size() + ")");
         }
 
-        if (!CommonUtils.isEmpty(result)) {
+        // 1. 保存原始数据表
+        fruitShipPortService.saveShipPortResult(result, CommonInfo.TYPE_PORT, batchNo);
 
-            String batchNo = result.get(0).getBatchNo();
+        // 2. 保存日志
+        fruitShipPortService.saveShipPortLog(JSONObject.toJSON(result).toString(),
+                JSONObject.toJSON(JsonModel.success(null)).toString(), CommonInfo.LOG_TYPE_RESULT_PORT, result.size(),
+                batchNo);
 
-            // 判断数据量是否一致，不一致放入异常信息表
-            int loadingNum = ywShipPortLoadingMapper.countByBatchNo(batchNo);
-            if (loadingNum != result.size()) {
-                fruitShipPortService.saveShipPortError(CommonInfo.ERROR_CODE_PORT_NUM, batchNo,
-                        "港口数量异常：(推送数量" + loadingNum + " 返回数量" + result.size() + ")");
-            }
-
-            // 1. 保存原始数据表
-            fruitShipPortService.saveShipPortResult(result, CommonInfo.TYPE_PORT, batchNo);
-
-            // 2. 保存日志
-            fruitShipPortService.saveShipPortLog(JSONObject.toJSON(result).toString(),
-                    JSONObject.toJSON(JsonModel.success(null)).toString(), CommonInfo.LOG_TYPE_RESULT_PORT,
-                    result.size(), batchNo);
-
-            // 3. 预警 / 反写 TODO 上线前三天不更新，比对数据
-            portService.updateHddzAndWarnningInfo(batchNo);
-        }
+        // 3. 预警 / 反写 TODO 上线前三天不更新，比对数据
+        portService.updateHddzAndWarnningInfo(batchNo);
     }
 
     @Transactional
Index: jinan/trunk/yunna/src/main/java/com/freshport/service/impl/PortServiceImpl.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/service/impl/PortServiceImpl.java	(revision 33863)
+++ jinan/trunk/yunna/src/main/java/com/freshport/service/impl/PortServiceImpl.java	(revision 33864)
@@ -9,7 +9,6 @@
  */
 package com.freshport.service.impl;
 
-import java.lang.reflect.InvocationTargetException;
 import java.util.ArrayList;
 import java.util.Date;
 import java.util.List;
@@ -18,13 +17,15 @@
 
 import javax.annotation.Resource;
 
-import org.apache.commons.beanutils.BeanUtils;
 import org.springframework.stereotype.Service;
 import org.springframework.transaction.annotation.Propagation;
 import org.springframework.transaction.annotation.Transactional;
 
 import com.freshport.dao.ShipPortMapper;
 import com.freshport.dao.YwShipPortResultMapper;
+import com.freshport.entity.YwHddz;
+import com.freshport.entity.YwHddzJzxxx;
+import com.freshport.entity.YwShipPortResult;
 import com.freshport.entity.yunna.LoadingNumberResultVO;
 import com.freshport.entity.yunna.PortForHddzVO;
 import com.freshport.service.FruitShipPortService;
@@ -120,8 +121,19 @@
 
         try {
             if (!CommonUtils.isEmpty(list)) {
+
+                List<YwShipPortResult> resultList = new ArrayList<YwShipPortResult>();
+                for (PortForHddzVO vo : list) {
+                    YwShipPortResult ysr = new YwShipPortResult();
+                    ysr.setNewEtaTime(vo.getNewExpectArrivalTime());
+                    ysr.setBusinessNo(vo.getBusinessNo());
+                    ysr.setBatchNo(vo.getBatchNo());
+
+                    resultList.add(ysr);
+                }
+
                 // 分组保存
-                List<List<PortForHddzVO>> splitList = CommonUtils.splitList(list,
+                List<List<YwShipPortResult>> splitList = CommonUtils.splitList(resultList,
                         CommonInfo.SQLSERVER_BATCH_GROUPING_COUNT_HUNDRED);
                 for (int i = 0; i < splitList.size(); i++) {
                     ywShipPortResultMapper.updateUpdStatusAndNewEtaTimeForPort(splitList.get(i));
@@ -179,7 +191,8 @@
     @Override
     public void updateHddzInfoForPort(List<PortForHddzVO> baseDataList) {
 
-        List<PortForHddzVO> ywbhList = new ArrayList<PortForHddzVO>();
+        // List<PortForHddzVO> ywbhList = new ArrayList<PortForHddzVO>();
+        List<YwHddz> ywbhList = new ArrayList<YwHddz>();
         //
         // 根据提单号+业务编号分组 ztdh|ywbh
         Map<String, List<PortForHddzVO>> basicMap = baseDataList.stream()
@@ -192,13 +205,26 @@
 
             if (!CommonUtils.isEmpty(mapList)) {
                 PortForHddzVO list0 = mapList.get(0);
-                PortForHddzVO ywbhVo = new PortForHddzVO();
+
+                YwHddz yh = new YwHddz();
+                yh.setYwbh(list0.getBusinessNo());
+                yh.setZtdh(list0.getLoadingNumber());
+                yh.setYjkgsj(list0.getNewExpectArrivalTime());
+                yh.setSjkgsj(list0.getActualPortTime());
+                yh.setHcorhbh(list0.getVoyage());
+                yh.setZzHcorhbh(list0.getZzHcorhbh());
+                yh.setXhgq(list0.getUnloadingPortFullName());
+                yh.setXhgqjc(list0.getUnloadingPortShortName());
+                yh.setXhgqbm(list0.getUnloadingPortCode());
+                ywbhList.add(yh);
+
+                /**PortForHddzVO ywbhVo = new PortForHddzVO();
                 try {
                     BeanUtils.copyProperties(ywbhVo, list0);
                 } catch (IllegalAccessException | InvocationTargetException e1) {
                     e1.printStackTrace();
                 }
-                /**ywbhVo.setLoadingNumber(list0.getLoadingNumber());
+                ywbhVo.setLoadingNumber(list0.getLoadingNumber());
                 ywbhVo.setBusinessNo(list0.getBusinessNo());
                 ywbhVo.setExpectArrivalTime(list0.getExpectArrivalTime());
                 ywbhVo.setNewExpectArrivalTime(list0.getNewExpectArrivalTime());
@@ -208,9 +234,9 @@
                 ywbhVo.setUnloadingPort(list0.getUnloadingPort());
                 ywbhVo.setUnloadingPortShortName(list0.getUnloadingPortShortName());
                 ywbhVo.setUnloadingPortFullName(list0.getUnloadingPortFullName());
-                ywbhVo.setUnloadingPortCode(list0.getUnloadingPortCode());*/
-
-                ywbhList.add(ywbhVo);
+                ywbhVo.setUnloadingPortCode(list0.getUnloadingPortCode());
+                
+                ywbhList.add(ywbhVo);*/
             }
         }
 
@@ -219,7 +245,7 @@
             // 根据业务编号更新ATA、ETA、航次、卸货港区
             if (!CommonUtils.isEmpty(ywbhList)) {
                 // 分组保存
-                List<List<PortForHddzVO>> splitList = CommonUtils.splitList(ywbhList,
+                List<List<YwHddz>> splitList = CommonUtils.splitList(ywbhList,
                         CommonInfo.SQLSERVER_BATCH_GROUPING_COUNT_HUNDRED);
                 for (int i = 0; i < splitList.size(); i++) {
                     shipPortMapper.updatePortInfoListForHddz(splitList.get(i));
@@ -239,7 +265,8 @@
     public void updateContainerNoInfoForPort(List<PortForHddzVO> baseDataList) {
 
         // 要更新卸船时间的list
-        List<PortForHddzVO> jzxhList = new ArrayList<PortForHddzVO>();
+        // List<PortForHddzVO> jzxhList = new ArrayList<PortForHddzVO>();
+        List<YwHddzJzxxx> jzxhList = new ArrayList<YwHddzJzxxx>();
         List<PortForHddzVO> withUnloadingTimeList = baseDataList.stream()
                 .filter(vo -> !CommonUtils.isEmpty(vo.getUnloadingTime())).collect(Collectors.toList());
         log.info("=================有卸船时间的数据有{}条", withUnloadingTimeList.size());
@@ -255,18 +282,25 @@
 
             if (!CommonUtils.isEmpty(mapList)) {
                 PortForHddzVO list0 = mapList.get(0);
-                PortForHddzVO jzxhVo = new PortForHddzVO();
+
+                YwHddzJzxxx jzx = new YwHddzJzxxx();
+                jzx.setYwbh(list0.getBusinessNo());
+                jzx.setJzxh(list0.getContainerNumber());
+                jzx.setXcsj(list0.getUnloadingTime());
+                jzxhList.add(jzx);
+
+                /**PortForHddzVO jzxhVo = new PortForHddzVO();
                 try {
                     BeanUtils.copyProperties(jzxhVo, list0);
                 } catch (IllegalAccessException | InvocationTargetException e1) {
                     e1.printStackTrace();
                 }
-
-                /**jzxhVo.setBusinessNo(list0.getBusinessNo());
+                
+                jzxhVo.setBusinessNo(list0.getBusinessNo());
                 jzxhVo.setContainerNumber(list0.getContainerNumber());
-                jzxhVo.setUnloadingTime(list0.getUnloadingTime());*/
-
-                jzxhList.add(jzxhVo);
+                jzxhVo.setUnloadingTime(list0.getUnloadingTime());
+                
+                jzxhList.add(jzxhVo);*/
             }
         }
 
@@ -275,7 +309,7 @@
             // 根据业务编号+集装箱号更新卸船时间
             if (!CommonUtils.isEmpty(jzxhList)) {
                 // 分组保存
-                List<List<PortForHddzVO>> splitList = CommonUtils.splitList(jzxhList,
+                List<List<YwHddzJzxxx>> splitList = CommonUtils.splitList(jzxhList,
                         CommonInfo.SQLSERVER_BATCH_GROUPING_COUNT_HUNDRED);
                 for (int i = 0; i < splitList.size(); i++) {
                     shipPortMapper.updatePortInfoListForJzxh(splitList.get(i));
Index: jinan/trunk/yunna/src/main/java/com/freshport/service/impl/ShipServiceImpl.java
===================================================================
--- jinan/trunk/yunna/src/main/java/com/freshport/service/impl/ShipServiceImpl.java	(revision 33863)
+++ jinan/trunk/yunna/src/main/java/com/freshport/service/impl/ShipServiceImpl.java	(revision 33864)
@@ -25,6 +25,8 @@
 import com.alibaba.fastjson.JSONObject;
 import com.freshport.dao.ShipPortMapper;
 import com.freshport.dao.YwShipPortResultMapper;
+import com.freshport.entity.YwHddz;
+import com.freshport.entity.YwShipPortResult;
 import com.freshport.entity.yunna.LoadingNumberResultVO;
 import com.freshport.entity.yunna.ShipForHddzVO;
 import com.freshport.service.FruitShipPortService;
@@ -87,7 +89,7 @@
         // 要更新回写状态的业务编号list
         List<String> totalBusinessNoStrList = new ArrayList<String>();
         // 要回写eta状态的list
-        List<ShipForHddzVO> etaStatusList = new ArrayList<ShipForHddzVO>();
+        List<YwHddz> etaStatusList = new ArrayList<YwHddz>();
 
         List<ShipForHddzVO> sameShipList = baseDataList.stream().filter(
                 vo -> vo.getShipName().equals(vo.getLadingShipName()) && vo.getDestinationPort().equals(vo.getMdg()))
@@ -107,18 +109,29 @@
         shipService.updateHddzEtaForShip(baseDataList, etaStatusList);
 
         // 4. eta更新状态反写
-        shipService.updateShipResultEtaStatus(etaStatusList);
+        shipService.updateShipResultEtaStatus(etaStatusList, batchNo);
     }
 
     @Transactional
     @Override
-    public void updateShipResultEtaStatus(List<ShipForHddzVO> etaStatusList) {
+    public void updateShipResultEtaStatus(List<YwHddz> etaStatusList, String batchNo) {
 
         log.info("=======================符合更新船司结果表eta_status状态的有{}条", etaStatusList.size());
         try {
             if (!CommonUtils.isEmpty(etaStatusList)) {
+
+                List<YwShipPortResult> resultList = new ArrayList<YwShipPortResult>();
+                for (YwHddz vo : etaStatusList) {
+                    YwShipPortResult ysr = new YwShipPortResult();
+                    ysr.setNewEtaTime(vo.getYjkgsj());
+                    ysr.setBusinessNo(vo.getYwbh());
+                    ysr.setBatchNo(batchNo);
+
+                    resultList.add(ysr);
+                }
+
                 // 分组保存
-                List<List<ShipForHddzVO>> splitList = CommonUtils.splitList(etaStatusList,
+                List<List<YwShipPortResult>> splitList = CommonUtils.splitList(resultList,
                         CommonInfo.SQLSERVER_BATCH_GROUPING_COUNT_HUNDRED);
                 for (int i = 0; i < splitList.size(); i++) {
                     ywShipPortResultMapper.updateEtaStatusAndNewEtaTimeForShip(splitList.get(i));
@@ -160,7 +173,7 @@
     @SuppressWarnings("unused")
     @Transactional
     @Override
-    public void updateHddzEtaForShip(List<ShipForHddzVO> baseDataList, List<ShipForHddzVO> etaStatusList) {
+    public void updateHddzEtaForShip(List<ShipForHddzVO> baseDataList, List<YwHddz> etaStatusList) {
         List<ShipForHddzVO> withEtaList = baseDataList.stream()
                 .filter(vo -> !CommonUtils.isEmpty(vo.getExpectArrivalTime())).collect(Collectors.toList());
         log.info("=================云纳ETA有值的数据有{}条", withEtaList.size());
@@ -175,7 +188,8 @@
          *  ETA减当前返回数据时间小于等于72小时：ETA则不反写，以港口ETA为准反写
          *  ETA时间减当前时间（精确到天）小于0：ETA 不反写
          */
-        List<ShipForHddzVO> ywbhList = new ArrayList<ShipForHddzVO>();
+        // List<ShipForHddzVO> ywbhList = new ArrayList<ShipForHddzVO>();
+        List<YwHddz> ywbhList = new ArrayList<YwHddz>();
 
         // 船名|目的港 分组
         Map<String, List<ShipForHddzVO>> basicMap = withEtaList.stream()
@@ -203,14 +217,20 @@
                                 && minEta.getDestinationPort().equals(eta72.getDestinationPort())) {
 
                             // 将最小ETA放进来，根据业务编号更新ETA
-                            ShipForHddzVO ywbhVo = new ShipForHddzVO();
+
+                            YwHddz yh = new YwHddz();
+                            yh.setYwbh(eta72.getBusinessNo());
+                            yh.setYjkgsj(minEta.getExpectArrivalTime());
+                            ywbhList.add(yh);
+
+                            /**ShipForHddzVO ywbhVo = new ShipForHddzVO();
                             ywbhVo.setBusinessNo(eta72.getBusinessNo());
                             ywbhVo.setHours(eta72.getHours());
                             ywbhVo.setExpectArrivalTime(eta72.getExpectArrivalTime());
                             ywbhVo.setNewExpectArrivalTime(minEta.getExpectArrivalTime());
                             ywbhVo.setBatchNo(eta72.getBatchNo());
-
-                            ywbhList.add(ywbhVo);
+                            
+                            ywbhList.add(ywbhVo);*/
                         }
                     }
                 }
@@ -222,7 +242,7 @@
             // 根据业务编号更新ETA
             if (!CommonUtils.isEmpty(ywbhList)) {
                 // 分组保存
-                List<List<ShipForHddzVO>> splitList = CommonUtils.splitList(ywbhList,
+                List<List<YwHddz>> splitList = CommonUtils.splitList(ywbhList,
                         CommonInfo.SQLSERVER_BATCH_GROUPING_COUNT_HUNDRED);
                 for (int i = 0; i < splitList.size(); i++) {
                     shipPortMapper.updateShipEtaListForHddz(splitList.get(i));
@@ -256,7 +276,7 @@
         shipList.addAll(noTransitInfoList);
         shipList.addAll(withTransitInfoList);
 
-        List<ShipForHddzVO> ywbhList = new ArrayList<ShipForHddzVO>();
+        List<YwHddz> ywbhList = new ArrayList<YwHddz>();
         // 根据提单号+业务编号分组 ztdh|ywbh
         Map<String, List<ShipForHddzVO>> basicMap = shipList.stream()
                 .collect(Collectors.groupingBy(e -> (e.getLoadingNumber() + "|" + e.getBusinessNo())));
@@ -268,7 +288,7 @@
 
             if (!CommonUtils.isEmpty(mapList)) {
                 ShipForHddzVO list0 = mapList.get(0);
-                ShipForHddzVO ywbhVo = createShipForHddzVO(list0);
+                YwHddz ywbhVo = createShipForHddz(list0);
 
                 ywbhList.add(ywbhVo);
             }
@@ -279,14 +299,14 @@
             // 根据业务编号更新ATA、ETA、航次、卸货港区
             if (!CommonUtils.isEmpty(ywbhList)) {
                 // 分组保存
-                List<List<ShipForHddzVO>> splitList = CommonUtils.splitList(ywbhList,
+                List<List<YwHddz>> splitList = CommonUtils.splitList(ywbhList,
                         CommonInfo.SQLSERVER_BATCH_GROUPING_COUNT_HUNDRED);
                 for (int i = 0; i < splitList.size(); i++) {
                     shipPortMapper.updateShipInfoListForHddz(splitList.get(i));
                 }
 
-                List<String> businessNoList = ywbhList.stream().filter(vo -> !CommonUtils.isEmpty(vo.getBusinessNo()))
-                        .distinct().map(vo -> vo.getBusinessNo()).collect(Collectors.toList());
+                List<String> businessNoList = ywbhList.stream().filter(vo -> !CommonUtils.isEmpty(vo.getYwbh()))
+                        .distinct().map(vo -> vo.getYwbh()).collect(Collectors.toList());
                 ywbhStrList.addAll(businessNoList);
             }
         } catch (Exception e) {
@@ -298,7 +318,7 @@
 
     /**
      * 
-     * createShipForHddzVO(创建更新船司信息封装类)      
+     * createShipForHddz(创建更新船司信息封装类)      
      * @param list0
      * @return  
      * @return ShipForHddzVO  
@@ -306,28 +326,27 @@
      * @author lixd  
      * @date 2023-04-08 16:22:04
      */
-    private ShipForHddzVO createShipForHddzVO(ShipForHddzVO list0) {
-        ShipForHddzVO ywbhVo = new ShipForHddzVO();
-        ywbhVo.setLoadingNumber(list0.getLoadingNumber());
-        ywbhVo.setBusinessNo(list0.getBusinessNo());
-        ywbhVo.setActualSailingTime(list0.getActualSailingTime());
-        ywbhVo.setHours(list0.getHours());
+    private YwHddz createShipForHddz(ShipForHddzVO list0) {
+        YwHddz ywbhVo = new YwHddz();
+        ywbhVo.setZtdh(list0.getLoadingNumber());
+        ywbhVo.setYwbh(list0.getBusinessNo());
+        ywbhVo.setKcsj(list0.getActualSailingTime());
         // 云钠没有返回 中转港/中转船名/航次(三个字段都为空) 数据 清空
         if (CommonUtils.isEmpty(list0.getTransitPort()) && CommonUtils.isEmpty(list0.getTransitShipName())
                 && CommonUtils.isEmpty(list0.getTransitVoyage())) {
-            ywbhVo.setTransitPort("");
-            ywbhVo.setTransitFlag(CommonInfo.COMMON_N);
-            ywbhVo.setTransitShipName("");
-            ywbhVo.setTransitVoyage("");
+            ywbhVo.setZzgk("");
+            ywbhVo.setSfzy(CommonInfo.COMMON_N);
+            ywbhVo.setZzCm("");
+            ywbhVo.setZzHcorhbh("");
 
         } else if (!CommonUtils.isEmpty(list0.getTransitPort()) && !CommonUtils.isEmpty(list0.getTransitShipName())
                 && !CommonUtils.isEmpty(list0.getTransitVoyage())) {
 
             // 云钠返回中转港/中转船名/航次(三个字段都有值)，与水果通 船名/航次不一致或者水果通无信息 直接反写
-            ywbhVo.setTransitPort(list0.getTransitPort());
-            ywbhVo.setTransitFlag(CommonInfo.COMMON_Y);
-            ywbhVo.setTransitShipName(list0.getTransitShipName());
-            ywbhVo.setTransitVoyage(list0.getTransitVoyage());
+            ywbhVo.setZzgk(list0.getTransitPort());
+            ywbhVo.setSfzy(CommonInfo.COMMON_Y);
+            ywbhVo.setZzCm(list0.getTransitShipName());
+            ywbhVo.setZzHcorhbh(list0.getTransitVoyage());
         }
 
         return ywbhVo;
