Commit a4a95de3 by “zcwang”

add: 分页查询

parent 30038b5e
...@@ -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 ">
change_item like "%" #{itemId} "%" and change_item like concat('%',itemId,'%') and
</if> </if>
<if test="supplier != null "> <if test="supplier != null ">
change_supplier = #{supplier} and change_supplier = #{supplier} and
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
`change_department` = #{changeDepartment} and `change_department` = #{changeDepartment} and
</if> </if>
<if test="changeExecDepartment != null and changeExecDepartment != ''"> <if test="changeExecDepartment != null and changeExecDepartment != ''">
participate_change_exec_department like "%" #{changeExecDepartment} "%" participate_change_exec_department like concat('%',changeExecDepartment,'%') and
</if> </if>
<if test="startTime != null"> <if test="startTime != null">
create_time > #{startTime} and create_time > #{startTime} and
......
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