29 lines
580 B
PHP
29 lines
580 B
PHP
|
|
<?php
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
class PatResultModel extends BaseModel {
|
||
|
|
protected $table = 'patres';
|
||
|
|
protected $primaryKey = 'ResultID';
|
||
|
|
protected $allowedFields = [
|
||
|
|
'SiteID',
|
||
|
|
'OrderID',
|
||
|
|
'InternalSID',
|
||
|
|
'SID',
|
||
|
|
'SampleID',
|
||
|
|
'TestSiteID',
|
||
|
|
'TestSiteCode',
|
||
|
|
'AspCnt',
|
||
|
|
'Result',
|
||
|
|
'SampleType',
|
||
|
|
'ResultDateTime',
|
||
|
|
'WorkstationID',
|
||
|
|
'EquipmentID',
|
||
|
|
'RefNumID',
|
||
|
|
'RefTxtID',
|
||
|
|
'CreateDate',
|
||
|
|
'EndDate',
|
||
|
|
'ArchiveDate',
|
||
|
|
'DelDate'
|
||
|
|
];
|
||
|
|
}
|