| 123456789101112131415161718 |
- <?php
- declare(strict_types=1);
- namespace app\common\model;
- use think\Model;
- class WorkerOut Extends Model
- {
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = true;
- protected $createTime = 'createtime';
- protected $type = [
- 'createtime' => 'timestamp:Y-m-d H:i',
- ];
- }
|