File tree Expand file tree Collapse file tree
xxl-job-admin/src/main/resources/mapper Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6363 <select id =" pageList" parameterType =" java.util.HashMap" resultMap =" XxlJobGroup" >
6464 SELECT <include refid =" Base_Column_List" />
6565 FROM xxl_job_group AS t
66- <trim prefix =" WHERE" prefixOverrides =" AND | OR " >
66+ <trim prefix =" WHERE" prefixOverrides =" AND |OR " >
6767 <if test =" appname != null and appname != ''" >
6868 AND t.app_name like CONCAT(CONCAT('%', #{appname}), '%')
6969 </if >
7878 <select id =" pageListCount" parameterType =" java.util.HashMap" resultType =" int" >
7979 SELECT count(1)
8080 FROM xxl_job_group AS t
81- <trim prefix =" WHERE" prefixOverrides =" AND | OR " >
81+ <trim prefix =" WHERE" prefixOverrides =" AND |OR " >
8282 <if test =" appname != null and appname != ''" >
8383 AND t.app_name like CONCAT(CONCAT('%', #{appname}), '%')
8484 </if >
Original file line number Diff line number Diff line change 6868 <select id =" pageList" parameterType =" java.util.HashMap" resultMap =" XxlJobInfo" >
6969 SELECT <include refid =" Base_Column_List" />
7070 FROM xxl_job_info AS t
71- <trim prefix =" WHERE" prefixOverrides =" AND | OR " >
71+ <trim prefix =" WHERE" prefixOverrides =" AND |OR " >
7272 <if test =" jobGroup gt 0" >
7373 AND t.job_group = #{jobGroup}
7474 </if >
9292 <select id =" pageListCount" parameterType =" java.util.HashMap" resultType =" int" >
9393 SELECT count(1)
9494 FROM xxl_job_info AS t
95- <trim prefix =" WHERE" prefixOverrides =" AND | OR " >
95+ <trim prefix =" WHERE" prefixOverrides =" AND |OR " >
9696 <if test =" jobGroup gt 0" >
9797 AND t.job_group = #{jobGroup}
9898 </if >
Original file line number Diff line number Diff line change 4747 <select id =" pageList" resultMap =" XxlJobLog" >
4848 SELECT <include refid =" Base_Column_List" />
4949 FROM xxl_job_log AS t
50- <trim prefix =" WHERE" prefixOverrides =" AND | OR " >
50+ <trim prefix =" WHERE" prefixOverrides =" AND |OR " >
5151 <if test =" jobGroup gt 0" >
5252 AND t.job_group = #{jobGroup}
5353 </if >
8181 <select id =" pageListCount" resultType =" int" >
8282 SELECT count(1)
8383 FROM xxl_job_log AS t
84- <trim prefix =" WHERE" prefixOverrides =" AND | OR " >
84+ <trim prefix =" WHERE" prefixOverrides =" AND |OR " >
8585 <if test =" jobGroup gt 0" >
8686 AND t.job_group = #{jobGroup}
8787 </if >
187187
188188 <select id =" findClearLogIds" resultType =" long" >
189189 SELECT id FROM xxl_job_log
190- <trim prefix =" WHERE" prefixOverrides =" AND | OR " >
190+ <trim prefix =" WHERE" prefixOverrides =" AND |OR " >
191191 <if test =" jobGroup gt 0" >
192192 AND job_group = #{jobGroup}
193193 </if >
201201 AND id NOT in(
202202 SELECT id FROM(
203203 SELECT id FROM xxl_job_log AS t
204- <trim prefix =" WHERE" prefixOverrides =" AND | OR " >
204+ <trim prefix =" WHERE" prefixOverrides =" AND |OR " >
205205 <if test =" jobGroup gt 0" >
206206 AND t.job_group = #{jobGroup}
207207 </if >
Original file line number Diff line number Diff line change 2424 <select id =" pageList" parameterType =" java.util.HashMap" resultMap =" XxlJobUser" >
2525 SELECT <include refid =" Base_Column_List" />
2626 FROM xxl_job_user AS t
27- <trim prefix =" WHERE" prefixOverrides =" AND | OR " >
27+ <trim prefix =" WHERE" prefixOverrides =" AND |OR " >
2828 <if test =" username != null and username != ''" >
2929 AND t.username like CONCAT(CONCAT('%', #{username}), '%')
3030 </if >
3939 <select id =" pageListCount" parameterType =" java.util.HashMap" resultType =" int" >
4040 SELECT count(1)
4141 FROM xxl_job_user AS t
42- <trim prefix =" WHERE" prefixOverrides =" AND | OR " >
42+ <trim prefix =" WHERE" prefixOverrides =" AND |OR " >
4343 <if test =" username != null and username != ''" >
4444 AND t.username like CONCAT(CONCAT('%', #{username}), '%')
4545 </if >
You can’t perform that action at this time.
0 commit comments