Commit ab4c7841 by gechengyang

提交多数据源runtime切换初版

parent 553c1110
......@@ -2794,7 +2794,7 @@ public class Platform
**上传文件全路径--
**/
boolean flg = false;
flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsUpload",fileName);
//flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsUpload",fileName);
log.info("{}","fileserver fsUpload status:"+flg);
return flg;
}
......@@ -2867,7 +2867,8 @@ public class Platform
**/
byte[] buffer = null;
java.io.File file = null;
Object object = MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsDownload",fileName);
//Object object = MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsDownload",fileName);
Object object=new Object();
if(MdaUtils.isEmpty(object)|| object == null)
{
log.info("{}","fsDownload from fileserver is null.");
......@@ -2964,7 +2965,7 @@ public class Platform
**判断文件服务器中是否存在文件
**/
boolean flg = false;
flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsExists",fileName);
// flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsExists",fileName);
log.info("{}","fileserver fsExists status:"+flg);
return flg;
}
......@@ -2998,7 +2999,7 @@ public class Platform
**待完善
**/
boolean flg = false;
flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsDelete",fileName);
//flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsDelete",fileName);
log.info("{}","fileserver fsDelete status:"+flg);
return flg;
}
......@@ -3038,7 +3039,7 @@ public class Platform
**待完善
**/
boolean flg = false;
flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsMove",sourcefileNameOrPath,targetFileOrPathName);
//flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsMove",sourcefileNameOrPath,targetFileOrPathName);
log.info("{}","fileserver fsMove status:"+flg);
return flg;
}
......@@ -3073,7 +3074,7 @@ public class Platform
**待完善
**/
boolean flg = false;
flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsCopy",sourceFileName,targetFileName);
//flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsCopy",sourceFileName,targetFileName);
log.info("{}","fileserver fsCopy status:"+flg);
return flg;
}
......@@ -3107,7 +3108,7 @@ public class Platform
**在文件服务器中创建文件夹
**/
boolean flg = false;
flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsMkdirs",filePath);
//flg = (Boolean)MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsMkdirs",filePath);
log.info("{}","fileserver mkdir status:"+flg);
return flg;
}
......@@ -3151,7 +3152,8 @@ public class Platform
**列出文件服务器中指定路径下,指定文件类型的文件列表
**/
List<String> lst = new ArrayList<String>();
Object object = MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsListFiles",path,filtyp);
//Object object = MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsListFiles",path,filtyp);
Object object =new Object();
if(MdaUtils.isEmpty(object) || object == null)
{
log.info("{}","get from fileserver listfiles null");
......@@ -3196,7 +3198,8 @@ public class Platform
**列出文件服务器中指定路径文件夹列表
**/
List<String> lst = new ArrayList<String>();
Object object = MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsListDirs",path);
//Object object = MdaUtils.invoke("cn.com.brilliance.psbc.client.imp.FileImp","fsListDirs",path);
Object object=new Object();
if(MdaUtils.isEmpty(object) || object == null)
{
log.info("{}","get from fileserver listdirs null");
......
<?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.ceb.gjjs.mda.dao.AduMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Adu">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="adunam" column="adunam" jdbcType="VARCHAR" />
<result property="isrellev" column="isrellev" jdbcType="VARCHAR" />
<result property="credat" column="credat" jdbcType="VARCHAR" />
<result property="creusr" column="creusr" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,adunam,isrellev,credat,creusr
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from adu
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from adu
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into adu (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{adunam,jdbcType=VARCHAR},
#{isrellev,jdbcType=VARCHAR},
#{credat,jdbcType=VARCHAR},
#{creusr,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into adu
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="adunam != null">adunam,</if>
<if test="isrellev != null">isrellev,</if>
<if test="credat != null">credat,</if>
<if test="creusr != null">creusr,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="adunam != null">#{adunam,jdbcType=VARCHAR}, </if>
<if test="isrellev != null">#{isrellev,jdbcType=VARCHAR}, </if>
<if test="credat != null">#{credat,jdbcType=VARCHAR}, </if>
<if test="creusr != null">#{creusr,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update adu
<set>
<if test="adunam != null">adunam = #{adunam,jdbcType=VARCHAR},</if>
<if test="isrellev != null">isrellev = #{isrellev,jdbcType=VARCHAR},</if>
<if test="credat != null">credat = #{credat,jdbcType=VARCHAR},</if>
<if test="creusr != null">creusr = #{creusr,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update adu
<set>
adunam = #{adunam,jdbcType=VARCHAR},
isrellev = #{isrellev,jdbcType=VARCHAR},
credat = #{credat,jdbcType=VARCHAR},
creusr = #{creusr,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.BnsstaMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Bnssta">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="hstnam" column="hstnam" jdbcType="VARCHAR" />
<result property="upddat" column="upddat" jdbcType="DATE" />
<result property="middle" column="middle" jdbcType="VARCHAR" />
<result property="status" column="status" jdbcType="VARCHAR" />
<result property="flg" column="flg" jdbcType="VARCHAR" />
<result property="busnam" column="busnam" jdbcType="VARCHAR" />
<result property="bustyp" column="bustyp" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,hstnam,upddat,middle,status,flg,busnam,bustyp
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from bnssta
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from bnssta
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into bnssta (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{hstnam,jdbcType=VARCHAR},
#{upddat,jdbcType=DATE},
#{middle,jdbcType=VARCHAR},
#{status,jdbcType=VARCHAR},
#{flg,jdbcType=VARCHAR},
#{busnam,jdbcType=VARCHAR},
#{bustyp,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into bnssta
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="hstnam != null">hstnam,</if>
<if test="upddat != null">upddat,</if>
<if test="middle != null">middle,</if>
<if test="status != null">status,</if>
<if test="flg != null">flg,</if>
<if test="busnam != null">busnam,</if>
<if test="bustyp != null">bustyp,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="hstnam != null">#{hstnam,jdbcType=VARCHAR}, </if>
<if test="upddat != null">#{upddat,jdbcType=DATE}, </if>
<if test="middle != null">#{middle,jdbcType=VARCHAR}, </if>
<if test="status != null">#{status,jdbcType=VARCHAR}, </if>
<if test="flg != null">#{flg,jdbcType=VARCHAR}, </if>
<if test="busnam != null">#{busnam,jdbcType=VARCHAR}, </if>
<if test="bustyp != null">#{bustyp,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update bnssta
<set>
<if test="hstnam != null">hstnam = #{hstnam,jdbcType=VARCHAR},</if>
<if test="upddat != null">upddat = #{upddat,jdbcType=DATE},</if>
<if test="middle != null">middle = #{middle,jdbcType=VARCHAR},</if>
<if test="status != null">status = #{status,jdbcType=VARCHAR},</if>
<if test="flg != null">flg = #{flg,jdbcType=VARCHAR},</if>
<if test="busnam != null">busnam = #{busnam,jdbcType=VARCHAR},</if>
<if test="bustyp != null">bustyp = #{bustyp,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update bnssta
<set>
hstnam = #{hstnam,jdbcType=VARCHAR},
upddat = #{upddat,jdbcType=DATE},
middle = #{middle,jdbcType=VARCHAR},
status = #{status,jdbcType=VARCHAR},
flg = #{flg,jdbcType=VARCHAR},
busnam = #{busnam,jdbcType=VARCHAR},
bustyp = #{bustyp,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.CetcsnMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Cetcsn">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="bnkcod" column="bnkcod" jdbcType="VARCHAR" />
<result property="certdn" column="certdn" jdbcType="VARCHAR" />
<result property="certsn" column="certsn" jdbcType="VARCHAR" />
<result property="certefdat" column="certefdat" jdbcType="VARCHAR" />
<result property="certindat" column="certindat" jdbcType="VARCHAR" />
<result property="cerbdy" column="cerbdy" jdbcType="VARCHAR" />
<result property="fxdinr" column="fxdinr" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="sndpty" column="sndpty" jdbcType="VARCHAR" />
<result property="snddirpty" column="snddirpty" jdbcType="VARCHAR" />
<result property="rcvdirpty" column="rcvdirpty" jdbcType="VARCHAR" />
<result property="rcvpty" column="rcvpty" jdbcType="VARCHAR" />
<result property="relinr" column="relinr" jdbcType="VARCHAR" />
<result property="gendat" column="gendat" jdbcType="DATE" />
<result property="rem" column="rem" jdbcType="VARCHAR" />
<result property="subtyp" column="subtyp" jdbcType="VARCHAR" />
<result property="csntyp" column="csntyp" jdbcType="VARCHAR" />
<result property="syscd" column="syscd" jdbcType="VARCHAR" />
<result property="flg" column="flg" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,bnkcod,certdn,certsn,certefdat,certindat,cerbdy,fxdinr,sta,sndpty,snddirpty,rcvdirpty,rcvpty,relinr,gendat,rem,subtyp,csntyp,syscd,flg
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from cetcsn
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from cetcsn
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into cetcsn (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{bnkcod,jdbcType=VARCHAR},
#{certdn,jdbcType=VARCHAR},
#{certsn,jdbcType=VARCHAR},
#{certefdat,jdbcType=VARCHAR},
#{certindat,jdbcType=VARCHAR},
#{cerbdy,jdbcType=VARCHAR},
#{fxdinr,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{sndpty,jdbcType=VARCHAR},
#{snddirpty,jdbcType=VARCHAR},
#{rcvdirpty,jdbcType=VARCHAR},
#{rcvpty,jdbcType=VARCHAR},
#{relinr,jdbcType=VARCHAR},
#{gendat,jdbcType=DATE},
#{rem,jdbcType=VARCHAR},
#{subtyp,jdbcType=VARCHAR},
#{csntyp,jdbcType=VARCHAR},
#{syscd,jdbcType=VARCHAR},
#{flg,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into cetcsn
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="bnkcod != null">bnkcod,</if>
<if test="certdn != null">certdn,</if>
<if test="certsn != null">certsn,</if>
<if test="certefdat != null">certefdat,</if>
<if test="certindat != null">certindat,</if>
<if test="cerbdy != null">cerbdy,</if>
<if test="fxdinr != null">fxdinr,</if>
<if test="sta != null">sta,</if>
<if test="sndpty != null">sndpty,</if>
<if test="snddirpty != null">snddirpty,</if>
<if test="rcvdirpty != null">rcvdirpty,</if>
<if test="rcvpty != null">rcvpty,</if>
<if test="relinr != null">relinr,</if>
<if test="gendat != null">gendat,</if>
<if test="rem != null">rem,</if>
<if test="subtyp != null">subtyp,</if>
<if test="csntyp != null">csntyp,</if>
<if test="syscd != null">syscd,</if>
<if test="flg != null">flg,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="bnkcod != null">#{bnkcod,jdbcType=VARCHAR}, </if>
<if test="certdn != null">#{certdn,jdbcType=VARCHAR}, </if>
<if test="certsn != null">#{certsn,jdbcType=VARCHAR}, </if>
<if test="certefdat != null">#{certefdat,jdbcType=VARCHAR}, </if>
<if test="certindat != null">#{certindat,jdbcType=VARCHAR}, </if>
<if test="cerbdy != null">#{cerbdy,jdbcType=VARCHAR}, </if>
<if test="fxdinr != null">#{fxdinr,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="sndpty != null">#{sndpty,jdbcType=VARCHAR}, </if>
<if test="snddirpty != null">#{snddirpty,jdbcType=VARCHAR}, </if>
<if test="rcvdirpty != null">#{rcvdirpty,jdbcType=VARCHAR}, </if>
<if test="rcvpty != null">#{rcvpty,jdbcType=VARCHAR}, </if>
<if test="relinr != null">#{relinr,jdbcType=VARCHAR}, </if>
<if test="gendat != null">#{gendat,jdbcType=DATE}, </if>
<if test="rem != null">#{rem,jdbcType=VARCHAR}, </if>
<if test="subtyp != null">#{subtyp,jdbcType=VARCHAR}, </if>
<if test="csntyp != null">#{csntyp,jdbcType=VARCHAR}, </if>
<if test="syscd != null">#{syscd,jdbcType=VARCHAR}, </if>
<if test="flg != null">#{flg,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update cetcsn
<set>
<if test="bnkcod != null">bnkcod = #{bnkcod,jdbcType=VARCHAR},</if>
<if test="certdn != null">certdn = #{certdn,jdbcType=VARCHAR},</if>
<if test="certsn != null">certsn = #{certsn,jdbcType=VARCHAR},</if>
<if test="certefdat != null">certefdat = #{certefdat,jdbcType=VARCHAR},</if>
<if test="certindat != null">certindat = #{certindat,jdbcType=VARCHAR},</if>
<if test="cerbdy != null">cerbdy = #{cerbdy,jdbcType=VARCHAR},</if>
<if test="fxdinr != null">fxdinr = #{fxdinr,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="sndpty != null">sndpty = #{sndpty,jdbcType=VARCHAR},</if>
<if test="snddirpty != null">snddirpty = #{snddirpty,jdbcType=VARCHAR},</if>
<if test="rcvdirpty != null">rcvdirpty = #{rcvdirpty,jdbcType=VARCHAR},</if>
<if test="rcvpty != null">rcvpty = #{rcvpty,jdbcType=VARCHAR},</if>
<if test="relinr != null">relinr = #{relinr,jdbcType=VARCHAR},</if>
<if test="gendat != null">gendat = #{gendat,jdbcType=DATE},</if>
<if test="rem != null">rem = #{rem,jdbcType=VARCHAR},</if>
<if test="subtyp != null">subtyp = #{subtyp,jdbcType=VARCHAR},</if>
<if test="csntyp != null">csntyp = #{csntyp,jdbcType=VARCHAR},</if>
<if test="syscd != null">syscd = #{syscd,jdbcType=VARCHAR},</if>
<if test="flg != null">flg = #{flg,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update cetcsn
<set>
bnkcod = #{bnkcod,jdbcType=VARCHAR},
certdn = #{certdn,jdbcType=VARCHAR},
certsn = #{certsn,jdbcType=VARCHAR},
certefdat = #{certefdat,jdbcType=VARCHAR},
certindat = #{certindat,jdbcType=VARCHAR},
cerbdy = #{cerbdy,jdbcType=VARCHAR},
fxdinr = #{fxdinr,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
sndpty = #{sndpty,jdbcType=VARCHAR},
snddirpty = #{snddirpty,jdbcType=VARCHAR},
rcvdirpty = #{rcvdirpty,jdbcType=VARCHAR},
rcvpty = #{rcvpty,jdbcType=VARCHAR},
relinr = #{relinr,jdbcType=VARCHAR},
gendat = #{gendat,jdbcType=DATE},
rem = #{rem,jdbcType=VARCHAR},
subtyp = #{subtyp,jdbcType=VARCHAR},
csntyp = #{csntyp,jdbcType=VARCHAR},
syscd = #{syscd,jdbcType=VARCHAR},
flg = #{flg,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.ChnMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Chn">
<result property="cod" column="cod" jdbcType="VARCHAR" />
<result property="nam" column="nam" jdbcType="VARCHAR" />
<result property="ctlsta" column="ctlsta" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="typ" column="typ" jdbcType="VARCHAR" />
<result property="fmt" column="fmt" jdbcType="VARCHAR" />
<result property="lstrcvdattim" column="lstrcvdattim" jdbcType="TIMESTAMP" />
<result property="lstsnddattim" column="lstsnddattim" jdbcType="TIMESTAMP" />
<result property="dlytim" column="dlytim" jdbcType="INTEGER" />
<result property="mpssta" column="mpssta" jdbcType="VARCHAR" />
<result property="txt" column="txt" jdbcType="VARCHAR" />
<result property="sndcnt" column="sndcnt" jdbcType="VARCHAR" />
<result property="rcvcnt" column="rcvcnt" jdbcType="VARCHAR" />
<result property="oprsta" column="oprsta" jdbcType="VARCHAR" />
<result property="chncod" column="chncod" jdbcType="VARCHAR" />
<result property="oprtyp" column="oprtyp" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
cod,nam,ctlsta,sta,typ,fmt,lstrcvdattim,lstsnddattim,dlytim,mpssta,txt,sndcnt,rcvcnt,oprsta,chncod,oprtyp
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from chn
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from chn
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into chn (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{cod,jdbcType=VARCHAR},
#{nam,jdbcType=VARCHAR},
#{ctlsta,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{typ,jdbcType=VARCHAR},
#{fmt,jdbcType=VARCHAR},
#{lstrcvdattim,jdbcType=TIMESTAMP},
#{lstsnddattim,jdbcType=TIMESTAMP},
#{dlytim,jdbcType=INTEGER},
#{mpssta,jdbcType=VARCHAR},
#{txt,jdbcType=VARCHAR},
#{sndcnt,jdbcType=VARCHAR},
#{rcvcnt,jdbcType=VARCHAR},
#{oprsta,jdbcType=VARCHAR},
#{chncod,jdbcType=VARCHAR},
#{oprtyp,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into chn
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="cod != null">cod,</if>
<if test="nam != null">nam,</if>
<if test="ctlsta != null">ctlsta,</if>
<if test="sta != null">sta,</if>
<if test="typ != null">typ,</if>
<if test="fmt != null">fmt,</if>
<if test="lstrcvdattim != null">lstrcvdattim,</if>
<if test="lstsnddattim != null">lstsnddattim,</if>
<if test="dlytim != null">dlytim,</if>
<if test="mpssta != null">mpssta,</if>
<if test="txt != null">txt,</if>
<if test="sndcnt != null">sndcnt,</if>
<if test="rcvcnt != null">rcvcnt,</if>
<if test="oprsta != null">oprsta,</if>
<if test="chncod != null">chncod,</if>
<if test="oprtyp != null">oprtyp,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="cod != null">#{cod,jdbcType=VARCHAR}, </if>
<if test="nam != null">#{nam,jdbcType=VARCHAR}, </if>
<if test="ctlsta != null">#{ctlsta,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="typ != null">#{typ,jdbcType=VARCHAR}, </if>
<if test="fmt != null">#{fmt,jdbcType=VARCHAR}, </if>
<if test="lstrcvdattim != null">#{lstrcvdattim,jdbcType=TIMESTAMP}, </if>
<if test="lstsnddattim != null">#{lstsnddattim,jdbcType=TIMESTAMP}, </if>
<if test="dlytim != null">#{dlytim,jdbcType=INTEGER}, </if>
<if test="mpssta != null">#{mpssta,jdbcType=VARCHAR}, </if>
<if test="txt != null">#{txt,jdbcType=VARCHAR}, </if>
<if test="sndcnt != null">#{sndcnt,jdbcType=VARCHAR}, </if>
<if test="rcvcnt != null">#{rcvcnt,jdbcType=VARCHAR}, </if>
<if test="oprsta != null">#{oprsta,jdbcType=VARCHAR}, </if>
<if test="chncod != null">#{chncod,jdbcType=VARCHAR}, </if>
<if test="oprtyp != null">#{oprtyp,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update chn
<set>
<if test="cod != null">cod = #{cod,jdbcType=VARCHAR},</if>
<if test="nam != null">nam = #{nam,jdbcType=VARCHAR},</if>
<if test="ctlsta != null">ctlsta = #{ctlsta,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="typ != null">typ = #{typ,jdbcType=VARCHAR},</if>
<if test="fmt != null">fmt = #{fmt,jdbcType=VARCHAR},</if>
<if test="lstrcvdattim != null">lstrcvdattim = #{lstrcvdattim,jdbcType=TIMESTAMP},</if>
<if test="lstsnddattim != null">lstsnddattim = #{lstsnddattim,jdbcType=TIMESTAMP},</if>
<if test="dlytim != null">dlytim = #{dlytim,jdbcType=INTEGER},</if>
<if test="mpssta != null">mpssta = #{mpssta,jdbcType=VARCHAR},</if>
<if test="txt != null">txt = #{txt,jdbcType=VARCHAR},</if>
<if test="sndcnt != null">sndcnt = #{sndcnt,jdbcType=VARCHAR},</if>
<if test="rcvcnt != null">rcvcnt = #{rcvcnt,jdbcType=VARCHAR},</if>
<if test="oprsta != null">oprsta = #{oprsta,jdbcType=VARCHAR},</if>
<if test="chncod != null">chncod = #{chncod,jdbcType=VARCHAR},</if>
<if test="oprtyp != null">oprtyp = #{oprtyp,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update chn
<set>
cod = #{cod,jdbcType=VARCHAR},
nam = #{nam,jdbcType=VARCHAR},
ctlsta = #{ctlsta,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
typ = #{typ,jdbcType=VARCHAR},
fmt = #{fmt,jdbcType=VARCHAR},
lstrcvdattim = #{lstrcvdattim,jdbcType=TIMESTAMP},
lstsnddattim = #{lstsnddattim,jdbcType=TIMESTAMP},
dlytim = #{dlytim,jdbcType=INTEGER},
mpssta = #{mpssta,jdbcType=VARCHAR},
txt = #{txt,jdbcType=VARCHAR},
sndcnt = #{sndcnt,jdbcType=VARCHAR},
rcvcnt = #{rcvcnt,jdbcType=VARCHAR},
oprsta = #{oprsta,jdbcType=VARCHAR},
chncod = #{chncod,jdbcType=VARCHAR},
oprtyp = #{oprtyp,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.CpmMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Cpm">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="mpiinr" column="mpiinr" jdbcType="VARCHAR" />
<result property="ownref" column="ownref" jdbcType="VARCHAR" />
<result property="amt" column="amt" jdbcType="DECIMAL" />
<result property="dc" column="dc" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="sndbic" column="sndbic" jdbcType="VARCHAR" />
<result property="cod" column="cod" jdbcType="DECIMAL" />
<result property="cpyinr" column="cpyinr" jdbcType="VARCHAR" />
<result property="subtyp" column="subtyp" jdbcType="VARCHAR" />
<result property="chkdat" column="chkdat" jdbcType="DATE" />
<result property="chkbic" column="chkbic" jdbcType="VARCHAR" />
<result property="flg" column="flg" jdbcType="VARCHAR" />
<result property="biztyp" column="biztyp" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,mpiinr,ownref,amt,dc,sta,sndbic,cod,cpyinr,subtyp,chkdat,chkbic,flg,biztyp
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from cpm
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from cpm
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into cpm (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{mpiinr,jdbcType=VARCHAR},
#{ownref,jdbcType=VARCHAR},
#{amt,jdbcType=DECIMAL},
#{dc,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{sndbic,jdbcType=VARCHAR},
#{cod,jdbcType=DECIMAL},
#{cpyinr,jdbcType=VARCHAR},
#{subtyp,jdbcType=VARCHAR},
#{chkdat,jdbcType=DATE},
#{chkbic,jdbcType=VARCHAR},
#{flg,jdbcType=VARCHAR},
#{biztyp,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into cpm
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="mpiinr != null">mpiinr,</if>
<if test="ownref != null">ownref,</if>
<if test="amt != null">amt,</if>
<if test="dc != null">dc,</if>
<if test="sta != null">sta,</if>
<if test="sndbic != null">sndbic,</if>
<if test="cod != null">cod,</if>
<if test="cpyinr != null">cpyinr,</if>
<if test="subtyp != null">subtyp,</if>
<if test="chkdat != null">chkdat,</if>
<if test="chkbic != null">chkbic,</if>
<if test="flg != null">flg,</if>
<if test="biztyp != null">biztyp,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="mpiinr != null">#{mpiinr,jdbcType=VARCHAR}, </if>
<if test="ownref != null">#{ownref,jdbcType=VARCHAR}, </if>
<if test="amt != null">#{amt,jdbcType=DECIMAL}, </if>
<if test="dc != null">#{dc,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="sndbic != null">#{sndbic,jdbcType=VARCHAR}, </if>
<if test="cod != null">#{cod,jdbcType=DECIMAL}, </if>
<if test="cpyinr != null">#{cpyinr,jdbcType=VARCHAR}, </if>
<if test="subtyp != null">#{subtyp,jdbcType=VARCHAR}, </if>
<if test="chkdat != null">#{chkdat,jdbcType=DATE}, </if>
<if test="chkbic != null">#{chkbic,jdbcType=VARCHAR}, </if>
<if test="flg != null">#{flg,jdbcType=VARCHAR}, </if>
<if test="biztyp != null">#{biztyp,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update cpm
<set>
<if test="mpiinr != null">mpiinr = #{mpiinr,jdbcType=VARCHAR},</if>
<if test="ownref != null">ownref = #{ownref,jdbcType=VARCHAR},</if>
<if test="amt != null">amt = #{amt,jdbcType=DECIMAL},</if>
<if test="dc != null">dc = #{dc,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="sndbic != null">sndbic = #{sndbic,jdbcType=VARCHAR},</if>
<if test="cod != null">cod = #{cod,jdbcType=DECIMAL},</if>
<if test="cpyinr != null">cpyinr = #{cpyinr,jdbcType=VARCHAR},</if>
<if test="subtyp != null">subtyp = #{subtyp,jdbcType=VARCHAR},</if>
<if test="chkdat != null">chkdat = #{chkdat,jdbcType=DATE},</if>
<if test="chkbic != null">chkbic = #{chkbic,jdbcType=VARCHAR},</if>
<if test="flg != null">flg = #{flg,jdbcType=VARCHAR},</if>
<if test="biztyp != null">biztyp = #{biztyp,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update cpm
<set>
mpiinr = #{mpiinr,jdbcType=VARCHAR},
ownref = #{ownref,jdbcType=VARCHAR},
amt = #{amt,jdbcType=DECIMAL},
dc = #{dc,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
sndbic = #{sndbic,jdbcType=VARCHAR},
cod = #{cod,jdbcType=DECIMAL},
cpyinr = #{cpyinr,jdbcType=VARCHAR},
subtyp = #{subtyp,jdbcType=VARCHAR},
chkdat = #{chkdat,jdbcType=DATE},
chkbic = #{chkbic,jdbcType=VARCHAR},
flg = #{flg,jdbcType=VARCHAR},
biztyp = #{biztyp,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.CpsactMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Cpsact">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="dirbic" column="dirbic" jdbcType="VARCHAR" />
<result property="acttyp" column="acttyp" jdbcType="VARCHAR" />
<result property="injectminamt" column="injectminamt" jdbcType="DECIMAL" />
<result property="amt" column="amt" jdbcType="DECIMAL" />
<result property="injecttyp" column="injecttyp" jdbcType="VARCHAR" />
<result property="waramt" column="waramt" jdbcType="DECIMAL" />
<result property="begamt" column="begamt" jdbcType="DECIMAL" />
<result property="deballamt" column="deballamt" jdbcType="DECIMAL" />
<result property="crdallamt" column="crdallamt" jdbcType="DECIMAL" />
<result property="lowamt" column="lowamt" jdbcType="DECIMAL" />
<result property="credattim" column="credattim" jdbcType="DATE" />
<result property="tepamt" column="tepamt" jdbcType="DECIMAL" />
<result property="balamt" column="balamt" jdbcType="DECIMAL" />
<result property="preamt" column="preamt" jdbcType="DECIMAL" />
</resultMap>
<sql id="Base_Column_List">
inr,dirbic,acttyp,injectminamt,amt,injecttyp,waramt,begamt,deballamt,crdallamt,lowamt,credattim,tepamt,balamt,preamt
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from cpsact
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from cpsact
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into cpsact (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{dirbic,jdbcType=VARCHAR},
#{acttyp,jdbcType=VARCHAR},
#{injectminamt,jdbcType=DECIMAL},
#{amt,jdbcType=DECIMAL},
#{injecttyp,jdbcType=VARCHAR},
#{waramt,jdbcType=DECIMAL},
#{begamt,jdbcType=DECIMAL},
#{deballamt,jdbcType=DECIMAL},
#{crdallamt,jdbcType=DECIMAL},
#{lowamt,jdbcType=DECIMAL},
#{credattim,jdbcType=DATE},
#{tepamt,jdbcType=DECIMAL},
#{balamt,jdbcType=DECIMAL},
#{preamt,jdbcType=DECIMAL},
</trim>
</insert>
<insert id="insertSelective">
insert into cpsact
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="dirbic != null">dirbic,</if>
<if test="acttyp != null">acttyp,</if>
<if test="injectminamt != null">injectminamt,</if>
<if test="amt != null">amt,</if>
<if test="injecttyp != null">injecttyp,</if>
<if test="waramt != null">waramt,</if>
<if test="begamt != null">begamt,</if>
<if test="deballamt != null">deballamt,</if>
<if test="crdallamt != null">crdallamt,</if>
<if test="lowamt != null">lowamt,</if>
<if test="credattim != null">credattim,</if>
<if test="tepamt != null">tepamt,</if>
<if test="balamt != null">balamt,</if>
<if test="preamt != null">preamt,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="dirbic != null">#{dirbic,jdbcType=VARCHAR}, </if>
<if test="acttyp != null">#{acttyp,jdbcType=VARCHAR}, </if>
<if test="injectminamt != null">#{injectminamt,jdbcType=DECIMAL}, </if>
<if test="amt != null">#{amt,jdbcType=DECIMAL}, </if>
<if test="injecttyp != null">#{injecttyp,jdbcType=VARCHAR}, </if>
<if test="waramt != null">#{waramt,jdbcType=DECIMAL}, </if>
<if test="begamt != null">#{begamt,jdbcType=DECIMAL}, </if>
<if test="deballamt != null">#{deballamt,jdbcType=DECIMAL}, </if>
<if test="crdallamt != null">#{crdallamt,jdbcType=DECIMAL}, </if>
<if test="lowamt != null">#{lowamt,jdbcType=DECIMAL}, </if>
<if test="credattim != null">#{credattim,jdbcType=DATE}, </if>
<if test="tepamt != null">#{tepamt,jdbcType=DECIMAL}, </if>
<if test="balamt != null">#{balamt,jdbcType=DECIMAL}, </if>
<if test="preamt != null">#{preamt,jdbcType=DECIMAL}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update cpsact
<set>
<if test="dirbic != null">dirbic = #{dirbic,jdbcType=VARCHAR},</if>
<if test="acttyp != null">acttyp = #{acttyp,jdbcType=VARCHAR},</if>
<if test="injectminamt != null">injectminamt = #{injectminamt,jdbcType=DECIMAL},</if>
<if test="amt != null">amt = #{amt,jdbcType=DECIMAL},</if>
<if test="injecttyp != null">injecttyp = #{injecttyp,jdbcType=VARCHAR},</if>
<if test="waramt != null">waramt = #{waramt,jdbcType=DECIMAL},</if>
<if test="begamt != null">begamt = #{begamt,jdbcType=DECIMAL},</if>
<if test="deballamt != null">deballamt = #{deballamt,jdbcType=DECIMAL},</if>
<if test="crdallamt != null">crdallamt = #{crdallamt,jdbcType=DECIMAL},</if>
<if test="lowamt != null">lowamt = #{lowamt,jdbcType=DECIMAL},</if>
<if test="credattim != null">credattim = #{credattim,jdbcType=DATE},</if>
<if test="tepamt != null">tepamt = #{tepamt,jdbcType=DECIMAL},</if>
<if test="balamt != null">balamt = #{balamt,jdbcType=DECIMAL},</if>
<if test="preamt != null">preamt = #{preamt,jdbcType=DECIMAL},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update cpsact
<set>
dirbic = #{dirbic,jdbcType=VARCHAR},
acttyp = #{acttyp,jdbcType=VARCHAR},
injectminamt = #{injectminamt,jdbcType=DECIMAL},
amt = #{amt,jdbcType=DECIMAL},
injecttyp = #{injecttyp,jdbcType=VARCHAR},
waramt = #{waramt,jdbcType=DECIMAL},
begamt = #{begamt,jdbcType=DECIMAL},
deballamt = #{deballamt,jdbcType=DECIMAL},
crdallamt = #{crdallamt,jdbcType=DECIMAL},
lowamt = #{lowamt,jdbcType=DECIMAL},
credattim = #{credattim,jdbcType=DATE},
tepamt = #{tepamt,jdbcType=DECIMAL},
balamt = #{balamt,jdbcType=DECIMAL},
preamt = #{preamt,jdbcType=DECIMAL},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.CpstimMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Cpstim">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="orgsystm" column="orgsystm" jdbcType="DATE" />
<result property="orgsysdt" column="orgsysdt" jdbcType="DATE" />
<result property="orgsyssta" column="orgsyssta" jdbcType="VARCHAR" />
<result property="sysdt" column="sysdt" jdbcType="DATE" />
<result property="syssta" column="syssta" jdbcType="VARCHAR" />
<result property="nxtsysdt" column="nxtsysdt" jdbcType="DATE" />
<result property="mmbchnnb" column="mmbchnnb" jdbcType="VARCHAR" />
<result property="parchnnb" column="parchnnb" jdbcType="VARCHAR" />
<result property="drcmmbchnnb" column="drcmmbchnnb" jdbcType="VARCHAR" />
<result property="ustrd" column="ustrd" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,orgsystm,orgsysdt,orgsyssta,sysdt,syssta,nxtsysdt,mmbchnnb,parchnnb,drcmmbchnnb,ustrd
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from cpstim
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from cpstim
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into cpstim (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{orgsystm,jdbcType=DATE},
#{orgsysdt,jdbcType=DATE},
#{orgsyssta,jdbcType=VARCHAR},
#{sysdt,jdbcType=DATE},
#{syssta,jdbcType=VARCHAR},
#{nxtsysdt,jdbcType=DATE},
#{mmbchnnb,jdbcType=VARCHAR},
#{parchnnb,jdbcType=VARCHAR},
#{drcmmbchnnb,jdbcType=VARCHAR},
#{ustrd,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into cpstim
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="orgsystm != null">orgsystm,</if>
<if test="orgsysdt != null">orgsysdt,</if>
<if test="orgsyssta != null">orgsyssta,</if>
<if test="sysdt != null">sysdt,</if>
<if test="syssta != null">syssta,</if>
<if test="nxtsysdt != null">nxtsysdt,</if>
<if test="mmbchnnb != null">mmbchnnb,</if>
<if test="parchnnb != null">parchnnb,</if>
<if test="drcmmbchnnb != null">drcmmbchnnb,</if>
<if test="ustrd != null">ustrd,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="orgsystm != null">#{orgsystm,jdbcType=DATE}, </if>
<if test="orgsysdt != null">#{orgsysdt,jdbcType=DATE}, </if>
<if test="orgsyssta != null">#{orgsyssta,jdbcType=VARCHAR}, </if>
<if test="sysdt != null">#{sysdt,jdbcType=DATE}, </if>
<if test="syssta != null">#{syssta,jdbcType=VARCHAR}, </if>
<if test="nxtsysdt != null">#{nxtsysdt,jdbcType=DATE}, </if>
<if test="mmbchnnb != null">#{mmbchnnb,jdbcType=VARCHAR}, </if>
<if test="parchnnb != null">#{parchnnb,jdbcType=VARCHAR}, </if>
<if test="drcmmbchnnb != null">#{drcmmbchnnb,jdbcType=VARCHAR}, </if>
<if test="ustrd != null">#{ustrd,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update cpstim
<set>
<if test="orgsystm != null">orgsystm = #{orgsystm,jdbcType=DATE},</if>
<if test="orgsysdt != null">orgsysdt = #{orgsysdt,jdbcType=DATE},</if>
<if test="orgsyssta != null">orgsyssta = #{orgsyssta,jdbcType=VARCHAR},</if>
<if test="sysdt != null">sysdt = #{sysdt,jdbcType=DATE},</if>
<if test="syssta != null">syssta = #{syssta,jdbcType=VARCHAR},</if>
<if test="nxtsysdt != null">nxtsysdt = #{nxtsysdt,jdbcType=DATE},</if>
<if test="mmbchnnb != null">mmbchnnb = #{mmbchnnb,jdbcType=VARCHAR},</if>
<if test="parchnnb != null">parchnnb = #{parchnnb,jdbcType=VARCHAR},</if>
<if test="drcmmbchnnb != null">drcmmbchnnb = #{drcmmbchnnb,jdbcType=VARCHAR},</if>
<if test="ustrd != null">ustrd = #{ustrd,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update cpstim
<set>
orgsystm = #{orgsystm,jdbcType=DATE},
orgsysdt = #{orgsysdt,jdbcType=DATE},
orgsyssta = #{orgsyssta,jdbcType=VARCHAR},
sysdt = #{sysdt,jdbcType=DATE},
syssta = #{syssta,jdbcType=VARCHAR},
nxtsysdt = #{nxtsysdt,jdbcType=DATE},
mmbchnnb = #{mmbchnnb,jdbcType=VARCHAR},
parchnnb = #{parchnnb,jdbcType=VARCHAR},
drcmmbchnnb = #{drcmmbchnnb,jdbcType=VARCHAR},
ustrd = #{ustrd,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.CpyMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Cpy">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="ownref" column="ownref" jdbcType="VARCHAR" />
<result property="snddattim" column="snddattim" jdbcType="DATE" />
<result property="pagnum" column="pagnum" jdbcType="VARCHAR" />
<result property="flg" column="flg" jdbcType="VARCHAR" />
<result property="mpiinr" column="mpiinr" jdbcType="VARCHAR" />
<result property="oriref" column="oriref" jdbcType="VARCHAR" />
<result property="filtyp" column="filtyp" jdbcType="VARCHAR" />
<result property="filpth" column="filpth" jdbcType="VARCHAR" />
<result property="filnam" column="filnam" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="chkdat" column="chkdat" jdbcType="DATE" />
</resultMap>
<sql id="Base_Column_List">
inr,ownref,snddattim,pagnum,flg,mpiinr,oriref,filtyp,filpth,filnam,sta,chkdat
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from cpy
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from cpy
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into cpy (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{ownref,jdbcType=VARCHAR},
#{snddattim,jdbcType=DATE},
#{pagnum,jdbcType=VARCHAR},
#{flg,jdbcType=VARCHAR},
#{mpiinr,jdbcType=VARCHAR},
#{oriref,jdbcType=VARCHAR},
#{filtyp,jdbcType=VARCHAR},
#{filpth,jdbcType=VARCHAR},
#{filnam,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{chkdat,jdbcType=DATE},
</trim>
</insert>
<insert id="insertSelective">
insert into cpy
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="ownref != null">ownref,</if>
<if test="snddattim != null">snddattim,</if>
<if test="pagnum != null">pagnum,</if>
<if test="flg != null">flg,</if>
<if test="mpiinr != null">mpiinr,</if>
<if test="oriref != null">oriref,</if>
<if test="filtyp != null">filtyp,</if>
<if test="filpth != null">filpth,</if>
<if test="filnam != null">filnam,</if>
<if test="sta != null">sta,</if>
<if test="chkdat != null">chkdat,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="ownref != null">#{ownref,jdbcType=VARCHAR}, </if>
<if test="snddattim != null">#{snddattim,jdbcType=DATE}, </if>
<if test="pagnum != null">#{pagnum,jdbcType=VARCHAR}, </if>
<if test="flg != null">#{flg,jdbcType=VARCHAR}, </if>
<if test="mpiinr != null">#{mpiinr,jdbcType=VARCHAR}, </if>
<if test="oriref != null">#{oriref,jdbcType=VARCHAR}, </if>
<if test="filtyp != null">#{filtyp,jdbcType=VARCHAR}, </if>
<if test="filpth != null">#{filpth,jdbcType=VARCHAR}, </if>
<if test="filnam != null">#{filnam,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="chkdat != null">#{chkdat,jdbcType=DATE}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update cpy
<set>
<if test="ownref != null">ownref = #{ownref,jdbcType=VARCHAR},</if>
<if test="snddattim != null">snddattim = #{snddattim,jdbcType=DATE},</if>
<if test="pagnum != null">pagnum = #{pagnum,jdbcType=VARCHAR},</if>
<if test="flg != null">flg = #{flg,jdbcType=VARCHAR},</if>
<if test="mpiinr != null">mpiinr = #{mpiinr,jdbcType=VARCHAR},</if>
<if test="oriref != null">oriref = #{oriref,jdbcType=VARCHAR},</if>
<if test="filtyp != null">filtyp = #{filtyp,jdbcType=VARCHAR},</if>
<if test="filpth != null">filpth = #{filpth,jdbcType=VARCHAR},</if>
<if test="filnam != null">filnam = #{filnam,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="chkdat != null">chkdat = #{chkdat,jdbcType=DATE},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update cpy
<set>
ownref = #{ownref,jdbcType=VARCHAR},
snddattim = #{snddattim,jdbcType=DATE},
pagnum = #{pagnum,jdbcType=VARCHAR},
flg = #{flg,jdbcType=VARCHAR},
mpiinr = #{mpiinr,jdbcType=VARCHAR},
oriref = #{oriref,jdbcType=VARCHAR},
filtyp = #{filtyp,jdbcType=VARCHAR},
filpth = #{filpth,jdbcType=VARCHAR},
filnam = #{filnam,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
chkdat = #{chkdat,jdbcType=DATE},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.CsnMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Csn">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="bnkbic" column="bnkbic" jdbcType="VARCHAR" />
<result property="cn" column="cn" jdbcType="VARCHAR" />
<result property="sn" column="sn" jdbcType="VARCHAR" />
<result property="csntyp" column="csntyp" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="relinr" column="relinr" jdbcType="VARCHAR" />
<result property="subtyp" column="subtyp" jdbcType="VARCHAR" />
<result property="gendat" column="gendat" jdbcType="DATE" />
<result property="rem" column="rem" jdbcType="VARCHAR" />
<result property="typ" column="typ" jdbcType="VARCHAR" />
<result property="chgbic" column="chgbic" jdbcType="VARCHAR" />
<result property="bnknam" column="bnknam" jdbcType="VARCHAR" />
<result property="lstdat" column="lstdat" jdbcType="DATE" />
</resultMap>
<sql id="Base_Column_List">
inr,bnkbic,cn,sn,csntyp,sta,relinr,subtyp,gendat,rem,typ,chgbic,bnknam,lstdat
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from csn
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from csn
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into csn (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{bnkbic,jdbcType=VARCHAR},
#{cn,jdbcType=VARCHAR},
#{sn,jdbcType=VARCHAR},
#{csntyp,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{relinr,jdbcType=VARCHAR},
#{subtyp,jdbcType=VARCHAR},
#{gendat,jdbcType=DATE},
#{rem,jdbcType=VARCHAR},
#{typ,jdbcType=VARCHAR},
#{chgbic,jdbcType=VARCHAR},
#{bnknam,jdbcType=VARCHAR},
#{lstdat,jdbcType=DATE},
</trim>
</insert>
<insert id="insertSelective">
insert into csn
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="bnkbic != null">bnkbic,</if>
<if test="cn != null">cn,</if>
<if test="sn != null">sn,</if>
<if test="csntyp != null">csntyp,</if>
<if test="sta != null">sta,</if>
<if test="relinr != null">relinr,</if>
<if test="subtyp != null">subtyp,</if>
<if test="gendat != null">gendat,</if>
<if test="rem != null">rem,</if>
<if test="typ != null">typ,</if>
<if test="chgbic != null">chgbic,</if>
<if test="bnknam != null">bnknam,</if>
<if test="lstdat != null">lstdat,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="bnkbic != null">#{bnkbic,jdbcType=VARCHAR}, </if>
<if test="cn != null">#{cn,jdbcType=VARCHAR}, </if>
<if test="sn != null">#{sn,jdbcType=VARCHAR}, </if>
<if test="csntyp != null">#{csntyp,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="relinr != null">#{relinr,jdbcType=VARCHAR}, </if>
<if test="subtyp != null">#{subtyp,jdbcType=VARCHAR}, </if>
<if test="gendat != null">#{gendat,jdbcType=DATE}, </if>
<if test="rem != null">#{rem,jdbcType=VARCHAR}, </if>
<if test="typ != null">#{typ,jdbcType=VARCHAR}, </if>
<if test="chgbic != null">#{chgbic,jdbcType=VARCHAR}, </if>
<if test="bnknam != null">#{bnknam,jdbcType=VARCHAR}, </if>
<if test="lstdat != null">#{lstdat,jdbcType=DATE}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update csn
<set>
<if test="bnkbic != null">bnkbic = #{bnkbic,jdbcType=VARCHAR},</if>
<if test="cn != null">cn = #{cn,jdbcType=VARCHAR},</if>
<if test="sn != null">sn = #{sn,jdbcType=VARCHAR},</if>
<if test="csntyp != null">csntyp = #{csntyp,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="relinr != null">relinr = #{relinr,jdbcType=VARCHAR},</if>
<if test="subtyp != null">subtyp = #{subtyp,jdbcType=VARCHAR},</if>
<if test="gendat != null">gendat = #{gendat,jdbcType=DATE},</if>
<if test="rem != null">rem = #{rem,jdbcType=VARCHAR},</if>
<if test="typ != null">typ = #{typ,jdbcType=VARCHAR},</if>
<if test="chgbic != null">chgbic = #{chgbic,jdbcType=VARCHAR},</if>
<if test="bnknam != null">bnknam = #{bnknam,jdbcType=VARCHAR},</if>
<if test="lstdat != null">lstdat = #{lstdat,jdbcType=DATE},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update csn
<set>
bnkbic = #{bnkbic,jdbcType=VARCHAR},
cn = #{cn,jdbcType=VARCHAR},
sn = #{sn,jdbcType=VARCHAR},
csntyp = #{csntyp,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
relinr = #{relinr,jdbcType=VARCHAR},
subtyp = #{subtyp,jdbcType=VARCHAR},
gendat = #{gendat,jdbcType=DATE},
rem = #{rem,jdbcType=VARCHAR},
typ = #{typ,jdbcType=VARCHAR},
chgbic = #{chgbic,jdbcType=VARCHAR},
bnknam = #{bnknam,jdbcType=VARCHAR},
lstdat = #{lstdat,jdbcType=DATE},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.DatMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Dat">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="accdat" column="accdat" jdbcType="VARCHAR" />
<result property="befdat" column="befdat" jdbcType="VARCHAR" />
<result property="hbs" column="hbs" jdbcType="VARCHAR" />
<result property="pjs" column="pjs" jdbcType="VARCHAR" />
<result property="pdz" column="pdz" jdbcType="VARCHAR" />
<result property="chgdattim" column="chgdattim" jdbcType="VARCHAR" />
<result property="nxtbefdat" column="nxtbefdat" jdbcType="VARCHAR" />
<result property="nxtaccdat" column="nxtaccdat" jdbcType="VARCHAR" />
<result property="accdattok" column="accdattok" jdbcType="VARCHAR" />
<result property="costar" column="costar" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,accdat,befdat,hbs,pjs,pdz,chgdattim,nxtbefdat,nxtaccdat,accdattok,costar
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from dat
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from dat
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into dat (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{accdat,jdbcType=VARCHAR},
#{befdat,jdbcType=VARCHAR},
#{hbs,jdbcType=VARCHAR},
#{pjs,jdbcType=VARCHAR},
#{pdz,jdbcType=VARCHAR},
#{chgdattim,jdbcType=VARCHAR},
#{nxtbefdat,jdbcType=VARCHAR},
#{nxtaccdat,jdbcType=VARCHAR},
#{accdattok,jdbcType=VARCHAR},
#{costar,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into dat
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="accdat != null">accdat,</if>
<if test="befdat != null">befdat,</if>
<if test="hbs != null">hbs,</if>
<if test="pjs != null">pjs,</if>
<if test="pdz != null">pdz,</if>
<if test="chgdattim != null">chgdattim,</if>
<if test="nxtbefdat != null">nxtbefdat,</if>
<if test="nxtaccdat != null">nxtaccdat,</if>
<if test="accdattok != null">accdattok,</if>
<if test="costar != null">costar,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="accdat != null">#{accdat,jdbcType=VARCHAR}, </if>
<if test="befdat != null">#{befdat,jdbcType=VARCHAR}, </if>
<if test="hbs != null">#{hbs,jdbcType=VARCHAR}, </if>
<if test="pjs != null">#{pjs,jdbcType=VARCHAR}, </if>
<if test="pdz != null">#{pdz,jdbcType=VARCHAR}, </if>
<if test="chgdattim != null">#{chgdattim,jdbcType=VARCHAR}, </if>
<if test="nxtbefdat != null">#{nxtbefdat,jdbcType=VARCHAR}, </if>
<if test="nxtaccdat != null">#{nxtaccdat,jdbcType=VARCHAR}, </if>
<if test="accdattok != null">#{accdattok,jdbcType=VARCHAR}, </if>
<if test="costar != null">#{costar,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update dat
<set>
<if test="accdat != null">accdat = #{accdat,jdbcType=VARCHAR},</if>
<if test="befdat != null">befdat = #{befdat,jdbcType=VARCHAR},</if>
<if test="hbs != null">hbs = #{hbs,jdbcType=VARCHAR},</if>
<if test="pjs != null">pjs = #{pjs,jdbcType=VARCHAR},</if>
<if test="pdz != null">pdz = #{pdz,jdbcType=VARCHAR},</if>
<if test="chgdattim != null">chgdattim = #{chgdattim,jdbcType=VARCHAR},</if>
<if test="nxtbefdat != null">nxtbefdat = #{nxtbefdat,jdbcType=VARCHAR},</if>
<if test="nxtaccdat != null">nxtaccdat = #{nxtaccdat,jdbcType=VARCHAR},</if>
<if test="accdattok != null">accdattok = #{accdattok,jdbcType=VARCHAR},</if>
<if test="costar != null">costar = #{costar,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update dat
<set>
accdat = #{accdat,jdbcType=VARCHAR},
befdat = #{befdat,jdbcType=VARCHAR},
hbs = #{hbs,jdbcType=VARCHAR},
pjs = #{pjs,jdbcType=VARCHAR},
pdz = #{pdz,jdbcType=VARCHAR},
chgdattim = #{chgdattim,jdbcType=VARCHAR},
nxtbefdat = #{nxtbefdat,jdbcType=VARCHAR},
nxtaccdat = #{nxtaccdat,jdbcType=VARCHAR},
accdattok = #{accdattok,jdbcType=VARCHAR},
costar = #{costar,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.DtaMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Dta">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="act" column="act" jdbcType="VARCHAR" />
<result property="addinf" column="addinf" jdbcType="VARCHAR" />
<result property="etyinr" column="etyinr" jdbcType="VARCHAR" />
<result property="ptyinr" column="ptyinr" jdbcType="VARCHAR" />
<result property="nam" column="nam" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,act,addinf,etyinr,ptyinr,nam
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from dta
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from dta
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into dta (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{act,jdbcType=VARCHAR},
#{addinf,jdbcType=VARCHAR},
#{etyinr,jdbcType=VARCHAR},
#{ptyinr,jdbcType=VARCHAR},
#{nam,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into dta
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="act != null">act,</if>
<if test="addinf != null">addinf,</if>
<if test="etyinr != null">etyinr,</if>
<if test="ptyinr != null">ptyinr,</if>
<if test="nam != null">nam,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="act != null">#{act,jdbcType=VARCHAR}, </if>
<if test="addinf != null">#{addinf,jdbcType=VARCHAR}, </if>
<if test="etyinr != null">#{etyinr,jdbcType=VARCHAR}, </if>
<if test="ptyinr != null">#{ptyinr,jdbcType=VARCHAR}, </if>
<if test="nam != null">#{nam,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update dta
<set>
<if test="act != null">act = #{act,jdbcType=VARCHAR},</if>
<if test="addinf != null">addinf = #{addinf,jdbcType=VARCHAR},</if>
<if test="etyinr != null">etyinr = #{etyinr,jdbcType=VARCHAR},</if>
<if test="ptyinr != null">ptyinr = #{ptyinr,jdbcType=VARCHAR},</if>
<if test="nam != null">nam = #{nam,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update dta
<set>
act = #{act,jdbcType=VARCHAR},
addinf = #{addinf,jdbcType=VARCHAR},
etyinr = #{etyinr,jdbcType=VARCHAR},
ptyinr = #{ptyinr,jdbcType=VARCHAR},
nam = #{nam,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.DtrMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Dtr">
<result property="rulnam" column="rulnam" jdbcType="VARCHAR" />
<result property="msgtyp" column="msgtyp" jdbcType="VARCHAR" />
<result property="lvl" column="lvl" jdbcType="VARCHAR" />
<result property="chnstr" column="chnstr" jdbcType="VARCHAR" />
<result property="typstr" column="typstr" jdbcType="VARCHAR" />
<result property="tagstr" column="tagstr" jdbcType="VARCHAR" />
<result property="smpstp" column="smpstp" jdbcType="VARCHAR" />
<result property="begdat" column="begdat" jdbcType="DATE" />
<result property="enddat" column="enddat" jdbcType="DATE" />
</resultMap>
<sql id="Base_Column_List">
rulnam,msgtyp,lvl,chnstr,typstr,tagstr,smpstp,begdat,enddat
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from dtr
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from dtr
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into dtr (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{rulnam,jdbcType=VARCHAR},
#{msgtyp,jdbcType=VARCHAR},
#{lvl,jdbcType=VARCHAR},
#{chnstr,jdbcType=VARCHAR},
#{typstr,jdbcType=VARCHAR},
#{tagstr,jdbcType=VARCHAR},
#{smpstp,jdbcType=VARCHAR},
#{begdat,jdbcType=DATE},
#{enddat,jdbcType=DATE},
</trim>
</insert>
<insert id="insertSelective">
insert into dtr
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="rulnam != null">rulnam,</if>
<if test="msgtyp != null">msgtyp,</if>
<if test="lvl != null">lvl,</if>
<if test="chnstr != null">chnstr,</if>
<if test="typstr != null">typstr,</if>
<if test="tagstr != null">tagstr,</if>
<if test="smpstp != null">smpstp,</if>
<if test="begdat != null">begdat,</if>
<if test="enddat != null">enddat,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="rulnam != null">#{rulnam,jdbcType=VARCHAR}, </if>
<if test="msgtyp != null">#{msgtyp,jdbcType=VARCHAR}, </if>
<if test="lvl != null">#{lvl,jdbcType=VARCHAR}, </if>
<if test="chnstr != null">#{chnstr,jdbcType=VARCHAR}, </if>
<if test="typstr != null">#{typstr,jdbcType=VARCHAR}, </if>
<if test="tagstr != null">#{tagstr,jdbcType=VARCHAR}, </if>
<if test="smpstp != null">#{smpstp,jdbcType=VARCHAR}, </if>
<if test="begdat != null">#{begdat,jdbcType=DATE}, </if>
<if test="enddat != null">#{enddat,jdbcType=DATE}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update dtr
<set>
<if test="rulnam != null">rulnam = #{rulnam,jdbcType=VARCHAR},</if>
<if test="msgtyp != null">msgtyp = #{msgtyp,jdbcType=VARCHAR},</if>
<if test="lvl != null">lvl = #{lvl,jdbcType=VARCHAR},</if>
<if test="chnstr != null">chnstr = #{chnstr,jdbcType=VARCHAR},</if>
<if test="typstr != null">typstr = #{typstr,jdbcType=VARCHAR},</if>
<if test="tagstr != null">tagstr = #{tagstr,jdbcType=VARCHAR},</if>
<if test="smpstp != null">smpstp = #{smpstp,jdbcType=VARCHAR},</if>
<if test="begdat != null">begdat = #{begdat,jdbcType=DATE},</if>
<if test="enddat != null">enddat = #{enddat,jdbcType=DATE},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update dtr
<set>
rulnam = #{rulnam,jdbcType=VARCHAR},
msgtyp = #{msgtyp,jdbcType=VARCHAR},
lvl = #{lvl,jdbcType=VARCHAR},
chnstr = #{chnstr,jdbcType=VARCHAR},
typstr = #{typstr,jdbcType=VARCHAR},
tagstr = #{tagstr,jdbcType=VARCHAR},
smpstp = #{smpstp,jdbcType=VARCHAR},
begdat = #{begdat,jdbcType=DATE},
enddat = #{enddat,jdbcType=DATE},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.EfdMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Efd">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="tskid" column="tskid" jdbcType="VARCHAR" />
<result property="tsknam" column="tsknam" jdbcType="VARCHAR" />
<result property="filnam" column="filnam" jdbcType="VARCHAR" />
<result property="filpth" column="filpth" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="lstdattim" column="lstdattim" jdbcType="TIMESTAMP" />
<result property="credattim" column="credattim" jdbcType="TIMESTAMP" />
<result property="typ" column="typ" jdbcType="VARCHAR" />
<result property="cnt" column="cnt" jdbcType="VARCHAR" />
<result property="syscode" column="syscode" jdbcType="VARCHAR" />
<result property="chkdat" column="chkdat" jdbcType="VARCHAR" />
<result property="befdat" column="befdat" jdbcType="VARCHAR" />
<result property="accdat" column="accdat" jdbcType="VARCHAR" />
<result property="nowdat" column="nowdat" jdbcType="VARCHAR" />
<result property="yetdat" column="yetdat" jdbcType="VARCHAR" />
<result property="sndtyp" column="sndtyp" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,tskid,tsknam,filnam,filpth,sta,lstdattim,credattim,typ,cnt,syscode,chkdat,befdat,accdat,nowdat,yetdat,sndtyp
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from efd
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from efd
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into efd (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{tskid,jdbcType=VARCHAR},
#{tsknam,jdbcType=VARCHAR},
#{filnam,jdbcType=VARCHAR},
#{filpth,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{lstdattim,jdbcType=TIMESTAMP},
#{credattim,jdbcType=TIMESTAMP},
#{typ,jdbcType=VARCHAR},
#{cnt,jdbcType=VARCHAR},
#{syscode,jdbcType=VARCHAR},
#{chkdat,jdbcType=VARCHAR},
#{befdat,jdbcType=VARCHAR},
#{accdat,jdbcType=VARCHAR},
#{nowdat,jdbcType=VARCHAR},
#{yetdat,jdbcType=VARCHAR},
#{sndtyp,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into efd
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="tskid != null">tskid,</if>
<if test="tsknam != null">tsknam,</if>
<if test="filnam != null">filnam,</if>
<if test="filpth != null">filpth,</if>
<if test="sta != null">sta,</if>
<if test="lstdattim != null">lstdattim,</if>
<if test="credattim != null">credattim,</if>
<if test="typ != null">typ,</if>
<if test="cnt != null">cnt,</if>
<if test="syscode != null">syscode,</if>
<if test="chkdat != null">chkdat,</if>
<if test="befdat != null">befdat,</if>
<if test="accdat != null">accdat,</if>
<if test="nowdat != null">nowdat,</if>
<if test="yetdat != null">yetdat,</if>
<if test="sndtyp != null">sndtyp,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="tskid != null">#{tskid,jdbcType=VARCHAR}, </if>
<if test="tsknam != null">#{tsknam,jdbcType=VARCHAR}, </if>
<if test="filnam != null">#{filnam,jdbcType=VARCHAR}, </if>
<if test="filpth != null">#{filpth,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="lstdattim != null">#{lstdattim,jdbcType=TIMESTAMP}, </if>
<if test="credattim != null">#{credattim,jdbcType=TIMESTAMP}, </if>
<if test="typ != null">#{typ,jdbcType=VARCHAR}, </if>
<if test="cnt != null">#{cnt,jdbcType=VARCHAR}, </if>
<if test="syscode != null">#{syscode,jdbcType=VARCHAR}, </if>
<if test="chkdat != null">#{chkdat,jdbcType=VARCHAR}, </if>
<if test="befdat != null">#{befdat,jdbcType=VARCHAR}, </if>
<if test="accdat != null">#{accdat,jdbcType=VARCHAR}, </if>
<if test="nowdat != null">#{nowdat,jdbcType=VARCHAR}, </if>
<if test="yetdat != null">#{yetdat,jdbcType=VARCHAR}, </if>
<if test="sndtyp != null">#{sndtyp,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update efd
<set>
<if test="tskid != null">tskid = #{tskid,jdbcType=VARCHAR},</if>
<if test="tsknam != null">tsknam = #{tsknam,jdbcType=VARCHAR},</if>
<if test="filnam != null">filnam = #{filnam,jdbcType=VARCHAR},</if>
<if test="filpth != null">filpth = #{filpth,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="lstdattim != null">lstdattim = #{lstdattim,jdbcType=TIMESTAMP},</if>
<if test="credattim != null">credattim = #{credattim,jdbcType=TIMESTAMP},</if>
<if test="typ != null">typ = #{typ,jdbcType=VARCHAR},</if>
<if test="cnt != null">cnt = #{cnt,jdbcType=VARCHAR},</if>
<if test="syscode != null">syscode = #{syscode,jdbcType=VARCHAR},</if>
<if test="chkdat != null">chkdat = #{chkdat,jdbcType=VARCHAR},</if>
<if test="befdat != null">befdat = #{befdat,jdbcType=VARCHAR},</if>
<if test="accdat != null">accdat = #{accdat,jdbcType=VARCHAR},</if>
<if test="nowdat != null">nowdat = #{nowdat,jdbcType=VARCHAR},</if>
<if test="yetdat != null">yetdat = #{yetdat,jdbcType=VARCHAR},</if>
<if test="sndtyp != null">sndtyp = #{sndtyp,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update efd
<set>
tskid = #{tskid,jdbcType=VARCHAR},
tsknam = #{tsknam,jdbcType=VARCHAR},
filnam = #{filnam,jdbcType=VARCHAR},
filpth = #{filpth,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
lstdattim = #{lstdattim,jdbcType=TIMESTAMP},
credattim = #{credattim,jdbcType=TIMESTAMP},
typ = #{typ,jdbcType=VARCHAR},
cnt = #{cnt,jdbcType=VARCHAR},
syscode = #{syscode,jdbcType=VARCHAR},
chkdat = #{chkdat,jdbcType=VARCHAR},
befdat = #{befdat,jdbcType=VARCHAR},
accdat = #{accdat,jdbcType=VARCHAR},
nowdat = #{nowdat,jdbcType=VARCHAR},
yetdat = #{yetdat,jdbcType=VARCHAR},
sndtyp = #{sndtyp,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.ElctimMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Elctim">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="rmk" column="rmk" jdbcType="VARCHAR" />
<result property="orgsystm" column="orgsystm" jdbcType="DATE" />
<result property="orgsysdt" column="orgsysdt" jdbcType="DATE" />
<result property="orgsyssta" column="orgsyssta" jdbcType="VARCHAR" />
<result property="sysdt" column="sysdt" jdbcType="DATE" />
<result property="syssta" column="syssta" jdbcType="VARCHAR" />
<result property="onlnsta" column="onlnsta" jdbcType="VARCHAR" />
<result property="bkchnnb" column="bkchnnb" jdbcType="VARCHAR" />
<result property="parchnnb" column="parchnnb" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,rmk,orgsystm,orgsysdt,orgsyssta,sysdt,syssta,onlnsta,bkchnnb,parchnnb
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from elctim
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from elctim
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into elctim (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{rmk,jdbcType=VARCHAR},
#{orgsystm,jdbcType=DATE},
#{orgsysdt,jdbcType=DATE},
#{orgsyssta,jdbcType=VARCHAR},
#{sysdt,jdbcType=DATE},
#{syssta,jdbcType=VARCHAR},
#{onlnsta,jdbcType=VARCHAR},
#{bkchnnb,jdbcType=VARCHAR},
#{parchnnb,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into elctim
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="rmk != null">rmk,</if>
<if test="orgsystm != null">orgsystm,</if>
<if test="orgsysdt != null">orgsysdt,</if>
<if test="orgsyssta != null">orgsyssta,</if>
<if test="sysdt != null">sysdt,</if>
<if test="syssta != null">syssta,</if>
<if test="onlnsta != null">onlnsta,</if>
<if test="bkchnnb != null">bkchnnb,</if>
<if test="parchnnb != null">parchnnb,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="rmk != null">#{rmk,jdbcType=VARCHAR}, </if>
<if test="orgsystm != null">#{orgsystm,jdbcType=DATE}, </if>
<if test="orgsysdt != null">#{orgsysdt,jdbcType=DATE}, </if>
<if test="orgsyssta != null">#{orgsyssta,jdbcType=VARCHAR}, </if>
<if test="sysdt != null">#{sysdt,jdbcType=DATE}, </if>
<if test="syssta != null">#{syssta,jdbcType=VARCHAR}, </if>
<if test="onlnsta != null">#{onlnsta,jdbcType=VARCHAR}, </if>
<if test="bkchnnb != null">#{bkchnnb,jdbcType=VARCHAR}, </if>
<if test="parchnnb != null">#{parchnnb,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update elctim
<set>
<if test="rmk != null">rmk = #{rmk,jdbcType=VARCHAR},</if>
<if test="orgsystm != null">orgsystm = #{orgsystm,jdbcType=DATE},</if>
<if test="orgsysdt != null">orgsysdt = #{orgsysdt,jdbcType=DATE},</if>
<if test="orgsyssta != null">orgsyssta = #{orgsyssta,jdbcType=VARCHAR},</if>
<if test="sysdt != null">sysdt = #{sysdt,jdbcType=DATE},</if>
<if test="syssta != null">syssta = #{syssta,jdbcType=VARCHAR},</if>
<if test="onlnsta != null">onlnsta = #{onlnsta,jdbcType=VARCHAR},</if>
<if test="bkchnnb != null">bkchnnb = #{bkchnnb,jdbcType=VARCHAR},</if>
<if test="parchnnb != null">parchnnb = #{parchnnb,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update elctim
<set>
rmk = #{rmk,jdbcType=VARCHAR},
orgsystm = #{orgsystm,jdbcType=DATE},
orgsysdt = #{orgsysdt,jdbcType=DATE},
orgsyssta = #{orgsyssta,jdbcType=VARCHAR},
sysdt = #{sysdt,jdbcType=DATE},
syssta = #{syssta,jdbcType=VARCHAR},
onlnsta = #{onlnsta,jdbcType=VARCHAR},
bkchnnb = #{bkchnnb,jdbcType=VARCHAR},
parchnnb = #{parchnnb,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.EtgMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Etg">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="nam" column="nam" jdbcType="VARCHAR" />
<result property="des" column="des" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,nam,des,sta
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from etg
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from etg
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into etg (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{nam,jdbcType=VARCHAR},
#{des,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into etg
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="nam != null">nam,</if>
<if test="des != null">des,</if>
<if test="sta != null">sta,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="nam != null">#{nam,jdbcType=VARCHAR}, </if>
<if test="des != null">#{des,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update etg
<set>
<if test="nam != null">nam = #{nam,jdbcType=VARCHAR},</if>
<if test="des != null">des = #{des,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update etg
<set>
nam = #{nam,jdbcType=VARCHAR},
des = #{des,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.EtyMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Ety">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="etynam" column="etynam" jdbcType="VARCHAR" />
<result property="etginr" column="etginr" jdbcType="VARCHAR" />
<result property="des" column="des" jdbcType="VARCHAR" />
<result property="ref" column="ref" jdbcType="VARCHAR" />
<result property="etyeng" column="etyeng" jdbcType="VARCHAR" />
<result property="sealrl" column="sealrl" jdbcType="VARCHAR" />
<result property="covurl" column="covurl" jdbcType="VARCHAR" />
<result property="lgnurl" column="lgnurl" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="etgnam" column="etgnam" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,etynam,etginr,des,ref,etyeng,sealrl,covurl,lgnurl,sta,etgnam
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from ety
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from ety
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into ety (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{etynam,jdbcType=VARCHAR},
#{etginr,jdbcType=VARCHAR},
#{des,jdbcType=VARCHAR},
#{ref,jdbcType=VARCHAR},
#{etyeng,jdbcType=VARCHAR},
#{sealrl,jdbcType=VARCHAR},
#{covurl,jdbcType=VARCHAR},
#{lgnurl,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{etgnam,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into ety
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="etynam != null">etynam,</if>
<if test="etginr != null">etginr,</if>
<if test="des != null">des,</if>
<if test="ref != null">ref,</if>
<if test="etyeng != null">etyeng,</if>
<if test="sealrl != null">sealrl,</if>
<if test="covurl != null">covurl,</if>
<if test="lgnurl != null">lgnurl,</if>
<if test="sta != null">sta,</if>
<if test="etgnam != null">etgnam,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="etynam != null">#{etynam,jdbcType=VARCHAR}, </if>
<if test="etginr != null">#{etginr,jdbcType=VARCHAR}, </if>
<if test="des != null">#{des,jdbcType=VARCHAR}, </if>
<if test="ref != null">#{ref,jdbcType=VARCHAR}, </if>
<if test="etyeng != null">#{etyeng,jdbcType=VARCHAR}, </if>
<if test="sealrl != null">#{sealrl,jdbcType=VARCHAR}, </if>
<if test="covurl != null">#{covurl,jdbcType=VARCHAR}, </if>
<if test="lgnurl != null">#{lgnurl,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="etgnam != null">#{etgnam,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update ety
<set>
<if test="etynam != null">etynam = #{etynam,jdbcType=VARCHAR},</if>
<if test="etginr != null">etginr = #{etginr,jdbcType=VARCHAR},</if>
<if test="des != null">des = #{des,jdbcType=VARCHAR},</if>
<if test="ref != null">ref = #{ref,jdbcType=VARCHAR},</if>
<if test="etyeng != null">etyeng = #{etyeng,jdbcType=VARCHAR},</if>
<if test="sealrl != null">sealrl = #{sealrl,jdbcType=VARCHAR},</if>
<if test="covurl != null">covurl = #{covurl,jdbcType=VARCHAR},</if>
<if test="lgnurl != null">lgnurl = #{lgnurl,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="etgnam != null">etgnam = #{etgnam,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update ety
<set>
etynam = #{etynam,jdbcType=VARCHAR},
etginr = #{etginr,jdbcType=VARCHAR},
des = #{des,jdbcType=VARCHAR},
ref = #{ref,jdbcType=VARCHAR},
etyeng = #{etyeng,jdbcType=VARCHAR},
sealrl = #{sealrl,jdbcType=VARCHAR},
covurl = #{covurl,jdbcType=VARCHAR},
lgnurl = #{lgnurl,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
etgnam = #{etgnam,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.FipstaMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Fipsta">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="ip" column="ip" jdbcType="VARCHAR" />
<result property="status" column="status" jdbcType="VARCHAR" />
<result property="chncod" column="chncod" jdbcType="VARCHAR" />
<result property="manaip" column="manaip" jdbcType="VARCHAR" />
<result property="chgdat" column="chgdat" jdbcType="DATE" />
<result property="fir" column="fir" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,ip,status,chncod,manaip,chgdat,fir
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from fipsta
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from fipsta
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into fipsta (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{ip,jdbcType=VARCHAR},
#{status,jdbcType=VARCHAR},
#{chncod,jdbcType=VARCHAR},
#{manaip,jdbcType=VARCHAR},
#{chgdat,jdbcType=DATE},
#{fir,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into fipsta
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="ip != null">ip,</if>
<if test="status != null">status,</if>
<if test="chncod != null">chncod,</if>
<if test="manaip != null">manaip,</if>
<if test="chgdat != null">chgdat,</if>
<if test="fir != null">fir,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="ip != null">#{ip,jdbcType=VARCHAR}, </if>
<if test="status != null">#{status,jdbcType=VARCHAR}, </if>
<if test="chncod != null">#{chncod,jdbcType=VARCHAR}, </if>
<if test="manaip != null">#{manaip,jdbcType=VARCHAR}, </if>
<if test="chgdat != null">#{chgdat,jdbcType=DATE}, </if>
<if test="fir != null">#{fir,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update fipsta
<set>
<if test="ip != null">ip = #{ip,jdbcType=VARCHAR},</if>
<if test="status != null">status = #{status,jdbcType=VARCHAR},</if>
<if test="chncod != null">chncod = #{chncod,jdbcType=VARCHAR},</if>
<if test="manaip != null">manaip = #{manaip,jdbcType=VARCHAR},</if>
<if test="chgdat != null">chgdat = #{chgdat,jdbcType=DATE},</if>
<if test="fir != null">fir = #{fir,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update fipsta
<set>
ip = #{ip,jdbcType=VARCHAR},
status = #{status,jdbcType=VARCHAR},
chncod = #{chncod,jdbcType=VARCHAR},
manaip = #{manaip,jdbcType=VARCHAR},
chgdat = #{chgdat,jdbcType=DATE},
fir = #{fir,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.FrmMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Frm">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="pntinr" column="pntinr" jdbcType="VARCHAR" />
<result property="frm" column="frm" jdbcType="VARCHAR" />
<result property="dsp" column="dsp" jdbcType="VARCHAR" />
<result property="frmtyp" column="frmtyp" jdbcType="VARCHAR" />
<result property="typ" column="typ" jdbcType="VARCHAR" />
<result property="flg" column="flg" jdbcType="VARCHAR" />
<result property="chkflg" column="chkflg" jdbcType="VARCHAR" />
<result property="chkflg1" column="chkflg1" jdbcType="VARCHAR" />
<result property="lvl" column="lvl" jdbcType="VARCHAR" />
<result property="chk" column="chk" jdbcType="VARCHAR" />
<result property="subtyp" column="subtyp" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,pntinr,frm,dsp,frmtyp,typ,flg,chkflg,chkflg1,lvl,chk,subtyp
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from frm
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from frm
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into frm (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{pntinr,jdbcType=VARCHAR},
#{frm,jdbcType=VARCHAR},
#{dsp,jdbcType=VARCHAR},
#{frmtyp,jdbcType=VARCHAR},
#{typ,jdbcType=VARCHAR},
#{flg,jdbcType=VARCHAR},
#{chkflg,jdbcType=VARCHAR},
#{chkflg1,jdbcType=VARCHAR},
#{lvl,jdbcType=VARCHAR},
#{chk,jdbcType=VARCHAR},
#{subtyp,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into frm
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="pntinr != null">pntinr,</if>
<if test="frm != null">frm,</if>
<if test="dsp != null">dsp,</if>
<if test="frmtyp != null">frmtyp,</if>
<if test="typ != null">typ,</if>
<if test="flg != null">flg,</if>
<if test="chkflg != null">chkflg,</if>
<if test="chkflg1 != null">chkflg1,</if>
<if test="lvl != null">lvl,</if>
<if test="chk != null">chk,</if>
<if test="subtyp != null">subtyp,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="pntinr != null">#{pntinr,jdbcType=VARCHAR}, </if>
<if test="frm != null">#{frm,jdbcType=VARCHAR}, </if>
<if test="dsp != null">#{dsp,jdbcType=VARCHAR}, </if>
<if test="frmtyp != null">#{frmtyp,jdbcType=VARCHAR}, </if>
<if test="typ != null">#{typ,jdbcType=VARCHAR}, </if>
<if test="flg != null">#{flg,jdbcType=VARCHAR}, </if>
<if test="chkflg != null">#{chkflg,jdbcType=VARCHAR}, </if>
<if test="chkflg1 != null">#{chkflg1,jdbcType=VARCHAR}, </if>
<if test="lvl != null">#{lvl,jdbcType=VARCHAR}, </if>
<if test="chk != null">#{chk,jdbcType=VARCHAR}, </if>
<if test="subtyp != null">#{subtyp,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update frm
<set>
<if test="pntinr != null">pntinr = #{pntinr,jdbcType=VARCHAR},</if>
<if test="frm != null">frm = #{frm,jdbcType=VARCHAR},</if>
<if test="dsp != null">dsp = #{dsp,jdbcType=VARCHAR},</if>
<if test="frmtyp != null">frmtyp = #{frmtyp,jdbcType=VARCHAR},</if>
<if test="typ != null">typ = #{typ,jdbcType=VARCHAR},</if>
<if test="flg != null">flg = #{flg,jdbcType=VARCHAR},</if>
<if test="chkflg != null">chkflg = #{chkflg,jdbcType=VARCHAR},</if>
<if test="chkflg1 != null">chkflg1 = #{chkflg1,jdbcType=VARCHAR},</if>
<if test="lvl != null">lvl = #{lvl,jdbcType=VARCHAR},</if>
<if test="chk != null">chk = #{chk,jdbcType=VARCHAR},</if>
<if test="subtyp != null">subtyp = #{subtyp,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update frm
<set>
pntinr = #{pntinr,jdbcType=VARCHAR},
frm = #{frm,jdbcType=VARCHAR},
dsp = #{dsp,jdbcType=VARCHAR},
frmtyp = #{frmtyp,jdbcType=VARCHAR},
typ = #{typ,jdbcType=VARCHAR},
flg = #{flg,jdbcType=VARCHAR},
chkflg = #{chkflg,jdbcType=VARCHAR},
chkflg1 = #{chkflg1,jdbcType=VARCHAR},
lvl = #{lvl,jdbcType=VARCHAR},
chk = #{chk,jdbcType=VARCHAR},
subtyp = #{subtyp,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.FxdcomMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Fxdcom">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="comcod" column="comcod" jdbcType="VARCHAR" />
<result property="cur" column="cur" jdbcType="VARCHAR" />
<result property="comnam" column="comnam" jdbcType="VARCHAR" />
<result property="val" column="val" jdbcType="VARCHAR" />
<result property="updval" column="updval" jdbcType="VARCHAR" />
<result property="typ" column="typ" jdbcType="VARCHAR" />
<result property="effdat" column="effdat" jdbcType="DATE" />
<result property="upddat" column="upddat" jdbcType="DATE" />
<result property="updtim" column="updtim" jdbcType="DATE" />
<result property="remark" column="remark" jdbcType="VARCHAR" />
<result property="fxdinr" column="fxdinr" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="changeterm" column="changeterm" jdbcType="VARCHAR" />
<result property="num" column="num" jdbcType="VARCHAR" />
<result property="chgtyp" column="chgtyp" jdbcType="VARCHAR" />
<result property="comtyp" column="comtyp" jdbcType="VARCHAR" />
<result property="comengnam" column="comengnam" jdbcType="VARCHAR" />
<result property="type" column="type" jdbcType="VARCHAR" />
<result property="filtyp" column="filtyp" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,comcod,cur,comnam,val,updval,typ,effdat,upddat,updtim,remark,fxdinr,sta,changeterm,num,chgtyp,comtyp,comengnam,type,filtyp
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from fxdcom
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from fxdcom
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into fxdcom (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{comcod,jdbcType=VARCHAR},
#{cur,jdbcType=VARCHAR},
#{comnam,jdbcType=VARCHAR},
#{val,jdbcType=VARCHAR},
#{updval,jdbcType=VARCHAR},
#{typ,jdbcType=VARCHAR},
#{effdat,jdbcType=DATE},
#{upddat,jdbcType=DATE},
#{updtim,jdbcType=DATE},
#{remark,jdbcType=VARCHAR},
#{fxdinr,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{changeterm,jdbcType=VARCHAR},
#{num,jdbcType=VARCHAR},
#{chgtyp,jdbcType=VARCHAR},
#{comtyp,jdbcType=VARCHAR},
#{comengnam,jdbcType=VARCHAR},
#{type,jdbcType=VARCHAR},
#{filtyp,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into fxdcom
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="comcod != null">comcod,</if>
<if test="cur != null">cur,</if>
<if test="comnam != null">comnam,</if>
<if test="val != null">val,</if>
<if test="updval != null">updval,</if>
<if test="typ != null">typ,</if>
<if test="effdat != null">effdat,</if>
<if test="upddat != null">upddat,</if>
<if test="updtim != null">updtim,</if>
<if test="remark != null">remark,</if>
<if test="fxdinr != null">fxdinr,</if>
<if test="sta != null">sta,</if>
<if test="changeterm != null">changeterm,</if>
<if test="num != null">num,</if>
<if test="chgtyp != null">chgtyp,</if>
<if test="comtyp != null">comtyp,</if>
<if test="comengnam != null">comengnam,</if>
<if test="type != null">type,</if>
<if test="filtyp != null">filtyp,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="comcod != null">#{comcod,jdbcType=VARCHAR}, </if>
<if test="cur != null">#{cur,jdbcType=VARCHAR}, </if>
<if test="comnam != null">#{comnam,jdbcType=VARCHAR}, </if>
<if test="val != null">#{val,jdbcType=VARCHAR}, </if>
<if test="updval != null">#{updval,jdbcType=VARCHAR}, </if>
<if test="typ != null">#{typ,jdbcType=VARCHAR}, </if>
<if test="effdat != null">#{effdat,jdbcType=DATE}, </if>
<if test="upddat != null">#{upddat,jdbcType=DATE}, </if>
<if test="updtim != null">#{updtim,jdbcType=DATE}, </if>
<if test="remark != null">#{remark,jdbcType=VARCHAR}, </if>
<if test="fxdinr != null">#{fxdinr,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="changeterm != null">#{changeterm,jdbcType=VARCHAR}, </if>
<if test="num != null">#{num,jdbcType=VARCHAR}, </if>
<if test="chgtyp != null">#{chgtyp,jdbcType=VARCHAR}, </if>
<if test="comtyp != null">#{comtyp,jdbcType=VARCHAR}, </if>
<if test="comengnam != null">#{comengnam,jdbcType=VARCHAR}, </if>
<if test="type != null">#{type,jdbcType=VARCHAR}, </if>
<if test="filtyp != null">#{filtyp,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update fxdcom
<set>
<if test="comcod != null">comcod = #{comcod,jdbcType=VARCHAR},</if>
<if test="cur != null">cur = #{cur,jdbcType=VARCHAR},</if>
<if test="comnam != null">comnam = #{comnam,jdbcType=VARCHAR},</if>
<if test="val != null">val = #{val,jdbcType=VARCHAR},</if>
<if test="updval != null">updval = #{updval,jdbcType=VARCHAR},</if>
<if test="typ != null">typ = #{typ,jdbcType=VARCHAR},</if>
<if test="effdat != null">effdat = #{effdat,jdbcType=DATE},</if>
<if test="upddat != null">upddat = #{upddat,jdbcType=DATE},</if>
<if test="updtim != null">updtim = #{updtim,jdbcType=DATE},</if>
<if test="remark != null">remark = #{remark,jdbcType=VARCHAR},</if>
<if test="fxdinr != null">fxdinr = #{fxdinr,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="changeterm != null">changeterm = #{changeterm,jdbcType=VARCHAR},</if>
<if test="num != null">num = #{num,jdbcType=VARCHAR},</if>
<if test="chgtyp != null">chgtyp = #{chgtyp,jdbcType=VARCHAR},</if>
<if test="comtyp != null">comtyp = #{comtyp,jdbcType=VARCHAR},</if>
<if test="comengnam != null">comengnam = #{comengnam,jdbcType=VARCHAR},</if>
<if test="type != null">type = #{type,jdbcType=VARCHAR},</if>
<if test="filtyp != null">filtyp = #{filtyp,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update fxdcom
<set>
comcod = #{comcod,jdbcType=VARCHAR},
cur = #{cur,jdbcType=VARCHAR},
comnam = #{comnam,jdbcType=VARCHAR},
val = #{val,jdbcType=VARCHAR},
updval = #{updval,jdbcType=VARCHAR},
typ = #{typ,jdbcType=VARCHAR},
effdat = #{effdat,jdbcType=DATE},
upddat = #{upddat,jdbcType=DATE},
updtim = #{updtim,jdbcType=DATE},
remark = #{remark,jdbcType=VARCHAR},
fxdinr = #{fxdinr,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
changeterm = #{changeterm,jdbcType=VARCHAR},
num = #{num,jdbcType=VARCHAR},
chgtyp = #{chgtyp,jdbcType=VARCHAR},
comtyp = #{comtyp,jdbcType=VARCHAR},
comengnam = #{comengnam,jdbcType=VARCHAR},
type = #{type,jdbcType=VARCHAR},
filtyp = #{filtyp,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.FxdMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Fxd">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="credat" column="credat" jdbcType="DATE" />
<result property="filtyp" column="filtyp" jdbcType="VARCHAR" />
<result property="filnam" column="filnam" jdbcType="VARCHAR" />
<result property="filpth" column="filpth" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="typ" column="typ" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,credat,filtyp,filnam,filpth,sta,typ
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from fxd
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from fxd
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into fxd (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{credat,jdbcType=DATE},
#{filtyp,jdbcType=VARCHAR},
#{filnam,jdbcType=VARCHAR},
#{filpth,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{typ,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into fxd
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="credat != null">credat,</if>
<if test="filtyp != null">filtyp,</if>
<if test="filnam != null">filnam,</if>
<if test="filpth != null">filpth,</if>
<if test="sta != null">sta,</if>
<if test="typ != null">typ,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="credat != null">#{credat,jdbcType=DATE}, </if>
<if test="filtyp != null">#{filtyp,jdbcType=VARCHAR}, </if>
<if test="filnam != null">#{filnam,jdbcType=VARCHAR}, </if>
<if test="filpth != null">#{filpth,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="typ != null">#{typ,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update fxd
<set>
<if test="credat != null">credat = #{credat,jdbcType=DATE},</if>
<if test="filtyp != null">filtyp = #{filtyp,jdbcType=VARCHAR},</if>
<if test="filnam != null">filnam = #{filnam,jdbcType=VARCHAR},</if>
<if test="filpth != null">filpth = #{filpth,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="typ != null">typ = #{typ,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update fxd
<set>
credat = #{credat,jdbcType=DATE},
filtyp = #{filtyp,jdbcType=VARCHAR},
filnam = #{filnam,jdbcType=VARCHAR},
filpth = #{filpth,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
typ = #{typ,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.FxdpatMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Fxdpat">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="cod" column="cod" jdbcType="VARCHAR" />
<result property="chnnam" column="chnnam" jdbcType="VARCHAR" />
<result property="engnam" column="engnam" jdbcType="VARCHAR" />
<result property="cty" column="cty" jdbcType="VARCHAR" />
<result property="cbtype" column="cbtype" jdbcType="VARCHAR" />
<result property="bakcat" column="bakcat" jdbcType="VARCHAR" />
<result property="ctdbak" column="ctdbak" jdbcType="VARCHAR" />
<result property="lei" column="lei" jdbcType="VARCHAR" />
<result property="valflg" column="valflg" jdbcType="VARCHAR" />
<result property="effdat" column="effdat" jdbcType="VARCHAR" />
<result property="nam" column="nam" jdbcType="VARCHAR" />
<result property="fxdinr" column="fxdinr" jdbcType="VARCHAR" />
<result property="tel" column="tel" jdbcType="VARCHAR" />
<result property="mal" column="mal" jdbcType="VARCHAR" />
<result property="address" column="address" jdbcType="VARCHAR" />
<result property="zipcod" column="zipcod" jdbcType="VARCHAR" />
<result property="presta" column="presta" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="issueno" column="issueno" jdbcType="VARCHAR" />
<result property="bizsta" column="bizsta" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,cod,chnnam,engnam,cty,cbtype,bakcat,ctdbak,lei,valflg,effdat,nam,fxdinr,tel,mal,address,zipcod,presta,sta,issueno,bizsta
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from fxdpat
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from fxdpat
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into fxdpat (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{cod,jdbcType=VARCHAR},
#{chnnam,jdbcType=VARCHAR},
#{engnam,jdbcType=VARCHAR},
#{cty,jdbcType=VARCHAR},
#{cbtype,jdbcType=VARCHAR},
#{bakcat,jdbcType=VARCHAR},
#{ctdbak,jdbcType=VARCHAR},
#{lei,jdbcType=VARCHAR},
#{valflg,jdbcType=VARCHAR},
#{effdat,jdbcType=VARCHAR},
#{nam,jdbcType=VARCHAR},
#{fxdinr,jdbcType=VARCHAR},
#{tel,jdbcType=VARCHAR},
#{mal,jdbcType=VARCHAR},
#{address,jdbcType=VARCHAR},
#{zipcod,jdbcType=VARCHAR},
#{presta,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{issueno,jdbcType=VARCHAR},
#{bizsta,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into fxdpat
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="cod != null">cod,</if>
<if test="chnnam != null">chnnam,</if>
<if test="engnam != null">engnam,</if>
<if test="cty != null">cty,</if>
<if test="cbtype != null">cbtype,</if>
<if test="bakcat != null">bakcat,</if>
<if test="ctdbak != null">ctdbak,</if>
<if test="lei != null">lei,</if>
<if test="valflg != null">valflg,</if>
<if test="effdat != null">effdat,</if>
<if test="nam != null">nam,</if>
<if test="fxdinr != null">fxdinr,</if>
<if test="tel != null">tel,</if>
<if test="mal != null">mal,</if>
<if test="address != null">address,</if>
<if test="zipcod != null">zipcod,</if>
<if test="presta != null">presta,</if>
<if test="sta != null">sta,</if>
<if test="issueno != null">issueno,</if>
<if test="bizsta != null">bizsta,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="cod != null">#{cod,jdbcType=VARCHAR}, </if>
<if test="chnnam != null">#{chnnam,jdbcType=VARCHAR}, </if>
<if test="engnam != null">#{engnam,jdbcType=VARCHAR}, </if>
<if test="cty != null">#{cty,jdbcType=VARCHAR}, </if>
<if test="cbtype != null">#{cbtype,jdbcType=VARCHAR}, </if>
<if test="bakcat != null">#{bakcat,jdbcType=VARCHAR}, </if>
<if test="ctdbak != null">#{ctdbak,jdbcType=VARCHAR}, </if>
<if test="lei != null">#{lei,jdbcType=VARCHAR}, </if>
<if test="valflg != null">#{valflg,jdbcType=VARCHAR}, </if>
<if test="effdat != null">#{effdat,jdbcType=VARCHAR}, </if>
<if test="nam != null">#{nam,jdbcType=VARCHAR}, </if>
<if test="fxdinr != null">#{fxdinr,jdbcType=VARCHAR}, </if>
<if test="tel != null">#{tel,jdbcType=VARCHAR}, </if>
<if test="mal != null">#{mal,jdbcType=VARCHAR}, </if>
<if test="address != null">#{address,jdbcType=VARCHAR}, </if>
<if test="zipcod != null">#{zipcod,jdbcType=VARCHAR}, </if>
<if test="presta != null">#{presta,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="issueno != null">#{issueno,jdbcType=VARCHAR}, </if>
<if test="bizsta != null">#{bizsta,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update fxdpat
<set>
<if test="cod != null">cod = #{cod,jdbcType=VARCHAR},</if>
<if test="chnnam != null">chnnam = #{chnnam,jdbcType=VARCHAR},</if>
<if test="engnam != null">engnam = #{engnam,jdbcType=VARCHAR},</if>
<if test="cty != null">cty = #{cty,jdbcType=VARCHAR},</if>
<if test="cbtype != null">cbtype = #{cbtype,jdbcType=VARCHAR},</if>
<if test="bakcat != null">bakcat = #{bakcat,jdbcType=VARCHAR},</if>
<if test="ctdbak != null">ctdbak = #{ctdbak,jdbcType=VARCHAR},</if>
<if test="lei != null">lei = #{lei,jdbcType=VARCHAR},</if>
<if test="valflg != null">valflg = #{valflg,jdbcType=VARCHAR},</if>
<if test="effdat != null">effdat = #{effdat,jdbcType=VARCHAR},</if>
<if test="nam != null">nam = #{nam,jdbcType=VARCHAR},</if>
<if test="fxdinr != null">fxdinr = #{fxdinr,jdbcType=VARCHAR},</if>
<if test="tel != null">tel = #{tel,jdbcType=VARCHAR},</if>
<if test="mal != null">mal = #{mal,jdbcType=VARCHAR},</if>
<if test="address != null">address = #{address,jdbcType=VARCHAR},</if>
<if test="zipcod != null">zipcod = #{zipcod,jdbcType=VARCHAR},</if>
<if test="presta != null">presta = #{presta,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="issueno != null">issueno = #{issueno,jdbcType=VARCHAR},</if>
<if test="bizsta != null">bizsta = #{bizsta,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update fxdpat
<set>
cod = #{cod,jdbcType=VARCHAR},
chnnam = #{chnnam,jdbcType=VARCHAR},
engnam = #{engnam,jdbcType=VARCHAR},
cty = #{cty,jdbcType=VARCHAR},
cbtype = #{cbtype,jdbcType=VARCHAR},
bakcat = #{bakcat,jdbcType=VARCHAR},
ctdbak = #{ctdbak,jdbcType=VARCHAR},
lei = #{lei,jdbcType=VARCHAR},
valflg = #{valflg,jdbcType=VARCHAR},
effdat = #{effdat,jdbcType=VARCHAR},
nam = #{nam,jdbcType=VARCHAR},
fxdinr = #{fxdinr,jdbcType=VARCHAR},
tel = #{tel,jdbcType=VARCHAR},
mal = #{mal,jdbcType=VARCHAR},
address = #{address,jdbcType=VARCHAR},
zipcod = #{zipcod,jdbcType=VARCHAR},
presta = #{presta,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
issueno = #{issueno,jdbcType=VARCHAR},
bizsta = #{bizsta,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.FxdrelMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Fxdrel">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="cod" column="cod" jdbcType="VARCHAR" />
<result property="drbankcod" column="drbankcod" jdbcType="VARCHAR" />
<result property="effdat" column="effdat" jdbcType="VARCHAR" />
<result property="preupdtyp" column="preupdtyp" jdbcType="VARCHAR" />
<result property="issueno" column="issueno" jdbcType="VARCHAR" />
<result property="updtyp" column="updtyp" jdbcType="VARCHAR" />
<result property="fxdinr" column="fxdinr" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,cod,drbankcod,effdat,preupdtyp,issueno,updtyp,fxdinr
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from fxdrel
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from fxdrel
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into fxdrel (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{cod,jdbcType=VARCHAR},
#{drbankcod,jdbcType=VARCHAR},
#{effdat,jdbcType=VARCHAR},
#{preupdtyp,jdbcType=VARCHAR},
#{issueno,jdbcType=VARCHAR},
#{updtyp,jdbcType=VARCHAR},
#{fxdinr,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into fxdrel
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="cod != null">cod,</if>
<if test="drbankcod != null">drbankcod,</if>
<if test="effdat != null">effdat,</if>
<if test="preupdtyp != null">preupdtyp,</if>
<if test="issueno != null">issueno,</if>
<if test="updtyp != null">updtyp,</if>
<if test="fxdinr != null">fxdinr,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="cod != null">#{cod,jdbcType=VARCHAR}, </if>
<if test="drbankcod != null">#{drbankcod,jdbcType=VARCHAR}, </if>
<if test="effdat != null">#{effdat,jdbcType=VARCHAR}, </if>
<if test="preupdtyp != null">#{preupdtyp,jdbcType=VARCHAR}, </if>
<if test="issueno != null">#{issueno,jdbcType=VARCHAR}, </if>
<if test="updtyp != null">#{updtyp,jdbcType=VARCHAR}, </if>
<if test="fxdinr != null">#{fxdinr,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update fxdrel
<set>
<if test="cod != null">cod = #{cod,jdbcType=VARCHAR},</if>
<if test="drbankcod != null">drbankcod = #{drbankcod,jdbcType=VARCHAR},</if>
<if test="effdat != null">effdat = #{effdat,jdbcType=VARCHAR},</if>
<if test="preupdtyp != null">preupdtyp = #{preupdtyp,jdbcType=VARCHAR},</if>
<if test="issueno != null">issueno = #{issueno,jdbcType=VARCHAR},</if>
<if test="updtyp != null">updtyp = #{updtyp,jdbcType=VARCHAR},</if>
<if test="fxdinr != null">fxdinr = #{fxdinr,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update fxdrel
<set>
cod = #{cod,jdbcType=VARCHAR},
drbankcod = #{drbankcod,jdbcType=VARCHAR},
effdat = #{effdat,jdbcType=VARCHAR},
preupdtyp = #{preupdtyp,jdbcType=VARCHAR},
issueno = #{issueno,jdbcType=VARCHAR},
updtyp = #{updtyp,jdbcType=VARCHAR},
fxdinr = #{fxdinr,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.FxdrigMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Fxdrig">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="bic" column="bic" jdbcType="VARCHAR" />
<result property="sndtyp" column="sndtyp" jdbcType="VARCHAR" />
<result property="rcvtyp" column="rcvtyp" jdbcType="VARCHAR" />
<result property="upddat" column="upddat" jdbcType="DATE" />
<result property="updtim" column="updtim" jdbcType="DATE" />
<result property="fxdinr" column="fxdinr" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="typ" column="typ" jdbcType="VARCHAR" />
<result property="atytyp" column="atytyp" jdbcType="VARCHAR" />
<result property="msgtyp" column="msgtyp" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,bic,sndtyp,rcvtyp,upddat,updtim,fxdinr,sta,typ,atytyp,msgtyp
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from fxdrig
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from fxdrig
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into fxdrig (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{bic,jdbcType=VARCHAR},
#{sndtyp,jdbcType=VARCHAR},
#{rcvtyp,jdbcType=VARCHAR},
#{upddat,jdbcType=DATE},
#{updtim,jdbcType=DATE},
#{fxdinr,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{typ,jdbcType=VARCHAR},
#{atytyp,jdbcType=VARCHAR},
#{msgtyp,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into fxdrig
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="bic != null">bic,</if>
<if test="sndtyp != null">sndtyp,</if>
<if test="rcvtyp != null">rcvtyp,</if>
<if test="upddat != null">upddat,</if>
<if test="updtim != null">updtim,</if>
<if test="fxdinr != null">fxdinr,</if>
<if test="sta != null">sta,</if>
<if test="typ != null">typ,</if>
<if test="atytyp != null">atytyp,</if>
<if test="msgtyp != null">msgtyp,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="bic != null">#{bic,jdbcType=VARCHAR}, </if>
<if test="sndtyp != null">#{sndtyp,jdbcType=VARCHAR}, </if>
<if test="rcvtyp != null">#{rcvtyp,jdbcType=VARCHAR}, </if>
<if test="upddat != null">#{upddat,jdbcType=DATE}, </if>
<if test="updtim != null">#{updtim,jdbcType=DATE}, </if>
<if test="fxdinr != null">#{fxdinr,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="typ != null">#{typ,jdbcType=VARCHAR}, </if>
<if test="atytyp != null">#{atytyp,jdbcType=VARCHAR}, </if>
<if test="msgtyp != null">#{msgtyp,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update fxdrig
<set>
<if test="bic != null">bic = #{bic,jdbcType=VARCHAR},</if>
<if test="sndtyp != null">sndtyp = #{sndtyp,jdbcType=VARCHAR},</if>
<if test="rcvtyp != null">rcvtyp = #{rcvtyp,jdbcType=VARCHAR},</if>
<if test="upddat != null">upddat = #{upddat,jdbcType=DATE},</if>
<if test="updtim != null">updtim = #{updtim,jdbcType=DATE},</if>
<if test="fxdinr != null">fxdinr = #{fxdinr,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="typ != null">typ = #{typ,jdbcType=VARCHAR},</if>
<if test="atytyp != null">atytyp = #{atytyp,jdbcType=VARCHAR},</if>
<if test="msgtyp != null">msgtyp = #{msgtyp,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update fxdrig
<set>
bic = #{bic,jdbcType=VARCHAR},
sndtyp = #{sndtyp,jdbcType=VARCHAR},
rcvtyp = #{rcvtyp,jdbcType=VARCHAR},
upddat = #{upddat,jdbcType=DATE},
updtim = #{updtim,jdbcType=DATE},
fxdinr = #{fxdinr,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
typ = #{typ,jdbcType=VARCHAR},
atytyp = #{atytyp,jdbcType=VARCHAR},
msgtyp = #{msgtyp,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.FxebnkMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Fxebnk">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="chngtp" column="chngtp" jdbcType="VARCHAR" />
<result property="fctvtp" column="fctvtp" jdbcType="VARCHAR" />
<result property="begdat" column="begdat" jdbcType="DATE" />
<result property="losdat" column="losdat" jdbcType="DATE" />
<result property="bic" column="bic" jdbcType="VARCHAR" />
<result property="bnktyp" column="bnktyp" jdbcType="VARCHAR" />
<result property="hbcod" column="hbcod" jdbcType="VARCHAR" />
<result property="directbic" column="directbic" jdbcType="VARCHAR" />
<result property="lglpsn" column="lglpsn" jdbcType="VARCHAR" />
<result property="hghcd" column="hghcd" jdbcType="VARCHAR" />
<result property="brbkcd" column="brbkcd" jdbcType="VARCHAR" />
<result property="chrcd" column="chrcd" jdbcType="VARCHAR" />
<result property="ndcd" column="ndcd" jdbcType="VARCHAR" />
<result property="citycod" column="citycod" jdbcType="VARCHAR" />
<result property="fulnam" column="fulnam" jdbcType="VARCHAR" />
<result property="sgn" column="sgn" jdbcType="VARCHAR" />
<result property="changeterm" column="changeterm" jdbcType="VARCHAR" />
<result property="tel" column="tel" jdbcType="VARCHAR" />
<result property="fxdinr" column="fxdinr" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="filtyp" column="filtyp" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,chngtp,fctvtp,begdat,losdat,bic,bnktyp,hbcod,directbic,lglpsn,hghcd,brbkcd,chrcd,ndcd,citycod,fulnam,sgn,changeterm,tel,fxdinr,sta,filtyp
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from fxebnk
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from fxebnk
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into fxebnk (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{chngtp,jdbcType=VARCHAR},
#{fctvtp,jdbcType=VARCHAR},
#{begdat,jdbcType=DATE},
#{losdat,jdbcType=DATE},
#{bic,jdbcType=VARCHAR},
#{bnktyp,jdbcType=VARCHAR},
#{hbcod,jdbcType=VARCHAR},
#{directbic,jdbcType=VARCHAR},
#{lglpsn,jdbcType=VARCHAR},
#{hghcd,jdbcType=VARCHAR},
#{brbkcd,jdbcType=VARCHAR},
#{chrcd,jdbcType=VARCHAR},
#{ndcd,jdbcType=VARCHAR},
#{citycod,jdbcType=VARCHAR},
#{fulnam,jdbcType=VARCHAR},
#{sgn,jdbcType=VARCHAR},
#{changeterm,jdbcType=VARCHAR},
#{tel,jdbcType=VARCHAR},
#{fxdinr,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{filtyp,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into fxebnk
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="chngtp != null">chngtp,</if>
<if test="fctvtp != null">fctvtp,</if>
<if test="begdat != null">begdat,</if>
<if test="losdat != null">losdat,</if>
<if test="bic != null">bic,</if>
<if test="bnktyp != null">bnktyp,</if>
<if test="hbcod != null">hbcod,</if>
<if test="directbic != null">directbic,</if>
<if test="lglpsn != null">lglpsn,</if>
<if test="hghcd != null">hghcd,</if>
<if test="brbkcd != null">brbkcd,</if>
<if test="chrcd != null">chrcd,</if>
<if test="ndcd != null">ndcd,</if>
<if test="citycod != null">citycod,</if>
<if test="fulnam != null">fulnam,</if>
<if test="sgn != null">sgn,</if>
<if test="changeterm != null">changeterm,</if>
<if test="tel != null">tel,</if>
<if test="fxdinr != null">fxdinr,</if>
<if test="sta != null">sta,</if>
<if test="filtyp != null">filtyp,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="chngtp != null">#{chngtp,jdbcType=VARCHAR}, </if>
<if test="fctvtp != null">#{fctvtp,jdbcType=VARCHAR}, </if>
<if test="begdat != null">#{begdat,jdbcType=DATE}, </if>
<if test="losdat != null">#{losdat,jdbcType=DATE}, </if>
<if test="bic != null">#{bic,jdbcType=VARCHAR}, </if>
<if test="bnktyp != null">#{bnktyp,jdbcType=VARCHAR}, </if>
<if test="hbcod != null">#{hbcod,jdbcType=VARCHAR}, </if>
<if test="directbic != null">#{directbic,jdbcType=VARCHAR}, </if>
<if test="lglpsn != null">#{lglpsn,jdbcType=VARCHAR}, </if>
<if test="hghcd != null">#{hghcd,jdbcType=VARCHAR}, </if>
<if test="brbkcd != null">#{brbkcd,jdbcType=VARCHAR}, </if>
<if test="chrcd != null">#{chrcd,jdbcType=VARCHAR}, </if>
<if test="ndcd != null">#{ndcd,jdbcType=VARCHAR}, </if>
<if test="citycod != null">#{citycod,jdbcType=VARCHAR}, </if>
<if test="fulnam != null">#{fulnam,jdbcType=VARCHAR}, </if>
<if test="sgn != null">#{sgn,jdbcType=VARCHAR}, </if>
<if test="changeterm != null">#{changeterm,jdbcType=VARCHAR}, </if>
<if test="tel != null">#{tel,jdbcType=VARCHAR}, </if>
<if test="fxdinr != null">#{fxdinr,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="filtyp != null">#{filtyp,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update fxebnk
<set>
<if test="chngtp != null">chngtp = #{chngtp,jdbcType=VARCHAR},</if>
<if test="fctvtp != null">fctvtp = #{fctvtp,jdbcType=VARCHAR},</if>
<if test="begdat != null">begdat = #{begdat,jdbcType=DATE},</if>
<if test="losdat != null">losdat = #{losdat,jdbcType=DATE},</if>
<if test="bic != null">bic = #{bic,jdbcType=VARCHAR},</if>
<if test="bnktyp != null">bnktyp = #{bnktyp,jdbcType=VARCHAR},</if>
<if test="hbcod != null">hbcod = #{hbcod,jdbcType=VARCHAR},</if>
<if test="directbic != null">directbic = #{directbic,jdbcType=VARCHAR},</if>
<if test="lglpsn != null">lglpsn = #{lglpsn,jdbcType=VARCHAR},</if>
<if test="hghcd != null">hghcd = #{hghcd,jdbcType=VARCHAR},</if>
<if test="brbkcd != null">brbkcd = #{brbkcd,jdbcType=VARCHAR},</if>
<if test="chrcd != null">chrcd = #{chrcd,jdbcType=VARCHAR},</if>
<if test="ndcd != null">ndcd = #{ndcd,jdbcType=VARCHAR},</if>
<if test="citycod != null">citycod = #{citycod,jdbcType=VARCHAR},</if>
<if test="fulnam != null">fulnam = #{fulnam,jdbcType=VARCHAR},</if>
<if test="sgn != null">sgn = #{sgn,jdbcType=VARCHAR},</if>
<if test="changeterm != null">changeterm = #{changeterm,jdbcType=VARCHAR},</if>
<if test="tel != null">tel = #{tel,jdbcType=VARCHAR},</if>
<if test="fxdinr != null">fxdinr = #{fxdinr,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="filtyp != null">filtyp = #{filtyp,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update fxebnk
<set>
chngtp = #{chngtp,jdbcType=VARCHAR},
fctvtp = #{fctvtp,jdbcType=VARCHAR},
begdat = #{begdat,jdbcType=DATE},
losdat = #{losdat,jdbcType=DATE},
bic = #{bic,jdbcType=VARCHAR},
bnktyp = #{bnktyp,jdbcType=VARCHAR},
hbcod = #{hbcod,jdbcType=VARCHAR},
directbic = #{directbic,jdbcType=VARCHAR},
lglpsn = #{lglpsn,jdbcType=VARCHAR},
hghcd = #{hghcd,jdbcType=VARCHAR},
brbkcd = #{brbkcd,jdbcType=VARCHAR},
chrcd = #{chrcd,jdbcType=VARCHAR},
ndcd = #{ndcd,jdbcType=VARCHAR},
citycod = #{citycod,jdbcType=VARCHAR},
fulnam = #{fulnam,jdbcType=VARCHAR},
sgn = #{sgn,jdbcType=VARCHAR},
changeterm = #{changeterm,jdbcType=VARCHAR},
tel = #{tel,jdbcType=VARCHAR},
fxdinr = #{fxdinr,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
filtyp = #{filtyp,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.GjsmsgMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Gjsmsg">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="cod" column="cod" jdbcType="VARCHAR" />
<result property="bakdat" column="bakdat" jdbcType="DATE" />
<result property="subtyp" column="subtyp" jdbcType="VARCHAR" />
<result property="othref" column="othref" jdbcType="VARCHAR" />
<result property="ownref" column="ownref" jdbcType="VARCHAR" />
<result property="sndbic" column="sndbic" jdbcType="VARCHAR" />
<result property="snddat" column="snddat" jdbcType="DATE" />
<result property="rmk" column="rmk" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,cod,bakdat,subtyp,othref,ownref,sndbic,snddat,rmk
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from gjsmsg
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from gjsmsg
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into gjsmsg (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{cod,jdbcType=VARCHAR},
#{bakdat,jdbcType=DATE},
#{subtyp,jdbcType=VARCHAR},
#{othref,jdbcType=VARCHAR},
#{ownref,jdbcType=VARCHAR},
#{sndbic,jdbcType=VARCHAR},
#{snddat,jdbcType=DATE},
#{rmk,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into gjsmsg
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="cod != null">cod,</if>
<if test="bakdat != null">bakdat,</if>
<if test="subtyp != null">subtyp,</if>
<if test="othref != null">othref,</if>
<if test="ownref != null">ownref,</if>
<if test="sndbic != null">sndbic,</if>
<if test="snddat != null">snddat,</if>
<if test="rmk != null">rmk,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="cod != null">#{cod,jdbcType=VARCHAR}, </if>
<if test="bakdat != null">#{bakdat,jdbcType=DATE}, </if>
<if test="subtyp != null">#{subtyp,jdbcType=VARCHAR}, </if>
<if test="othref != null">#{othref,jdbcType=VARCHAR}, </if>
<if test="ownref != null">#{ownref,jdbcType=VARCHAR}, </if>
<if test="sndbic != null">#{sndbic,jdbcType=VARCHAR}, </if>
<if test="snddat != null">#{snddat,jdbcType=DATE}, </if>
<if test="rmk != null">#{rmk,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update gjsmsg
<set>
<if test="cod != null">cod = #{cod,jdbcType=VARCHAR},</if>
<if test="bakdat != null">bakdat = #{bakdat,jdbcType=DATE},</if>
<if test="subtyp != null">subtyp = #{subtyp,jdbcType=VARCHAR},</if>
<if test="othref != null">othref = #{othref,jdbcType=VARCHAR},</if>
<if test="ownref != null">ownref = #{ownref,jdbcType=VARCHAR},</if>
<if test="sndbic != null">sndbic = #{sndbic,jdbcType=VARCHAR},</if>
<if test="snddat != null">snddat = #{snddat,jdbcType=DATE},</if>
<if test="rmk != null">rmk = #{rmk,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update gjsmsg
<set>
cod = #{cod,jdbcType=VARCHAR},
bakdat = #{bakdat,jdbcType=DATE},
subtyp = #{subtyp,jdbcType=VARCHAR},
othref = #{othref,jdbcType=VARCHAR},
ownref = #{ownref,jdbcType=VARCHAR},
sndbic = #{sndbic,jdbcType=VARCHAR},
snddat = #{snddat,jdbcType=DATE},
rmk = #{rmk,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.IcrMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Icr">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="mcrinr" column="mcrinr" jdbcType="VARCHAR" />
<result property="seqnum" column="seqnum" jdbcType="VARCHAR" />
<result property="refnum" column="refnum" jdbcType="VARCHAR" />
<result property="bilnum" column="bilnum" jdbcType="VARCHAR" />
<result property="reddir" column="reddir" jdbcType="VARCHAR" />
<result property="accdat" column="accdat" jdbcType="VARCHAR" />
<result property="chkinf" column="chkinf" jdbcType="VARCHAR" />
<result property="chksta" column="chksta" jdbcType="VARCHAR" />
<result property="recamt" column="recamt" jdbcType="VARCHAR" />
<result property="lstdattim" column="lstdattim" jdbcType="TIMESTAMP" />
<result property="reccur" column="reccur" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,mcrinr,seqnum,refnum,bilnum,reddir,accdat,chkinf,chksta,recamt,lstdattim,reccur
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from icr
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from icr
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into icr (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{mcrinr,jdbcType=VARCHAR},
#{seqnum,jdbcType=VARCHAR},
#{refnum,jdbcType=VARCHAR},
#{bilnum,jdbcType=VARCHAR},
#{reddir,jdbcType=VARCHAR},
#{accdat,jdbcType=VARCHAR},
#{chkinf,jdbcType=VARCHAR},
#{chksta,jdbcType=VARCHAR},
#{recamt,jdbcType=VARCHAR},
#{lstdattim,jdbcType=TIMESTAMP},
#{reccur,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into icr
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="mcrinr != null">mcrinr,</if>
<if test="seqnum != null">seqnum,</if>
<if test="refnum != null">refnum,</if>
<if test="bilnum != null">bilnum,</if>
<if test="reddir != null">reddir,</if>
<if test="accdat != null">accdat,</if>
<if test="chkinf != null">chkinf,</if>
<if test="chksta != null">chksta,</if>
<if test="recamt != null">recamt,</if>
<if test="lstdattim != null">lstdattim,</if>
<if test="reccur != null">reccur,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="mcrinr != null">#{mcrinr,jdbcType=VARCHAR}, </if>
<if test="seqnum != null">#{seqnum,jdbcType=VARCHAR}, </if>
<if test="refnum != null">#{refnum,jdbcType=VARCHAR}, </if>
<if test="bilnum != null">#{bilnum,jdbcType=VARCHAR}, </if>
<if test="reddir != null">#{reddir,jdbcType=VARCHAR}, </if>
<if test="accdat != null">#{accdat,jdbcType=VARCHAR}, </if>
<if test="chkinf != null">#{chkinf,jdbcType=VARCHAR}, </if>
<if test="chksta != null">#{chksta,jdbcType=VARCHAR}, </if>
<if test="recamt != null">#{recamt,jdbcType=VARCHAR}, </if>
<if test="lstdattim != null">#{lstdattim,jdbcType=TIMESTAMP}, </if>
<if test="reccur != null">#{reccur,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update icr
<set>
<if test="mcrinr != null">mcrinr = #{mcrinr,jdbcType=VARCHAR},</if>
<if test="seqnum != null">seqnum = #{seqnum,jdbcType=VARCHAR},</if>
<if test="refnum != null">refnum = #{refnum,jdbcType=VARCHAR},</if>
<if test="bilnum != null">bilnum = #{bilnum,jdbcType=VARCHAR},</if>
<if test="reddir != null">reddir = #{reddir,jdbcType=VARCHAR},</if>
<if test="accdat != null">accdat = #{accdat,jdbcType=VARCHAR},</if>
<if test="chkinf != null">chkinf = #{chkinf,jdbcType=VARCHAR},</if>
<if test="chksta != null">chksta = #{chksta,jdbcType=VARCHAR},</if>
<if test="recamt != null">recamt = #{recamt,jdbcType=VARCHAR},</if>
<if test="lstdattim != null">lstdattim = #{lstdattim,jdbcType=TIMESTAMP},</if>
<if test="reccur != null">reccur = #{reccur,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update icr
<set>
mcrinr = #{mcrinr,jdbcType=VARCHAR},
seqnum = #{seqnum,jdbcType=VARCHAR},
refnum = #{refnum,jdbcType=VARCHAR},
bilnum = #{bilnum,jdbcType=VARCHAR},
reddir = #{reddir,jdbcType=VARCHAR},
accdat = #{accdat,jdbcType=VARCHAR},
chkinf = #{chkinf,jdbcType=VARCHAR},
chksta = #{chksta,jdbcType=VARCHAR},
recamt = #{recamt,jdbcType=VARCHAR},
lstdattim = #{lstdattim,jdbcType=TIMESTAMP},
reccur = #{reccur,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.MarMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Mar">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="inbic" column="inbic" jdbcType="VARCHAR" />
<result property="outbic" column="outbic" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="typ" column="typ" jdbcType="VARCHAR" />
<result property="inmpiinr" column="inmpiinr" jdbcType="VARCHAR" />
<result property="outmpiinr" column="outmpiinr" jdbcType="VARCHAR" />
<result property="dir" column="dir" jdbcType="VARCHAR" />
<result property="no" column="no" jdbcType="VARCHAR" />
<result property="chk" column="chk" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,inbic,outbic,sta,typ,inmpiinr,outmpiinr,dir,no,chk
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from mar
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from mar
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into mar (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{inbic,jdbcType=VARCHAR},
#{outbic,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{typ,jdbcType=VARCHAR},
#{inmpiinr,jdbcType=VARCHAR},
#{outmpiinr,jdbcType=VARCHAR},
#{dir,jdbcType=VARCHAR},
#{no,jdbcType=VARCHAR},
#{chk,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into mar
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="inbic != null">inbic,</if>
<if test="outbic != null">outbic,</if>
<if test="sta != null">sta,</if>
<if test="typ != null">typ,</if>
<if test="inmpiinr != null">inmpiinr,</if>
<if test="outmpiinr != null">outmpiinr,</if>
<if test="dir != null">dir,</if>
<if test="no != null">no,</if>
<if test="chk != null">chk,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="inbic != null">#{inbic,jdbcType=VARCHAR}, </if>
<if test="outbic != null">#{outbic,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="typ != null">#{typ,jdbcType=VARCHAR}, </if>
<if test="inmpiinr != null">#{inmpiinr,jdbcType=VARCHAR}, </if>
<if test="outmpiinr != null">#{outmpiinr,jdbcType=VARCHAR}, </if>
<if test="dir != null">#{dir,jdbcType=VARCHAR}, </if>
<if test="no != null">#{no,jdbcType=VARCHAR}, </if>
<if test="chk != null">#{chk,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update mar
<set>
<if test="inbic != null">inbic = #{inbic,jdbcType=VARCHAR},</if>
<if test="outbic != null">outbic = #{outbic,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="typ != null">typ = #{typ,jdbcType=VARCHAR},</if>
<if test="inmpiinr != null">inmpiinr = #{inmpiinr,jdbcType=VARCHAR},</if>
<if test="outmpiinr != null">outmpiinr = #{outmpiinr,jdbcType=VARCHAR},</if>
<if test="dir != null">dir = #{dir,jdbcType=VARCHAR},</if>
<if test="no != null">no = #{no,jdbcType=VARCHAR},</if>
<if test="chk != null">chk = #{chk,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update mar
<set>
inbic = #{inbic,jdbcType=VARCHAR},
outbic = #{outbic,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
typ = #{typ,jdbcType=VARCHAR},
inmpiinr = #{inmpiinr,jdbcType=VARCHAR},
outmpiinr = #{outmpiinr,jdbcType=VARCHAR},
dir = #{dir,jdbcType=VARCHAR},
no = #{no,jdbcType=VARCHAR},
chk = #{chk,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.McrMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Mcr">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="sndsys" column="sndsys" jdbcType="VARCHAR" />
<result property="sndfin" column="sndfin" jdbcType="VARCHAR" />
<result property="rcvsys" column="rcvsys" jdbcType="VARCHAR" />
<result property="rstfin" column="rstfin" jdbcType="VARCHAR" />
<result property="lcadat" column="lcadat" jdbcType="VARCHAR" />
<result property="accdat" column="accdat" jdbcType="VARCHAR" />
<result property="talnum" column="talnum" jdbcType="VARCHAR" />
<result property="sucnum" column="sucnum" jdbcType="VARCHAR" />
<result property="fainum" column="fainum" jdbcType="VARCHAR" />
<result property="rsdnum" column="rsdnum" jdbcType="VARCHAR" />
<result property="reddir" column="reddir" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,sndsys,sndfin,rcvsys,rstfin,lcadat,accdat,talnum,sucnum,fainum,rsdnum,reddir
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from mcr
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from mcr
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into mcr (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{sndsys,jdbcType=VARCHAR},
#{sndfin,jdbcType=VARCHAR},
#{rcvsys,jdbcType=VARCHAR},
#{rstfin,jdbcType=VARCHAR},
#{lcadat,jdbcType=VARCHAR},
#{accdat,jdbcType=VARCHAR},
#{talnum,jdbcType=VARCHAR},
#{sucnum,jdbcType=VARCHAR},
#{fainum,jdbcType=VARCHAR},
#{rsdnum,jdbcType=VARCHAR},
#{reddir,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into mcr
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="sndsys != null">sndsys,</if>
<if test="sndfin != null">sndfin,</if>
<if test="rcvsys != null">rcvsys,</if>
<if test="rstfin != null">rstfin,</if>
<if test="lcadat != null">lcadat,</if>
<if test="accdat != null">accdat,</if>
<if test="talnum != null">talnum,</if>
<if test="sucnum != null">sucnum,</if>
<if test="fainum != null">fainum,</if>
<if test="rsdnum != null">rsdnum,</if>
<if test="reddir != null">reddir,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="sndsys != null">#{sndsys,jdbcType=VARCHAR}, </if>
<if test="sndfin != null">#{sndfin,jdbcType=VARCHAR}, </if>
<if test="rcvsys != null">#{rcvsys,jdbcType=VARCHAR}, </if>
<if test="rstfin != null">#{rstfin,jdbcType=VARCHAR}, </if>
<if test="lcadat != null">#{lcadat,jdbcType=VARCHAR}, </if>
<if test="accdat != null">#{accdat,jdbcType=VARCHAR}, </if>
<if test="talnum != null">#{talnum,jdbcType=VARCHAR}, </if>
<if test="sucnum != null">#{sucnum,jdbcType=VARCHAR}, </if>
<if test="fainum != null">#{fainum,jdbcType=VARCHAR}, </if>
<if test="rsdnum != null">#{rsdnum,jdbcType=VARCHAR}, </if>
<if test="reddir != null">#{reddir,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update mcr
<set>
<if test="sndsys != null">sndsys = #{sndsys,jdbcType=VARCHAR},</if>
<if test="sndfin != null">sndfin = #{sndfin,jdbcType=VARCHAR},</if>
<if test="rcvsys != null">rcvsys = #{rcvsys,jdbcType=VARCHAR},</if>
<if test="rstfin != null">rstfin = #{rstfin,jdbcType=VARCHAR},</if>
<if test="lcadat != null">lcadat = #{lcadat,jdbcType=VARCHAR},</if>
<if test="accdat != null">accdat = #{accdat,jdbcType=VARCHAR},</if>
<if test="talnum != null">talnum = #{talnum,jdbcType=VARCHAR},</if>
<if test="sucnum != null">sucnum = #{sucnum,jdbcType=VARCHAR},</if>
<if test="fainum != null">fainum = #{fainum,jdbcType=VARCHAR},</if>
<if test="rsdnum != null">rsdnum = #{rsdnum,jdbcType=VARCHAR},</if>
<if test="reddir != null">reddir = #{reddir,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update mcr
<set>
sndsys = #{sndsys,jdbcType=VARCHAR},
sndfin = #{sndfin,jdbcType=VARCHAR},
rcvsys = #{rcvsys,jdbcType=VARCHAR},
rstfin = #{rstfin,jdbcType=VARCHAR},
lcadat = #{lcadat,jdbcType=VARCHAR},
accdat = #{accdat,jdbcType=VARCHAR},
talnum = #{talnum,jdbcType=VARCHAR},
sucnum = #{sucnum,jdbcType=VARCHAR},
fainum = #{fainum,jdbcType=VARCHAR},
rsdnum = #{rsdnum,jdbcType=VARCHAR},
reddir = #{reddir,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.MonMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Mon">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="begtim" column="begtim" jdbcType="VARCHAR" />
<result property="endtim" column="endtim" jdbcType="VARCHAR" />
<result property="rcvpho" column="rcvpho" jdbcType="VARCHAR" />
<result property="sndmsg" column="sndmsg" jdbcType="VARCHAR" />
<result property="typ" column="typ" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,begtim,endtim,rcvpho,sndmsg,typ
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from mon
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from mon
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into mon (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{begtim,jdbcType=VARCHAR},
#{endtim,jdbcType=VARCHAR},
#{rcvpho,jdbcType=VARCHAR},
#{sndmsg,jdbcType=VARCHAR},
#{typ,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into mon
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="begtim != null">begtim,</if>
<if test="endtim != null">endtim,</if>
<if test="rcvpho != null">rcvpho,</if>
<if test="sndmsg != null">sndmsg,</if>
<if test="typ != null">typ,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="begtim != null">#{begtim,jdbcType=VARCHAR}, </if>
<if test="endtim != null">#{endtim,jdbcType=VARCHAR}, </if>
<if test="rcvpho != null">#{rcvpho,jdbcType=VARCHAR}, </if>
<if test="sndmsg != null">#{sndmsg,jdbcType=VARCHAR}, </if>
<if test="typ != null">#{typ,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update mon
<set>
<if test="begtim != null">begtim = #{begtim,jdbcType=VARCHAR},</if>
<if test="endtim != null">endtim = #{endtim,jdbcType=VARCHAR},</if>
<if test="rcvpho != null">rcvpho = #{rcvpho,jdbcType=VARCHAR},</if>
<if test="sndmsg != null">sndmsg = #{sndmsg,jdbcType=VARCHAR},</if>
<if test="typ != null">typ = #{typ,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update mon
<set>
begtim = #{begtim,jdbcType=VARCHAR},
endtim = #{endtim,jdbcType=VARCHAR},
rcvpho = #{rcvpho,jdbcType=VARCHAR},
sndmsg = #{sndmsg,jdbcType=VARCHAR},
typ = #{typ,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.MpeMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Mpe">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="mpsinr" column="mpsinr" jdbcType="VARCHAR" />
<result property="chncod" column="chncod" jdbcType="VARCHAR" />
<result property="nxtchncod" column="nxtchncod" jdbcType="VARCHAR" />
<result property="smhinr" column="smhinr" jdbcType="VARCHAR" />
<result property="nxtsmhinr" column="nxtsmhinr" jdbcType="VARCHAR" />
<result property="dattim" column="dattim" jdbcType="TIMESTAMP" />
<result property="usr" column="usr" jdbcType="VARCHAR" />
<result property="frmnam" column="frmnam" jdbcType="VARCHAR" />
<result property="prvsta" column="prvsta" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="txt" column="txt" jdbcType="VARCHAR" />
<result property="rspsta" column="rspsta" jdbcType="VARCHAR" />
<result property="prvrspsta" column="prvrspsta" jdbcType="VARCHAR" />
<result property="etyinr" column="etyinr" jdbcType="VARCHAR" />
<result property="ptyinr" column="ptyinr" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,mpsinr,chncod,nxtchncod,smhinr,nxtsmhinr,dattim,usr,frmnam,prvsta,sta,txt,rspsta,prvrspsta,etyinr,ptyinr
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from mpe
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from mpe
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into mpe (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{mpsinr,jdbcType=VARCHAR},
#{chncod,jdbcType=VARCHAR},
#{nxtchncod,jdbcType=VARCHAR},
#{smhinr,jdbcType=VARCHAR},
#{nxtsmhinr,jdbcType=VARCHAR},
#{dattim,jdbcType=TIMESTAMP},
#{usr,jdbcType=VARCHAR},
#{frmnam,jdbcType=VARCHAR},
#{prvsta,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{txt,jdbcType=VARCHAR},
#{rspsta,jdbcType=VARCHAR},
#{prvrspsta,jdbcType=VARCHAR},
#{etyinr,jdbcType=VARCHAR},
#{ptyinr,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into mpe
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="mpsinr != null">mpsinr,</if>
<if test="chncod != null">chncod,</if>
<if test="nxtchncod != null">nxtchncod,</if>
<if test="smhinr != null">smhinr,</if>
<if test="nxtsmhinr != null">nxtsmhinr,</if>
<if test="dattim != null">dattim,</if>
<if test="usr != null">usr,</if>
<if test="frmnam != null">frmnam,</if>
<if test="prvsta != null">prvsta,</if>
<if test="sta != null">sta,</if>
<if test="txt != null">txt,</if>
<if test="rspsta != null">rspsta,</if>
<if test="prvrspsta != null">prvrspsta,</if>
<if test="etyinr != null">etyinr,</if>
<if test="ptyinr != null">ptyinr,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="mpsinr != null">#{mpsinr,jdbcType=VARCHAR}, </if>
<if test="chncod != null">#{chncod,jdbcType=VARCHAR}, </if>
<if test="nxtchncod != null">#{nxtchncod,jdbcType=VARCHAR}, </if>
<if test="smhinr != null">#{smhinr,jdbcType=VARCHAR}, </if>
<if test="nxtsmhinr != null">#{nxtsmhinr,jdbcType=VARCHAR}, </if>
<if test="dattim != null">#{dattim,jdbcType=TIMESTAMP}, </if>
<if test="usr != null">#{usr,jdbcType=VARCHAR}, </if>
<if test="frmnam != null">#{frmnam,jdbcType=VARCHAR}, </if>
<if test="prvsta != null">#{prvsta,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="txt != null">#{txt,jdbcType=VARCHAR}, </if>
<if test="rspsta != null">#{rspsta,jdbcType=VARCHAR}, </if>
<if test="prvrspsta != null">#{prvrspsta,jdbcType=VARCHAR}, </if>
<if test="etyinr != null">#{etyinr,jdbcType=VARCHAR}, </if>
<if test="ptyinr != null">#{ptyinr,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update mpe
<set>
<if test="mpsinr != null">mpsinr = #{mpsinr,jdbcType=VARCHAR},</if>
<if test="chncod != null">chncod = #{chncod,jdbcType=VARCHAR},</if>
<if test="nxtchncod != null">nxtchncod = #{nxtchncod,jdbcType=VARCHAR},</if>
<if test="smhinr != null">smhinr = #{smhinr,jdbcType=VARCHAR},</if>
<if test="nxtsmhinr != null">nxtsmhinr = #{nxtsmhinr,jdbcType=VARCHAR},</if>
<if test="dattim != null">dattim = #{dattim,jdbcType=TIMESTAMP},</if>
<if test="usr != null">usr = #{usr,jdbcType=VARCHAR},</if>
<if test="frmnam != null">frmnam = #{frmnam,jdbcType=VARCHAR},</if>
<if test="prvsta != null">prvsta = #{prvsta,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="txt != null">txt = #{txt,jdbcType=VARCHAR},</if>
<if test="rspsta != null">rspsta = #{rspsta,jdbcType=VARCHAR},</if>
<if test="prvrspsta != null">prvrspsta = #{prvrspsta,jdbcType=VARCHAR},</if>
<if test="etyinr != null">etyinr = #{etyinr,jdbcType=VARCHAR},</if>
<if test="ptyinr != null">ptyinr = #{ptyinr,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update mpe
<set>
mpsinr = #{mpsinr,jdbcType=VARCHAR},
chncod = #{chncod,jdbcType=VARCHAR},
nxtchncod = #{nxtchncod,jdbcType=VARCHAR},
smhinr = #{smhinr,jdbcType=VARCHAR},
nxtsmhinr = #{nxtsmhinr,jdbcType=VARCHAR},
dattim = #{dattim,jdbcType=TIMESTAMP},
usr = #{usr,jdbcType=VARCHAR},
frmnam = #{frmnam,jdbcType=VARCHAR},
prvsta = #{prvsta,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
txt = #{txt,jdbcType=VARCHAR},
rspsta = #{rspsta,jdbcType=VARCHAR},
prvrspsta = #{prvrspsta,jdbcType=VARCHAR},
etyinr = #{etyinr,jdbcType=VARCHAR},
ptyinr = #{ptyinr,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.MtmMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Mtm">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="nam" column="nam" jdbcType="VARCHAR" />
<result property="typ" column="typ" jdbcType="VARCHAR" />
<result property="mtmtyp" column="mtmtyp" jdbcType="VARCHAR" />
<result property="txt" column="txt" jdbcType="VARCHAR" />
<result property="credat" column="credat" jdbcType="DATE" />
<result property="keycnt" column="keycnt" jdbcType="INTEGER" />
<result property="dsc" column="dsc" jdbcType="VARCHAR" />
<result property="subtyp" column="subtyp" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="etyinr" column="etyinr" jdbcType="VARCHAR" />
<result property="ptyinr" column="ptyinr" jdbcType="VARCHAR" />
<result property="ordnum" column="ordnum" jdbcType="INTEGER" />
</resultMap>
<sql id="Base_Column_List">
inr,nam,typ,mtmtyp,txt,credat,keycnt,dsc,subtyp,sta,etyinr,ptyinr,ordnum
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from mtm
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from mtm
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into mtm (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{nam,jdbcType=VARCHAR},
#{typ,jdbcType=VARCHAR},
#{mtmtyp,jdbcType=VARCHAR},
#{txt,jdbcType=VARCHAR},
#{credat,jdbcType=DATE},
#{keycnt,jdbcType=INTEGER},
#{dsc,jdbcType=VARCHAR},
#{subtyp,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{etyinr,jdbcType=VARCHAR},
#{ptyinr,jdbcType=VARCHAR},
#{ordnum,jdbcType=INTEGER},
</trim>
</insert>
<insert id="insertSelective">
insert into mtm
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="nam != null">nam,</if>
<if test="typ != null">typ,</if>
<if test="mtmtyp != null">mtmtyp,</if>
<if test="txt != null">txt,</if>
<if test="credat != null">credat,</if>
<if test="keycnt != null">keycnt,</if>
<if test="dsc != null">dsc,</if>
<if test="subtyp != null">subtyp,</if>
<if test="sta != null">sta,</if>
<if test="etyinr != null">etyinr,</if>
<if test="ptyinr != null">ptyinr,</if>
<if test="ordnum != null">ordnum,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="nam != null">#{nam,jdbcType=VARCHAR}, </if>
<if test="typ != null">#{typ,jdbcType=VARCHAR}, </if>
<if test="mtmtyp != null">#{mtmtyp,jdbcType=VARCHAR}, </if>
<if test="txt != null">#{txt,jdbcType=VARCHAR}, </if>
<if test="credat != null">#{credat,jdbcType=DATE}, </if>
<if test="keycnt != null">#{keycnt,jdbcType=INTEGER}, </if>
<if test="dsc != null">#{dsc,jdbcType=VARCHAR}, </if>
<if test="subtyp != null">#{subtyp,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="etyinr != null">#{etyinr,jdbcType=VARCHAR}, </if>
<if test="ptyinr != null">#{ptyinr,jdbcType=VARCHAR}, </if>
<if test="ordnum != null">#{ordnum,jdbcType=INTEGER}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update mtm
<set>
<if test="nam != null">nam = #{nam,jdbcType=VARCHAR},</if>
<if test="typ != null">typ = #{typ,jdbcType=VARCHAR},</if>
<if test="mtmtyp != null">mtmtyp = #{mtmtyp,jdbcType=VARCHAR},</if>
<if test="txt != null">txt = #{txt,jdbcType=VARCHAR},</if>
<if test="credat != null">credat = #{credat,jdbcType=DATE},</if>
<if test="keycnt != null">keycnt = #{keycnt,jdbcType=INTEGER},</if>
<if test="dsc != null">dsc = #{dsc,jdbcType=VARCHAR},</if>
<if test="subtyp != null">subtyp = #{subtyp,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="etyinr != null">etyinr = #{etyinr,jdbcType=VARCHAR},</if>
<if test="ptyinr != null">ptyinr = #{ptyinr,jdbcType=VARCHAR},</if>
<if test="ordnum != null">ordnum = #{ordnum,jdbcType=INTEGER},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update mtm
<set>
nam = #{nam,jdbcType=VARCHAR},
typ = #{typ,jdbcType=VARCHAR},
mtmtyp = #{mtmtyp,jdbcType=VARCHAR},
txt = #{txt,jdbcType=VARCHAR},
credat = #{credat,jdbcType=DATE},
keycnt = #{keycnt,jdbcType=INTEGER},
dsc = #{dsc,jdbcType=VARCHAR},
subtyp = #{subtyp,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
etyinr = #{etyinr,jdbcType=VARCHAR},
ptyinr = #{ptyinr,jdbcType=VARCHAR},
ordnum = #{ordnum,jdbcType=INTEGER},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.NozMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Noz">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="mpsinr" column="mpsinr" jdbcType="VARCHAR" />
<result property="xxxtsktim" column="xxxtsktim" jdbcType="DATE" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,mpsinr,xxxtsktim,sta
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from noz
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from noz
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into noz (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{mpsinr,jdbcType=VARCHAR},
#{xxxtsktim,jdbcType=DATE},
#{sta,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into noz
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="mpsinr != null">mpsinr,</if>
<if test="xxxtsktim != null">xxxtsktim,</if>
<if test="sta != null">sta,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="mpsinr != null">#{mpsinr,jdbcType=VARCHAR}, </if>
<if test="xxxtsktim != null">#{xxxtsktim,jdbcType=DATE}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update noz
<set>
<if test="mpsinr != null">mpsinr = #{mpsinr,jdbcType=VARCHAR},</if>
<if test="xxxtsktim != null">xxxtsktim = #{xxxtsktim,jdbcType=DATE},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update noz
<set>
mpsinr = #{mpsinr,jdbcType=VARCHAR},
xxxtsktim = #{xxxtsktim,jdbcType=DATE},
sta = #{sta,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.PngMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Png">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="cur" column="cur" jdbcType="VARCHAR" />
<result property="msgtyp" column="msgtyp" jdbcType="VARCHAR" />
<result property="amt" column="amt" jdbcType="DECIMAL" />
<result property="ownref" column="ownref" jdbcType="VARCHAR" />
<result property="sta" column="sta" jdbcType="VARCHAR" />
<result property="etyref" column="etyref" jdbcType="VARCHAR" />
<result property="credat" column="credat" jdbcType="DATE" />
<result property="mpsinr" column="mpsinr" jdbcType="VARCHAR" />
<result property="canflg" column="canflg" jdbcType="VARCHAR" />
<result property="queflg" column="queflg" jdbcType="VARCHAR" />
<result property="sndordtim" column="sndordtim" jdbcType="TIMESTAMP" />
<result property="prtry" column="prtry" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,cur,msgtyp,amt,ownref,sta,etyref,credat,mpsinr,canflg,queflg,sndordtim,prtry
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from png
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from png
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into png (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{cur,jdbcType=VARCHAR},
#{msgtyp,jdbcType=VARCHAR},
#{amt,jdbcType=DECIMAL},
#{ownref,jdbcType=VARCHAR},
#{sta,jdbcType=VARCHAR},
#{etyref,jdbcType=VARCHAR},
#{credat,jdbcType=DATE},
#{mpsinr,jdbcType=VARCHAR},
#{canflg,jdbcType=VARCHAR},
#{queflg,jdbcType=VARCHAR},
#{sndordtim,jdbcType=TIMESTAMP},
#{prtry,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into png
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="cur != null">cur,</if>
<if test="msgtyp != null">msgtyp,</if>
<if test="amt != null">amt,</if>
<if test="ownref != null">ownref,</if>
<if test="sta != null">sta,</if>
<if test="etyref != null">etyref,</if>
<if test="credat != null">credat,</if>
<if test="mpsinr != null">mpsinr,</if>
<if test="canflg != null">canflg,</if>
<if test="queflg != null">queflg,</if>
<if test="sndordtim != null">sndordtim,</if>
<if test="prtry != null">prtry,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="cur != null">#{cur,jdbcType=VARCHAR}, </if>
<if test="msgtyp != null">#{msgtyp,jdbcType=VARCHAR}, </if>
<if test="amt != null">#{amt,jdbcType=DECIMAL}, </if>
<if test="ownref != null">#{ownref,jdbcType=VARCHAR}, </if>
<if test="sta != null">#{sta,jdbcType=VARCHAR}, </if>
<if test="etyref != null">#{etyref,jdbcType=VARCHAR}, </if>
<if test="credat != null">#{credat,jdbcType=DATE}, </if>
<if test="mpsinr != null">#{mpsinr,jdbcType=VARCHAR}, </if>
<if test="canflg != null">#{canflg,jdbcType=VARCHAR}, </if>
<if test="queflg != null">#{queflg,jdbcType=VARCHAR}, </if>
<if test="sndordtim != null">#{sndordtim,jdbcType=TIMESTAMP}, </if>
<if test="prtry != null">#{prtry,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update png
<set>
<if test="cur != null">cur = #{cur,jdbcType=VARCHAR},</if>
<if test="msgtyp != null">msgtyp = #{msgtyp,jdbcType=VARCHAR},</if>
<if test="amt != null">amt = #{amt,jdbcType=DECIMAL},</if>
<if test="ownref != null">ownref = #{ownref,jdbcType=VARCHAR},</if>
<if test="sta != null">sta = #{sta,jdbcType=VARCHAR},</if>
<if test="etyref != null">etyref = #{etyref,jdbcType=VARCHAR},</if>
<if test="credat != null">credat = #{credat,jdbcType=DATE},</if>
<if test="mpsinr != null">mpsinr = #{mpsinr,jdbcType=VARCHAR},</if>
<if test="canflg != null">canflg = #{canflg,jdbcType=VARCHAR},</if>
<if test="queflg != null">queflg = #{queflg,jdbcType=VARCHAR},</if>
<if test="sndordtim != null">sndordtim = #{sndordtim,jdbcType=TIMESTAMP},</if>
<if test="prtry != null">prtry = #{prtry,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update png
<set>
cur = #{cur,jdbcType=VARCHAR},
msgtyp = #{msgtyp,jdbcType=VARCHAR},
amt = #{amt,jdbcType=DECIMAL},
ownref = #{ownref,jdbcType=VARCHAR},
sta = #{sta,jdbcType=VARCHAR},
etyref = #{etyref,jdbcType=VARCHAR},
credat = #{credat,jdbcType=DATE},
mpsinr = #{mpsinr,jdbcType=VARCHAR},
canflg = #{canflg,jdbcType=VARCHAR},
queflg = #{queflg,jdbcType=VARCHAR},
sndordtim = #{sndordtim,jdbcType=TIMESTAMP},
prtry = #{prtry,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.PthlstMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Pthlst">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="docfil" column="docfil" jdbcType="VARCHAR" />
<result property="docfxt" column="docfxt" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,docfil,docfxt
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from pthlst
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from pthlst
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into pthlst (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{docfil,jdbcType=VARCHAR},
#{docfxt,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into pthlst
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="docfil != null">docfil,</if>
<if test="docfxt != null">docfxt,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="docfil != null">#{docfil,jdbcType=VARCHAR}, </if>
<if test="docfxt != null">#{docfxt,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update pthlst
<set>
<if test="docfil != null">docfil = #{docfil,jdbcType=VARCHAR},</if>
<if test="docfxt != null">docfxt = #{docfxt,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update pthlst
<set>
docfil = #{docfil,jdbcType=VARCHAR},
docfxt = #{docfxt,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.PtyMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Pty">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="status" column="status" jdbcType="VARCHAR" />
<result property="ptytyp" column="ptytyp" jdbcType="VARCHAR" />
<result property="pntinr" column="pntinr" jdbcType="VARCHAR" />
<result property="ncid" column="ncid" jdbcType="VARCHAR" />
<result property="nam" column="nam" jdbcType="VARCHAR" />
<result property="heqinr" column="heqinr" jdbcType="VARCHAR" />
<result property="etyinr" column="etyinr" jdbcType="VARCHAR" />
<result property="engnam" column="engnam" jdbcType="VARCHAR" />
<result property="chnnam" column="chnnam" jdbcType="VARCHAR" />
<result property="enddat" column="enddat" jdbcType="DATE" />
<result property="cid" column="cid" jdbcType="VARCHAR" />
<result property="begdat" column="begdat" jdbcType="DATE" />
<result property="extkey" column="extkey" jdbcType="VARCHAR" />
<result property="lvl" column="lvl" jdbcType="VARCHAR" />
<result property="brhflg" column="brhflg" jdbcType="VARCHAR" />
<result property="brhlvl" column="brhlvl" jdbcType="VARCHAR" />
<result property="orgnam" column="orgnam" jdbcType="VARCHAR" />
<result property="ptypho" column="ptypho" jdbcType="VARCHAR" />
<result property="ptyinr" column="ptyinr" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,status,ptytyp,pntinr,ncid,nam,heqinr,etyinr,engnam,chnnam,enddat,cid,begdat,extkey,lvl,brhflg,brhlvl,orgnam,ptypho,ptyinr
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from pty
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from pty
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into pty (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{status,jdbcType=VARCHAR},
#{ptytyp,jdbcType=VARCHAR},
#{pntinr,jdbcType=VARCHAR},
#{ncid,jdbcType=VARCHAR},
#{nam,jdbcType=VARCHAR},
#{heqinr,jdbcType=VARCHAR},
#{etyinr,jdbcType=VARCHAR},
#{engnam,jdbcType=VARCHAR},
#{chnnam,jdbcType=VARCHAR},
#{enddat,jdbcType=DATE},
#{cid,jdbcType=VARCHAR},
#{begdat,jdbcType=DATE},
#{extkey,jdbcType=VARCHAR},
#{lvl,jdbcType=VARCHAR},
#{brhflg,jdbcType=VARCHAR},
#{brhlvl,jdbcType=VARCHAR},
#{orgnam,jdbcType=VARCHAR},
#{ptypho,jdbcType=VARCHAR},
#{ptyinr,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into pty
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="status != null">status,</if>
<if test="ptytyp != null">ptytyp,</if>
<if test="pntinr != null">pntinr,</if>
<if test="ncid != null">ncid,</if>
<if test="nam != null">nam,</if>
<if test="heqinr != null">heqinr,</if>
<if test="etyinr != null">etyinr,</if>
<if test="engnam != null">engnam,</if>
<if test="chnnam != null">chnnam,</if>
<if test="enddat != null">enddat,</if>
<if test="cid != null">cid,</if>
<if test="begdat != null">begdat,</if>
<if test="extkey != null">extkey,</if>
<if test="lvl != null">lvl,</if>
<if test="brhflg != null">brhflg,</if>
<if test="brhlvl != null">brhlvl,</if>
<if test="orgnam != null">orgnam,</if>
<if test="ptypho != null">ptypho,</if>
<if test="ptyinr != null">ptyinr,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="status != null">#{status,jdbcType=VARCHAR}, </if>
<if test="ptytyp != null">#{ptytyp,jdbcType=VARCHAR}, </if>
<if test="pntinr != null">#{pntinr,jdbcType=VARCHAR}, </if>
<if test="ncid != null">#{ncid,jdbcType=VARCHAR}, </if>
<if test="nam != null">#{nam,jdbcType=VARCHAR}, </if>
<if test="heqinr != null">#{heqinr,jdbcType=VARCHAR}, </if>
<if test="etyinr != null">#{etyinr,jdbcType=VARCHAR}, </if>
<if test="engnam != null">#{engnam,jdbcType=VARCHAR}, </if>
<if test="chnnam != null">#{chnnam,jdbcType=VARCHAR}, </if>
<if test="enddat != null">#{enddat,jdbcType=DATE}, </if>
<if test="cid != null">#{cid,jdbcType=VARCHAR}, </if>
<if test="begdat != null">#{begdat,jdbcType=DATE}, </if>
<if test="extkey != null">#{extkey,jdbcType=VARCHAR}, </if>
<if test="lvl != null">#{lvl,jdbcType=VARCHAR}, </if>
<if test="brhflg != null">#{brhflg,jdbcType=VARCHAR}, </if>
<if test="brhlvl != null">#{brhlvl,jdbcType=VARCHAR}, </if>
<if test="orgnam != null">#{orgnam,jdbcType=VARCHAR}, </if>
<if test="ptypho != null">#{ptypho,jdbcType=VARCHAR}, </if>
<if test="ptyinr != null">#{ptyinr,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update pty
<set>
<if test="status != null">status = #{status,jdbcType=VARCHAR},</if>
<if test="ptytyp != null">ptytyp = #{ptytyp,jdbcType=VARCHAR},</if>
<if test="pntinr != null">pntinr = #{pntinr,jdbcType=VARCHAR},</if>
<if test="ncid != null">ncid = #{ncid,jdbcType=VARCHAR},</if>
<if test="nam != null">nam = #{nam,jdbcType=VARCHAR},</if>
<if test="heqinr != null">heqinr = #{heqinr,jdbcType=VARCHAR},</if>
<if test="etyinr != null">etyinr = #{etyinr,jdbcType=VARCHAR},</if>
<if test="engnam != null">engnam = #{engnam,jdbcType=VARCHAR},</if>
<if test="chnnam != null">chnnam = #{chnnam,jdbcType=VARCHAR},</if>
<if test="enddat != null">enddat = #{enddat,jdbcType=DATE},</if>
<if test="cid != null">cid = #{cid,jdbcType=VARCHAR},</if>
<if test="begdat != null">begdat = #{begdat,jdbcType=DATE},</if>
<if test="extkey != null">extkey = #{extkey,jdbcType=VARCHAR},</if>
<if test="lvl != null">lvl = #{lvl,jdbcType=VARCHAR},</if>
<if test="brhflg != null">brhflg = #{brhflg,jdbcType=VARCHAR},</if>
<if test="brhlvl != null">brhlvl = #{brhlvl,jdbcType=VARCHAR},</if>
<if test="orgnam != null">orgnam = #{orgnam,jdbcType=VARCHAR},</if>
<if test="ptypho != null">ptypho = #{ptypho,jdbcType=VARCHAR},</if>
<if test="ptyinr != null">ptyinr = #{ptyinr,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update pty
<set>
status = #{status,jdbcType=VARCHAR},
ptytyp = #{ptytyp,jdbcType=VARCHAR},
pntinr = #{pntinr,jdbcType=VARCHAR},
ncid = #{ncid,jdbcType=VARCHAR},
nam = #{nam,jdbcType=VARCHAR},
heqinr = #{heqinr,jdbcType=VARCHAR},
etyinr = #{etyinr,jdbcType=VARCHAR},
engnam = #{engnam,jdbcType=VARCHAR},
chnnam = #{chnnam,jdbcType=VARCHAR},
enddat = #{enddat,jdbcType=DATE},
cid = #{cid,jdbcType=VARCHAR},
begdat = #{begdat,jdbcType=DATE},
extkey = #{extkey,jdbcType=VARCHAR},
lvl = #{lvl,jdbcType=VARCHAR},
brhflg = #{brhflg,jdbcType=VARCHAR},
brhlvl = #{brhlvl,jdbcType=VARCHAR},
orgnam = #{orgnam,jdbcType=VARCHAR},
ptypho = #{ptypho,jdbcType=VARCHAR},
ptyinr = #{ptyinr,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
<?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.ceb.gjjs.mda.dao.PtyrefMapper">
<resultMap id="BaseResultMap" type="com.ceb.gjjs.mda.bo.Ptyref">
<result property="inr" column="inr" jdbcType="VARCHAR" />
<result property="ptyinr" column="ptyinr" jdbcType="VARCHAR" />
<result property="etyinr" column="etyinr" jdbcType="VARCHAR" />
<result property="bic" column="bic" jdbcType="VARCHAR" />
<result property="innnum" column="innnum" jdbcType="VARCHAR" />
<result property="actrul" column="actrul" jdbcType="VARCHAR" />
<result property="trncod" column="trncod" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
inr,ptyinr,etyinr,bic,innnum,actrul,trncod
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from ptyref
where inr = #{inr,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey">
delete from ptyref
where inr = #{inr,jdbcType=VARCHAR}
</delete>
<insert id="insert">
insert into ptyref (<include refid="Base_Column_List" />)
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{inr,jdbcType=VARCHAR},
#{ptyinr,jdbcType=VARCHAR},
#{etyinr,jdbcType=VARCHAR},
#{bic,jdbcType=VARCHAR},
#{innnum,jdbcType=VARCHAR},
#{actrul,jdbcType=VARCHAR},
#{trncod,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertSelective">
insert into ptyref
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">inr,</if>
<if test="ptyinr != null">ptyinr,</if>
<if test="etyinr != null">etyinr,</if>
<if test="bic != null">bic,</if>
<if test="innnum != null">innnum,</if>
<if test="actrul != null">actrul,</if>
<if test="trncod != null">trncod,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">#{inr,jdbcType=VARCHAR}, </if>
<if test="ptyinr != null">#{ptyinr,jdbcType=VARCHAR}, </if>
<if test="etyinr != null">#{etyinr,jdbcType=VARCHAR}, </if>
<if test="bic != null">#{bic,jdbcType=VARCHAR}, </if>
<if test="innnum != null">#{innnum,jdbcType=VARCHAR}, </if>
<if test="actrul != null">#{actrul,jdbcType=VARCHAR}, </if>
<if test="trncod != null">#{trncod,jdbcType=VARCHAR}, </if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective">
update ptyref
<set>
<if test="ptyinr != null">ptyinr = #{ptyinr,jdbcType=VARCHAR},</if>
<if test="etyinr != null">etyinr = #{etyinr,jdbcType=VARCHAR},</if>
<if test="bic != null">bic = #{bic,jdbcType=VARCHAR},</if>
<if test="innnum != null">innnum = #{innnum,jdbcType=VARCHAR},</if>
<if test="actrul != null">actrul = #{actrul,jdbcType=VARCHAR},</if>
<if test="trncod != null">trncod = #{trncod,jdbcType=VARCHAR},</if>
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey">
update ptyref
<set>
ptyinr = #{ptyinr,jdbcType=VARCHAR},
etyinr = #{etyinr,jdbcType=VARCHAR},
bic = #{bic,jdbcType=VARCHAR},
innnum = #{innnum,jdbcType=VARCHAR},
actrul = #{actrul,jdbcType=VARCHAR},
trncod = #{trncod,jdbcType=VARCHAR},
</set>
where inr = #{inr,jdbcType=VARCHAR}
</update>
<delete id="deleteByIds">
delete from act where inr in
<foreach item="item" index="index" collection="collection" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="dyncDelete">
${sql}
</delete>
<select id="dyncRead" resultMap="BaseResultMap">
${sql}
</select>
</mapper>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment