截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DevCrontab.php 544B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace app\common\model\system;
  3. use app\common\basics\Models;
  4. class DevCrontab extends Models
  5. {
  6. const type = [
  7. 1 => '定时任务',
  8. 2 => '守护进程',
  9. ];
  10. public function getTypeDescAttr($value)
  11. {
  12. return self::type[$value];
  13. }
  14. public function getLastTimeStrAttr($value)
  15. {
  16. return date('Y-m-d H:i:s', $value);
  17. }
  18. public function getExpressionAttr($value, $data)
  19. {
  20. if($data['type'] == 2) {
  21. return '-';
  22. }
  23. return $value;
  24. }
  25. }