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
08012f74
Commit
08012f74
authored
Feb 20, 2025
by
罗林杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改定时任务缓存
parent
f3f15971
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ScheduleTasks.java
src/main/java/org/rcisoft/core/schedule/ScheduleTasks.java
+2
-2
No files found.
src/main/java/org/rcisoft/core/schedule/ScheduleTasks.java
View file @
08012f74
...
@@ -82,7 +82,7 @@ public class ScheduleTasks {
...
@@ -82,7 +82,7 @@ public class ScheduleTasks {
/**
/**
* 退款确认补救
* 退款确认补救
*/
*/
@Scheduled
(
cron
=
"0
*
* * * ?"
)
@Scheduled
(
cron
=
"0
0/30
* * * ?"
)
public
void
executeRefundConfirmOrder
()
throws
IOException
,
JDOMException
{
public
void
executeRefundConfirmOrder
()
throws
IOException
,
JDOMException
{
orderService
.
executeRefundConfirmOrder
();
orderService
.
executeRefundConfirmOrder
();
}
}
...
@@ -90,7 +90,7 @@ public class ScheduleTasks {
...
@@ -90,7 +90,7 @@ public class ScheduleTasks {
/**
/**
* 订单缓存清除
* 订单缓存清除
*/
*/
@Scheduled
(
cron
=
"0
* *
* * ?"
)
@Scheduled
(
cron
=
"0
0 1
* * ?"
)
public
void
executeDeleteOrder
()
{
public
void
executeDeleteOrder
()
{
orderService
.
executeDeleteOrder
();
orderService
.
executeDeleteOrder
();
}
}
...
...
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