| 123456789101112131415161718192021222324 |
- <?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
- */
- class FundExternalModel extends ModelCore
- {
- protected $table = 'fund_external';
- public $timestamps = false;
- }
|