dbmsv3 init...1

This commit is contained in:
choi.jh 2025-10-31 12:42:55 +09:00
parent c15f8d1dfb
commit 7a225df24d
3 changed files with 47 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@ -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'
]; ];
} }

View File

@ -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);
}
} }