结算记录优化
This commit is contained in:
parent
ae6f93ef4a
commit
440a6d5935
|
|
@ -80,7 +80,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
</select>
|
</select>
|
||||||
<select id="selectIdByProjectIdAndMonth" resultType="java.lang.String">
|
<select id="selectIdByProjectIdAndMonth" resultType="java.lang.String">
|
||||||
select id from project_month_costs
|
select id from project_month_costs
|
||||||
where project_id = #{projectId} and month = #{month} and cost_bearing_party = #{costBearingParty}
|
where project_id = #{projectId} and month = #{month}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<delete id="deleteCalcRecord" parameterType="com.bonus.sgzb.material.domain.CalMonthlyBean">
|
<delete id="deleteCalcRecord" parameterType="com.bonus.sgzb.material.domain.CalMonthlyBean">
|
||||||
|
|
@ -101,7 +101,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
</delete>
|
</delete>
|
||||||
<delete id="deleteCostByProjectIdAndMonth">
|
<delete id="deleteCostByProjectIdAndMonth">
|
||||||
delete from project_month_costs
|
delete from project_month_costs
|
||||||
where project_id = #{projectId} and month = #{month} and cost_bearing_party = #{costBearingParty}
|
where project_id = #{projectId} and month = #{month}
|
||||||
</delete>
|
</delete>
|
||||||
<delete id="deleteDetailsByProMonthCostId">
|
<delete id="deleteDetailsByProMonthCostId">
|
||||||
delete from project_month_detail
|
delete from project_month_detail
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue