| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Module\Fund\Models;
- use UCore\ModelCore;
- /**
- * 外部资金表
- * @property int $id
- * @property int $user_id 用户ID
- * @property int $fund_id 资金ID
- * @property int $amount 金额
- * @property string $operate_id 操作ID
- * @property string $operate_type 操作类型
- * @property int $status 状态
- * @property int $create_time
- * @property int $update_time
- */
- /**
- * App\Module\Fund\Models\FundExternalModel
- *
- * field start
- * field end
- */
- class FundExternalModel extends ModelCore
- {
- protected $table = 'fund_external';
- // attrlist start
- protected $fillable = [
- ];
- // attrlist end
- public $timestamps = false;
- }
|