| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace App\Module\Fund\Models;
- use UCore\ModelCore;
- /**
- * 资金配置表
- * @property int $id
- * @property string $name 配置名称
- * @property int $create_time
- * @property int $update_time
- */
- /**
- * App\Module\Fund\Models\FundConfigModel
- *
- * 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;
- }
|