54 lines
1.2 KiB
PHP
54 lines
1.2 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\Test;
|
||
|
|
|
||
|
|
use App\Models\BaseModel;
|
||
|
|
|
||
|
|
class TestMapDetailModel extends BaseModel {
|
||
|
|
protected $table = 'testmapdetail';
|
||
|
|
protected $primaryKey = 'TestMapDetailID';
|
||
|
|
protected $allowedFields = [
|
||
|
|
'TestMapID',
|
||
|
|
'HostTestCode',
|
||
|
|
'HostTestName',
|
||
|
|
'ConDefID',
|
||
|
|
'ClientTestCode',
|
||
|
|
'ClientTestName',
|
||
|
|
'CreateDate',
|
||
|
|
'EndDate'
|
||
|
|
];
|
||
|
|
|
||
|
|
protected $useTimestamps = true;
|
||
|
|
protected $createdField = 'CreateDate';
|
||
|
|
protected $updatedField = '';
|
||
|
|
protected $useSoftDeletes = true;
|
||
|
|
protected $deletedField = "EndDate";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get all details for a test map
|
||
|
|
*/
|
||
|
|
public function getDetailsByTestMap($testMapID) {
|
||
|
|
return $this->where('TestMapID', $testMapID)
|
||
|
|
->where('EndDate IS NULL')
|
||
|
|
->findAll();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get test map detail by host test code
|
||
|
|
*/
|
||
|
|
public function getDetailsByHostCode($hostTestCode) {
|
||
|
|
return $this->where('HostTestCode', $hostTestCode)
|
||
|
|
->where('EndDate IS NULL')
|
||
|
|
->findAll();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get test map detail by client test code
|
||
|
|
*/
|
||
|
|
public function getDetailsByClientCode($clientTestCode) {
|
||
|
|
return $this->where('ClientTestCode', $clientTestCode)
|
||
|
|
->where('EndDate IS NULL')
|
||
|
|
->findAll();
|
||
|
|
}
|
||
|
|
}
|