旧接口字段更新BUG修复

This commit is contained in:
MHW
2026-04-20 09:38:58 +08:00
parent 39b04d8b73
commit ae01a2aa01
9 changed files with 509 additions and 36 deletions

View File

@@ -18,7 +18,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</delete>
<sql id="selectNodeparameterVo">
select id, treeId, node_instance_id, param_def_id,`value`, group_index from nodeparameter
select id, tree_id, node_instance_id, param_def_id,`value`, group_index from nodeparameter
</sql>
<select id="selectNodeparameterList" parameterType="Nodeparameter" resultMap="NodeparameterResult">
@@ -28,7 +28,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<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="value != null and value != ''"> and `value` = #{value}</if>
<if test="groupIndex != null"> and group_index = #{groupIndex}</if>
</where>
</select>