dbmsv3 init...1
This commit is contained in:
parent
c15f8d1dfb
commit
7a225df24d
File diff suppressed because one or more lines are too long
@ -42,6 +42,7 @@ class ServerService extends EquipmentService implements ServerInterface
|
|||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
"type",
|
"type",
|
||||||
|
"title",
|
||||||
"os",
|
"os",
|
||||||
"status"
|
"status"
|
||||||
];
|
];
|
||||||
@ -67,9 +68,9 @@ class ServerService extends EquipmentService implements ServerInterface
|
|||||||
return [
|
return [
|
||||||
'clientinfo_uid',
|
'clientinfo_uid',
|
||||||
'serviceinfo_uid',
|
'serviceinfo_uid',
|
||||||
|
'title',
|
||||||
'type',
|
'type',
|
||||||
"os",
|
"os",
|
||||||
"chassis",
|
|
||||||
'status'
|
'status'
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -59,4 +59,11 @@ class MyLogService extends CommonService
|
|||||||
$formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo();
|
$formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo();
|
||||||
return parent::create_process($formDatas);
|
return parent::create_process($formDatas);
|
||||||
}
|
}
|
||||||
|
//List 검색용
|
||||||
|
//OrderBy 처리
|
||||||
|
final public function setOrderBy(mixed $field = null, mixed $value = null): void
|
||||||
|
{
|
||||||
|
$this->getModel()->orderBy('uid DESC');
|
||||||
|
parent::setOrderBy($field, $value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user