19 lines
573 B
PHP
19 lines
573 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\Test;
|
||
|
|
|
||
|
|
use App\Models\BaseModel;
|
||
|
|
|
||
|
|
class TestDefSiteModel extends BaseModel {
|
||
|
|
protected $table = 'testdefsite';
|
||
|
|
protected $primaryKey = 'TestSiteID';
|
||
|
|
protected $allowedFields = ['SiteID', 'TestSiteCode', 'TestSiteName', 'Type', 'Description', 'SeqScr', 'SeqRpt', 'IndentLeft',
|
||
|
|
'VisibleScr', 'VisibleRpt', 'CountStat', 'CreateDate', 'EndDate'];
|
||
|
|
|
||
|
|
protected $useTimestamps = true;
|
||
|
|
protected $createdField = 'CreateDate';
|
||
|
|
protected $updatedField = '';
|
||
|
|
protected $useSoftDeletes = true;
|
||
|
|
protected $deletedField = "EndDate";
|
||
|
|
|
||
|
|
}
|