|
@@ -26,11 +26,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<select id="selectAlgorithmIoFieldList" parameterType="AlgorithmIoField" resultMap="AlgorithmIoFieldResult">
|
|
|
<include refid="selectAlgorithmIoFieldVo"/>
|
|
|
<where>
|
|
|
- <if test="algorithmSubId != null "> and algorithm_sub_id = #{algorithmSubId}</if>
|
|
|
- <if test="type != null and type != ''"> and `type` = #{type}</if>
|
|
|
- <if test="name != null and name != ''"> and `name` like concat('%', #{name}, '%')</if>
|
|
|
- <if test="index != null "> and `index` = #{index}</if>
|
|
|
- <if test="matlabIoPath != null and matlabIoPath != ''"> and matlab_io_path = #{matlabIoPath}</if>
|
|
|
+ <if test="algorithmSubId != null "> and io.algorithm_sub_id = #{algorithmSubId}</if>
|
|
|
+ <if test="type != null and type != ''"> and io.`type` = #{type}</if>
|
|
|
+ <if test="name != null and name != ''"> and io.`name` like concat('%', #{name}, '%')</if>
|
|
|
+ <if test="index != null "> and io.`index` = #{index}</if>
|
|
|
+ <if test="matlabIoPath != null and matlabIoPath != ''"> and io.matlab_io_path = #{matlabIoPath}</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|