ScheduleLogDict.php 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Niucloud-admin 企业快速开发的saas管理平台
  4. // +----------------------------------------------------------------------
  5. // | 官方网址:https://www.niucloud.com
  6. // +----------------------------------------------------------------------
  7. // | niucloud团队 版权所有 开源版本可自由商用
  8. // +----------------------------------------------------------------------
  9. // | Author: Niucloud Team
  10. // +----------------------------------------------------------------------
  11. namespace app\dict\schedule;
  12. class ScheduleLogDict
  13. {
  14. public const SUCCESS = 'success';//执行成功
  15. public const ERROR = 'error';//执行失败
  16. /**
  17. * 任务执行状态
  18. * @return array
  19. */
  20. public static function getStatus()
  21. {
  22. return [
  23. self::SUCCESS => get_lang('dict_schedule_log.success'),//执行成功
  24. self::ERROR => get_lang('dict_schedule_log.error'),//执行失败
  25. ];
  26. }
  27. }