旧接口字段更新

This commit is contained in:
MHW
2026-04-17 15:45:44 +08:00
parent d310c5ae7b
commit 0cd142bb82
3 changed files with 27 additions and 27 deletions

View File

@@ -23,10 +23,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectNodeparameterList" parameterType="Nodeparameter" resultMap="NodeparameterResult">
<include refid="selectNodeparameterVo"/>
<where>
<where>
<if test="id != null"> and id = #{id}</if>
<if test="treeId != null"> and tree_id = #{treeId}</if>
<if test="nodeInstanceId != null "> and node_instance_id = #{nodeInstanceId}</if>
<if test="paramDefId != null "> and param_def_id = #{paramDefId}</if>
<if test="value != null and value != ''"> and value = #{value}</if>
<if test="groupIndex != null"> and group_index = #{groupIndex}</if>
</where>
</select>

View File

@@ -31,8 +31,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="instanceName != null and instanceName != ''"> and instance_name like concat('%', #{instanceName}, '%')</if>
<if test="isRoot != null "> and is_root = #{isRoot}</if>
<if test="preconditionTempleteId != null "> and precondition_templete_id = #{preconditionTempleteId}</if>
<if test="uuid != null and uuid != ''"> and uuid = #{uuid}</if>
<if test="desciption != null and desciption != ''"> and desciption = #{desciption}</if>
<if test="nodeValue != null and nodeValue != ''"> and node_value = #{nodeValue}</if>
<if test="isExtern != null and isExtern != ''"> and is_extern = #{isExtern}</if>
</where>
</select>