| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace App\Module\Fund\Models;
- use UCore\ModelCore;
- /**
- * 资金订单表
- *
- * field start
- * @property int $id ID
- * @property int $relation_id 关联ID 例如wlorder.Id
- * @property string $relation_type 关联类型 wlorder物流订单
- * @property int $type1 关联操作类型
- * @property int $total_fee 支付金额
- * @property int $create_time 创建时间
- * @property int $to_user_id 收款账户id
- * @property int $to_fund_id 收款账户的资金id
- * @property string $remark 订单描述
- * field end
- *
- */
- class FundOrderModel extends ModelCore
- {
- protected $table = 'fund_order';
- // attrlist start
- protected $fillable = [
- 'id',
- 'relation_id',
- 'relation_type',
- 'type1',
- 'total_fee',
- 'create_time',
- 'to_user_id',
- 'to_fund_id',
- 'remark',
- ];
- // attrlist end
- public $timestamps = false;
- }
|