This commit is contained in:
linfso 2024-06-06 15:12:47 +08:00
parent 94d3e4929b
commit 6d98f59b9e

View File

@ -70,7 +70,7 @@
limit 1
</select>
<select id="selectEmisProblemTypeById" parameterType="Long" resultMap="EmisProblemTypeResult">
<select id="selectEmisProblemTypeById" parameterType="Integer" resultMap="EmisProblemTypeResult">
select id, type_code, type_name, type_name_en, is_send_sms, object_type, delay_day, status, order_num, remark, tenant_id, del_flag, create_by, create_time, update_by, update_time,create_site,update_site
from emis_problem_type a
where a.id = #{id}
@ -144,7 +144,7 @@
where id = #{id}
</update>
<delete id="deleteEmisProblemTypeById" parameterType="Long">
<delete id="deleteEmisProblemTypeById" parameterType="Integer">
delete from emis_problem_type where id = #{id}
</delete>