| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace App\Module\Fund\Models;
- use UCore\ModelCore;
- /**
- * 账户种类配置表
- *
- * 用于存储系统支持的各种账户种类,如可用账户、冻结账户等。
- * 同一个币种(FundCurrencyModel)可以有多个不同的账户种类。
- *
- * field start
- * @property int $id 自增
- * @property string $name 账户种类名称
- * @property int $create_time 创建时间
- * @property int $update_time 更新时间
- * field end
- */
- class FundConfigModel extends ModelCore
- {
- protected $table = 'fund_config';
- // attrlist start
- protected $fillable = [
- 'id',
- 'name',
- 'create_time',
- 'update_time',
- ];
- // attrlist end
- public $timestamps = false;
- }
|