代码提交

This commit is contained in:
itcast 2025-12-01 17:23:47 +08:00
parent 2af5fb31d0
commit c04da66d17
2 changed files with 6 additions and 1 deletions

View File

@ -77,4 +77,9 @@ public class EquipmentType {
* 是否叶子节点
*/
private Boolean leaf;
/**
* 删除标志0代表存在 2代表删除默认值0
*/
private String delFlag = "0";
}

View File

@ -58,7 +58,7 @@
<select id="selectAllEquipmentTypes" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List" />
FROM ma_type
WHERE level != '7'
WHERE level != '7' and del_flag = '0'
</select>
<select id="selectEquipmentTypeById" resultMap="BaseResultMap">