| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace App\Module\Transfer\Model;
- use App\Models\ModelCore;
- use App\Module\Transfer\Enums\TStatus;
- use App\Module\Transfer\Enums\TType;
- /**
- * 划转订单
- *
- * field start
- * @property int $id
- * @property int $trapp_id 划转 app_id
- * @property int $out_id 对应 外部APP
- * @property string $out_order_id 外部 订单ID
- * @property int $crrency_id 对应 货币
- * @property int $fund_id 对应 账户
- * @property string $ouser_id 外部 - 用户ID
- * @property int $user_id 用户ID
- * @property int $status 状态
- * @property int $type 类型,方向
- * @property float $oamount 外部钱数
- * @property int $amount 我们钱数
- * @property \Carbon\Carbon $created_at
- * @property \Carbon\Carbon $updated_at
- * @property \Carbon\Carbon $deleted_at 删除时间
- * field end
- *
- */
- class TransferOrder extends ModelCore
- {
- protected $casts=[
- 'status'=>TStatus::class,
- 'type'=>TType::class
- ];
- }
|