WorkerOut.php 317 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. namespace app\common\model;
  4. use think\Model;
  5. class WorkerOut Extends Model
  6. {
  7. // 自动写入时间戳字段
  8. protected $autoWriteTimestamp = true;
  9. protected $createTime = 'createtime';
  10. protected $type = [
  11. 'createtime' => 'timestamp:Y-m-d H:i',
  12. ];
  13. }