tasks.ts
1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
export default {
state: 'Status',
taskName: 'Task name',
taskGroup: 'Task group name',
cron: 'Cron execution expression',
executeOnce: 'Execute once',
log: 'Dispatching log',
table: {
title: 'Timed task list',
isOnce: 'Confirm to execute immediately once',
taskOnce: 'Execute a task once',
task: 'Task ?',
taskDetail: 'Task details',
callTarget: 'Call target string',
default: 'Default',
system: 'System',
report: 'Report forms',
taskCenter: 'Task Center',
taskState: 'Task Status',
callMethod: 'Calling method',
callMessage:
'Bean call example: reportTask. noParams() Class call example: reportTask. noParams() Parameter description: Supports strings, Boolean types, long integers, floating-point types, and integers',
strategy: 'Execution Strategy',
immediate: 'Execute immediately',
execution: 'Abandon execution',
isConcurrent: 'Is it concurrent',
allow: 'Allow',
disable: 'Prohibit',
},
form: {
createTitle: 'Create scheduled tasks',
editTitle: 'Edit scheduled tasks',
viewTitle: 'View scheduled tasks',
},
detail: {
title: 'Task Details',
},
logDetail: {
title: 'Scheduling log details',
place1: 'Please enter the task name',
place2: 'Please enter a task group name',
place3: 'Please enter the execution status',
isAllDel: 'Are you sure you want to clear all data',
empty: 'Empty',
tableName: 'Scheduling log list',
nextTime: 'Next execution time:',
callTarget: 'Call target method:',
loginfo: 'log information',
state: 'Execution Status',
time: 'Execution Time',
timeConsuming: 'Total time: {time} milliseconds',
},
EJobGroup: {
DEFAULT: 'Default',
SYSTEM: 'System',
REPORT: 'Report forms',
TASK_CENTER: 'Task center',
},
};