insert into fc_project (id, org_id, org_name, project_number, project_name, project_address, build_area, building_total, house_total, build_cost_id, build_cost_name, adjustment_percentage, bank_percentage, is_frozen, type, state, create_time, del_flag) values (#{item.id},#{item.orgId},#{item.orgName},#{item.projectNumber},#{item.projectName},#{item.projectAddress},#{item.buildArea},#{item.buildingTotal},#{item.houseTotal},#{item.buildCostId},#{item.buildCostName},#{item.adjustmentPercentage},#{item.bankPercentage},#{item.isFrozen},#{item.type}, #{item.state}, #{item.createTime}, #{item.delFlag}) update fc_project set state = #{state} where id = #{id} update fc_project t set t.building_total = (select count(1) from fc_building_account where project_number = t.project_number) update fc_project t set t.build_area = (select sum(build_area) from fc_building_account where project_number = t.project_number) update fc_project t set t.supervise_amount = (select sum(supervise_amount) from fc_building_account where project_number = t.project_number)