Commit 70df2811 by gechengyang

提交gle、fep相关代码

parent 8ba9cc41
......@@ -26,7 +26,7 @@
<property name="enableSubPackages" value="false" />
</javaClientGenerator>
<!-- 指定数据库表 -->
<table enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" tableName="CPD" delimitIdentifiers="true" delimitAllColumns="true">
<!-- <table enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" tableName="CPD" delimitIdentifiers="true" delimitAllColumns="true">
</table>
<table enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" tableName="CPT" delimitIdentifiers="true" delimitAllColumns="true">
</table>
......@@ -56,13 +56,15 @@
</table>
<table enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" tableName="COU" delimitIdentifiers="true" delimitAllColumns="true">
<!-- <property name="useActualColumnNames" value="true" /> -->
<property name="useActualColumnNames" value="true" />
</table>
<table enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" tableName="USR" delimitIdentifiers="true" delimitAllColumns="true">
</table>
<table enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" tableName="TST" delimitIdentifiers="true" delimitAllColumns="true">
</table> -->
<table enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" tableName="GLE" delimitIdentifiers="true" delimitAllColumns="true">
</table>
</context>
</generatorConfiguration>
\ No newline at end of file
......@@ -27,6 +27,8 @@ import com.brilliance.remit.db.model.Cbe;
import com.brilliance.remit.db.model.Cpd;
import com.brilliance.remit.db.model.Cpdgrp;
import com.brilliance.remit.db.model.Cpt;
import com.brilliance.remit.db.model.Fep;
import com.brilliance.remit.db.model.Gle;
import com.brilliance.remit.db.model.Pta;
import com.brilliance.remit.db.model.Pts;
import com.brilliance.remit.db.model.Pty;
......@@ -38,6 +40,8 @@ import com.brilliance.remit.service.CbeService;
import com.brilliance.remit.service.CntService;
import com.brilliance.remit.service.CpdService;
import com.brilliance.remit.service.CptService;
import com.brilliance.remit.service.FepService;
import com.brilliance.remit.service.GleService;
import com.brilliance.remit.service.PtaService;
import com.brilliance.remit.service.PtsService;
import com.brilliance.remit.service.PtyService;
......@@ -70,6 +74,10 @@ public class CpdController {
private AdrService adrService;
@Autowired
private PtaService ptaService;
@Autowired
private FepService fepService;
@Autowired
private GleService gleService;
private static final Log log = LogFactory.getLog(CpdController.class);
@Resource(name = "txManager")
......@@ -217,6 +225,25 @@ public class CpdController {
nomcbb.setCbeinr(nomcbeinr);
cbbService.save(nomcbb);
// FEP
List<Fep> fepList = cpdgrp.getFepList();
for (Fep fep : fepList) {
String fepinr = cntService.counter("FEP");
fep.setInr(fepinr);
fep.setObjinr(cpdinr);
fep.setRelobjinr(fepinr);
fepService.save(fep);
}
// GLE
List<Gle> gleList = cpdgrp.getGleList();
for (Gle gle : gleList) {
String gleinr = cntService.counter("GLE");
gle.setInr(gleinr);
gle.setObjinr(cpdinr);
gleService.save(gle);
}
transactionManager.commit(status);
log.info("end cpd save.....");
......
package com.brilliance.remit.db.dao;
import com.brilliance.remit.db.model.Fep;
public interface FepMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table FEP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
int deleteByPrimaryKey(String inr);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table FEP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
int insert(Fep record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table FEP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
int insertSelective(Fep record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table FEP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
Fep selectByPrimaryKey(String inr);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table FEP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
int updateByPrimaryKeySelective(Fep record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table FEP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
int updateByPrimaryKeyWithBLOBs(Fep record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table FEP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
int updateByPrimaryKey(Fep record);
}
\ No newline at end of file
package com.brilliance.remit.db.dao;
import com.brilliance.remit.db.model.Gle;
public interface GleMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table GLE
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
int deleteByPrimaryKey(String inr);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table GLE
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
int insert(Gle record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table GLE
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
int insertSelective(Gle record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table GLE
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
Gle selectByPrimaryKey(String inr);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table GLE
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
int updateByPrimaryKeySelective(Gle record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table GLE
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
int updateByPrimaryKey(Gle record);
}
\ No newline at end of file
<?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.brilliance.remit.db.dao.FepMapper">
<resultMap id="BaseResultMap" type="com.brilliance.remit.db.model.Fep">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:22:49 CST 2018.
-->
<id column="INR" jdbcType="CHAR" property="inr" />
<result column="FEECOD" jdbcType="CHAR" property="feecod" />
<result column="OBJTYP" jdbcType="CHAR" property="objtyp" />
<result column="OBJINR" jdbcType="CHAR" property="objinr" />
<result column="RELOBJTYP" jdbcType="CHAR" property="relobjtyp" />
<result column="RELOBJINR" jdbcType="CHAR" property="relobjinr" />
<result column="EXTKEY" jdbcType="CHAR" property="extkey" />
<result column="NAM" jdbcType="CHAR" property="nam" />
<result column="RELCUR" jdbcType="CHAR" property="relcur" />
<result column="RELAMT" jdbcType="DECIMAL" property="relamt" />
<result column="DAT1" jdbcType="TIMESTAMP" property="dat1" />
<result column="DAT2" jdbcType="TIMESTAMP" property="dat2" />
<result column="MODFLG" jdbcType="CHAR" property="modflg" />
<result column="UNT" jdbcType="DECIMAL" property="unt" />
<result column="UNTAMT" jdbcType="DECIMAL" property="untamt" />
<result column="RATCAL" jdbcType="DECIMAL" property="ratcal" />
<result column="RAT" jdbcType="DECIMAL" property="rat" />
<result column="MINMAXFLG" jdbcType="CHAR" property="minmaxflg" />
<result column="CUR" jdbcType="CHAR" property="cur" />
<result column="AMT" jdbcType="DECIMAL" property="amt" />
<result column="XRFCUR" jdbcType="CHAR" property="xrfcur" />
<result column="XRFAMT" jdbcType="DECIMAL" property="xrfamt" />
<result column="FEEACC" jdbcType="CHAR" property="feeacc" />
<result column="INFDETSTM" jdbcType="VARCHAR" property="infdetstm" />
<result column="PTYINR" jdbcType="CHAR" property="ptyinr" />
<result column="SRCTRNINR" jdbcType="CHAR" property="srctrninr" />
<result column="SRCDAT" jdbcType="TIMESTAMP" property="srcdat" />
<result column="RPLTRNINR" jdbcType="CHAR" property="rpltrninr" />
<result column="RPLDAT" jdbcType="TIMESTAMP" property="rpldat" />
<result column="DONTRNINR" jdbcType="CHAR" property="dontrninr" />
<result column="DONDAT" jdbcType="TIMESTAMP" property="dondat" />
<result column="ADVTRNINR" jdbcType="CHAR" property="advtrninr" />
<result column="PREDBTFEPINR" jdbcType="CHAR" property="predbtfepinr" />
<result column="ADVDAT" jdbcType="TIMESTAMP" property="advdat" />
<result column="ACRINR" jdbcType="CHAR" property="acrinr" />
<result column="SEPINR" jdbcType="CHAR" property="sepinr" />
<result column="ROL" jdbcType="CHAR" property="rol" />
<result column="RELAMTMAN" jdbcType="DECIMAL" property="relamtman" />
<result column="BEOFZDM" jdbcType="CHAR" property="beofzdm" />
<result column="BEOFESNM" jdbcType="CHAR" property="beofesnm" />
<result column="BEOCCY" jdbcType="CHAR" property="beoccy" />
<result column="BEOPACCT" jdbcType="CHAR" property="beopacct" />
<result column="BEOSHAMT" jdbcType="DECIMAL" property="beoshamt" />
<result column="BEOCHATP" jdbcType="CHAR" property="beochatp" />
<result column="BEOORAMT" jdbcType="DECIMAL" property="beooramt" />
<result column="BEODIAMT" jdbcType="DECIMAL" property="beodiamt" />
<result column="BEOTZFS" jdbcType="CHAR" property="beotzfs" />
<result column="BEORDATE" jdbcType="CHAR" property="beordate" />
<result column="BEOFPRUT" jdbcType="CHAR" property="beofprut" />
<result column="BEOFPRLT" jdbcType="CHAR" property="beofprlt" />
<result column="BEOFPRSQ" jdbcType="CHAR" property="beofprsq" />
<result column="BEOFPDAY" jdbcType="CHAR" property="beofpday" />
<result column="BEORETFG" jdbcType="CHAR" property="beoretfg" />
<result column="BEORDAYS" jdbcType="CHAR" property="beordays" />
<result column="BEODELFG" jdbcType="CHAR" property="beodelfg" />
<result column="BEOAADJN" jdbcType="CHAR" property="beoaadjn" />
<result column="BEOUADJN" jdbcType="CHAR" property="beouadjn" />
<result column="BEORACCT" jdbcType="CHAR" property="beoracct" />
<result column="BEOACMCD" jdbcType="CHAR" property="beoacmcd" />
<result column="BEOABRNO" jdbcType="CHAR" property="beoabrno" />
<result column="BEOFCSID" jdbcType="CHAR" property="beofcsid" />
<result column="BEOTXACT" jdbcType="CHAR" property="beotxact" />
<result column="BEOINART" jdbcType="CHAR" property="beoinart" />
<result column="BEORACNM" jdbcType="CHAR" property="beoracnm" />
<result column="SRC" jdbcType="CHAR" property="src" />
<result column="SRCINIFRM" jdbcType="CHAR" property="srcinifrm" />
<result column="DSP" jdbcType="CHAR" property="dsp" />
</resultMap>
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.brilliance.remit.db.model.Fep">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:22:49 CST 2018.
-->
<result column="FECUSE" jdbcType="LONGVARCHAR" property="fecuse" />
</resultMap>
<sql id="Base_Column_List">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:22:49 CST 2018.
-->
"INR", "FEECOD", "OBJTYP", "OBJINR", "RELOBJTYP", "RELOBJINR", "EXTKEY", "NAM", "RELCUR",
"RELAMT", "DAT1", "DAT2", "MODFLG", "UNT", "UNTAMT", "RATCAL", "RAT", "MINMAXFLG",
"CUR", "AMT", "XRFCUR", "XRFAMT", "FEEACC", "INFDETSTM", "PTYINR", "SRCTRNINR", "SRCDAT",
"RPLTRNINR", "RPLDAT", "DONTRNINR", "DONDAT", "ADVTRNINR", "PREDBTFEPINR", "ADVDAT",
"ACRINR", "SEPINR", "ROL", "RELAMTMAN", "BEOFZDM", "BEOFESNM", "BEOCCY", "BEOPACCT",
"BEOSHAMT", "BEOCHATP", "BEOORAMT", "BEODIAMT", "BEOTZFS", "BEORDATE", "BEOFPRUT",
"BEOFPRLT", "BEOFPRSQ", "BEOFPDAY", "BEORETFG", "BEORDAYS", "BEODELFG", "BEOAADJN",
"BEOUADJN", "BEORACCT", "BEOACMCD", "BEOABRNO", "BEOFCSID", "BEOTXACT", "BEOINART",
"BEORACNM", "SRC", "SRCINIFRM", "DSP"
</sql>
<sql id="Blob_Column_List">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:22:49 CST 2018.
-->
"FECUSE"
</sql>
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="ResultMapWithBLOBs">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:22:49 CST 2018.
-->
select
<include refid="Base_Column_List" />
,
<include refid="Blob_Column_List" />
from "FEP"
where "INR" = #{inr,jdbcType=CHAR}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:22:49 CST 2018.
-->
delete from "FEP"
where "INR" = #{inr,jdbcType=CHAR}
</delete>
<insert id="insert" parameterType="com.brilliance.remit.db.model.Fep">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:22:49 CST 2018.
-->
insert into "FEP" ("INR", "FEECOD", "OBJTYP", "OBJINR",
"RELOBJTYP", "RELOBJINR", "EXTKEY",
"NAM", "RELCUR", "RELAMT", "DAT1",
"DAT2", "MODFLG", "UNT", "UNTAMT",
"RATCAL", "RAT", "MINMAXFLG",
"CUR", "AMT", "XRFCUR", "XRFAMT",
"FEEACC", "INFDETSTM", "PTYINR",
"SRCTRNINR", "SRCDAT", "RPLTRNINR",
"RPLDAT", "DONTRNINR", "DONDAT",
"ADVTRNINR", "PREDBTFEPINR", "ADVDAT",
"ACRINR", "SEPINR", "ROL", "RELAMTMAN",
"BEOFZDM", "BEOFESNM", "BEOCCY", "BEOPACCT",
"BEOSHAMT", "BEOCHATP", "BEOORAMT",
"BEODIAMT", "BEOTZFS", "BEORDATE",
"BEOFPRUT", "BEOFPRLT", "BEOFPRSQ",
"BEOFPDAY", "BEORETFG", "BEORDAYS",
"BEODELFG", "BEOAADJN", "BEOUADJN",
"BEORACCT", "BEOACMCD", "BEOABRNO",
"BEOFCSID", "BEOTXACT", "BEOINART",
"BEORACNM", "SRC", "SRCINIFRM", "DSP",
"FECUSE")
values (#{inr,jdbcType=CHAR}, #{feecod,jdbcType=CHAR}, #{objtyp,jdbcType=CHAR}, #{objinr,jdbcType=CHAR},
#{relobjtyp,jdbcType=CHAR}, #{relobjinr,jdbcType=CHAR}, #{extkey,jdbcType=CHAR},
#{nam,jdbcType=CHAR}, #{relcur,jdbcType=CHAR}, #{relamt,jdbcType=DECIMAL}, #{dat1,jdbcType=TIMESTAMP},
#{dat2,jdbcType=TIMESTAMP}, #{modflg,jdbcType=CHAR}, #{unt,jdbcType=DECIMAL}, #{untamt,jdbcType=DECIMAL},
#{ratcal,jdbcType=DECIMAL}, #{rat,jdbcType=DECIMAL}, #{minmaxflg,jdbcType=CHAR},
#{cur,jdbcType=CHAR}, #{amt,jdbcType=DECIMAL}, #{xrfcur,jdbcType=CHAR}, #{xrfamt,jdbcType=DECIMAL},
#{feeacc,jdbcType=CHAR}, #{infdetstm,jdbcType=VARCHAR}, #{ptyinr,jdbcType=CHAR},
#{srctrninr,jdbcType=CHAR}, #{srcdat,jdbcType=TIMESTAMP}, #{rpltrninr,jdbcType=CHAR},
#{rpldat,jdbcType=TIMESTAMP}, #{dontrninr,jdbcType=CHAR}, #{dondat,jdbcType=TIMESTAMP},
#{advtrninr,jdbcType=CHAR}, #{predbtfepinr,jdbcType=CHAR}, #{advdat,jdbcType=TIMESTAMP},
#{acrinr,jdbcType=CHAR}, #{sepinr,jdbcType=CHAR}, #{rol,jdbcType=CHAR}, #{relamtman,jdbcType=DECIMAL},
#{beofzdm,jdbcType=CHAR}, #{beofesnm,jdbcType=CHAR}, #{beoccy,jdbcType=CHAR}, #{beopacct,jdbcType=CHAR},
#{beoshamt,jdbcType=DECIMAL}, #{beochatp,jdbcType=CHAR}, #{beooramt,jdbcType=DECIMAL},
#{beodiamt,jdbcType=DECIMAL}, #{beotzfs,jdbcType=CHAR}, #{beordate,jdbcType=CHAR},
#{beofprut,jdbcType=CHAR}, #{beofprlt,jdbcType=CHAR}, #{beofprsq,jdbcType=CHAR},
#{beofpday,jdbcType=CHAR}, #{beoretfg,jdbcType=CHAR}, #{beordays,jdbcType=CHAR},
#{beodelfg,jdbcType=CHAR}, #{beoaadjn,jdbcType=CHAR}, #{beouadjn,jdbcType=CHAR},
#{beoracct,jdbcType=CHAR}, #{beoacmcd,jdbcType=CHAR}, #{beoabrno,jdbcType=CHAR},
#{beofcsid,jdbcType=CHAR}, #{beotxact,jdbcType=CHAR}, #{beoinart,jdbcType=CHAR},
#{beoracnm,jdbcType=CHAR}, #{src,jdbcType=CHAR}, #{srcinifrm,jdbcType=CHAR}, #{dsp,jdbcType=CHAR},
#{fecuse,jdbcType=LONGVARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.brilliance.remit.db.model.Fep">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:22:49 CST 2018.
-->
insert into "FEP"
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">
"INR",
</if>
<if test="feecod != null">
"FEECOD",
</if>
<if test="objtyp != null">
"OBJTYP",
</if>
<if test="objinr != null">
"OBJINR",
</if>
<if test="relobjtyp != null">
"RELOBJTYP",
</if>
<if test="relobjinr != null">
"RELOBJINR",
</if>
<if test="extkey != null">
"EXTKEY",
</if>
<if test="nam != null">
"NAM",
</if>
<if test="relcur != null">
"RELCUR",
</if>
<if test="relamt != null">
"RELAMT",
</if>
<if test="dat1 != null">
"DAT1",
</if>
<if test="dat2 != null">
"DAT2",
</if>
<if test="modflg != null">
"MODFLG",
</if>
<if test="unt != null">
"UNT",
</if>
<if test="untamt != null">
"UNTAMT",
</if>
<if test="ratcal != null">
"RATCAL",
</if>
<if test="rat != null">
"RAT",
</if>
<if test="minmaxflg != null">
"MINMAXFLG",
</if>
<if test="cur != null">
"CUR",
</if>
<if test="amt != null">
"AMT",
</if>
<if test="xrfcur != null">
"XRFCUR",
</if>
<if test="xrfamt != null">
"XRFAMT",
</if>
<if test="feeacc != null">
"FEEACC",
</if>
<if test="infdetstm != null">
"INFDETSTM",
</if>
<if test="ptyinr != null">
"PTYINR",
</if>
<if test="srctrninr != null">
"SRCTRNINR",
</if>
<if test="srcdat != null">
"SRCDAT",
</if>
<if test="rpltrninr != null">
"RPLTRNINR",
</if>
<if test="rpldat != null">
"RPLDAT",
</if>
<if test="dontrninr != null">
"DONTRNINR",
</if>
<if test="dondat != null">
"DONDAT",
</if>
<if test="advtrninr != null">
"ADVTRNINR",
</if>
<if test="predbtfepinr != null">
"PREDBTFEPINR",
</if>
<if test="advdat != null">
"ADVDAT",
</if>
<if test="acrinr != null">
"ACRINR",
</if>
<if test="sepinr != null">
"SEPINR",
</if>
<if test="rol != null">
"ROL",
</if>
<if test="relamtman != null">
"RELAMTMAN",
</if>
<if test="beofzdm != null">
"BEOFZDM",
</if>
<if test="beofesnm != null">
"BEOFESNM",
</if>
<if test="beoccy != null">
"BEOCCY",
</if>
<if test="beopacct != null">
"BEOPACCT",
</if>
<if test="beoshamt != null">
"BEOSHAMT",
</if>
<if test="beochatp != null">
"BEOCHATP",
</if>
<if test="beooramt != null">
"BEOORAMT",
</if>
<if test="beodiamt != null">
"BEODIAMT",
</if>
<if test="beotzfs != null">
"BEOTZFS",
</if>
<if test="beordate != null">
"BEORDATE",
</if>
<if test="beofprut != null">
"BEOFPRUT",
</if>
<if test="beofprlt != null">
"BEOFPRLT",
</if>
<if test="beofprsq != null">
"BEOFPRSQ",
</if>
<if test="beofpday != null">
"BEOFPDAY",
</if>
<if test="beoretfg != null">
"BEORETFG",
</if>
<if test="beordays != null">
"BEORDAYS",
</if>
<if test="beodelfg != null">
"BEODELFG",
</if>
<if test="beoaadjn != null">
"BEOAADJN",
</if>
<if test="beouadjn != null">
"BEOUADJN",
</if>
<if test="beoracct != null">
"BEORACCT",
</if>
<if test="beoacmcd != null">
"BEOACMCD",
</if>
<if test="beoabrno != null">
"BEOABRNO",
</if>
<if test="beofcsid != null">
"BEOFCSID",
</if>
<if test="beotxact != null">
"BEOTXACT",
</if>
<if test="beoinart != null">
"BEOINART",
</if>
<if test="beoracnm != null">
"BEORACNM",
</if>
<if test="src != null">
"SRC",
</if>
<if test="srcinifrm != null">
"SRCINIFRM",
</if>
<if test="dsp != null">
"DSP",
</if>
<if test="fecuse != null">
"FECUSE",
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">
#{inr,jdbcType=CHAR},
</if>
<if test="feecod != null">
#{feecod,jdbcType=CHAR},
</if>
<if test="objtyp != null">
#{objtyp,jdbcType=CHAR},
</if>
<if test="objinr != null">
#{objinr,jdbcType=CHAR},
</if>
<if test="relobjtyp != null">
#{relobjtyp,jdbcType=CHAR},
</if>
<if test="relobjinr != null">
#{relobjinr,jdbcType=CHAR},
</if>
<if test="extkey != null">
#{extkey,jdbcType=CHAR},
</if>
<if test="nam != null">
#{nam,jdbcType=CHAR},
</if>
<if test="relcur != null">
#{relcur,jdbcType=CHAR},
</if>
<if test="relamt != null">
#{relamt,jdbcType=DECIMAL},
</if>
<if test="dat1 != null">
#{dat1,jdbcType=TIMESTAMP},
</if>
<if test="dat2 != null">
#{dat2,jdbcType=TIMESTAMP},
</if>
<if test="modflg != null">
#{modflg,jdbcType=CHAR},
</if>
<if test="unt != null">
#{unt,jdbcType=DECIMAL},
</if>
<if test="untamt != null">
#{untamt,jdbcType=DECIMAL},
</if>
<if test="ratcal != null">
#{ratcal,jdbcType=DECIMAL},
</if>
<if test="rat != null">
#{rat,jdbcType=DECIMAL},
</if>
<if test="minmaxflg != null">
#{minmaxflg,jdbcType=CHAR},
</if>
<if test="cur != null">
#{cur,jdbcType=CHAR},
</if>
<if test="amt != null">
#{amt,jdbcType=DECIMAL},
</if>
<if test="xrfcur != null">
#{xrfcur,jdbcType=CHAR},
</if>
<if test="xrfamt != null">
#{xrfamt,jdbcType=DECIMAL},
</if>
<if test="feeacc != null">
#{feeacc,jdbcType=CHAR},
</if>
<if test="infdetstm != null">
#{infdetstm,jdbcType=VARCHAR},
</if>
<if test="ptyinr != null">
#{ptyinr,jdbcType=CHAR},
</if>
<if test="srctrninr != null">
#{srctrninr,jdbcType=CHAR},
</if>
<if test="srcdat != null">
#{srcdat,jdbcType=TIMESTAMP},
</if>
<if test="rpltrninr != null">
#{rpltrninr,jdbcType=CHAR},
</if>
<if test="rpldat != null">
#{rpldat,jdbcType=TIMESTAMP},
</if>
<if test="dontrninr != null">
#{dontrninr,jdbcType=CHAR},
</if>
<if test="dondat != null">
#{dondat,jdbcType=TIMESTAMP},
</if>
<if test="advtrninr != null">
#{advtrninr,jdbcType=CHAR},
</if>
<if test="predbtfepinr != null">
#{predbtfepinr,jdbcType=CHAR},
</if>
<if test="advdat != null">
#{advdat,jdbcType=TIMESTAMP},
</if>
<if test="acrinr != null">
#{acrinr,jdbcType=CHAR},
</if>
<if test="sepinr != null">
#{sepinr,jdbcType=CHAR},
</if>
<if test="rol != null">
#{rol,jdbcType=CHAR},
</if>
<if test="relamtman != null">
#{relamtman,jdbcType=DECIMAL},
</if>
<if test="beofzdm != null">
#{beofzdm,jdbcType=CHAR},
</if>
<if test="beofesnm != null">
#{beofesnm,jdbcType=CHAR},
</if>
<if test="beoccy != null">
#{beoccy,jdbcType=CHAR},
</if>
<if test="beopacct != null">
#{beopacct,jdbcType=CHAR},
</if>
<if test="beoshamt != null">
#{beoshamt,jdbcType=DECIMAL},
</if>
<if test="beochatp != null">
#{beochatp,jdbcType=CHAR},
</if>
<if test="beooramt != null">
#{beooramt,jdbcType=DECIMAL},
</if>
<if test="beodiamt != null">
#{beodiamt,jdbcType=DECIMAL},
</if>
<if test="beotzfs != null">
#{beotzfs,jdbcType=CHAR},
</if>
<if test="beordate != null">
#{beordate,jdbcType=CHAR},
</if>
<if test="beofprut != null">
#{beofprut,jdbcType=CHAR},
</if>
<if test="beofprlt != null">
#{beofprlt,jdbcType=CHAR},
</if>
<if test="beofprsq != null">
#{beofprsq,jdbcType=CHAR},
</if>
<if test="beofpday != null">
#{beofpday,jdbcType=CHAR},
</if>
<if test="beoretfg != null">
#{beoretfg,jdbcType=CHAR},
</if>
<if test="beordays != null">
#{beordays,jdbcType=CHAR},
</if>
<if test="beodelfg != null">
#{beodelfg,jdbcType=CHAR},
</if>
<if test="beoaadjn != null">
#{beoaadjn,jdbcType=CHAR},
</if>
<if test="beouadjn != null">
#{beouadjn,jdbcType=CHAR},
</if>
<if test="beoracct != null">
#{beoracct,jdbcType=CHAR},
</if>
<if test="beoacmcd != null">
#{beoacmcd,jdbcType=CHAR},
</if>
<if test="beoabrno != null">
#{beoabrno,jdbcType=CHAR},
</if>
<if test="beofcsid != null">
#{beofcsid,jdbcType=CHAR},
</if>
<if test="beotxact != null">
#{beotxact,jdbcType=CHAR},
</if>
<if test="beoinart != null">
#{beoinart,jdbcType=CHAR},
</if>
<if test="beoracnm != null">
#{beoracnm,jdbcType=CHAR},
</if>
<if test="src != null">
#{src,jdbcType=CHAR},
</if>
<if test="srcinifrm != null">
#{srcinifrm,jdbcType=CHAR},
</if>
<if test="dsp != null">
#{dsp,jdbcType=CHAR},
</if>
<if test="fecuse != null">
#{fecuse,jdbcType=LONGVARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.brilliance.remit.db.model.Fep">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:22:49 CST 2018.
-->
update "FEP"
<set>
<if test="feecod != null">
"FEECOD" = #{feecod,jdbcType=CHAR},
</if>
<if test="objtyp != null">
"OBJTYP" = #{objtyp,jdbcType=CHAR},
</if>
<if test="objinr != null">
"OBJINR" = #{objinr,jdbcType=CHAR},
</if>
<if test="relobjtyp != null">
"RELOBJTYP" = #{relobjtyp,jdbcType=CHAR},
</if>
<if test="relobjinr != null">
"RELOBJINR" = #{relobjinr,jdbcType=CHAR},
</if>
<if test="extkey != null">
"EXTKEY" = #{extkey,jdbcType=CHAR},
</if>
<if test="nam != null">
"NAM" = #{nam,jdbcType=CHAR},
</if>
<if test="relcur != null">
"RELCUR" = #{relcur,jdbcType=CHAR},
</if>
<if test="relamt != null">
"RELAMT" = #{relamt,jdbcType=DECIMAL},
</if>
<if test="dat1 != null">
"DAT1" = #{dat1,jdbcType=TIMESTAMP},
</if>
<if test="dat2 != null">
"DAT2" = #{dat2,jdbcType=TIMESTAMP},
</if>
<if test="modflg != null">
"MODFLG" = #{modflg,jdbcType=CHAR},
</if>
<if test="unt != null">
"UNT" = #{unt,jdbcType=DECIMAL},
</if>
<if test="untamt != null">
"UNTAMT" = #{untamt,jdbcType=DECIMAL},
</if>
<if test="ratcal != null">
"RATCAL" = #{ratcal,jdbcType=DECIMAL},
</if>
<if test="rat != null">
"RAT" = #{rat,jdbcType=DECIMAL},
</if>
<if test="minmaxflg != null">
"MINMAXFLG" = #{minmaxflg,jdbcType=CHAR},
</if>
<if test="cur != null">
"CUR" = #{cur,jdbcType=CHAR},
</if>
<if test="amt != null">
"AMT" = #{amt,jdbcType=DECIMAL},
</if>
<if test="xrfcur != null">
"XRFCUR" = #{xrfcur,jdbcType=CHAR},
</if>
<if test="xrfamt != null">
"XRFAMT" = #{xrfamt,jdbcType=DECIMAL},
</if>
<if test="feeacc != null">
"FEEACC" = #{feeacc,jdbcType=CHAR},
</if>
<if test="infdetstm != null">
"INFDETSTM" = #{infdetstm,jdbcType=VARCHAR},
</if>
<if test="ptyinr != null">
"PTYINR" = #{ptyinr,jdbcType=CHAR},
</if>
<if test="srctrninr != null">
"SRCTRNINR" = #{srctrninr,jdbcType=CHAR},
</if>
<if test="srcdat != null">
"SRCDAT" = #{srcdat,jdbcType=TIMESTAMP},
</if>
<if test="rpltrninr != null">
"RPLTRNINR" = #{rpltrninr,jdbcType=CHAR},
</if>
<if test="rpldat != null">
"RPLDAT" = #{rpldat,jdbcType=TIMESTAMP},
</if>
<if test="dontrninr != null">
"DONTRNINR" = #{dontrninr,jdbcType=CHAR},
</if>
<if test="dondat != null">
"DONDAT" = #{dondat,jdbcType=TIMESTAMP},
</if>
<if test="advtrninr != null">
"ADVTRNINR" = #{advtrninr,jdbcType=CHAR},
</if>
<if test="predbtfepinr != null">
"PREDBTFEPINR" = #{predbtfepinr,jdbcType=CHAR},
</if>
<if test="advdat != null">
"ADVDAT" = #{advdat,jdbcType=TIMESTAMP},
</if>
<if test="acrinr != null">
"ACRINR" = #{acrinr,jdbcType=CHAR},
</if>
<if test="sepinr != null">
"SEPINR" = #{sepinr,jdbcType=CHAR},
</if>
<if test="rol != null">
"ROL" = #{rol,jdbcType=CHAR},
</if>
<if test="relamtman != null">
"RELAMTMAN" = #{relamtman,jdbcType=DECIMAL},
</if>
<if test="beofzdm != null">
"BEOFZDM" = #{beofzdm,jdbcType=CHAR},
</if>
<if test="beofesnm != null">
"BEOFESNM" = #{beofesnm,jdbcType=CHAR},
</if>
<if test="beoccy != null">
"BEOCCY" = #{beoccy,jdbcType=CHAR},
</if>
<if test="beopacct != null">
"BEOPACCT" = #{beopacct,jdbcType=CHAR},
</if>
<if test="beoshamt != null">
"BEOSHAMT" = #{beoshamt,jdbcType=DECIMAL},
</if>
<if test="beochatp != null">
"BEOCHATP" = #{beochatp,jdbcType=CHAR},
</if>
<if test="beooramt != null">
"BEOORAMT" = #{beooramt,jdbcType=DECIMAL},
</if>
<if test="beodiamt != null">
"BEODIAMT" = #{beodiamt,jdbcType=DECIMAL},
</if>
<if test="beotzfs != null">
"BEOTZFS" = #{beotzfs,jdbcType=CHAR},
</if>
<if test="beordate != null">
"BEORDATE" = #{beordate,jdbcType=CHAR},
</if>
<if test="beofprut != null">
"BEOFPRUT" = #{beofprut,jdbcType=CHAR},
</if>
<if test="beofprlt != null">
"BEOFPRLT" = #{beofprlt,jdbcType=CHAR},
</if>
<if test="beofprsq != null">
"BEOFPRSQ" = #{beofprsq,jdbcType=CHAR},
</if>
<if test="beofpday != null">
"BEOFPDAY" = #{beofpday,jdbcType=CHAR},
</if>
<if test="beoretfg != null">
"BEORETFG" = #{beoretfg,jdbcType=CHAR},
</if>
<if test="beordays != null">
"BEORDAYS" = #{beordays,jdbcType=CHAR},
</if>
<if test="beodelfg != null">
"BEODELFG" = #{beodelfg,jdbcType=CHAR},
</if>
<if test="beoaadjn != null">
"BEOAADJN" = #{beoaadjn,jdbcType=CHAR},
</if>
<if test="beouadjn != null">
"BEOUADJN" = #{beouadjn,jdbcType=CHAR},
</if>
<if test="beoracct != null">
"BEORACCT" = #{beoracct,jdbcType=CHAR},
</if>
<if test="beoacmcd != null">
"BEOACMCD" = #{beoacmcd,jdbcType=CHAR},
</if>
<if test="beoabrno != null">
"BEOABRNO" = #{beoabrno,jdbcType=CHAR},
</if>
<if test="beofcsid != null">
"BEOFCSID" = #{beofcsid,jdbcType=CHAR},
</if>
<if test="beotxact != null">
"BEOTXACT" = #{beotxact,jdbcType=CHAR},
</if>
<if test="beoinart != null">
"BEOINART" = #{beoinart,jdbcType=CHAR},
</if>
<if test="beoracnm != null">
"BEORACNM" = #{beoracnm,jdbcType=CHAR},
</if>
<if test="src != null">
"SRC" = #{src,jdbcType=CHAR},
</if>
<if test="srcinifrm != null">
"SRCINIFRM" = #{srcinifrm,jdbcType=CHAR},
</if>
<if test="dsp != null">
"DSP" = #{dsp,jdbcType=CHAR},
</if>
<if test="fecuse != null">
"FECUSE" = #{fecuse,jdbcType=LONGVARCHAR},
</if>
</set>
where "INR" = #{inr,jdbcType=CHAR}
</update>
<update id="updateByPrimaryKeyWithBLOBs" parameterType="com.brilliance.remit.db.model.Fep">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:22:49 CST 2018.
-->
update "FEP"
set "FEECOD" = #{feecod,jdbcType=CHAR},
"OBJTYP" = #{objtyp,jdbcType=CHAR},
"OBJINR" = #{objinr,jdbcType=CHAR},
"RELOBJTYP" = #{relobjtyp,jdbcType=CHAR},
"RELOBJINR" = #{relobjinr,jdbcType=CHAR},
"EXTKEY" = #{extkey,jdbcType=CHAR},
"NAM" = #{nam,jdbcType=CHAR},
"RELCUR" = #{relcur,jdbcType=CHAR},
"RELAMT" = #{relamt,jdbcType=DECIMAL},
"DAT1" = #{dat1,jdbcType=TIMESTAMP},
"DAT2" = #{dat2,jdbcType=TIMESTAMP},
"MODFLG" = #{modflg,jdbcType=CHAR},
"UNT" = #{unt,jdbcType=DECIMAL},
"UNTAMT" = #{untamt,jdbcType=DECIMAL},
"RATCAL" = #{ratcal,jdbcType=DECIMAL},
"RAT" = #{rat,jdbcType=DECIMAL},
"MINMAXFLG" = #{minmaxflg,jdbcType=CHAR},
"CUR" = #{cur,jdbcType=CHAR},
"AMT" = #{amt,jdbcType=DECIMAL},
"XRFCUR" = #{xrfcur,jdbcType=CHAR},
"XRFAMT" = #{xrfamt,jdbcType=DECIMAL},
"FEEACC" = #{feeacc,jdbcType=CHAR},
"INFDETSTM" = #{infdetstm,jdbcType=VARCHAR},
"PTYINR" = #{ptyinr,jdbcType=CHAR},
"SRCTRNINR" = #{srctrninr,jdbcType=CHAR},
"SRCDAT" = #{srcdat,jdbcType=TIMESTAMP},
"RPLTRNINR" = #{rpltrninr,jdbcType=CHAR},
"RPLDAT" = #{rpldat,jdbcType=TIMESTAMP},
"DONTRNINR" = #{dontrninr,jdbcType=CHAR},
"DONDAT" = #{dondat,jdbcType=TIMESTAMP},
"ADVTRNINR" = #{advtrninr,jdbcType=CHAR},
"PREDBTFEPINR" = #{predbtfepinr,jdbcType=CHAR},
"ADVDAT" = #{advdat,jdbcType=TIMESTAMP},
"ACRINR" = #{acrinr,jdbcType=CHAR},
"SEPINR" = #{sepinr,jdbcType=CHAR},
"ROL" = #{rol,jdbcType=CHAR},
"RELAMTMAN" = #{relamtman,jdbcType=DECIMAL},
"BEOFZDM" = #{beofzdm,jdbcType=CHAR},
"BEOFESNM" = #{beofesnm,jdbcType=CHAR},
"BEOCCY" = #{beoccy,jdbcType=CHAR},
"BEOPACCT" = #{beopacct,jdbcType=CHAR},
"BEOSHAMT" = #{beoshamt,jdbcType=DECIMAL},
"BEOCHATP" = #{beochatp,jdbcType=CHAR},
"BEOORAMT" = #{beooramt,jdbcType=DECIMAL},
"BEODIAMT" = #{beodiamt,jdbcType=DECIMAL},
"BEOTZFS" = #{beotzfs,jdbcType=CHAR},
"BEORDATE" = #{beordate,jdbcType=CHAR},
"BEOFPRUT" = #{beofprut,jdbcType=CHAR},
"BEOFPRLT" = #{beofprlt,jdbcType=CHAR},
"BEOFPRSQ" = #{beofprsq,jdbcType=CHAR},
"BEOFPDAY" = #{beofpday,jdbcType=CHAR},
"BEORETFG" = #{beoretfg,jdbcType=CHAR},
"BEORDAYS" = #{beordays,jdbcType=CHAR},
"BEODELFG" = #{beodelfg,jdbcType=CHAR},
"BEOAADJN" = #{beoaadjn,jdbcType=CHAR},
"BEOUADJN" = #{beouadjn,jdbcType=CHAR},
"BEORACCT" = #{beoracct,jdbcType=CHAR},
"BEOACMCD" = #{beoacmcd,jdbcType=CHAR},
"BEOABRNO" = #{beoabrno,jdbcType=CHAR},
"BEOFCSID" = #{beofcsid,jdbcType=CHAR},
"BEOTXACT" = #{beotxact,jdbcType=CHAR},
"BEOINART" = #{beoinart,jdbcType=CHAR},
"BEORACNM" = #{beoracnm,jdbcType=CHAR},
"SRC" = #{src,jdbcType=CHAR},
"SRCINIFRM" = #{srcinifrm,jdbcType=CHAR},
"DSP" = #{dsp,jdbcType=CHAR},
"FECUSE" = #{fecuse,jdbcType=LONGVARCHAR}
where "INR" = #{inr,jdbcType=CHAR}
</update>
<update id="updateByPrimaryKey" parameterType="com.brilliance.remit.db.model.Fep">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:22:49 CST 2018.
-->
update "FEP"
set "FEECOD" = #{feecod,jdbcType=CHAR},
"OBJTYP" = #{objtyp,jdbcType=CHAR},
"OBJINR" = #{objinr,jdbcType=CHAR},
"RELOBJTYP" = #{relobjtyp,jdbcType=CHAR},
"RELOBJINR" = #{relobjinr,jdbcType=CHAR},
"EXTKEY" = #{extkey,jdbcType=CHAR},
"NAM" = #{nam,jdbcType=CHAR},
"RELCUR" = #{relcur,jdbcType=CHAR},
"RELAMT" = #{relamt,jdbcType=DECIMAL},
"DAT1" = #{dat1,jdbcType=TIMESTAMP},
"DAT2" = #{dat2,jdbcType=TIMESTAMP},
"MODFLG" = #{modflg,jdbcType=CHAR},
"UNT" = #{unt,jdbcType=DECIMAL},
"UNTAMT" = #{untamt,jdbcType=DECIMAL},
"RATCAL" = #{ratcal,jdbcType=DECIMAL},
"RAT" = #{rat,jdbcType=DECIMAL},
"MINMAXFLG" = #{minmaxflg,jdbcType=CHAR},
"CUR" = #{cur,jdbcType=CHAR},
"AMT" = #{amt,jdbcType=DECIMAL},
"XRFCUR" = #{xrfcur,jdbcType=CHAR},
"XRFAMT" = #{xrfamt,jdbcType=DECIMAL},
"FEEACC" = #{feeacc,jdbcType=CHAR},
"INFDETSTM" = #{infdetstm,jdbcType=VARCHAR},
"PTYINR" = #{ptyinr,jdbcType=CHAR},
"SRCTRNINR" = #{srctrninr,jdbcType=CHAR},
"SRCDAT" = #{srcdat,jdbcType=TIMESTAMP},
"RPLTRNINR" = #{rpltrninr,jdbcType=CHAR},
"RPLDAT" = #{rpldat,jdbcType=TIMESTAMP},
"DONTRNINR" = #{dontrninr,jdbcType=CHAR},
"DONDAT" = #{dondat,jdbcType=TIMESTAMP},
"ADVTRNINR" = #{advtrninr,jdbcType=CHAR},
"PREDBTFEPINR" = #{predbtfepinr,jdbcType=CHAR},
"ADVDAT" = #{advdat,jdbcType=TIMESTAMP},
"ACRINR" = #{acrinr,jdbcType=CHAR},
"SEPINR" = #{sepinr,jdbcType=CHAR},
"ROL" = #{rol,jdbcType=CHAR},
"RELAMTMAN" = #{relamtman,jdbcType=DECIMAL},
"BEOFZDM" = #{beofzdm,jdbcType=CHAR},
"BEOFESNM" = #{beofesnm,jdbcType=CHAR},
"BEOCCY" = #{beoccy,jdbcType=CHAR},
"BEOPACCT" = #{beopacct,jdbcType=CHAR},
"BEOSHAMT" = #{beoshamt,jdbcType=DECIMAL},
"BEOCHATP" = #{beochatp,jdbcType=CHAR},
"BEOORAMT" = #{beooramt,jdbcType=DECIMAL},
"BEODIAMT" = #{beodiamt,jdbcType=DECIMAL},
"BEOTZFS" = #{beotzfs,jdbcType=CHAR},
"BEORDATE" = #{beordate,jdbcType=CHAR},
"BEOFPRUT" = #{beofprut,jdbcType=CHAR},
"BEOFPRLT" = #{beofprlt,jdbcType=CHAR},
"BEOFPRSQ" = #{beofprsq,jdbcType=CHAR},
"BEOFPDAY" = #{beofpday,jdbcType=CHAR},
"BEORETFG" = #{beoretfg,jdbcType=CHAR},
"BEORDAYS" = #{beordays,jdbcType=CHAR},
"BEODELFG" = #{beodelfg,jdbcType=CHAR},
"BEOAADJN" = #{beoaadjn,jdbcType=CHAR},
"BEOUADJN" = #{beouadjn,jdbcType=CHAR},
"BEORACCT" = #{beoracct,jdbcType=CHAR},
"BEOACMCD" = #{beoacmcd,jdbcType=CHAR},
"BEOABRNO" = #{beoabrno,jdbcType=CHAR},
"BEOFCSID" = #{beofcsid,jdbcType=CHAR},
"BEOTXACT" = #{beotxact,jdbcType=CHAR},
"BEOINART" = #{beoinart,jdbcType=CHAR},
"BEORACNM" = #{beoracnm,jdbcType=CHAR},
"SRC" = #{src,jdbcType=CHAR},
"SRCINIFRM" = #{srcinifrm,jdbcType=CHAR},
"DSP" = #{dsp,jdbcType=CHAR}
where "INR" = #{inr,jdbcType=CHAR}
</update>
</mapper>
\ No newline at end of file
<?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.brilliance.remit.db.dao.GleMapper">
<resultMap id="BaseResultMap" type="com.brilliance.remit.db.model.Gle">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:32:57 CST 2018.
-->
<id column="INR" jdbcType="CHAR" property="inr" />
<result column="OBJTYP" jdbcType="CHAR" property="objtyp" />
<result column="OBJINR" jdbcType="CHAR" property="objinr" />
<result column="TRNINR" jdbcType="CHAR" property="trninr" />
<result column="ACT" jdbcType="CHAR" property="act" />
<result column="DBTCDT" jdbcType="CHAR" property="dbtcdt" />
<result column="CUR" jdbcType="CHAR" property="cur" />
<result column="AMT" jdbcType="DECIMAL" property="amt" />
<result column="SYSCUR" jdbcType="CHAR" property="syscur" />
<result column="SYSAMT" jdbcType="DECIMAL" property="sysamt" />
<result column="VALDAT" jdbcType="TIMESTAMP" property="valdat" />
<result column="BUCDAT" jdbcType="TIMESTAMP" property="bucdat" />
<result column="TXT1" jdbcType="CHAR" property="txt1" />
<result column="TXT2" jdbcType="CHAR" property="txt2" />
<result column="TXT3" jdbcType="CHAR" property="txt3" />
<result column="PRN" jdbcType="CHAR" property="prn" />
<result column="EXPSES" jdbcType="CHAR" property="expses" />
<result column="EXPFLG" jdbcType="CHAR" property="expflg" />
<result column="TRNMAN" jdbcType="CHAR" property="trnman" />
<result column="CLIEXTKEY" jdbcType="CHAR" property="cliextkey" />
<result column="TRMTYP" jdbcType="CHAR" property="trmtyp" />
<result column="ACTTRNCOD" jdbcType="CHAR" property="acttrncod" />
<result column="FCTSGN" jdbcType="CHAR" property="fctsgn" />
<result column="PRTFLG" jdbcType="CHAR" property="prtflg" />
<result column="RAT" jdbcType="DECIMAL" property="rat" />
<result column="FINFLG" jdbcType="CHAR" property="finflg" />
<result column="DSP" jdbcType="CHAR" property="dsp" />
<result column="TSYREF" jdbcType="CHAR" property="tsyref" />
<result column="SETTYP" jdbcType="CHAR" property="settyp" />
<result column="TRDTYP" jdbcType="CHAR" property="trdtyp" />
<result column="DOCREF" jdbcType="CHAR" property="docref" />
<result column="CSHFLG" jdbcType="CHAR" property="cshflg" />
<result column="QZREF" jdbcType="CHAR" property="qzref" />
<result column="QZDAT" jdbcType="CHAR" property="qzdat" />
<result column="TRDPPT" jdbcType="CHAR" property="trdppt" />
<result column="TXCODE" jdbcType="CHAR" property="txcode" />
<result column="CUSNAM" jdbcType="CHAR" property="cusnam" />
<result column="SFKBANK" jdbcType="CHAR" property="sfkbank" />
<result column="SFKNAM" jdbcType="CHAR" property="sfknam" />
<result column="SFKACT" jdbcType="CHAR" property="sfkact" />
<result column="SFKCTY" jdbcType="CHAR" property="sfkcty" />
<result column="DELTYP" jdbcType="CHAR" property="deltyp" />
<result column="TRANTYP" jdbcType="CHAR" property="trantyp" />
<result column="CORTYP" jdbcType="CHAR" property="cortyp" />
<result column="GLETYP" jdbcType="CHAR" property="gletyp" />
</resultMap>
<sql id="Base_Column_List">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:32:57 CST 2018.
-->
"INR", "OBJTYP", "OBJINR", "TRNINR", "ACT", "DBTCDT", "CUR", "AMT", "SYSCUR", "SYSAMT",
"VALDAT", "BUCDAT", "TXT1", "TXT2", "TXT3", "PRN", "EXPSES", "EXPFLG", "TRNMAN",
"CLIEXTKEY", "TRMTYP", "ACTTRNCOD", "FCTSGN", "PRTFLG", "RAT", "FINFLG", "DSP", "TSYREF",
"SETTYP", "TRDTYP", "DOCREF", "CSHFLG", "QZREF", "QZDAT", "TRDPPT", "TXCODE", "CUSNAM",
"SFKBANK", "SFKNAM", "SFKACT", "SFKCTY", "DELTYP", "TRANTYP", "CORTYP", "GLETYP"
</sql>
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:32:57 CST 2018.
-->
select
<include refid="Base_Column_List" />
from "GLE"
where "INR" = #{inr,jdbcType=CHAR}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:32:57 CST 2018.
-->
delete from "GLE"
where "INR" = #{inr,jdbcType=CHAR}
</delete>
<insert id="insert" parameterType="com.brilliance.remit.db.model.Gle">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:32:57 CST 2018.
-->
insert into "GLE" ("INR", "OBJTYP", "OBJINR", "TRNINR",
"ACT", "DBTCDT", "CUR", "AMT",
"SYSCUR", "SYSAMT", "VALDAT",
"BUCDAT", "TXT1", "TXT2", "TXT3",
"PRN", "EXPSES", "EXPFLG", "TRNMAN",
"CLIEXTKEY", "TRMTYP", "ACTTRNCOD",
"FCTSGN", "PRTFLG", "RAT", "FINFLG",
"DSP", "TSYREF", "SETTYP", "TRDTYP",
"DOCREF", "CSHFLG", "QZREF", "QZDAT",
"TRDPPT", "TXCODE", "CUSNAM", "SFKBANK",
"SFKNAM", "SFKACT", "SFKCTY", "DELTYP",
"TRANTYP", "CORTYP", "GLETYP")
values (#{inr,jdbcType=CHAR}, #{objtyp,jdbcType=CHAR}, #{objinr,jdbcType=CHAR}, #{trninr,jdbcType=CHAR},
#{act,jdbcType=CHAR}, #{dbtcdt,jdbcType=CHAR}, #{cur,jdbcType=CHAR}, #{amt,jdbcType=DECIMAL},
#{syscur,jdbcType=CHAR}, #{sysamt,jdbcType=DECIMAL}, #{valdat,jdbcType=TIMESTAMP},
#{bucdat,jdbcType=TIMESTAMP}, #{txt1,jdbcType=CHAR}, #{txt2,jdbcType=CHAR}, #{txt3,jdbcType=CHAR},
#{prn,jdbcType=CHAR}, #{expses,jdbcType=CHAR}, #{expflg,jdbcType=CHAR}, #{trnman,jdbcType=CHAR},
#{cliextkey,jdbcType=CHAR}, #{trmtyp,jdbcType=CHAR}, #{acttrncod,jdbcType=CHAR},
#{fctsgn,jdbcType=CHAR}, #{prtflg,jdbcType=CHAR}, #{rat,jdbcType=DECIMAL}, #{finflg,jdbcType=CHAR},
#{dsp,jdbcType=CHAR}, #{tsyref,jdbcType=CHAR}, #{settyp,jdbcType=CHAR}, #{trdtyp,jdbcType=CHAR},
#{docref,jdbcType=CHAR}, #{cshflg,jdbcType=CHAR}, #{qzref,jdbcType=CHAR}, #{qzdat,jdbcType=CHAR},
#{trdppt,jdbcType=CHAR}, #{txcode,jdbcType=CHAR}, #{cusnam,jdbcType=CHAR}, #{sfkbank,jdbcType=CHAR},
#{sfknam,jdbcType=CHAR}, #{sfkact,jdbcType=CHAR}, #{sfkcty,jdbcType=CHAR}, #{deltyp,jdbcType=CHAR},
#{trantyp,jdbcType=CHAR}, #{cortyp,jdbcType=CHAR}, #{gletyp,jdbcType=CHAR})
</insert>
<insert id="insertSelective" parameterType="com.brilliance.remit.db.model.Gle">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:32:57 CST 2018.
-->
insert into "GLE"
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="inr != null">
"INR",
</if>
<if test="objtyp != null">
"OBJTYP",
</if>
<if test="objinr != null">
"OBJINR",
</if>
<if test="trninr != null">
"TRNINR",
</if>
<if test="act != null">
"ACT",
</if>
<if test="dbtcdt != null">
"DBTCDT",
</if>
<if test="cur != null">
"CUR",
</if>
<if test="amt != null">
"AMT",
</if>
<if test="syscur != null">
"SYSCUR",
</if>
<if test="sysamt != null">
"SYSAMT",
</if>
<if test="valdat != null">
"VALDAT",
</if>
<if test="bucdat != null">
"BUCDAT",
</if>
<if test="txt1 != null">
"TXT1",
</if>
<if test="txt2 != null">
"TXT2",
</if>
<if test="txt3 != null">
"TXT3",
</if>
<if test="prn != null">
"PRN",
</if>
<if test="expses != null">
"EXPSES",
</if>
<if test="expflg != null">
"EXPFLG",
</if>
<if test="trnman != null">
"TRNMAN",
</if>
<if test="cliextkey != null">
"CLIEXTKEY",
</if>
<if test="trmtyp != null">
"TRMTYP",
</if>
<if test="acttrncod != null">
"ACTTRNCOD",
</if>
<if test="fctsgn != null">
"FCTSGN",
</if>
<if test="prtflg != null">
"PRTFLG",
</if>
<if test="rat != null">
"RAT",
</if>
<if test="finflg != null">
"FINFLG",
</if>
<if test="dsp != null">
"DSP",
</if>
<if test="tsyref != null">
"TSYREF",
</if>
<if test="settyp != null">
"SETTYP",
</if>
<if test="trdtyp != null">
"TRDTYP",
</if>
<if test="docref != null">
"DOCREF",
</if>
<if test="cshflg != null">
"CSHFLG",
</if>
<if test="qzref != null">
"QZREF",
</if>
<if test="qzdat != null">
"QZDAT",
</if>
<if test="trdppt != null">
"TRDPPT",
</if>
<if test="txcode != null">
"TXCODE",
</if>
<if test="cusnam != null">
"CUSNAM",
</if>
<if test="sfkbank != null">
"SFKBANK",
</if>
<if test="sfknam != null">
"SFKNAM",
</if>
<if test="sfkact != null">
"SFKACT",
</if>
<if test="sfkcty != null">
"SFKCTY",
</if>
<if test="deltyp != null">
"DELTYP",
</if>
<if test="trantyp != null">
"TRANTYP",
</if>
<if test="cortyp != null">
"CORTYP",
</if>
<if test="gletyp != null">
"GLETYP",
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="inr != null">
#{inr,jdbcType=CHAR},
</if>
<if test="objtyp != null">
#{objtyp,jdbcType=CHAR},
</if>
<if test="objinr != null">
#{objinr,jdbcType=CHAR},
</if>
<if test="trninr != null">
#{trninr,jdbcType=CHAR},
</if>
<if test="act != null">
#{act,jdbcType=CHAR},
</if>
<if test="dbtcdt != null">
#{dbtcdt,jdbcType=CHAR},
</if>
<if test="cur != null">
#{cur,jdbcType=CHAR},
</if>
<if test="amt != null">
#{amt,jdbcType=DECIMAL},
</if>
<if test="syscur != null">
#{syscur,jdbcType=CHAR},
</if>
<if test="sysamt != null">
#{sysamt,jdbcType=DECIMAL},
</if>
<if test="valdat != null">
#{valdat,jdbcType=TIMESTAMP},
</if>
<if test="bucdat != null">
#{bucdat,jdbcType=TIMESTAMP},
</if>
<if test="txt1 != null">
#{txt1,jdbcType=CHAR},
</if>
<if test="txt2 != null">
#{txt2,jdbcType=CHAR},
</if>
<if test="txt3 != null">
#{txt3,jdbcType=CHAR},
</if>
<if test="prn != null">
#{prn,jdbcType=CHAR},
</if>
<if test="expses != null">
#{expses,jdbcType=CHAR},
</if>
<if test="expflg != null">
#{expflg,jdbcType=CHAR},
</if>
<if test="trnman != null">
#{trnman,jdbcType=CHAR},
</if>
<if test="cliextkey != null">
#{cliextkey,jdbcType=CHAR},
</if>
<if test="trmtyp != null">
#{trmtyp,jdbcType=CHAR},
</if>
<if test="acttrncod != null">
#{acttrncod,jdbcType=CHAR},
</if>
<if test="fctsgn != null">
#{fctsgn,jdbcType=CHAR},
</if>
<if test="prtflg != null">
#{prtflg,jdbcType=CHAR},
</if>
<if test="rat != null">
#{rat,jdbcType=DECIMAL},
</if>
<if test="finflg != null">
#{finflg,jdbcType=CHAR},
</if>
<if test="dsp != null">
#{dsp,jdbcType=CHAR},
</if>
<if test="tsyref != null">
#{tsyref,jdbcType=CHAR},
</if>
<if test="settyp != null">
#{settyp,jdbcType=CHAR},
</if>
<if test="trdtyp != null">
#{trdtyp,jdbcType=CHAR},
</if>
<if test="docref != null">
#{docref,jdbcType=CHAR},
</if>
<if test="cshflg != null">
#{cshflg,jdbcType=CHAR},
</if>
<if test="qzref != null">
#{qzref,jdbcType=CHAR},
</if>
<if test="qzdat != null">
#{qzdat,jdbcType=CHAR},
</if>
<if test="trdppt != null">
#{trdppt,jdbcType=CHAR},
</if>
<if test="txcode != null">
#{txcode,jdbcType=CHAR},
</if>
<if test="cusnam != null">
#{cusnam,jdbcType=CHAR},
</if>
<if test="sfkbank != null">
#{sfkbank,jdbcType=CHAR},
</if>
<if test="sfknam != null">
#{sfknam,jdbcType=CHAR},
</if>
<if test="sfkact != null">
#{sfkact,jdbcType=CHAR},
</if>
<if test="sfkcty != null">
#{sfkcty,jdbcType=CHAR},
</if>
<if test="deltyp != null">
#{deltyp,jdbcType=CHAR},
</if>
<if test="trantyp != null">
#{trantyp,jdbcType=CHAR},
</if>
<if test="cortyp != null">
#{cortyp,jdbcType=CHAR},
</if>
<if test="gletyp != null">
#{gletyp,jdbcType=CHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.brilliance.remit.db.model.Gle">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:32:57 CST 2018.
-->
update "GLE"
<set>
<if test="objtyp != null">
"OBJTYP" = #{objtyp,jdbcType=CHAR},
</if>
<if test="objinr != null">
"OBJINR" = #{objinr,jdbcType=CHAR},
</if>
<if test="trninr != null">
"TRNINR" = #{trninr,jdbcType=CHAR},
</if>
<if test="act != null">
"ACT" = #{act,jdbcType=CHAR},
</if>
<if test="dbtcdt != null">
"DBTCDT" = #{dbtcdt,jdbcType=CHAR},
</if>
<if test="cur != null">
"CUR" = #{cur,jdbcType=CHAR},
</if>
<if test="amt != null">
"AMT" = #{amt,jdbcType=DECIMAL},
</if>
<if test="syscur != null">
"SYSCUR" = #{syscur,jdbcType=CHAR},
</if>
<if test="sysamt != null">
"SYSAMT" = #{sysamt,jdbcType=DECIMAL},
</if>
<if test="valdat != null">
"VALDAT" = #{valdat,jdbcType=TIMESTAMP},
</if>
<if test="bucdat != null">
"BUCDAT" = #{bucdat,jdbcType=TIMESTAMP},
</if>
<if test="txt1 != null">
"TXT1" = #{txt1,jdbcType=CHAR},
</if>
<if test="txt2 != null">
"TXT2" = #{txt2,jdbcType=CHAR},
</if>
<if test="txt3 != null">
"TXT3" = #{txt3,jdbcType=CHAR},
</if>
<if test="prn != null">
"PRN" = #{prn,jdbcType=CHAR},
</if>
<if test="expses != null">
"EXPSES" = #{expses,jdbcType=CHAR},
</if>
<if test="expflg != null">
"EXPFLG" = #{expflg,jdbcType=CHAR},
</if>
<if test="trnman != null">
"TRNMAN" = #{trnman,jdbcType=CHAR},
</if>
<if test="cliextkey != null">
"CLIEXTKEY" = #{cliextkey,jdbcType=CHAR},
</if>
<if test="trmtyp != null">
"TRMTYP" = #{trmtyp,jdbcType=CHAR},
</if>
<if test="acttrncod != null">
"ACTTRNCOD" = #{acttrncod,jdbcType=CHAR},
</if>
<if test="fctsgn != null">
"FCTSGN" = #{fctsgn,jdbcType=CHAR},
</if>
<if test="prtflg != null">
"PRTFLG" = #{prtflg,jdbcType=CHAR},
</if>
<if test="rat != null">
"RAT" = #{rat,jdbcType=DECIMAL},
</if>
<if test="finflg != null">
"FINFLG" = #{finflg,jdbcType=CHAR},
</if>
<if test="dsp != null">
"DSP" = #{dsp,jdbcType=CHAR},
</if>
<if test="tsyref != null">
"TSYREF" = #{tsyref,jdbcType=CHAR},
</if>
<if test="settyp != null">
"SETTYP" = #{settyp,jdbcType=CHAR},
</if>
<if test="trdtyp != null">
"TRDTYP" = #{trdtyp,jdbcType=CHAR},
</if>
<if test="docref != null">
"DOCREF" = #{docref,jdbcType=CHAR},
</if>
<if test="cshflg != null">
"CSHFLG" = #{cshflg,jdbcType=CHAR},
</if>
<if test="qzref != null">
"QZREF" = #{qzref,jdbcType=CHAR},
</if>
<if test="qzdat != null">
"QZDAT" = #{qzdat,jdbcType=CHAR},
</if>
<if test="trdppt != null">
"TRDPPT" = #{trdppt,jdbcType=CHAR},
</if>
<if test="txcode != null">
"TXCODE" = #{txcode,jdbcType=CHAR},
</if>
<if test="cusnam != null">
"CUSNAM" = #{cusnam,jdbcType=CHAR},
</if>
<if test="sfkbank != null">
"SFKBANK" = #{sfkbank,jdbcType=CHAR},
</if>
<if test="sfknam != null">
"SFKNAM" = #{sfknam,jdbcType=CHAR},
</if>
<if test="sfkact != null">
"SFKACT" = #{sfkact,jdbcType=CHAR},
</if>
<if test="sfkcty != null">
"SFKCTY" = #{sfkcty,jdbcType=CHAR},
</if>
<if test="deltyp != null">
"DELTYP" = #{deltyp,jdbcType=CHAR},
</if>
<if test="trantyp != null">
"TRANTYP" = #{trantyp,jdbcType=CHAR},
</if>
<if test="cortyp != null">
"CORTYP" = #{cortyp,jdbcType=CHAR},
</if>
<if test="gletyp != null">
"GLETYP" = #{gletyp,jdbcType=CHAR},
</if>
</set>
where "INR" = #{inr,jdbcType=CHAR}
</update>
<update id="updateByPrimaryKey" parameterType="com.brilliance.remit.db.model.Gle">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Fri Dec 21 09:32:57 CST 2018.
-->
update "GLE"
set "OBJTYP" = #{objtyp,jdbcType=CHAR},
"OBJINR" = #{objinr,jdbcType=CHAR},
"TRNINR" = #{trninr,jdbcType=CHAR},
"ACT" = #{act,jdbcType=CHAR},
"DBTCDT" = #{dbtcdt,jdbcType=CHAR},
"CUR" = #{cur,jdbcType=CHAR},
"AMT" = #{amt,jdbcType=DECIMAL},
"SYSCUR" = #{syscur,jdbcType=CHAR},
"SYSAMT" = #{sysamt,jdbcType=DECIMAL},
"VALDAT" = #{valdat,jdbcType=TIMESTAMP},
"BUCDAT" = #{bucdat,jdbcType=TIMESTAMP},
"TXT1" = #{txt1,jdbcType=CHAR},
"TXT2" = #{txt2,jdbcType=CHAR},
"TXT3" = #{txt3,jdbcType=CHAR},
"PRN" = #{prn,jdbcType=CHAR},
"EXPSES" = #{expses,jdbcType=CHAR},
"EXPFLG" = #{expflg,jdbcType=CHAR},
"TRNMAN" = #{trnman,jdbcType=CHAR},
"CLIEXTKEY" = #{cliextkey,jdbcType=CHAR},
"TRMTYP" = #{trmtyp,jdbcType=CHAR},
"ACTTRNCOD" = #{acttrncod,jdbcType=CHAR},
"FCTSGN" = #{fctsgn,jdbcType=CHAR},
"PRTFLG" = #{prtflg,jdbcType=CHAR},
"RAT" = #{rat,jdbcType=DECIMAL},
"FINFLG" = #{finflg,jdbcType=CHAR},
"DSP" = #{dsp,jdbcType=CHAR},
"TSYREF" = #{tsyref,jdbcType=CHAR},
"SETTYP" = #{settyp,jdbcType=CHAR},
"TRDTYP" = #{trdtyp,jdbcType=CHAR},
"DOCREF" = #{docref,jdbcType=CHAR},
"CSHFLG" = #{cshflg,jdbcType=CHAR},
"QZREF" = #{qzref,jdbcType=CHAR},
"QZDAT" = #{qzdat,jdbcType=CHAR},
"TRDPPT" = #{trdppt,jdbcType=CHAR},
"TXCODE" = #{txcode,jdbcType=CHAR},
"CUSNAM" = #{cusnam,jdbcType=CHAR},
"SFKBANK" = #{sfkbank,jdbcType=CHAR},
"SFKNAM" = #{sfknam,jdbcType=CHAR},
"SFKACT" = #{sfkact,jdbcType=CHAR},
"SFKCTY" = #{sfkcty,jdbcType=CHAR},
"DELTYP" = #{deltyp,jdbcType=CHAR},
"TRANTYP" = #{trantyp,jdbcType=CHAR},
"CORTYP" = #{cortyp,jdbcType=CHAR},
"GLETYP" = #{gletyp,jdbcType=CHAR}
where "INR" = #{inr,jdbcType=CHAR}
</update>
</mapper>
\ No newline at end of file
......@@ -24,6 +24,8 @@ public class Cpdgrp implements Serializable {
private Cbb maxcbb;// 余额
private Cbe nomcbe;// 变动余额
private Cbb nomcbb;// 余额
private List<Gle> gleList; // 會計分录
private List<Fep> fepList;// 费用明细
public Cpd getCpd() {
return cpd;
......@@ -113,4 +115,20 @@ public class Cpdgrp implements Serializable {
this.pta = pta;
}
public List<Gle> getGleList() {
return gleList;
}
public List<Fep> getFepList() {
return fepList;
}
public void setGleList(List<Gle> gleList) {
this.gleList = gleList;
}
public void setFepList(List<Fep> fepList) {
this.fepList = fepList;
}
}
package com.brilliance.remit.db.model;
import java.math.BigDecimal;
import java.util.Date;
public class Fep {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.INR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String inr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.FEECOD
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String feecod;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.OBJTYP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String objtyp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.OBJINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String objinr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.RELOBJTYP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String relobjtyp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.RELOBJINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String relobjinr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.EXTKEY
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String extkey;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.NAM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String nam;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.RELCUR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String relcur;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.RELAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private BigDecimal relamt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.DAT1
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private Date dat1;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.DAT2
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private Date dat2;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.MODFLG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String modflg;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.UNT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private Integer unt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.UNTAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private BigDecimal untamt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.RATCAL
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private BigDecimal ratcal;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.RAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private BigDecimal rat;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.MINMAXFLG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String minmaxflg;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.CUR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String cur;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.AMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private BigDecimal amt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.XRFCUR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String xrfcur;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.XRFAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private BigDecimal xrfamt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.FEEACC
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String feeacc;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.INFDETSTM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String infdetstm;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.PTYINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String ptyinr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.SRCTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String srctrninr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.SRCDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private Date srcdat;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.RPLTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String rpltrninr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.RPLDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private Date rpldat;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.DONTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String dontrninr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.DONDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private Date dondat;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.ADVTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String advtrninr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.PREDBTFEPINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String predbtfepinr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.ADVDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private Date advdat;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.ACRINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String acrinr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.SEPINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String sepinr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.ROL
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String rol;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.RELAMTMAN
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private BigDecimal relamtman;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOFZDM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beofzdm;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOFESNM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beofesnm;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOCCY
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beoccy;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOPACCT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beopacct;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOSHAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private BigDecimal beoshamt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOCHATP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beochatp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOORAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private BigDecimal beooramt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEODIAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private BigDecimal beodiamt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOTZFS
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beotzfs;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEORDATE
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beordate;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOFPRUT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beofprut;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOFPRLT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beofprlt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOFPRSQ
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beofprsq;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOFPDAY
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beofpday;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEORETFG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beoretfg;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEORDAYS
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beordays;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEODELFG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beodelfg;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOAADJN
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beoaadjn;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOUADJN
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beouadjn;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEORACCT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beoracct;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOACMCD
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beoacmcd;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOABRNO
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beoabrno;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOFCSID
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beofcsid;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOTXACT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beotxact;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEOINART
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beoinart;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.BEORACNM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String beoracnm;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.SRC
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String src;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.SRCINIFRM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String srcinifrm;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.DSP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String dsp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FEP.FECUSE
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
private String fecuse;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.INR
*
* @return the value of FEP.INR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getInr() {
return inr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.INR
*
* @param inr the value for FEP.INR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setInr(String inr) {
this.inr = inr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.FEECOD
*
* @return the value of FEP.FEECOD
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getFeecod() {
return feecod;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.FEECOD
*
* @param feecod the value for FEP.FEECOD
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setFeecod(String feecod) {
this.feecod = feecod;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.OBJTYP
*
* @return the value of FEP.OBJTYP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getObjtyp() {
return objtyp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.OBJTYP
*
* @param objtyp the value for FEP.OBJTYP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setObjtyp(String objtyp) {
this.objtyp = objtyp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.OBJINR
*
* @return the value of FEP.OBJINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getObjinr() {
return objinr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.OBJINR
*
* @param objinr the value for FEP.OBJINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setObjinr(String objinr) {
this.objinr = objinr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.RELOBJTYP
*
* @return the value of FEP.RELOBJTYP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getRelobjtyp() {
return relobjtyp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.RELOBJTYP
*
* @param relobjtyp the value for FEP.RELOBJTYP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setRelobjtyp(String relobjtyp) {
this.relobjtyp = relobjtyp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.RELOBJINR
*
* @return the value of FEP.RELOBJINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getRelobjinr() {
return relobjinr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.RELOBJINR
*
* @param relobjinr the value for FEP.RELOBJINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setRelobjinr(String relobjinr) {
this.relobjinr = relobjinr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.EXTKEY
*
* @return the value of FEP.EXTKEY
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getExtkey() {
return extkey;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.EXTKEY
*
* @param extkey the value for FEP.EXTKEY
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setExtkey(String extkey) {
this.extkey = extkey;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.NAM
*
* @return the value of FEP.NAM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getNam() {
return nam;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.NAM
*
* @param nam the value for FEP.NAM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setNam(String nam) {
this.nam = nam;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.RELCUR
*
* @return the value of FEP.RELCUR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getRelcur() {
return relcur;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.RELCUR
*
* @param relcur the value for FEP.RELCUR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setRelcur(String relcur) {
this.relcur = relcur;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.RELAMT
*
* @return the value of FEP.RELAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public BigDecimal getRelamt() {
return relamt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.RELAMT
*
* @param relamt the value for FEP.RELAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setRelamt(BigDecimal relamt) {
this.relamt = relamt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.DAT1
*
* @return the value of FEP.DAT1
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public Date getDat1() {
return dat1;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.DAT1
*
* @param dat1 the value for FEP.DAT1
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setDat1(Date dat1) {
this.dat1 = dat1;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.DAT2
*
* @return the value of FEP.DAT2
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public Date getDat2() {
return dat2;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.DAT2
*
* @param dat2 the value for FEP.DAT2
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setDat2(Date dat2) {
this.dat2 = dat2;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.MODFLG
*
* @return the value of FEP.MODFLG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getModflg() {
return modflg;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.MODFLG
*
* @param modflg the value for FEP.MODFLG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setModflg(String modflg) {
this.modflg = modflg;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.UNT
*
* @return the value of FEP.UNT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public Integer getUnt() {
return unt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.UNT
*
* @param unt the value for FEP.UNT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setUnt(Integer unt) {
this.unt = unt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.UNTAMT
*
* @return the value of FEP.UNTAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public BigDecimal getUntamt() {
return untamt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.UNTAMT
*
* @param untamt the value for FEP.UNTAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setUntamt(BigDecimal untamt) {
this.untamt = untamt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.RATCAL
*
* @return the value of FEP.RATCAL
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public BigDecimal getRatcal() {
return ratcal;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.RATCAL
*
* @param ratcal the value for FEP.RATCAL
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setRatcal(BigDecimal ratcal) {
this.ratcal = ratcal;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.RAT
*
* @return the value of FEP.RAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public BigDecimal getRat() {
return rat;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.RAT
*
* @param rat the value for FEP.RAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setRat(BigDecimal rat) {
this.rat = rat;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.MINMAXFLG
*
* @return the value of FEP.MINMAXFLG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getMinmaxflg() {
return minmaxflg;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.MINMAXFLG
*
* @param minmaxflg the value for FEP.MINMAXFLG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setMinmaxflg(String minmaxflg) {
this.minmaxflg = minmaxflg;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.CUR
*
* @return the value of FEP.CUR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getCur() {
return cur;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.CUR
*
* @param cur the value for FEP.CUR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setCur(String cur) {
this.cur = cur;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.AMT
*
* @return the value of FEP.AMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public BigDecimal getAmt() {
return amt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.AMT
*
* @param amt the value for FEP.AMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setAmt(BigDecimal amt) {
this.amt = amt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.XRFCUR
*
* @return the value of FEP.XRFCUR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getXrfcur() {
return xrfcur;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.XRFCUR
*
* @param xrfcur the value for FEP.XRFCUR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setXrfcur(String xrfcur) {
this.xrfcur = xrfcur;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.XRFAMT
*
* @return the value of FEP.XRFAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public BigDecimal getXrfamt() {
return xrfamt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.XRFAMT
*
* @param xrfamt the value for FEP.XRFAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setXrfamt(BigDecimal xrfamt) {
this.xrfamt = xrfamt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.FEEACC
*
* @return the value of FEP.FEEACC
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getFeeacc() {
return feeacc;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.FEEACC
*
* @param feeacc the value for FEP.FEEACC
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setFeeacc(String feeacc) {
this.feeacc = feeacc;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.INFDETSTM
*
* @return the value of FEP.INFDETSTM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getInfdetstm() {
return infdetstm;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.INFDETSTM
*
* @param infdetstm the value for FEP.INFDETSTM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setInfdetstm(String infdetstm) {
this.infdetstm = infdetstm;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.PTYINR
*
* @return the value of FEP.PTYINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getPtyinr() {
return ptyinr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.PTYINR
*
* @param ptyinr the value for FEP.PTYINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setPtyinr(String ptyinr) {
this.ptyinr = ptyinr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.SRCTRNINR
*
* @return the value of FEP.SRCTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getSrctrninr() {
return srctrninr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.SRCTRNINR
*
* @param srctrninr the value for FEP.SRCTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setSrctrninr(String srctrninr) {
this.srctrninr = srctrninr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.SRCDAT
*
* @return the value of FEP.SRCDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public Date getSrcdat() {
return srcdat;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.SRCDAT
*
* @param srcdat the value for FEP.SRCDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setSrcdat(Date srcdat) {
this.srcdat = srcdat;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.RPLTRNINR
*
* @return the value of FEP.RPLTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getRpltrninr() {
return rpltrninr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.RPLTRNINR
*
* @param rpltrninr the value for FEP.RPLTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setRpltrninr(String rpltrninr) {
this.rpltrninr = rpltrninr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.RPLDAT
*
* @return the value of FEP.RPLDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public Date getRpldat() {
return rpldat;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.RPLDAT
*
* @param rpldat the value for FEP.RPLDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setRpldat(Date rpldat) {
this.rpldat = rpldat;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.DONTRNINR
*
* @return the value of FEP.DONTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getDontrninr() {
return dontrninr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.DONTRNINR
*
* @param dontrninr the value for FEP.DONTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setDontrninr(String dontrninr) {
this.dontrninr = dontrninr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.DONDAT
*
* @return the value of FEP.DONDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public Date getDondat() {
return dondat;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.DONDAT
*
* @param dondat the value for FEP.DONDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setDondat(Date dondat) {
this.dondat = dondat;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.ADVTRNINR
*
* @return the value of FEP.ADVTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getAdvtrninr() {
return advtrninr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.ADVTRNINR
*
* @param advtrninr the value for FEP.ADVTRNINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setAdvtrninr(String advtrninr) {
this.advtrninr = advtrninr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.PREDBTFEPINR
*
* @return the value of FEP.PREDBTFEPINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getPredbtfepinr() {
return predbtfepinr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.PREDBTFEPINR
*
* @param predbtfepinr the value for FEP.PREDBTFEPINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setPredbtfepinr(String predbtfepinr) {
this.predbtfepinr = predbtfepinr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.ADVDAT
*
* @return the value of FEP.ADVDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public Date getAdvdat() {
return advdat;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.ADVDAT
*
* @param advdat the value for FEP.ADVDAT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setAdvdat(Date advdat) {
this.advdat = advdat;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.ACRINR
*
* @return the value of FEP.ACRINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getAcrinr() {
return acrinr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.ACRINR
*
* @param acrinr the value for FEP.ACRINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setAcrinr(String acrinr) {
this.acrinr = acrinr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.SEPINR
*
* @return the value of FEP.SEPINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getSepinr() {
return sepinr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.SEPINR
*
* @param sepinr the value for FEP.SEPINR
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setSepinr(String sepinr) {
this.sepinr = sepinr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.ROL
*
* @return the value of FEP.ROL
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getRol() {
return rol;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.ROL
*
* @param rol the value for FEP.ROL
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setRol(String rol) {
this.rol = rol;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.RELAMTMAN
*
* @return the value of FEP.RELAMTMAN
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public BigDecimal getRelamtman() {
return relamtman;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.RELAMTMAN
*
* @param relamtman the value for FEP.RELAMTMAN
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setRelamtman(BigDecimal relamtman) {
this.relamtman = relamtman;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOFZDM
*
* @return the value of FEP.BEOFZDM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeofzdm() {
return beofzdm;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOFZDM
*
* @param beofzdm the value for FEP.BEOFZDM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeofzdm(String beofzdm) {
this.beofzdm = beofzdm;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOFESNM
*
* @return the value of FEP.BEOFESNM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeofesnm() {
return beofesnm;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOFESNM
*
* @param beofesnm the value for FEP.BEOFESNM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeofesnm(String beofesnm) {
this.beofesnm = beofesnm;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOCCY
*
* @return the value of FEP.BEOCCY
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeoccy() {
return beoccy;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOCCY
*
* @param beoccy the value for FEP.BEOCCY
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeoccy(String beoccy) {
this.beoccy = beoccy;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOPACCT
*
* @return the value of FEP.BEOPACCT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeopacct() {
return beopacct;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOPACCT
*
* @param beopacct the value for FEP.BEOPACCT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeopacct(String beopacct) {
this.beopacct = beopacct;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOSHAMT
*
* @return the value of FEP.BEOSHAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public BigDecimal getBeoshamt() {
return beoshamt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOSHAMT
*
* @param beoshamt the value for FEP.BEOSHAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeoshamt(BigDecimal beoshamt) {
this.beoshamt = beoshamt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOCHATP
*
* @return the value of FEP.BEOCHATP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeochatp() {
return beochatp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOCHATP
*
* @param beochatp the value for FEP.BEOCHATP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeochatp(String beochatp) {
this.beochatp = beochatp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOORAMT
*
* @return the value of FEP.BEOORAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public BigDecimal getBeooramt() {
return beooramt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOORAMT
*
* @param beooramt the value for FEP.BEOORAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeooramt(BigDecimal beooramt) {
this.beooramt = beooramt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEODIAMT
*
* @return the value of FEP.BEODIAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public BigDecimal getBeodiamt() {
return beodiamt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEODIAMT
*
* @param beodiamt the value for FEP.BEODIAMT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeodiamt(BigDecimal beodiamt) {
this.beodiamt = beodiamt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOTZFS
*
* @return the value of FEP.BEOTZFS
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeotzfs() {
return beotzfs;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOTZFS
*
* @param beotzfs the value for FEP.BEOTZFS
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeotzfs(String beotzfs) {
this.beotzfs = beotzfs;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEORDATE
*
* @return the value of FEP.BEORDATE
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeordate() {
return beordate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEORDATE
*
* @param beordate the value for FEP.BEORDATE
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeordate(String beordate) {
this.beordate = beordate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOFPRUT
*
* @return the value of FEP.BEOFPRUT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeofprut() {
return beofprut;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOFPRUT
*
* @param beofprut the value for FEP.BEOFPRUT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeofprut(String beofprut) {
this.beofprut = beofprut;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOFPRLT
*
* @return the value of FEP.BEOFPRLT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeofprlt() {
return beofprlt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOFPRLT
*
* @param beofprlt the value for FEP.BEOFPRLT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeofprlt(String beofprlt) {
this.beofprlt = beofprlt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOFPRSQ
*
* @return the value of FEP.BEOFPRSQ
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeofprsq() {
return beofprsq;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOFPRSQ
*
* @param beofprsq the value for FEP.BEOFPRSQ
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeofprsq(String beofprsq) {
this.beofprsq = beofprsq;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOFPDAY
*
* @return the value of FEP.BEOFPDAY
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeofpday() {
return beofpday;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOFPDAY
*
* @param beofpday the value for FEP.BEOFPDAY
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeofpday(String beofpday) {
this.beofpday = beofpday;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEORETFG
*
* @return the value of FEP.BEORETFG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeoretfg() {
return beoretfg;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEORETFG
*
* @param beoretfg the value for FEP.BEORETFG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeoretfg(String beoretfg) {
this.beoretfg = beoretfg;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEORDAYS
*
* @return the value of FEP.BEORDAYS
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeordays() {
return beordays;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEORDAYS
*
* @param beordays the value for FEP.BEORDAYS
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeordays(String beordays) {
this.beordays = beordays;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEODELFG
*
* @return the value of FEP.BEODELFG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeodelfg() {
return beodelfg;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEODELFG
*
* @param beodelfg the value for FEP.BEODELFG
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeodelfg(String beodelfg) {
this.beodelfg = beodelfg;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOAADJN
*
* @return the value of FEP.BEOAADJN
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeoaadjn() {
return beoaadjn;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOAADJN
*
* @param beoaadjn the value for FEP.BEOAADJN
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeoaadjn(String beoaadjn) {
this.beoaadjn = beoaadjn;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOUADJN
*
* @return the value of FEP.BEOUADJN
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeouadjn() {
return beouadjn;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOUADJN
*
* @param beouadjn the value for FEP.BEOUADJN
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeouadjn(String beouadjn) {
this.beouadjn = beouadjn;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEORACCT
*
* @return the value of FEP.BEORACCT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeoracct() {
return beoracct;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEORACCT
*
* @param beoracct the value for FEP.BEORACCT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeoracct(String beoracct) {
this.beoracct = beoracct;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOACMCD
*
* @return the value of FEP.BEOACMCD
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeoacmcd() {
return beoacmcd;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOACMCD
*
* @param beoacmcd the value for FEP.BEOACMCD
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeoacmcd(String beoacmcd) {
this.beoacmcd = beoacmcd;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOABRNO
*
* @return the value of FEP.BEOABRNO
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeoabrno() {
return beoabrno;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOABRNO
*
* @param beoabrno the value for FEP.BEOABRNO
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeoabrno(String beoabrno) {
this.beoabrno = beoabrno;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOFCSID
*
* @return the value of FEP.BEOFCSID
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeofcsid() {
return beofcsid;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOFCSID
*
* @param beofcsid the value for FEP.BEOFCSID
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeofcsid(String beofcsid) {
this.beofcsid = beofcsid;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOTXACT
*
* @return the value of FEP.BEOTXACT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeotxact() {
return beotxact;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOTXACT
*
* @param beotxact the value for FEP.BEOTXACT
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeotxact(String beotxact) {
this.beotxact = beotxact;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEOINART
*
* @return the value of FEP.BEOINART
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeoinart() {
return beoinart;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEOINART
*
* @param beoinart the value for FEP.BEOINART
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeoinart(String beoinart) {
this.beoinart = beoinart;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.BEORACNM
*
* @return the value of FEP.BEORACNM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getBeoracnm() {
return beoracnm;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.BEORACNM
*
* @param beoracnm the value for FEP.BEORACNM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setBeoracnm(String beoracnm) {
this.beoracnm = beoracnm;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.SRC
*
* @return the value of FEP.SRC
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getSrc() {
return src;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.SRC
*
* @param src the value for FEP.SRC
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setSrc(String src) {
this.src = src;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.SRCINIFRM
*
* @return the value of FEP.SRCINIFRM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getSrcinifrm() {
return srcinifrm;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.SRCINIFRM
*
* @param srcinifrm the value for FEP.SRCINIFRM
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setSrcinifrm(String srcinifrm) {
this.srcinifrm = srcinifrm;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.DSP
*
* @return the value of FEP.DSP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getDsp() {
return dsp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.DSP
*
* @param dsp the value for FEP.DSP
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setDsp(String dsp) {
this.dsp = dsp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FEP.FECUSE
*
* @return the value of FEP.FECUSE
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public String getFecuse() {
return fecuse;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FEP.FECUSE
*
* @param fecuse the value for FEP.FECUSE
*
* @mbggenerated Fri Dec 21 09:22:49 CST 2018
*/
public void setFecuse(String fecuse) {
this.fecuse = fecuse;
}
}
\ No newline at end of file
package com.brilliance.remit.db.model;
import java.math.BigDecimal;
import java.util.Date;
public class Gle {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.INR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String inr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.OBJTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String objtyp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.OBJINR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String objinr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.TRNINR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String trninr;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.ACT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String act;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.DBTCDT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String dbtcdt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.CUR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String cur;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.AMT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private BigDecimal amt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.SYSCUR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String syscur;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.SYSAMT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private BigDecimal sysamt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.VALDAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private Date valdat;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.BUCDAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private Date bucdat;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.TXT1
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String txt1;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.TXT2
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String txt2;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.TXT3
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String txt3;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.PRN
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String prn;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.EXPSES
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String expses;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.EXPFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String expflg;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.TRNMAN
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String trnman;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.CLIEXTKEY
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String cliextkey;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.TRMTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String trmtyp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.ACTTRNCOD
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String acttrncod;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.FCTSGN
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String fctsgn;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.PRTFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String prtflg;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.RAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private BigDecimal rat;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.FINFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String finflg;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.DSP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String dsp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.TSYREF
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String tsyref;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.SETTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String settyp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.TRDTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String trdtyp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.DOCREF
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String docref;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.CSHFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String cshflg;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.QZREF
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String qzref;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.QZDAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String qzdat;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.TRDPPT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String trdppt;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.TXCODE
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String txcode;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.CUSNAM
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String cusnam;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.SFKBANK
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String sfkbank;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.SFKNAM
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String sfknam;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.SFKACT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String sfkact;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.SFKCTY
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String sfkcty;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.DELTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String deltyp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.TRANTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String trantyp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.CORTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String cortyp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column GLE.GLETYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
private String gletyp;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.INR
*
* @return the value of GLE.INR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getInr() {
return inr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.INR
*
* @param inr the value for GLE.INR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setInr(String inr) {
this.inr = inr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.OBJTYP
*
* @return the value of GLE.OBJTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getObjtyp() {
return objtyp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.OBJTYP
*
* @param objtyp the value for GLE.OBJTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setObjtyp(String objtyp) {
this.objtyp = objtyp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.OBJINR
*
* @return the value of GLE.OBJINR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getObjinr() {
return objinr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.OBJINR
*
* @param objinr the value for GLE.OBJINR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setObjinr(String objinr) {
this.objinr = objinr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.TRNINR
*
* @return the value of GLE.TRNINR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getTrninr() {
return trninr;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.TRNINR
*
* @param trninr the value for GLE.TRNINR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setTrninr(String trninr) {
this.trninr = trninr;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.ACT
*
* @return the value of GLE.ACT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getAct() {
return act;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.ACT
*
* @param act the value for GLE.ACT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setAct(String act) {
this.act = act;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.DBTCDT
*
* @return the value of GLE.DBTCDT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getDbtcdt() {
return dbtcdt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.DBTCDT
*
* @param dbtcdt the value for GLE.DBTCDT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setDbtcdt(String dbtcdt) {
this.dbtcdt = dbtcdt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.CUR
*
* @return the value of GLE.CUR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getCur() {
return cur;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.CUR
*
* @param cur the value for GLE.CUR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setCur(String cur) {
this.cur = cur;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.AMT
*
* @return the value of GLE.AMT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public BigDecimal getAmt() {
return amt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.AMT
*
* @param amt the value for GLE.AMT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setAmt(BigDecimal amt) {
this.amt = amt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.SYSCUR
*
* @return the value of GLE.SYSCUR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getSyscur() {
return syscur;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.SYSCUR
*
* @param syscur the value for GLE.SYSCUR
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setSyscur(String syscur) {
this.syscur = syscur;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.SYSAMT
*
* @return the value of GLE.SYSAMT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public BigDecimal getSysamt() {
return sysamt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.SYSAMT
*
* @param sysamt the value for GLE.SYSAMT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setSysamt(BigDecimal sysamt) {
this.sysamt = sysamt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.VALDAT
*
* @return the value of GLE.VALDAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public Date getValdat() {
return valdat;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.VALDAT
*
* @param valdat the value for GLE.VALDAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setValdat(Date valdat) {
this.valdat = valdat;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.BUCDAT
*
* @return the value of GLE.BUCDAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public Date getBucdat() {
return bucdat;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.BUCDAT
*
* @param bucdat the value for GLE.BUCDAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setBucdat(Date bucdat) {
this.bucdat = bucdat;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.TXT1
*
* @return the value of GLE.TXT1
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getTxt1() {
return txt1;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.TXT1
*
* @param txt1 the value for GLE.TXT1
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setTxt1(String txt1) {
this.txt1 = txt1;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.TXT2
*
* @return the value of GLE.TXT2
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getTxt2() {
return txt2;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.TXT2
*
* @param txt2 the value for GLE.TXT2
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setTxt2(String txt2) {
this.txt2 = txt2;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.TXT3
*
* @return the value of GLE.TXT3
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getTxt3() {
return txt3;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.TXT3
*
* @param txt3 the value for GLE.TXT3
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setTxt3(String txt3) {
this.txt3 = txt3;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.PRN
*
* @return the value of GLE.PRN
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getPrn() {
return prn;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.PRN
*
* @param prn the value for GLE.PRN
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setPrn(String prn) {
this.prn = prn;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.EXPSES
*
* @return the value of GLE.EXPSES
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getExpses() {
return expses;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.EXPSES
*
* @param expses the value for GLE.EXPSES
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setExpses(String expses) {
this.expses = expses;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.EXPFLG
*
* @return the value of GLE.EXPFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getExpflg() {
return expflg;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.EXPFLG
*
* @param expflg the value for GLE.EXPFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setExpflg(String expflg) {
this.expflg = expflg;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.TRNMAN
*
* @return the value of GLE.TRNMAN
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getTrnman() {
return trnman;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.TRNMAN
*
* @param trnman the value for GLE.TRNMAN
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setTrnman(String trnman) {
this.trnman = trnman;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.CLIEXTKEY
*
* @return the value of GLE.CLIEXTKEY
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getCliextkey() {
return cliextkey;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.CLIEXTKEY
*
* @param cliextkey the value for GLE.CLIEXTKEY
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setCliextkey(String cliextkey) {
this.cliextkey = cliextkey;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.TRMTYP
*
* @return the value of GLE.TRMTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getTrmtyp() {
return trmtyp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.TRMTYP
*
* @param trmtyp the value for GLE.TRMTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setTrmtyp(String trmtyp) {
this.trmtyp = trmtyp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.ACTTRNCOD
*
* @return the value of GLE.ACTTRNCOD
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getActtrncod() {
return acttrncod;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.ACTTRNCOD
*
* @param acttrncod the value for GLE.ACTTRNCOD
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setActtrncod(String acttrncod) {
this.acttrncod = acttrncod;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.FCTSGN
*
* @return the value of GLE.FCTSGN
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getFctsgn() {
return fctsgn;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.FCTSGN
*
* @param fctsgn the value for GLE.FCTSGN
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setFctsgn(String fctsgn) {
this.fctsgn = fctsgn;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.PRTFLG
*
* @return the value of GLE.PRTFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getPrtflg() {
return prtflg;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.PRTFLG
*
* @param prtflg the value for GLE.PRTFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setPrtflg(String prtflg) {
this.prtflg = prtflg;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.RAT
*
* @return the value of GLE.RAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public BigDecimal getRat() {
return rat;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.RAT
*
* @param rat the value for GLE.RAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setRat(BigDecimal rat) {
this.rat = rat;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.FINFLG
*
* @return the value of GLE.FINFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getFinflg() {
return finflg;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.FINFLG
*
* @param finflg the value for GLE.FINFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setFinflg(String finflg) {
this.finflg = finflg;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.DSP
*
* @return the value of GLE.DSP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getDsp() {
return dsp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.DSP
*
* @param dsp the value for GLE.DSP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setDsp(String dsp) {
this.dsp = dsp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.TSYREF
*
* @return the value of GLE.TSYREF
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getTsyref() {
return tsyref;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.TSYREF
*
* @param tsyref the value for GLE.TSYREF
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setTsyref(String tsyref) {
this.tsyref = tsyref;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.SETTYP
*
* @return the value of GLE.SETTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getSettyp() {
return settyp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.SETTYP
*
* @param settyp the value for GLE.SETTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setSettyp(String settyp) {
this.settyp = settyp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.TRDTYP
*
* @return the value of GLE.TRDTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getTrdtyp() {
return trdtyp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.TRDTYP
*
* @param trdtyp the value for GLE.TRDTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setTrdtyp(String trdtyp) {
this.trdtyp = trdtyp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.DOCREF
*
* @return the value of GLE.DOCREF
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getDocref() {
return docref;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.DOCREF
*
* @param docref the value for GLE.DOCREF
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setDocref(String docref) {
this.docref = docref;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.CSHFLG
*
* @return the value of GLE.CSHFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getCshflg() {
return cshflg;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.CSHFLG
*
* @param cshflg the value for GLE.CSHFLG
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setCshflg(String cshflg) {
this.cshflg = cshflg;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.QZREF
*
* @return the value of GLE.QZREF
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getQzref() {
return qzref;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.QZREF
*
* @param qzref the value for GLE.QZREF
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setQzref(String qzref) {
this.qzref = qzref;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.QZDAT
*
* @return the value of GLE.QZDAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getQzdat() {
return qzdat;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.QZDAT
*
* @param qzdat the value for GLE.QZDAT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setQzdat(String qzdat) {
this.qzdat = qzdat;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.TRDPPT
*
* @return the value of GLE.TRDPPT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getTrdppt() {
return trdppt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.TRDPPT
*
* @param trdppt the value for GLE.TRDPPT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setTrdppt(String trdppt) {
this.trdppt = trdppt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.TXCODE
*
* @return the value of GLE.TXCODE
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getTxcode() {
return txcode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.TXCODE
*
* @param txcode the value for GLE.TXCODE
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setTxcode(String txcode) {
this.txcode = txcode;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.CUSNAM
*
* @return the value of GLE.CUSNAM
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getCusnam() {
return cusnam;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.CUSNAM
*
* @param cusnam the value for GLE.CUSNAM
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setCusnam(String cusnam) {
this.cusnam = cusnam;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.SFKBANK
*
* @return the value of GLE.SFKBANK
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getSfkbank() {
return sfkbank;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.SFKBANK
*
* @param sfkbank the value for GLE.SFKBANK
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setSfkbank(String sfkbank) {
this.sfkbank = sfkbank;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.SFKNAM
*
* @return the value of GLE.SFKNAM
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getSfknam() {
return sfknam;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.SFKNAM
*
* @param sfknam the value for GLE.SFKNAM
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setSfknam(String sfknam) {
this.sfknam = sfknam;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.SFKACT
*
* @return the value of GLE.SFKACT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getSfkact() {
return sfkact;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.SFKACT
*
* @param sfkact the value for GLE.SFKACT
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setSfkact(String sfkact) {
this.sfkact = sfkact;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.SFKCTY
*
* @return the value of GLE.SFKCTY
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getSfkcty() {
return sfkcty;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.SFKCTY
*
* @param sfkcty the value for GLE.SFKCTY
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setSfkcty(String sfkcty) {
this.sfkcty = sfkcty;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.DELTYP
*
* @return the value of GLE.DELTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getDeltyp() {
return deltyp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.DELTYP
*
* @param deltyp the value for GLE.DELTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setDeltyp(String deltyp) {
this.deltyp = deltyp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.TRANTYP
*
* @return the value of GLE.TRANTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getTrantyp() {
return trantyp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.TRANTYP
*
* @param trantyp the value for GLE.TRANTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setTrantyp(String trantyp) {
this.trantyp = trantyp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.CORTYP
*
* @return the value of GLE.CORTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getCortyp() {
return cortyp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.CORTYP
*
* @param cortyp the value for GLE.CORTYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setCortyp(String cortyp) {
this.cortyp = cortyp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column GLE.GLETYP
*
* @return the value of GLE.GLETYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public String getGletyp() {
return gletyp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column GLE.GLETYP
*
* @param gletyp the value for GLE.GLETYP
*
* @mbggenerated Fri Dec 21 09:32:57 CST 2018
*/
public void setGletyp(String gletyp) {
this.gletyp = gletyp;
}
}
\ No newline at end of file
package com.brilliance.remit.service;
import com.brilliance.remit.db.model.Fep;
/**
This java was generated by Auto Generator.
created at time 2018-12-21 09:25:17
**/
public interface FepService {
public boolean save(Fep fep);
}
package com.brilliance.remit.service;
import com.brilliance.remit.db.model.Gle;
/**
This java was generated by Auto Generator.
created at time 2018-12-21 09:33:08
**/
public interface GleService {
public boolean save(Gle gle);
}
package com.brilliance.remit.service.imp;
import javax.annotation.Resource;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.stereotype.Service;
import org.springframework.transaction.TransactionStatus;
import com.brilliance.remit.common.util.DbUtil;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.brilliance.remit.service.FepService;
import com.brilliance.remit.db.dao.FepMapper;
import com.brilliance.remit.db.model.Fep;
/**
This java was generated by Auto Generator.
created at time 2018-12-21 09:25:18
**/
@Service("fepService")
public class FepServiceImp implements FepService {
@Autowired
private FepMapper fepMapper;
@Resource(name = "txManager")
private DataSourceTransactionManager transactionManager;
private static Log log = LogFactory.getLog(FepServiceImp.class);
@Override
public boolean save(Fep fep) {
// 事务操作
TransactionStatus status = transactionManager.getTransaction(DbUtil.getDbDefinition());
try {
// you can do business hanle herer
fepMapper.insert(fep);
transactionManager.commit(status);
return true;
} catch (Exception e) {
log.error("error", e);
transactionManager.rollback(status);
return false;
}
}
}
package com.brilliance.remit.service.imp;
import javax.annotation.Resource;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.stereotype.Service;
import org.springframework.transaction.TransactionStatus;
import com.brilliance.remit.common.util.DbUtil;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.brilliance.remit.service.GleService;
import com.brilliance.remit.db.dao.GleMapper;
import com.brilliance.remit.db.model.Gle;
/**
This java was generated by Auto Generator.
created at time 2018-12-21 09:33:08
**/
@Service("gleService")
public class GleServiceImp implements GleService {
@Autowired
private GleMapper gleMapper;
@Resource(name = "txManager")
private DataSourceTransactionManager transactionManager;
private static Log log = LogFactory.getLog(GleServiceImp.class);
@Override
public boolean save(Gle gle) {
// 事务操作
TransactionStatus status = transactionManager.getTransaction(DbUtil.getDbDefinition());
try {
// you can do business hanle herer
gleMapper.insert(gle);
transactionManager.commit(status);
return true;
} catch (Exception e) {
log.error("error", e);
transactionManager.rollback(status);
return false;
}
}
}
......@@ -45,3 +45,118 @@ BCHINR CHAR(8),
PRIMARY KEY (INR)
);
CREATE TABLE GLE (INR CHARACTER(8),
OBJTYP CHARACTER(6),
OBJINR CHARACTER(8),
TRNINR CHARACTER(8),
ACT CHARACTER(34),
DBTCDT CHARACTER(1),
CUR CHARACTER(3),
AMT DECIMAL(18,3),
SYSCUR CHARACTER(3),
SYSAMT DECIMAL(18,3),
VALDAT TIMESTAMP, BUCDAT TIMESTAMP, TXT1 CHARACTER(40),
TXT2 CHARACTER(40),
TXT3 CHARACTER(40),
PRN CHARACTER(4),
EXPSES CHARACTER(8),
EXPFLG CHARACTER(1),
TRNMAN CHARACTER(2),
CLIEXTKEY CHARACTER(12),
TRMTYP CHARACTER(30),
ACTTRNCOD CHARACTER(12),
FCTSGN CHARACTER(6),
PRTFLG CHARACTER(1),
RAT DECIMAL(12,6),
FINFLG CHARACTER(6),
DSP CHARACTER(12),
TSYREF CHARACTER(35),
SETTYP CHARACTER(3),
TRDTYP CHARACTER(3),
DOCREF CHARACTER(6),
CSHFLG CHARACTER(1),
QZREF CHARACTER(16),
QZDAT CHARACTER(8),
TRDPPT CHARACTER(1),
TXCODE CHARACTER(6),
CUSNAM CHARACTER(80),
SFKBANK CHARACTER(80),
SFKNAM CHARACTER(80),
SFKACT CHARACTER(34),
SFKCTY CHARACTER(3),
DELTYP CHARACTER(6),
TRANTYP CHARACTER(6),
CORTYP CHARACTER(4),
GLETYP CHARACTER(2),
PRIMARY KEY (INR)
);
CREATE TABLE FEP
(
INR CHARACTER(8),
FEECOD CHARACTER(6),
OBJTYP CHARACTER(6),
OBJINR CHARACTER(8),
RELOBJTYP CHARACTER(6),
RELOBJINR CHARACTER(8),
EXTKEY CHARACTER(20),
NAM CHARACTER(45),
RELCUR CHARACTER(3),
RELAMT DECIMAL(18,3),
DAT1 TIMESTAMP, DAT2 TIMESTAMP, MODFLG CHARACTER(1),
UNT DECIMAL(5,0),
UNTAMT DECIMAL(18,3),
RATCAL DECIMAL(14,6),
RAT DECIMAL(14,6),
MINMAXFLG CHARACTER(1),
CUR CHARACTER(3),
AMT DECIMAL(18,3),
XRFCUR CHARACTER(3),
XRFAMT DECIMAL(18,3),
FEEACC CHARACTER(34),
INFDETSTM VARCHAR(1620),
PTYINR CHARACTER(8),
SRCTRNINR CHARACTER(8),
SRCDAT TIMESTAMP, RPLTRNINR CHARACTER(8),
RPLDAT TIMESTAMP, DONTRNINR CHARACTER(8),
DONDAT TIMESTAMP, ADVTRNINR CHARACTER(8),
PREDBTFEPINR CHARACTER(8),
ADVDAT TIMESTAMP, ACRINR CHARACTER(8),
SEPINR CHARACTER(8),
ROL CHARACTER(3),
RELAMTMAN DECIMAL(18,3),
FECUSE LONG VARCHAR, BEOFZDM CHARACTER(8),
BEOFESNM CHARACTER(30),
BEOCCY CHARACTER(3),
BEOPACCT CHARACTER(32),
BEOSHAMT DECIMAL(18,3),
BEOCHATP CHARACTER(2),
BEOORAMT DECIMAL(18,3),
BEODIAMT DECIMAL(18,3),
BEOTZFS CHARACTER(1),
BEORDATE CHARACTER(8),
BEOFPRUT CHARACTER(1),
BEOFPRLT CHARACTER(2),
BEOFPRSQ CHARACTER(1),
BEOFPDAY CHARACTER(3),
BEORETFG CHARACTER(1),
BEORDAYS CHARACTER(2),
BEODELFG CHARACTER(1),
BEOAADJN CHARACTER(6),
BEOUADJN CHARACTER(6),
BEORACCT CHARACTER(32),
BEOACMCD CHARACTER(4),
BEOABRNO CHARACTER(6),
BEOFCSID CHARACTER(16),
BEOTXACT CHARACTER(32),
BEOINART CHARACTER(12),
BEORACNM CHARACTER(100),
SRC CHARACTER(1),
SRCINIFRM CHARACTER(6),
DSP CHARACTER(1),
PRIMARY KEY (INR)
);
......@@ -20,17 +20,13 @@ public class Genarate {
public static void main(String[] args) throws FileNotFoundException, IOException {
String rootPath = "G:/work/cbpp/remit";
List<String> list = new ArrayList<String>();
list.add("gle");
list.add("bch");
list.add("cpd");
list.add("cpt");
list.add("trn");
list.add("pts");
list.add("cbb");
list.add("cbe");
list.add("pty");
list.add("pta");
list.add("adr");
/*
* list.add("bch"); list.add("cpd"); list.add("cpt"); list.add("trn");
* list.add("pts"); list.add("cbb"); list.add("cbe"); list.add("pty");
* list.add("pta"); list.add("adr");
*/
for (int i = 0; i < list.size(); i++) {
String name = list.get(i);
......
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