server/app/Model/MerchantTerm.php

37 lines
916 B
PHP

<?php
declare(strict_types=1);
namespace App\Model;
/**
* @property int $term_id
* @property int $org_id
* @property int $merchant_id
* @property int $channel_id
* @property int $merchant_channel_id
* @property string $term_no
* @property string $config
* @property int $status
* @property string $create_time
* @property string $update_time
* @property string $deleted_at
*/
class MerchantTerm extends Model
{
/**
* The table associated with the model.
*/
protected ?string $table = 'merchant_term';
/**
* The attributes that are mass assignable.
*/
protected array $fillable = [];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['term_id' => 'integer', 'org_id' => 'integer', 'merchant_id' => 'integer', 'channel_id' => 'integer', 'merchant_channel_id' => 'integer', 'status' => 'integer'];
}