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