Commit ea8342e3 by “zcwang”

add: 分页查询

parent 9a402f98
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
from TB_YX_QC_CHANGE_RECORD from TB_YX_QC_CHANGE_RECORD
<where> <where>
<if test="itemId != null "> <if test="itemId != null ">
and change_item like concat('%',itemId,'%') and change_item like concat('%',#{itemId},'%')
</if> </if>
<if test="supplier != null "> <if test="supplier != null ">
and change_supplier = #{supplier} and change_supplier = #{supplier}
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
and `change_department` = #{changeDepartment} and `change_department` = #{changeDepartment}
</if> </if>
<if test="changeExecDepartment != null and changeExecDepartment != ''"> <if test="changeExecDepartment != null and changeExecDepartment != ''">
and participate_change_exec_department like concat('%',changeExecDepartment,'%') and participate_change_exec_department like concat('%',#{changeExecDepartment},'%')
</if> </if>
<if test="startTime != null"> <if test="startTime != null">
and create_time > #{startTime} and create_time > #{startTime}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment