|
@@ -9,6 +9,7 @@
|
|
|
<result property="fPid" column="f_pid"/>
|
|
|
<result property="fLineno" column="f_lineno"/>
|
|
|
<result property="fSrcid" column="f_srcid"/>
|
|
|
+ <result property="fSrcpid" column="f_srcpid"/>
|
|
|
<result property="fSrclineno" column="f_srclineno"/>
|
|
|
<result property="fSrcdc" column="f_srcdc"/>
|
|
|
<result property="fFeeid" column="f_feeid"/>
|
|
@@ -23,7 +24,7 @@
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTFeeDoVo">
|
|
|
- select f_id, f_pid, f_lineno, f_srcid, f_srclineno, f_srcdc, f_feeid, f_amtdr, f_amt, f_status, del_flag, create_by, create_time, update_by, update_time from t_fee_do
|
|
|
+ select f_id, f_pid, f_lineno, f_srcid, f_srcpid, f_srclineno, f_srcdc, f_feeid, f_amtdr, f_amt, f_status, del_flag, create_by, create_time, update_by, update_time from t_fee_do
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTFeeDoList" parameterType="TFeeDo" resultMap="TFeeDoResult">
|
|
@@ -32,6 +33,7 @@
|
|
|
<if test="fPid != null ">and f_pid = #{fPid}</if>
|
|
|
<if test="fLineno != null ">and f_lineno = #{fLineno}</if>
|
|
|
<if test="fSrcid != null ">and f_srcid = #{fSrcid}</if>
|
|
|
+ <if test="fSrcpid != null ">and f_srcpid = #{fSrcpid}</if>
|
|
|
<if test="fSrclineno != null ">and f_srclineno = #{fSrclineno}</if>
|
|
|
<if test="fSrcdc != null and fSrcdc != ''">and f_srcdc = #{fSrcdc}</if>
|
|
|
<if test="fFeeid != null ">and f_feeid = #{fFeeid}</if>
|
|
@@ -53,6 +55,7 @@
|
|
|
<if test="fPid != null">f_pid,</if>
|
|
|
<if test="fLineno != null">f_lineno,</if>
|
|
|
<if test="fSrcid != null">f_srcid,</if>
|
|
|
+ <if test="fSrcpid != null">f_srcpid,</if>
|
|
|
<if test="fSrclineno != null">f_srclineno,</if>
|
|
|
<if test="fSrcdc != null">f_srcdc,</if>
|
|
|
<if test="fFeeid != null">f_feeid,</if>
|
|
@@ -70,6 +73,7 @@
|
|
|
<if test="fPid != null">#{fPid},</if>
|
|
|
<if test="fLineno != null">#{fLineno},</if>
|
|
|
<if test="fSrcid != null">#{fSrcid},</if>
|
|
|
+ <if test="fSrcpid != null">#{fSrcpid},</if>
|
|
|
<if test="fSrclineno != null">#{fSrclineno},</if>
|
|
|
<if test="fSrcdc != null">#{fSrcdc},</if>
|
|
|
<if test="fFeeid != null">#{fFeeid},</if>
|
|
@@ -90,6 +94,7 @@
|
|
|
<if test="fPid != null">f_pid = #{fPid},</if>
|
|
|
<if test="fLineno != null">f_lineno = #{fLineno},</if>
|
|
|
<if test="fSrcid != null">f_srcid = #{fSrcid},</if>
|
|
|
+ <if test="fSrcpid != null">f_srcpid = #{fSrcpid},</if>
|
|
|
<if test="fSrclineno != null">f_srclineno = #{fSrclineno},</if>
|
|
|
<if test="fSrcdc != null">f_srcdc = #{fSrcdc},</if>
|
|
|
<if test="fFeeid != null">f_feeid = #{fFeeid},</if>
|