32 lines
525 B
PHP
32 lines
525 B
PHP
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class NhHealthCareSheet
|
|
*
|
|
* @property int $id
|
|
* @property string $sheet_id
|
|
* @property float $insurance_amount
|
|
* @property Carbon $created_at
|
|
* @property Carbon $updated_at
|
|
*
|
|
* @package App\Models
|
|
*/
|
|
class NhTmpHealthCareSheet extends Model
|
|
{
|
|
protected $table = 'nh_tmp_health_care_sheets';
|
|
|
|
protected $fillable = [
|
|
'sheet_id',
|
|
'insurance_amount',
|
|
];
|
|
}
|