|
@@ -10,6 +10,8 @@
|
|
|
<result property="fActId" column="f_act_id"/>
|
|
|
<result property="fLineno" column="f_lineno"/>
|
|
|
<result property="fSrcid" column="f_srcid"/>
|
|
|
+ <result property="fSrcBillno" column="f_src_billno"/>
|
|
|
+ <result property="fInvoiceNo" column="f_invoice_no"/>
|
|
|
<result property="fSrclineno" column="f_srclineno"/>
|
|
|
<result property="fSrcpid" column="f_srcpid"/>
|
|
|
<result property="fSrcdc" column="f_srcdc"/>
|
|
@@ -28,7 +30,7 @@
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTFeeDoVo">
|
|
|
- select f_id, f_pid, f_act_id, f_lineno, f_srcid, f_srclineno, f_srcpid, f_srcdc, f_feeid, f_amtdr, f_amt, f_status, del_flag, create_by, f_amt_stl, create_time, f_amt_blc, update_by, update_time, f_remarks from t_fee_do
|
|
|
+ select f_id, f_pid, f_act_id, f_lineno, f_srcid, f_src_billno, f_invoice_no, f_srclineno, f_srcpid, f_srcdc, f_feeid, f_amtdr, f_amt, f_status, del_flag, create_by, f_amt_stl, create_time, f_amt_blc, update_by, update_time, f_remarks from t_fee_do
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTFeeDoList" parameterType="TFeeDo" resultMap="TFeeDoResult">
|
|
@@ -38,6 +40,8 @@
|
|
|
<if test="fActId != null ">and f_act_id = #{fActId}</if>
|
|
|
<if test="fLineno != null ">and f_lineno = #{fLineno}</if>
|
|
|
<if test="fSrcid != null ">and f_srcid = #{fSrcid}</if>
|
|
|
+ <if test="fSrcBillno != null ">and f_src_billno = #{fSrcBillno}</if>
|
|
|
+ <if test="fInvoiceNo != null ">and f_invoice_no = #{fInvoiceNo}</if>
|
|
|
<if test="fSrclineno != null ">and f_srclineno = #{fSrclineno}</if>
|
|
|
<if test="fSrcpid != null ">and f_srcpid = #{fSrcpid}</if>
|
|
|
<if test="fSrcdc != null and fSrcdc != ''">and f_srcdc = #{fSrcdc}</if>
|
|
@@ -62,6 +66,8 @@
|
|
|
td.f_act_id,
|
|
|
td.f_lineno,
|
|
|
td.f_srcid,
|
|
|
+ td.f_src_billno,
|
|
|
+ td.f_invoice_no,
|
|
|
td.f_srclineno,
|
|
|
td.f_srcpid,
|
|
|
td.f_srcdc,
|
|
@@ -122,6 +128,8 @@
|
|
|
<if test="fActId != null">f_act_id,</if>
|
|
|
<if test="fLineno != null">f_lineno,</if>
|
|
|
<if test="fSrcid != null">f_srcid,</if>
|
|
|
+ <if test="fSrcBillno != null ">f_src_billno,</if>
|
|
|
+ <if test="fInvoiceNo != null ">f_invoice_no,</if>
|
|
|
<if test="fSrclineno != null">f_srclineno,</if>
|
|
|
<if test="fSrcpid != null">f_srcpid,</if>
|
|
|
<if test="fSrcdc != null">f_srcdc,</if>
|
|
@@ -144,6 +152,8 @@
|
|
|
<if test="fActId != null">#{fActId},</if>
|
|
|
<if test="fLineno != null">#{fLineno},</if>
|
|
|
<if test="fSrcid != null">#{fSrcid},</if>
|
|
|
+ <if test="fSrcBillno != null ">#{fSrcBillno},</if>
|
|
|
+ <if test="fInvoiceNo != null ">#{fInvoiceNo},</if>
|
|
|
<if test="fSrclineno != null">#{fSrclineno},</if>
|
|
|
<if test="fSrcpid != null">#{fSrcpid},</if>
|
|
|
<if test="fSrcdc != null">#{fSrcdc},</if>
|
|
@@ -169,6 +179,8 @@
|
|
|
<if test="fActId != null">f_act_id = #{fActId},</if>
|
|
|
<if test="fLineno != null">f_lineno = #{fLineno},</if>
|
|
|
<if test="fSrcid != null">f_srcid = #{fSrcid},</if>
|
|
|
+ <if test="fSrcBillno != null ">f_src_billno = #{fSrcBillno},</if>
|
|
|
+ <if test="fInvoiceNo != null ">f_invoice_no = #{fInvoiceNo},</if>
|
|
|
<if test="fSrclineno != null">f_srclineno = #{fSrclineno},</if>
|
|
|
<if test="fSrcpid != null">f_srcpid = #{fSrcpid},</if>
|
|
|
<if test="fSrcdc != null">f_srcdc = #{fSrcdc},</if>
|