|
@@ -35,6 +35,7 @@
|
|
|
<if test="fName != null and fName != ''">and f_name like concat('%', #{fName}, '%')</if>
|
|
|
<if test="fDesc != null and fDesc != ''">and f_desc = #{fDesc}</if>
|
|
|
<if test="fUrl != null and fUrl != ''">and f_url = #{fUrl}</if>
|
|
|
+ <if test="fType != null and fType != ''">and f_type = #{fType}</if>
|
|
|
<if test="fStatus != null and fStatus != ''">and f_status = #{fStatus}</if>
|
|
|
</where>
|
|
|
</select>
|
|
@@ -65,6 +66,7 @@
|
|
|
<if test="fName != null and fName != ''">f_name,</if>
|
|
|
<if test="fDesc != null and fDesc != ''">f_desc,</if>
|
|
|
<if test="fUrl != null and fUrl != ''">f_url,</if>
|
|
|
+ <if test="fType != null and fType != ''">f_type,</if>
|
|
|
<if test="fStatus != null">f_status,</if>
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
@@ -80,6 +82,7 @@
|
|
|
<if test="fName != null and fName != ''">#{fName},</if>
|
|
|
<if test="fDesc != null and fDesc != ''">#{fDesc},</if>
|
|
|
<if test="fUrl != null and fUrl != ''">#{fUrl},</if>
|
|
|
+ <if test="fType != null and fType != ''">#{fType},</if>
|
|
|
<if test="fStatus != null">#{fStatus},</if>
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
@@ -99,6 +102,7 @@
|
|
|
<if test="fName != null and fName != ''">f_name = #{fName},</if>
|
|
|
<if test="fDesc != null and fDesc != ''">f_desc = #{fDesc},</if>
|
|
|
<if test="fUrl != null and fUrl != ''">f_url = #{fUrl},</if>
|
|
|
+ <if test="fType != null and fType != ''">f_type = #{fType},</if>
|
|
|
<if test="fStatus != null">f_status = #{fStatus},</if>
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|