This commit is contained in:
linfso 2024-05-30 06:18:34 +08:00
parent a02bc4db0e
commit aea108743f

View File

@ -34,11 +34,11 @@
</resultMap>
<select id="selectFromCountryNameByLineCode" parameterType="String" resultType="string">
select a.name from emis_country a,emis_trans_line b where a.code=b.from_country and b.code = #{code}
select a.name from emis_country a,emis_trans_line b where a.code=b.from_country and b.line_code = #{code}
</select>
<select id="selectCountryNameByLineCode" parameterType="String" resultType="string">
select a.name from emis_country a,emis_trans_line b where a.code=b.country and b.code = #{code}
select a.name from emis_country a,emis_trans_line b where a.code=b.country and b.line_code = #{code}
</select>
<select id="selectTotalEstCostDayByPlanId" parameterType="long" resultType="BigDecimal">