This commit is contained in:
linfso 2024-05-30 05:38:55 +08:00
parent 50e7560edf
commit 8afcd97336

View File

@ -23,7 +23,7 @@
<association property="productTypeName" column="prod_code" select="selectProdNameByCode"/>
<association property="transLineTypeName" column="trans_line_code" select="selectLineNameByCode"/>
<association property="transLine" column="trans_line_code" select="selectTransLineNameByCode"/>
<association property="transLine" column="trans_line_code" select="selectTransLineResultByCode"/>
<association property="totalEstCostDay" column="id" select="selectTotalEstCostDayByPlanId"/>
@ -57,7 +57,7 @@
select a.line_name from emis_trans_line a where a.line_code = #{code} limit 1
</select>
<select id="selectTransLineNameByCode" parameterType="String" resultMap="EmisTransLineResult">
<select id="selectTransLineResultByCode" parameterType="String" resultMap="EmisTransLineResult">
select * from emis_trans_line a where a.line_code = #{code} limit 1
</select>