46 lines
1.2 KiB
PHP
46 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
/**
|
|
* @property int $change_id
|
|
* @property int $org_id
|
|
* @property int $merchant_id
|
|
* @property int $channel_id
|
|
* @property int $income_id
|
|
* @property string $change_no
|
|
* @property string $change_type
|
|
* @property int $status
|
|
* @property string $reject_msg
|
|
* @property string $settle_period
|
|
* @property string $base
|
|
* @property string $legal
|
|
* @property string $attach
|
|
* @property string $rates
|
|
* @property string $license
|
|
* @property string $account
|
|
* @property string $contract_id
|
|
* @property string $deleted_at
|
|
* @property string $create_time
|
|
* @property string $update_time
|
|
*/
|
|
class MerchantChange extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'merchant_change';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['change_id' => 'integer', 'org_id' => 'integer', 'merchant_id' => 'integer', 'channel_id' => 'integer', 'income_id' => 'integer', 'status' => 'integer'];
|
|
}
|