dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-11 15:18:13 +09:00
parent f044e02480
commit dade48c612

View File

@ -38,8 +38,6 @@ class GearlistController extends DBMSController
$spec = $lineup_explode[0]; $spec = $lineup_explode[0];
$cpu = $entity->getCPUName(); $cpu = $entity->getCPUName();
$entity->all = $this->getServerService()->getCountByMode("all", $cpu, $spec); $entity->all = $this->getServerService()->getCountByMode("all", $cpu, $spec);
var_dump($entity);
exit;
$entity->use = $this->getServerService()->getCountByMode("use", $cpu, $spec); $entity->use = $this->getServerService()->getCountByMode("use", $cpu, $spec);
$entity->empty = $this->getServerService()->getCountByMode("empty", $cpu, $spec); $entity->empty = $this->getServerService()->getCountByMode("empty", $cpu, $spec);
$entity->format = $this->getServerService()->getCountByMode("format", $cpu, $spec); $entity->format = $this->getServerService()->getCountByMode("format", $cpu, $spec);
@ -55,6 +53,8 @@ class GearlistController extends DBMSController
$entities = []; $entities = [];
foreach ($gearlistEntities as $idx => $gearlistEntity) { foreach ($gearlistEntities as $idx => $gearlistEntity) {
$entities[] = $this->setMode($gearlistEntity); $entities[] = $this->setMode($gearlistEntity);
var_dump($entities);
exit;
} }
$this->entities = $entities; $this->entities = $entities;
return $this->render(__FUNCTION__); return $this->render(__FUNCTION__);