feat:调整空域分组详情删除接口

This commit is contained in:
gyb 2026-02-25 17:06:20 +08:00
parent c2cc12eeda
commit 4fd0ee3c4e
1 changed files with 4 additions and 1 deletions

View File

@ -30,7 +30,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
set del_flag = 1,
deleted_by = #{deletedBy},
deleted_time = now()
where group_id = #{groupId}
where 1=1
<if test="groupId != null">
and group_id = #{groupId}
</if>
<if test="areaId != null">
and area_id = #{areaId}
</if>