select logs_id, profit_id, title, reason, create_time from company_profit_logs
insert into company_profit_logs
profit_id,
title,
reason,
create_time,
#{profitId},
#{title},
#{reason},
#{createTime},
update company_profit_logs
profit_id = #{profitId},
title = #{title},
reason = #{reason},
create_time = #{createTime},
where logs_id = #{logsId}
delete from company_profit_logs where logs_id = #{logsId}
delete from company_profit_logs where logs_id in
#{logsId}