FundOrderModel.php 961 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace App\Module\Fund\Models;
  3. use UCore\ModelCore;
  4. /**
  5. * 资金订单表
  6. *
  7. * field start
  8. * @property int $id ID
  9. * @property int $relation_id 关联ID 例如wlorder.Id
  10. * @property string $relation_type 关联类型 wlorder物流订单
  11. * @property int $type1 关联操作类型
  12. * @property int $total_fee 支付金额
  13. * @property int $create_time 创建时间
  14. * @property int $to_user_id 收款账户id
  15. * @property int $to_fund_id 收款账户的资金id
  16. * @property string $remark 订单描述
  17. * field end
  18. *
  19. */
  20. class FundOrderModel extends ModelCore
  21. {
  22. protected $table = 'fund_order';
  23. // attrlist start
  24. protected $fillable = [
  25. 'id',
  26. 'relation_id',
  27. 'relation_type',
  28. 'type1',
  29. 'total_fee',
  30. 'create_time',
  31. 'to_user_id',
  32. 'to_fund_id',
  33. 'remark',
  34. ];
  35. // attrlist end
  36. public $timestamps = false;
  37. }