Merge remote-tracking branch 'origin/ah-simple-test' into ah-simple-test

This commit is contained in:
jiang 2025-12-02 10:28:25 +08:00
commit 958a675a89
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">