select thisTab.id, thisTab.invoice_manage_id, thisTab.operator, thisTab.operation_time, thisTab.operation_desc, thisTab.create_time from invoice_manage_log AS thisTab
select count(0) from invoice_manage_log as thisTab
and thisTab.invoice_manage_id = #{invoiceManageId} and thisTab.operator = #{operator} and thisTab.operation_time = #{operationTime} and thisTab.operation_desc = #{operationDesc}
insert into invoice_manage_log
invoice_manage_id,operator,operation_time,operation_desc,create_time,#{invoiceManageId},#{operator},#{operationTime},#{operationDesc},#{createTime},
insert into invoice_manage_log
id,invoice_manage_id,operator,operation_time,operation_desc,create_time,
#{item.id},#{item.invoiceManageId},#{item.operator},#{item.operationTime},#{item.operationDesc},#{item.createTime},
update invoice_manage_log
invoice_manage_id = #{invoiceManageId},operator = #{operator},operation_time = #{operationTime},operation_desc = #{operationDesc},create_time = #{createTime},
where id = #{id}
update invoice_manage_log
invoice_manage_id = #{item.invoiceManageId},operator = #{item.operator},operation_time = #{item.operationTime},operation_desc = #{item.operationDesc},create_time = #{item.createTime},
where id = #{item.id}
delete from invoice_manage_log where id = #{id}
delete from invoice_manage_log where id in
#{id}