12345678910111213141516171819 |
- <?php
- namespace app\Admin\model;
- use think\Model;
- class Account extends Model
- {
- protected $name = 'account';
- protected $pk = 'id';
- protected $autoWriteTimestamp = 'datetime';
- protected $createTime = 'addtime';
- protected $updateTime = 'updatetime';
- public static $is_del_normal = 0;
- public static $is_del_finish = 1;
- }
|