Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cust-api
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李伟
cust-api
Commits
0116df3f
Commit
0116df3f
authored
Feb 20, 2025
by
罗林杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改定时任务缓存
parent
08012f74
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
SysScheduledTaskLog.java
...iness/sysScheduledTaskLog/entity/SysScheduledTaskLog.java
+3
-3
SysScheduledTaskLogMapper.xml
.../sysScheduledTaskLog/mapper/SysScheduledTaskLogMapper.xml
+2
-2
No files found.
src/main/java/org/rcisoft/business/sysScheduledTaskLog/entity/SysScheduledTaskLog.java
View file @
0116df3f
...
@@ -43,10 +43,10 @@ public class SysScheduledTaskLog extends CyIdNotDataEntity<SysScheduledTaskLog>
...
@@ -43,10 +43,10 @@ public class SysScheduledTaskLog extends CyIdNotDataEntity<SysScheduledTaskLog>
* @default
* @default
*/
*/
@JsonFormat
(
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH
-mm-
ss"
pattern
=
"yyyy-MM-dd HH
:mm:
ss"
)
)
@Excel
(
name
=
"创建时间"
,
orderNum
=
"2"
,
width
=
20
,
format
=
"yyyy-MM-dd HH
-mm-
ss"
)
@Excel
(
name
=
"创建时间"
,
orderNum
=
"2"
,
width
=
20
,
format
=
"yyyy-MM-dd HH
:mm:
ss"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH
-mm-
ss"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH
:mm:
ss"
)
private
Date
createDate
;
private
Date
createDate
;
/**
/**
...
...
src/main/resources/mapper/business/sysScheduledTaskLog/mapper/SysScheduledTaskLogMapper.xml
View file @
0116df3f
...
@@ -19,10 +19,10 @@
...
@@ -19,10 +19,10 @@
and task_name like concat('%',#{entity.taskName},'%')
and task_name like concat('%',#{entity.taskName},'%')
</if>
</if>
<if
test=
"entity.beginTime !=null and entity.beginTime != '' "
>
<if
test=
"entity.beginTime !=null and entity.beginTime != '' "
>
and
task_tim
e
>
= #{entity.beginTime}
and
create_dat
e
>
= #{entity.beginTime}
</if>
</if>
<if
test=
"entity.endTime !=null and entity.endTime != '' "
>
<if
test=
"entity.endTime !=null and entity.endTime != '' "
>
and
task_tim
e
<
= #{entity.endTime}
and
create_dat
e
<
= #{entity.endTime}
</if>
</if>
<if
test=
"entity.taskState !=null and entity.taskState != '' "
>
<if
test=
"entity.taskState !=null and entity.taskState != '' "
>
and task_state like concat('%',#{entity.taskState},'%')
and task_state like concat('%',#{entity.taskState},'%')
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment