Commit 2e7d6192 authored by chenzhao's avatar chenzhao

修改bug

parent 1826420c
...@@ -60,13 +60,13 @@ ...@@ -60,13 +60,13 @@
and submission_time between #{startTime} and #{endTime} and submission_time between #{startTime} and #{endTime}
</if> </if>
<if test="submissionName != null "> <if test="submissionName != null ">
and submission_name = like concat (%, #{submissionName},%) and submission_name like concat ('%', #{submissionName},'%')
</if> </if>
<if test="submissionBranchId!= null "> <if test="submissionBranchId!= null ">
and submission_branch_id= #{submissionBranchId} and submission_branch_id= #{submissionBranchId}
</if> </if>
<if test="sequenceNbr!= null "> <if test="sequenceNbr!= null ">
and sequence_nbr = like concat (%,#{ sequenceNbr},%) and sequence_nbr like concat ('%',#{ sequenceNbr},'%')
</if> </if>
</where> </where>
order by submission_time DESC limit #{current},#{size} order by submission_time DESC limit #{current},#{size}
......
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