20 lines
536 B
PHP
20 lines
536 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\RefRange;
|
||
|
|
|
||
|
|
use App\Models\BaseModel;
|
||
|
|
|
||
|
|
class RefNumModel extends BaseModel {
|
||
|
|
protected $table = 'refnum';
|
||
|
|
protected $primaryKey = 'RefNumID';
|
||
|
|
protected $allowedFields = ['SiteID', 'TestSiteID', 'SpcType', 'Sex', 'AgeStart', 'AgeEnd',
|
||
|
|
'CriticalLow', 'Low', 'High', 'CriticalHigh',
|
||
|
|
'CreateDate', 'EndDate'];
|
||
|
|
|
||
|
|
protected $useTimestamps = true;
|
||
|
|
protected $createdField = 'CreateDate';
|
||
|
|
protected $updatedField = '';
|
||
|
|
protected $useSoftDeletes = true;
|
||
|
|
protected $deletedField = "EndDate";
|
||
|
|
|
||
|
|
}
|