select id, agreement_id, unit_id, project_id, month, cost_bearing_party, costs, task_id, create_time, update_time from slt_project_month_costs
insert into slt_project_month_costs
agreement_id,
unit_id,
project_id,
month,
cost_bearing_party,
costs,
task_id,
create_time,
update_time,
#{agreementId},
#{unitId},
#{projectId},
#{month},
#{costBearingParty},
#{costs},
#{taskId},
#{createTime},
#{updateTime},
update slt_project_month_costs
agreement_id = #{agreementId},
unit_id = #{unitId},
project_id = #{projectId},
month = #{month},
cost_bearing_party = #{costBearingParty},
costs = #{costs},
task_id = #{taskId},
create_time = #{createTime},
update_time = #{updateTime},
where id = #{id}
delete from slt_project_month_costs where id = #{id}
delete from slt_project_month_costs where id in
#{id}