1234567891011121314151617181920212223 |
- <?php
- namespace app\common\model;
- use think\Db;
- use think\Model;
- class User extends Model
- {
-
- protected $autoWriteTimestamp = 'int';
-
- protected $createTime = 'createtime';
- protected $updateTime = 'updatetime';
-
- protected $append = [];
- }
|