12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace app\model\system\timer;
- use crmeb\basic\BaseModel;
- use crmeb\traits\JwtAuthModelTrait;
- use crmeb\traits\ModelTrait;
- use think\Model;
- class SystemTimer extends BaseModel
- {
- use ModelTrait;
- use JwtAuthModelTrait;
-
- protected $pk = 'id';
-
- protected $name = 'system_timer';
- protected $insert = ['add_time'];
- }
|