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