item_id, handle_id, handle_date, object_id, rec1_type, rec1_id, rec1_handle_amt, rec1_waive_amt, rec2_type, rec2_id, rec2_handle_amt, remarks, flg_valid, cp_id, op_create_time, op_create_user_id, op_update_time, op_update_user_id, op_app_code, op_timestamp, op_db_user
AND handle_id = #{handleId}
AND handle_date = #{handleDate}
AND object_id = #{objectId}
AND rec1_type = #{rec1Type}
AND rec1_id = #{rec1Id}
AND rec1_handle_amt = #{rec1HandleAmt}
AND rec1_waive_amt = #{rec1WaiveAmt}
AND rec2_type = #{rec2Type}
AND rec2_id = #{rec2Id}
AND rec2_handle_amt = #{rec2HandleAmt}
AND remarks = #{remarks}
AND flg_valid = #{flgValid}
AND cp_id = #{cpId}
AND op_create_time = #{opCreateTime}
AND op_create_user_id = #{opCreateUserId}
AND op_update_time = #{opUpdateTime}
AND op_update_user_id = #{opUpdateUserId}
AND op_app_code = #{opAppCode}
AND op_timestamp = #{opTimestamp}
AND op_db_user = #{opDbUser}
WHERE item_id in
#{item}
insert into t_mac_receivable_handle_item
(
handle_id,
handle_date,
object_id,
rec1_type,
rec1_id,
rec1_handle_amt,
rec1_waive_amt,
rec2_type,
rec2_id,
rec2_handle_amt,
remarks,
cp_id,
op_app_code,
)
values
(
#{item.handleId},
#{item.handleDate},
#{item.objectId}::uuid,
#{item.rec1Type},
#{item.rec1Id}::uuid,
#{item.rec1HandleAmt},
#{item.rec1WaiveAmt},
#{item.rec2Type},
#{item.rec2Id}::uuid,
#{item.rec2HandleAmt},
#{item.remarks},
#{item.cpId},
#{item.opAppCode},
)