This commit is contained in:
linfso 2024-07-03 15:36:14 +08:00
parent c2dc8b2732
commit 2febe57850

View File

@ -80,7 +80,7 @@
<select id="selectTransLineByName" parameterType="String" resultMap="EmisTransLineResult">
select id, line_code, line_name, line_name_en, meter_rate, status, site_audit_man, site_audit_man_code, market_man, market_man_code, operate_man, operate_man_code, from_country, country, apply_scope, logo_type, trans_type, order_num, remark, tenant_id, del_flag, create_by, create_time, update_by, update_time, create_site, update_site
from emis_trans_line a
where a.line_name = #{lineName}
where a.del_flag = '0' and a.line_name = #{lineName}
</select>