tasks.ts 1.77 KB
export default {
  state: '状态',
  taskName: '任务名称',
  taskGroup: '任务组名',
  cron: 'cron执行表达式',
  executeOnce: '执行一次',
  log: '调度日志',
  table: {
    title: '定时任务列表',
    isOnce: '确认要立即执行一次',
    taskOnce: '执行一次任务',
    task: '任务吗?',
    taskDetail: '任务详细',
    callTarget: '调用目标字符串',
    default: '默认',
    system: '系统',
    report: '报表',
    taskCenter: '任务中心',
    taskState: '任务状态',
    callMethod: '调用方法',
    callMessage:
      'Bean调用示例:reportTask.noParams()Class类调用示例:reportTask.noParams()参数说明:支持字符串,布尔类型,长整型,浮点型,整型',
    strategy: '执行策略',
    immediate: '立即执行',
    execution: '放弃执行',
    isConcurrent: '是否并发',
    allow: '允许',
    disable: '禁止',
  },
  form: {
    createTitle: '新增定时任务',
    editTitle: '编辑定时任务',
    viewTitle: '查看定时任务',
  },
  detail: {
    title: '任务详细信息',
  },
  logDetail: {
    title: '调度日志详细信息',
    place1: '请输入任务名称',
    place2: '请选择任务组名',
    place3: '请选择执行状态',
    isAllDel: '您确定要清空全部数据',
    empty: '清空',
    tableName: '调度日志列表',
    nextTime: '下次执行时间:', //Next execution time:
    callTarget: '调用目标方法:', //Call target method:
    loginfo: '日志信息', //log information
    state: '执行状态', //Execution Status
    time: '执行时间', //Execution Time
    timeConsuming: '总共耗时: {time}毫米',
  },
  EJobGroup: {
    DEFAULT: '默认',
    SYSTEM: '系统',
    REPORT: '报表',
    TASK_CENTER: '任务中心',
  },
};