select thisTab.id, thisTab.subject_id, thisTab.create_by, thisTab.create_time, thisTab.operation from voucher_subject_fee_log AS thisTab
select count(0) from voucher_subject_fee_log as thisTab
and thisTab.subject_id = #{subjectId} and thisTab.operation = #{operation}
insert into voucher_subject_fee_log
subject_id,create_by,create_time,operation,#{subjectId},#{createBy},#{createTime},#{operation},
insert into voucher_subject_fee_log
id,subject_id,create_by,create_time,operation,
#{item.id},#{item.subjectId},#{item.createBy},#{item.createTime},#{item.operation},
update voucher_subject_fee_log
subject_id = #{subjectId},create_by = #{createBy},create_time = #{createTime},operation = #{operation},
where id = #{id}
update voucher_subject_fee_log
subject_id = #{item.subjectId},create_by = #{item.createBy},create_time = #{item.createTime},operation = #{item.operation},
where id = #{item.id}
delete from voucher_subject_fee_log where id = #{id}
delete from voucher_subject_fee_log where id in
#{id}