server/app/Model/TradeOut.php

38 lines
964 B
PHP

<?php
declare(strict_types=1);
namespace App\Model;
/**
* @property int $out_trade_id
* @property int $org_id
* @property int $merchant_id
* @property int $trade_id
* @property int $origin
* @property string $out_trade_no
* @property string $notify_url
* @property int $notify_flag
* @property int $notify_num
* @property string $create_time
* @property string $update_time
* @property string $deleted_at
*/
class TradeOut extends Model
{
/**
* The table associated with the model.
*/
protected ?string $table = 'trade_out';
/**
* The attributes that are mass assignable.
*/
protected array $fillable = [];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['out_trade_id' => 'integer', 'org_id' => 'integer', 'merchant_id' => 'integer', 'trade_id' => 'integer', 'origin' => 'integer', 'notify_flag' => 'integer', 'notify_num' => 'integer'];
}