|
|
@@ -7,9 +7,12 @@
|
|
|
<!-- 保存月缴费表信息 add by wuxw 2018-07-03 -->
|
|
|
<insert id="savePayFeeDetailMonthInfo" parameterType="Map">
|
|
|
insert into pay_fee_detail_month(
|
|
|
- detail_month,detail_year,detail_id,receivable_amount,discount_amount,remark,received_amount,community_id,fee_id,month_id
|
|
|
+ detail_month,detail_year,detail_id,receivable_amount,discount_amount,remark,received_amount,community_id,fee_id,month_id,
|
|
|
+ obj_name,obj_id,owner_name,owner_id,link,state,pay_fee_time,cur_month_time,
|
|
|
+ fee_name,config_id
|
|
|
) values (
|
|
|
- #{detailMonth},#{detailYear},#{detailId},#{receivableAmount},#{discountAmount},#{remark},#{receivedAmount},#{communityId},#{feeId},#{monthId}
|
|
|
+ #{detailMonth},#{detailYear},#{detailId},#{receivableAmount},#{discountAmount},#{remark},#{receivedAmount},#{communityId},#{feeId},#{monthId},
|
|
|
+ #{objName},#{objId},#{ownerName},#{ownerId},#{link},#{state},#{payFeeTime},#{curMonthTime}, #{feeName},#{configId}
|
|
|
)
|
|
|
</insert>
|
|
|
|
|
|
@@ -17,13 +20,15 @@
|
|
|
<insert id="savePayFeeDetailMonthInfos" parameterType="Map">
|
|
|
insert into pay_fee_detail_month(
|
|
|
detail_month,detail_year,detail_id,receivable_amount,discount_amount,remark,received_amount,community_id,fee_id,month_id,
|
|
|
- obj_name,obj_id,owner_name,owner_id,link,state,pay_fee_time
|
|
|
+ obj_name,obj_id,owner_name,owner_id,link,state,pay_fee_time,cur_month_time,
|
|
|
+ fee_name,config_id
|
|
|
) values
|
|
|
<foreach collection="payFeeDetailMonthPos" item="item" index="index" separator=",">
|
|
|
(
|
|
|
#{item.detailMonth},#{item.detailYear},#{item.detailId},#{item.receivableAmount},#{item.discountAmount},
|
|
|
#{item.remark},#{item.receivedAmount},#{item.communityId},#{item.feeId},#{item.monthId},
|
|
|
- #{item.objName},#{item.objId},#{item.ownerName},#{item.ownerId},#{item.link},#{item.state},#{item.payFeeTime}
|
|
|
+ #{item.objName},#{item.objId},#{item.ownerName},#{item.ownerId},#{item.link},#{item.state},#{item.payFeeTime},#{item.curMonthTime},
|
|
|
+ #{item.feeName},#{item.configId}
|
|
|
)
|
|
|
</foreach>
|
|
|
</insert>
|