41 lines
1018 B
PHP
41 lines
1018 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
/**
|
|
* @property int $rate_id
|
|
* @property int $account_type
|
|
* @property int $belong_id
|
|
* @property int $merchant_channel_id
|
|
* @property int $channel_id
|
|
* @property string $mode
|
|
* @property string $period
|
|
* @property string $card_type
|
|
* @property string $rate
|
|
* @property string $rate_2
|
|
* @property string $min_fee
|
|
* @property string $max_fee
|
|
* @property string $deleted_at
|
|
* @property string $create_time
|
|
* @property string $update_time
|
|
*/
|
|
class ChannelRate extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'channel_rate';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['rate_id' => 'integer', 'account_type' => 'integer', 'belong_id' => 'integer', 'merchant_channel_id' => 'integer', 'channel_id' => 'integer'];
|
|
}
|