40 lines
678 B
PHP
40 lines
678 B
PHP
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class NhAct
|
|
*
|
|
* @property int $id
|
|
* @property int $nh_network_config_id
|
|
* @property string $name
|
|
* @property string $billing_type
|
|
* @property string $authorization_type
|
|
* @property Carbon $created_at
|
|
* @property Carbon $updated_at
|
|
*
|
|
* @package App\Models
|
|
*/
|
|
class NhAct extends Model
|
|
{
|
|
protected $table = 'nh_acts';
|
|
|
|
protected $casts = [
|
|
'nh_network_config_id' => 'int'
|
|
];
|
|
|
|
protected $fillable = [
|
|
'nh_network_config_id',
|
|
'name',
|
|
'billing_type',
|
|
'authorization_type'
|
|
];
|
|
}
|