From a3495e708c37a3ff96211cbd5933a205d9b0751e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Mon, 26 May 2025 16:04:13 +0900 Subject: [PATCH] dbms_init...1 --- .../Admin/Equipment/DefenceController.php | 2 +- .../Admin/Equipment/IpController.php | 2 +- .../Admin/Equipment/Link/LinkController.php | 2 +- .../Admin/Equipment/Part/PartController.php | 2 +- .../Admin/Equipment/ServerController.php | 2 +- .../Admin/Equipment/SoftwareController.php | 2 +- app/Controllers/CommonController.php | 22 +- app/Database/dbms_init.sql | 635 +- app/Database/erp2_1.vuerd.json | 8455 +++++++++++++++++ app/Helpers/CommonHelper.php | 7 + app/Language/en/Equipment/Part/Cpu.php | 1 + app/Language/en/Equipment/Part/Disk.php | 1 + app/Language/en/Equipment/Part/Ram.php | 1 + app/Models/Equipment/DefenceModel.php | 4 + app/Models/Equipment/IpModel.php | 2 + app/Models/Equipment/Link/CpuModel.php | 2 +- app/Models/Equipment/Link/DiskModel.php | 2 +- app/Models/Equipment/Link/RamModel.php | 2 +- app/Models/Equipment/Part/PartModel.php | 4 + app/Models/Equipment/ServerModel.php | 4 + app/Models/Equipment/SoftwareModel.php | 4 + app/Services/Equipment/DefenceService.php | 1 + app/Services/Equipment/IpService.php | 1 + app/Services/Equipment/Part/PartService.php | 1 + app/Services/Equipment/ServerService.php | 1 + app/Services/Equipment/SoftwareService.php | 1 + app/Views/templates/common/modal_iframe.php | 6 +- 27 files changed, 8843 insertions(+), 326 deletions(-) create mode 100644 app/Database/erp2_1.vuerd.json diff --git a/app/Controllers/Admin/Equipment/DefenceController.php b/app/Controllers/Admin/Equipment/DefenceController.php index 416231e..481c013 100644 --- a/app/Controllers/Admin/Equipment/DefenceController.php +++ b/app/Controllers/Admin/Equipment/DefenceController.php @@ -46,7 +46,7 @@ class DefenceController extends EquipmentController protected function index_process(): array { $fields = [ - 'fields' => ['type', 'ip', 'accountid', 'domain', 'status'], + 'fields' => ['type', 'ip', 'price', 'accountid', 'domain', 'status'], ]; $this->init('index', $fields); return parent::index_process(); diff --git a/app/Controllers/Admin/Equipment/IpController.php b/app/Controllers/Admin/Equipment/IpController.php index 584a9b6..768a451 100644 --- a/app/Controllers/Admin/Equipment/IpController.php +++ b/app/Controllers/Admin/Equipment/IpController.php @@ -45,7 +45,7 @@ class IpController extends EquipmentController protected function index_process(): array { $fields = [ - 'fields' => ['lineinfo_uid', 'ip', 'status', 'updated_at'], + 'fields' => ['lineinfo_uid', 'ip', 'price', 'status', 'updated_at', 'created_at'], ]; $this->init('index', $fields); return parent::index_process(); diff --git a/app/Controllers/Admin/Equipment/Link/LinkController.php b/app/Controllers/Admin/Equipment/Link/LinkController.php index a109fab..3998194 100644 --- a/app/Controllers/Admin/Equipment/Link/LinkController.php +++ b/app/Controllers/Admin/Equipment/Link/LinkController.php @@ -20,7 +20,7 @@ abstract class LinkController extends EquipmentController protected function setOrderByForList() { //OrderBy 처리 - $this->getService()->getModel()->orderBy('serviceinfo_uid', 'ASC', false); + $this->getService()->getModel()->orderBy('serverinfo_uid', 'ASC', false); parent::setOrderByForList(); } diff --git a/app/Controllers/Admin/Equipment/Part/PartController.php b/app/Controllers/Admin/Equipment/Part/PartController.php index a5bb5c8..b9492d6 100644 --- a/app/Controllers/Admin/Equipment/Part/PartController.php +++ b/app/Controllers/Admin/Equipment/Part/PartController.php @@ -24,7 +24,7 @@ abstract class PartController extends EquipmentController protected function index_process(): array { $fields = [ - 'fields' => ['model', 'status'], + 'fields' => ['model', 'price', 'status'], ]; $this->init('index', $fields); return parent::index_process(); diff --git a/app/Controllers/Admin/Equipment/ServerController.php b/app/Controllers/Admin/Equipment/ServerController.php index a070989..d5acb20 100644 --- a/app/Controllers/Admin/Equipment/ServerController.php +++ b/app/Controllers/Admin/Equipment/ServerController.php @@ -65,7 +65,7 @@ class ServerController extends EquipmentController protected function index_process(): array { $fields = [ - 'fields' => ['code', 'type', 'model', 'CPU', 'RAM', 'DISK', "raid", 'status'], + 'fields' => ['code', 'type', 'model', 'price', 'CPU', 'RAM', 'DISK', "raid", 'status'], ]; $this->init('index', $fields); // $this->modal_type = 'modal_fetch_v2'; //기본은 modal_iframe임 diff --git a/app/Controllers/Admin/Equipment/SoftwareController.php b/app/Controllers/Admin/Equipment/SoftwareController.php index d3bd788..bf07eb7 100644 --- a/app/Controllers/Admin/Equipment/SoftwareController.php +++ b/app/Controllers/Admin/Equipment/SoftwareController.php @@ -39,7 +39,7 @@ class SoftwareController extends EquipmentController protected function index_process(): array { $fields = [ - 'fields' => ['type', 'model', 'status', 'description'], + 'fields' => ['type', 'model', 'price', 'status', 'description'], ]; $this->init('index', $fields); return parent::index_process(); diff --git a/app/Controllers/CommonController.php b/app/Controllers/CommonController.php index e49ceb2..23fc01b 100644 --- a/app/Controllers/CommonController.php +++ b/app/Controllers/CommonController.php @@ -161,25 +161,6 @@ abstract class CommonController extends BaseController protected function getResultPageByActon(string $action, string $message = MESSAGES["SUCCESS"]): RedirectResponse|string { switch ($action) { - // case 'create': - // $segments = $this->request->getUri()->getSegments(); - // if (!empty($segments)) { - // // 마지막 세그먼트 무조건 view로 교체 - // $segments[count($segments) - 1] = 'view'; - // } - // $redirectPath = '/' . implode('/', $segments); - // $result = redirect()->to($redirectPath . '/' . $this->entity->getPK()); - // // $result = view($this->view_path . 'view', ['viewDatas' => $this->getViewDatas()]);; - // break; - // case 'modify': - // $segments = $this->request->getUri()->getSegments(); - // if (!empty($segments)) { - // // 마지막 세그먼트 무조건 view로 교체 - // $segments[count($segments) - 2] = 'view'; - // } - // $result = redirect()->to('/' . implode('/', $segments)); - // // $result = view($this->view_path . 'view', ['viewDatas' => $this->getViewDatas()]);; - // break; case 'create': case 'modify': $result = $this->view($this->entity->getPK()); @@ -189,7 +170,7 @@ abstract class CommonController extends BaseController case 'login_form': case 'index': case 'view': - $this->getHelper()->setViewDatas($this->getViewDatas()); + // $this->getHelper()->setViewDatas($this->getViewDatas()); $result = view($this->view_path . $action, ['viewDatas' => $this->getViewDatas()]); break; default: @@ -228,6 +209,7 @@ abstract class CommonController extends BaseController //데이터 검증 $this->formDatas = $this->doValidate($this->action, $this->fields); $this->entity = $this->create_process(); + // dd($this->entity); $this->getService()->getModel()->transCommit(); $this->getMyLogService()->save($this->getService(), __FUNCTION__, $this->getMyAuth(), MESSAGES["SUCCESS"]); return $this->getResultPageByActon($this->action); diff --git a/app/Database/dbms_init.sql b/app/Database/dbms_init.sql index 5fc3dff..c316561 100644 --- a/app/Database/dbms_init.sql +++ b/app/Database/dbms_init.sql @@ -34,7 +34,7 @@ CREATE TABLE `accountinfo` ( PRIMARY KEY (`uid`), KEY `FK_clientinfo_TO_accountinfo` (`clientinfo_uid`), CONSTRAINT `FK_clientinfo_TO_accountinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='입출금계좌'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='예치금계좌'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -43,39 +43,9 @@ CREATE TABLE `accountinfo` ( LOCK TABLES `accountinfo` WRITE; /*!40000 ALTER TABLE `accountinfo` DISABLE KEYS */; -INSERT INTO `accountinfo` VALUES (2,1,'5월예치금','Test111',100000,'default','2025-05-22 05:31:14'),(4,1,'5월예치금출금','Test111',100000,'out','2025-05-22 05:35:47'); /*!40000 ALTER TABLE `accountinfo` ENABLE KEYS */; UNLOCK TABLES; --- --- Table structure for table `billinginfo` --- - -DROP TABLE IF EXISTS `billinginfo`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `billinginfo` ( - `uid` int(11) NOT NULL AUTO_INCREMENT, - `serviceinfo_uid` int(11) NOT NULL, - `issue_at` date NOT NULL, - `total_amount` int(11) NOT NULL DEFAULT 0, - `status` varchar(20) DEFAULT 'default', - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`uid`), - KEY `FK_serviceinfo_TO_billinginfo` (`serviceinfo_uid`), - CONSTRAINT `FK_serviceinfo_TO_billinginfo` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='청구서 정보'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `billinginfo` --- - -LOCK TABLES `billinginfo` WRITE; -/*!40000 ALTER TABLE `billinginfo` DISABLE KEYS */; -/*!40000 ALTER TABLE `billinginfo` ENABLE KEYS */; -UNLOCK TABLES; - -- -- Table structure for table `clientinfo` -- @@ -89,14 +59,14 @@ CREATE TABLE `clientinfo` ( `name` varchar(100) NOT NULL, `phone` varchar(50) DEFAULT NULL, `email` varchar(50) NOT NULL, - `account_balance` int(11) NOT NULL DEFAULT 0, + `account_balance` int(11) NOT NULL DEFAULT 0 COMMENT '예치금', `coupon_balance` int(11) NOT NULL DEFAULT 0 COMMENT '쿠폰수', `point_balance` int(11) NOT NULL DEFAULT 0 COMMENT '포인트', `status` varchar(20) NOT NULL DEFAULT 'default', `updated_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`uid`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='고객정보'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='고객정보'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -105,7 +75,6 @@ CREATE TABLE `clientinfo` ( LOCK TABLES `clientinfo` WRITE; /*!40000 ALTER TABLE `clientinfo` DISABLE KEYS */; -INSERT INTO `clientinfo` VALUES (1,'user','Test111','1111','test111@co.kr',5000000,0,0,'default','2025-05-22 05:35:47','2025-05-22 03:56:56'),(2,'user,vip','Test222','22222','test222@co.kr',0,95,0,'default','2025-05-22 05:37:00','2025-05-22 03:57:13'),(3,'user,vip,reseller','Test333','333333','test333@co.kr',0,0,25000,'default','2025-05-22 05:38:20','2025-05-22 03:57:34'); /*!40000 ALTER TABLE `clientinfo` ENABLE KEYS */; UNLOCK TABLES; @@ -126,7 +95,7 @@ CREATE TABLE `couponinfo` ( PRIMARY KEY (`uid`), KEY `FK_clientinfo_TO_couponinfo` (`clientinfo_uid`), CONSTRAINT `FK_clientinfo_TO_couponinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='쿠폰정보'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='쿠폰정보'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -135,7 +104,6 @@ CREATE TABLE `couponinfo` ( LOCK TABLES `couponinfo` WRITE; /*!40000 ALTER TABLE `couponinfo` DISABLE KEYS */; -INSERT INTO `couponinfo` VALUES (1,2,'5월쿠폰추가',100,'default','2025-05-22 05:36:33'),(2,2,'5월쿠폰사용',5,'out','2025-05-22 05:37:00'); /*!40000 ALTER TABLE `couponinfo` ENABLE KEYS */; UNLOCK TABLES; @@ -149,12 +117,14 @@ DROP TABLE IF EXISTS `cpuinfo`; CREATE TABLE `cpuinfo` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `model` varchar(50) NOT NULL, + `price_type` varchar(20) NOT NULL DEFAULT 'month', + `price` int(11) NOT NULL DEFAULT 0, `status` varchar(20) NOT NULL DEFAULT 'default', `updated_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`uid`), UNIQUE KEY `UQ_model` (`model`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='CPU 정보'; +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='CPU 정보'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -163,45 +133,10 @@ CREATE TABLE `cpuinfo` ( LOCK TABLES `cpuinfo` WRITE; /*!40000 ALTER TABLE `cpuinfo` DISABLE KEYS */; -INSERT INTO `cpuinfo` VALUES (1,'Xeon(R) CPU E5-2690 v2 @3.00GHz','default',NULL,'2025-05-22 05:44:07'),(2,'Xeon(R) CPU E5-2690 v4 @ 2.60GHz','default',NULL,'2025-05-22 05:44:14'); +INSERT INTO `cpuinfo` VALUES (2,'Xeon(R) CPU E5-2690 v2 @3.00GHz','month',50000,'default',NULL,'2025-05-26 04:21:21'),(3,'Xeon(R) CPU E5-2690 v4 @ 2.60GHz','month',70000,'default',NULL,'2025-05-26 04:21:46'); /*!40000 ALTER TABLE `cpuinfo` ENABLE KEYS */; UNLOCK TABLES; --- --- Table structure for table `cpuinfo_link` --- - -DROP TABLE IF EXISTS `cpuinfo_link`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cpuinfo_link` ( - `uid` int(11) NOT NULL AUTO_INCREMENT, - `serviceinfo_uid` int(11) DEFAULT NULL, - `serverinfo_uid` int(11) NOT NULL, - `cpuinfo_uid` int(11) NOT NULL, - `billing_type` varchar(20) NOT NULL DEFAULT 'month', - `amount` int(11) DEFAULT 0, - `updated_at` timestamp NULL DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`uid`), - KEY `FK_serviceinfo_TO_cpuinfo_link` (`serviceinfo_uid`), - KEY `FK_cpuinfo_TO_cpuinfo_link` (`cpuinfo_uid`), - KEY `FK_serverinfo_TO_cpuinfo_link` (`serverinfo_uid`), - CONSTRAINT `FK_cpuinfo_TO_cpuinfo_link` FOREIGN KEY (`cpuinfo_uid`) REFERENCES `cpuinfo` (`uid`), - CONSTRAINT `FK_serverinfo_TO_cpuinfo_link` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`), - CONSTRAINT `FK_serviceinfo_TO_cpuinfo_link` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서비스_CPU 연결'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `cpuinfo_link` --- - -LOCK TABLES `cpuinfo_link` WRITE; -/*!40000 ALTER TABLE `cpuinfo_link` DISABLE KEYS */; -/*!40000 ALTER TABLE `cpuinfo_link` ENABLE KEYS */; -UNLOCK TABLES; - -- -- Table structure for table `defenceinfo` -- @@ -213,6 +148,8 @@ CREATE TABLE `defenceinfo` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(20) NOT NULL DEFAULT 'VPC-CS', `ip` varchar(50) DEFAULT NULL, + `price_type` varchar(20) NOT NULL DEFAULT 'month', + `price` int(11) NOT NULL DEFAULT 0, `accountid` varchar(50) DEFAULT NULL, `domain` varchar(100) DEFAULT NULL, `description` text DEFAULT NULL, @@ -221,7 +158,7 @@ CREATE TABLE `defenceinfo` ( `created_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`uid`), UNIQUE KEY `UQ_uid` (`uid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='방어정보'; +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='방어정보'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -230,44 +167,10 @@ CREATE TABLE `defenceinfo` ( LOCK TABLES `defenceinfo` WRITE; /*!40000 ALTER TABLE `defenceinfo` DISABLE KEYS */; +INSERT INTO `defenceinfo` VALUES (1,'VPC-CS','13.23.4.2','month',100000,'VPC-X21','','','default',NULL,'2025-05-26 04:33:17'),(2,'KT-CS','21.238.234.34','month',100000,'KT-X23','','','default',NULL,'2025-05-26 04:34:17'); /*!40000 ALTER TABLE `defenceinfo` ENABLE KEYS */; UNLOCK TABLES; --- --- Table structure for table `defenceinfo_link` --- - -DROP TABLE IF EXISTS `defenceinfo_link`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `defenceinfo_link` ( - `uid` int(11) NOT NULL AUTO_INCREMENT, - `serviceinfo_uid` int(11) NOT NULL, - `serverinfo_uid` int(11) NOT NULL, - `defenceinfo_uid` int(11) NOT NULL, - `billing_type` varchar(20) NOT NULL DEFAULT 'month', - `amount` int(11) NOT NULL DEFAULT 0, - `updated_at` timestamp NULL DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`uid`), - KEY `FK_serviceinfo_TO_defenceinfo_link` (`serviceinfo_uid`), - KEY `FK_defenceinfo_TO_defenceinfo_link` (`defenceinfo_uid`), - KEY `FK_serverinfo_TO_defenceinfo_link` (`serverinfo_uid`), - CONSTRAINT `FK_defenceinfo_TO_defenceinfo_link` FOREIGN KEY (`defenceinfo_uid`) REFERENCES `defenceinfo` (`uid`), - CONSTRAINT `FK_serverinfo_TO_defenceinfo_link` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`), - CONSTRAINT `FK_serviceinfo_TO_defenceinfo_link` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서비스-방어 연결'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `defenceinfo_link` --- - -LOCK TABLES `defenceinfo_link` WRITE; -/*!40000 ALTER TABLE `defenceinfo_link` DISABLE KEYS */; -/*!40000 ALTER TABLE `defenceinfo_link` ENABLE KEYS */; -UNLOCK TABLES; - -- -- Table structure for table `diskinfo` -- @@ -278,12 +181,14 @@ DROP TABLE IF EXISTS `diskinfo`; CREATE TABLE `diskinfo` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `model` varchar(50) NOT NULL, + `price_type` varchar(20) NOT NULL DEFAULT 'month', + `price` int(11) NOT NULL DEFAULT 0, `status` varchar(20) NOT NULL DEFAULT 'default', `updated_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`uid`), UNIQUE KEY `UQ_model` (`model`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='DISK 정보'; +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='DISK 정보'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -292,43 +197,37 @@ CREATE TABLE `diskinfo` ( LOCK TABLES `diskinfo` WRITE; /*!40000 ALTER TABLE `diskinfo` DISABLE KEYS */; -INSERT INTO `diskinfo` VALUES (1,'ECC 2G','default',NULL,'2025-05-22 05:44:28'),(2,'ECC 4G','default',NULL,'2025-05-22 05:44:36'),(3,'ECC 8G','default',NULL,'2025-05-22 05:44:43'),(4,'ECC 16G','default','2025-05-22 05:44:57','2025-05-22 05:44:52'),(5,'ECC 32G','default',NULL,'2025-05-22 05:45:05'); +INSERT INTO `diskinfo` VALUES (1,'ECC 2G','month',5000,'default',NULL,'2025-05-26 04:22:54'),(2,'ECC 4G','month',10000,'default',NULL,'2025-05-26 04:23:09'),(3,'ECC 8G','month',20000,'default',NULL,'2025-05-26 04:23:37'); /*!40000 ALTER TABLE `diskinfo` ENABLE KEYS */; UNLOCK TABLES; -- --- Table structure for table `diskinfo_link` +-- Table structure for table `domaininfo` -- -DROP TABLE IF EXISTS `diskinfo_link`; +DROP TABLE IF EXISTS `domaininfo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; -CREATE TABLE `diskinfo_link` ( +CREATE TABLE `domaininfo` ( `uid` int(11) NOT NULL AUTO_INCREMENT, - `serviceinfo_uid` int(11) DEFAULT NULL, - `serverinfo_uid` int(11) NOT NULL, - `diskinfo_uid` int(11) NOT NULL, - `billing_type` varchar(20) NOT NULL DEFAULT 'month', - `amount` int(11) DEFAULT 0, + `domain` varchar(20) NOT NULL, + `price_type` varchar(20) NOT NULL DEFAULT 'month', + `price` int(11) NOT NULL DEFAULT 0, + `status` varchar(20) NOT NULL DEFAULT 'default', `updated_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`uid`), - KEY `FK_serviceinfo_TO_diskinfo_link` (`serviceinfo_uid`), - KEY `FK_diskinfo_TO_diskinfo_link` (`diskinfo_uid`), - KEY `FK_serverinfo_TO_diskinfo_link` (`serverinfo_uid`), - CONSTRAINT `FK_diskinfo_TO_diskinfo_link` FOREIGN KEY (`diskinfo_uid`) REFERENCES `diskinfo` (`uid`), - CONSTRAINT `FK_serverinfo_TO_diskinfo_link` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`), - CONSTRAINT `FK_serviceinfo_TO_diskinfo_link` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서비스_DISK 연결'; + UNIQUE KEY `UQ_domain` (`domain`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='도메인 정보'; /*!40101 SET character_set_client = @saved_cs_client */; -- --- Dumping data for table `diskinfo_link` +-- Dumping data for table `domaininfo` -- -LOCK TABLES `diskinfo_link` WRITE; -/*!40000 ALTER TABLE `diskinfo_link` DISABLE KEYS */; -/*!40000 ALTER TABLE `diskinfo_link` ENABLE KEYS */; +LOCK TABLES `domaininfo` WRITE; +/*!40000 ALTER TABLE `domaininfo` DISABLE KEYS */; +/*!40000 ALTER TABLE `domaininfo` ENABLE KEYS */; UNLOCK TABLES; -- @@ -341,7 +240,9 @@ DROP TABLE IF EXISTS `ipinfo`; CREATE TABLE `ipinfo` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `lineinfo_uid` int(11) NOT NULL, + `price_type` varchar(20) NOT NULL DEFAULT 'month', `ip` char(16) NOT NULL, + `price` int(11) NOT NULL DEFAULT 50000, `status` varchar(20) NOT NULL DEFAULT 'default', `updated_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), @@ -358,43 +259,10 @@ CREATE TABLE `ipinfo` ( LOCK TABLES `ipinfo` WRITE; /*!40000 ALTER TABLE `ipinfo` DISABLE KEYS */; -INSERT INTO `ipinfo` VALUES (1,1,'27.125.207.128','default',NULL,'2025-05-22 05:39:55'),(2,1,'27.125.207.129','default',NULL,'2025-05-22 05:39:55'),(3,1,'27.125.207.130','default',NULL,'2025-05-22 05:39:55'),(4,1,'27.125.207.131','default',NULL,'2025-05-22 05:39:55'),(5,1,'27.125.207.132','default',NULL,'2025-05-22 05:39:55'),(6,1,'27.125.207.133','default',NULL,'2025-05-22 05:39:55'),(7,1,'27.125.207.134','default',NULL,'2025-05-22 05:39:55'),(8,1,'27.125.207.135','default',NULL,'2025-05-22 05:39:55'),(9,1,'27.125.207.136','default',NULL,'2025-05-22 05:39:55'),(10,1,'27.125.207.137','default',NULL,'2025-05-22 05:39:55'),(11,1,'27.125.207.138','default',NULL,'2025-05-22 05:39:55'),(12,1,'27.125.207.139','default',NULL,'2025-05-22 05:39:55'),(13,1,'27.125.207.140','default',NULL,'2025-05-22 05:39:55'),(14,1,'27.125.207.141','default',NULL,'2025-05-22 05:39:55'),(15,1,'27.125.207.142','default',NULL,'2025-05-22 05:39:55'),(16,1,'27.125.207.143','default',NULL,'2025-05-22 05:39:55'),(17,1,'27.125.207.144','default',NULL,'2025-05-22 05:39:55'),(18,1,'27.125.207.145','default',NULL,'2025-05-22 05:39:55'),(19,1,'27.125.207.146','default',NULL,'2025-05-22 05:39:55'),(20,1,'27.125.207.147','default',NULL,'2025-05-22 05:39:55'),(21,1,'27.125.207.148','default',NULL,'2025-05-22 05:39:55'),(22,1,'27.125.207.149','default',NULL,'2025-05-22 05:39:55'),(23,1,'27.125.207.150','default',NULL,'2025-05-22 05:39:55'),(24,1,'27.125.207.151','default',NULL,'2025-05-22 05:39:55'),(25,1,'27.125.207.152','default',NULL,'2025-05-22 05:39:55'),(26,1,'27.125.207.153','default',NULL,'2025-05-22 05:39:55'),(27,1,'27.125.207.154','default',NULL,'2025-05-22 05:39:55'),(28,1,'27.125.207.155','default',NULL,'2025-05-22 05:39:55'),(29,1,'27.125.207.156','default',NULL,'2025-05-22 05:39:55'),(30,1,'27.125.207.157','default',NULL,'2025-05-22 05:39:55'),(31,1,'27.125.207.158','default',NULL,'2025-05-22 05:39:55'),(32,1,'27.125.207.159','default',NULL,'2025-05-22 05:39:55'),(33,1,'27.125.207.160','default',NULL,'2025-05-22 05:39:55'),(34,1,'27.125.207.161','default',NULL,'2025-05-22 05:39:55'),(35,1,'27.125.207.162','default',NULL,'2025-05-22 05:39:55'),(36,1,'27.125.207.163','default',NULL,'2025-05-22 05:39:55'),(37,1,'27.125.207.164','default',NULL,'2025-05-22 05:39:55'),(38,1,'27.125.207.165','default',NULL,'2025-05-22 05:39:55'),(39,1,'27.125.207.166','default',NULL,'2025-05-22 05:39:55'),(40,1,'27.125.207.167','default',NULL,'2025-05-22 05:39:55'),(41,1,'27.125.207.168','default',NULL,'2025-05-22 05:39:55'),(42,1,'27.125.207.169','default',NULL,'2025-05-22 05:39:55'),(43,1,'27.125.207.170','default',NULL,'2025-05-22 05:39:55'),(44,1,'27.125.207.171','default',NULL,'2025-05-22 05:39:55'),(45,1,'27.125.207.172','default',NULL,'2025-05-22 05:39:55'),(46,1,'27.125.207.173','default',NULL,'2025-05-22 05:39:55'),(47,1,'27.125.207.174','default',NULL,'2025-05-22 05:39:55'),(48,1,'27.125.207.175','default',NULL,'2025-05-22 05:39:55'),(49,1,'27.125.207.176','default',NULL,'2025-05-22 05:39:55'),(50,1,'27.125.207.177','default',NULL,'2025-05-22 05:39:55'),(51,1,'27.125.207.178','default',NULL,'2025-05-22 05:39:55'),(52,1,'27.125.207.179','default',NULL,'2025-05-22 05:39:55'),(53,1,'27.125.207.180','default',NULL,'2025-05-22 05:39:55'),(54,1,'27.125.207.181','default',NULL,'2025-05-22 05:39:55'),(55,1,'27.125.207.182','default',NULL,'2025-05-22 05:39:55'),(56,1,'27.125.207.183','default',NULL,'2025-05-22 05:39:55'),(57,1,'27.125.207.184','default',NULL,'2025-05-22 05:39:55'),(58,1,'27.125.207.185','default',NULL,'2025-05-22 05:39:55'),(59,1,'27.125.207.186','default',NULL,'2025-05-22 05:39:55'),(60,1,'27.125.207.187','default',NULL,'2025-05-22 05:39:55'),(61,1,'27.125.207.188','default',NULL,'2025-05-22 05:39:55'),(62,1,'27.125.207.189','default',NULL,'2025-05-22 05:39:55'),(63,1,'27.125.207.190','default',NULL,'2025-05-22 05:39:55'),(64,1,'27.125.207.191','default',NULL,'2025-05-22 05:39:55'),(65,1,'27.125.207.192','default',NULL,'2025-05-22 05:39:55'),(66,1,'27.125.207.193','default',NULL,'2025-05-22 05:39:55'),(67,1,'27.125.207.194','default',NULL,'2025-05-22 05:39:55'),(68,1,'27.125.207.195','default',NULL,'2025-05-22 05:39:55'),(69,1,'27.125.207.196','default',NULL,'2025-05-22 05:39:55'),(70,1,'27.125.207.197','default',NULL,'2025-05-22 05:39:55'),(71,1,'27.125.207.198','default',NULL,'2025-05-22 05:39:55'),(72,1,'27.125.207.199','default',NULL,'2025-05-22 05:39:55'),(73,1,'27.125.207.200','default',NULL,'2025-05-22 05:39:55'),(74,1,'27.125.207.201','default',NULL,'2025-05-22 05:39:55'),(75,1,'27.125.207.202','default',NULL,'2025-05-22 05:39:55'),(76,1,'27.125.207.203','default',NULL,'2025-05-22 05:39:55'),(77,1,'27.125.207.204','default',NULL,'2025-05-22 05:39:55'),(78,1,'27.125.207.205','default',NULL,'2025-05-22 05:39:55'),(79,1,'27.125.207.206','default',NULL,'2025-05-22 05:39:55'),(80,1,'27.125.207.207','default',NULL,'2025-05-22 05:39:55'),(81,1,'27.125.207.208','default',NULL,'2025-05-22 05:39:55'),(82,1,'27.125.207.209','default',NULL,'2025-05-22 05:39:55'),(83,1,'27.125.207.210','default',NULL,'2025-05-22 05:39:55'),(84,1,'27.125.207.211','default',NULL,'2025-05-22 05:39:55'),(85,1,'27.125.207.212','default',NULL,'2025-05-22 05:39:56'),(86,1,'27.125.207.213','default',NULL,'2025-05-22 05:39:56'),(87,1,'27.125.207.214','default',NULL,'2025-05-22 05:39:56'),(88,1,'27.125.207.215','default',NULL,'2025-05-22 05:39:56'),(89,1,'27.125.207.216','default',NULL,'2025-05-22 05:39:56'),(90,1,'27.125.207.217','default',NULL,'2025-05-22 05:39:56'),(91,1,'27.125.207.218','default',NULL,'2025-05-22 05:39:56'),(92,1,'27.125.207.219','default',NULL,'2025-05-22 05:39:56'),(93,1,'27.125.207.220','default',NULL,'2025-05-22 05:39:56'),(94,1,'27.125.207.221','default',NULL,'2025-05-22 05:39:56'),(95,1,'27.125.207.222','default',NULL,'2025-05-22 05:39:56'),(96,1,'27.125.207.223','default',NULL,'2025-05-22 05:39:56'),(97,1,'27.125.207.224','default',NULL,'2025-05-22 05:39:56'),(98,1,'27.125.207.225','default',NULL,'2025-05-22 05:39:56'),(99,1,'27.125.207.226','default',NULL,'2025-05-22 05:39:56'),(100,1,'27.125.207.227','default',NULL,'2025-05-22 05:39:56'),(101,1,'27.125.207.228','default',NULL,'2025-05-22 05:39:56'),(102,1,'27.125.207.229','default',NULL,'2025-05-22 05:39:56'),(103,1,'27.125.207.230','default',NULL,'2025-05-22 05:39:56'),(104,1,'27.125.207.231','default',NULL,'2025-05-22 05:39:56'),(105,1,'27.125.207.232','default',NULL,'2025-05-22 05:39:56'),(106,1,'27.125.207.233','default',NULL,'2025-05-22 05:39:56'),(107,1,'27.125.207.234','default',NULL,'2025-05-22 05:39:56'),(108,1,'27.125.207.235','default',NULL,'2025-05-22 05:39:56'),(109,1,'27.125.207.236','default',NULL,'2025-05-22 05:39:56'),(110,1,'27.125.207.237','default',NULL,'2025-05-22 05:39:56'),(111,1,'27.125.207.238','default',NULL,'2025-05-22 05:39:56'),(112,1,'27.125.207.239','default',NULL,'2025-05-22 05:39:56'),(113,1,'27.125.207.240','default',NULL,'2025-05-22 05:39:56'),(114,1,'27.125.207.241','default',NULL,'2025-05-22 05:39:56'),(115,1,'27.125.207.242','default',NULL,'2025-05-22 05:39:56'),(116,1,'27.125.207.243','default',NULL,'2025-05-22 05:39:56'),(117,1,'27.125.207.244','default',NULL,'2025-05-22 05:39:56'),(118,1,'27.125.207.245','default',NULL,'2025-05-22 05:39:56'),(119,1,'27.125.207.246','default',NULL,'2025-05-22 05:39:56'),(120,1,'27.125.207.247','default',NULL,'2025-05-22 05:39:56'),(121,1,'27.125.207.248','default',NULL,'2025-05-22 05:39:56'),(122,1,'27.125.207.249','default',NULL,'2025-05-22 05:39:56'),(123,1,'27.125.207.250','default',NULL,'2025-05-22 05:39:56'),(124,1,'27.125.207.251','default',NULL,'2025-05-22 05:39:56'),(125,1,'27.125.207.252','default',NULL,'2025-05-22 05:39:56'),(126,1,'27.125.207.253','default',NULL,'2025-05-22 05:39:56'),(127,1,'27.125.207.254','default',NULL,'2025-05-22 05:39:56'),(128,1,'27.125.207.255','default',NULL,'2025-05-22 05:39:56'); +INSERT INTO `ipinfo` VALUES (1,1,'month','27.125.207.128',50000,'default',NULL,'2025-05-26 03:23:42'),(2,1,'month','27.125.207.129',50000,'default',NULL,'2025-05-26 03:23:42'),(3,1,'month','27.125.207.130',50000,'default',NULL,'2025-05-26 03:23:42'),(4,1,'month','27.125.207.131',50000,'default',NULL,'2025-05-26 03:23:42'),(5,1,'month','27.125.207.132',50000,'default',NULL,'2025-05-26 03:23:42'),(6,1,'month','27.125.207.133',50000,'default',NULL,'2025-05-26 03:23:42'),(7,1,'month','27.125.207.134',50000,'default',NULL,'2025-05-26 03:23:42'),(8,1,'month','27.125.207.135',50000,'default',NULL,'2025-05-26 03:23:42'),(9,1,'month','27.125.207.136',50000,'default',NULL,'2025-05-26 03:23:42'),(10,1,'month','27.125.207.137',50000,'default',NULL,'2025-05-26 03:23:42'),(11,1,'month','27.125.207.138',50000,'default',NULL,'2025-05-26 03:23:42'),(12,1,'month','27.125.207.139',50000,'default',NULL,'2025-05-26 03:23:42'),(13,1,'month','27.125.207.140',50000,'default',NULL,'2025-05-26 03:23:42'),(14,1,'month','27.125.207.141',50000,'default',NULL,'2025-05-26 03:23:42'),(15,1,'month','27.125.207.142',50000,'default',NULL,'2025-05-26 03:23:42'),(16,1,'month','27.125.207.143',50000,'default',NULL,'2025-05-26 03:23:42'),(17,1,'month','27.125.207.144',50000,'default',NULL,'2025-05-26 03:23:42'),(18,1,'month','27.125.207.145',50000,'default',NULL,'2025-05-26 03:23:42'),(19,1,'month','27.125.207.146',50000,'default',NULL,'2025-05-26 03:23:42'),(20,1,'month','27.125.207.147',50000,'default',NULL,'2025-05-26 03:23:42'),(21,1,'month','27.125.207.148',50000,'default',NULL,'2025-05-26 03:23:42'),(22,1,'month','27.125.207.149',50000,'default',NULL,'2025-05-26 03:23:43'),(23,1,'month','27.125.207.150',50000,'default',NULL,'2025-05-26 03:23:43'),(24,1,'month','27.125.207.151',50000,'default',NULL,'2025-05-26 03:23:43'),(25,1,'month','27.125.207.152',50000,'default',NULL,'2025-05-26 03:23:43'),(26,1,'month','27.125.207.153',50000,'default',NULL,'2025-05-26 03:23:43'),(27,1,'month','27.125.207.154',50000,'default',NULL,'2025-05-26 03:23:43'),(28,1,'month','27.125.207.155',50000,'default',NULL,'2025-05-26 03:23:43'),(29,1,'month','27.125.207.156',50000,'default',NULL,'2025-05-26 03:23:43'),(30,1,'month','27.125.207.157',50000,'default',NULL,'2025-05-26 03:23:43'),(31,1,'month','27.125.207.158',50000,'default',NULL,'2025-05-26 03:23:43'),(32,1,'month','27.125.207.159',50000,'default',NULL,'2025-05-26 03:23:43'),(33,1,'month','27.125.207.160',50000,'default',NULL,'2025-05-26 03:23:43'),(34,1,'month','27.125.207.161',50000,'default',NULL,'2025-05-26 03:23:43'),(35,1,'month','27.125.207.162',50000,'default',NULL,'2025-05-26 03:23:43'),(36,1,'month','27.125.207.163',50000,'default',NULL,'2025-05-26 03:23:43'),(37,1,'month','27.125.207.164',50000,'default',NULL,'2025-05-26 03:23:43'),(38,1,'month','27.125.207.165',50000,'default',NULL,'2025-05-26 03:23:43'),(39,1,'month','27.125.207.166',50000,'default',NULL,'2025-05-26 03:23:43'),(40,1,'month','27.125.207.167',50000,'default',NULL,'2025-05-26 03:23:43'),(41,1,'month','27.125.207.168',50000,'default',NULL,'2025-05-26 03:23:43'),(42,1,'month','27.125.207.169',50000,'default',NULL,'2025-05-26 03:23:43'),(43,1,'month','27.125.207.170',50000,'default',NULL,'2025-05-26 03:23:43'),(44,1,'month','27.125.207.171',50000,'default',NULL,'2025-05-26 03:23:43'),(45,1,'month','27.125.207.172',50000,'default',NULL,'2025-05-26 03:23:43'),(46,1,'month','27.125.207.173',50000,'default',NULL,'2025-05-26 03:23:43'),(47,1,'month','27.125.207.174',50000,'default',NULL,'2025-05-26 03:23:43'),(48,1,'month','27.125.207.175',50000,'default',NULL,'2025-05-26 03:23:43'),(49,1,'month','27.125.207.176',50000,'default',NULL,'2025-05-26 03:23:43'),(50,1,'month','27.125.207.177',50000,'default',NULL,'2025-05-26 03:23:43'),(51,1,'month','27.125.207.178',50000,'default',NULL,'2025-05-26 03:23:43'),(52,1,'month','27.125.207.179',50000,'default',NULL,'2025-05-26 03:23:43'),(53,1,'month','27.125.207.180',50000,'default',NULL,'2025-05-26 03:23:43'),(54,1,'month','27.125.207.181',50000,'default',NULL,'2025-05-26 03:23:43'),(55,1,'month','27.125.207.182',50000,'default',NULL,'2025-05-26 03:23:43'),(56,1,'month','27.125.207.183',50000,'default',NULL,'2025-05-26 03:23:43'),(57,1,'month','27.125.207.184',50000,'default',NULL,'2025-05-26 03:23:43'),(58,1,'month','27.125.207.185',50000,'default',NULL,'2025-05-26 03:23:43'),(59,1,'month','27.125.207.186',50000,'default',NULL,'2025-05-26 03:23:43'),(60,1,'month','27.125.207.187',50000,'default',NULL,'2025-05-26 03:23:43'),(61,1,'month','27.125.207.188',50000,'default',NULL,'2025-05-26 03:23:43'),(62,1,'month','27.125.207.189',50000,'default',NULL,'2025-05-26 03:23:43'),(63,1,'month','27.125.207.190',50000,'default',NULL,'2025-05-26 03:23:43'),(64,1,'month','27.125.207.191',50000,'default',NULL,'2025-05-26 03:23:43'),(65,1,'month','27.125.207.192',50000,'default',NULL,'2025-05-26 03:23:43'),(66,1,'month','27.125.207.193',50000,'default',NULL,'2025-05-26 03:23:43'),(67,1,'month','27.125.207.194',50000,'default',NULL,'2025-05-26 03:23:43'),(68,1,'month','27.125.207.195',50000,'default',NULL,'2025-05-26 03:23:43'),(69,1,'month','27.125.207.196',50000,'default',NULL,'2025-05-26 03:23:43'),(70,1,'month','27.125.207.197',50000,'default',NULL,'2025-05-26 03:23:43'),(71,1,'month','27.125.207.198',50000,'default',NULL,'2025-05-26 03:23:43'),(72,1,'month','27.125.207.199',50000,'default',NULL,'2025-05-26 03:23:43'),(73,1,'month','27.125.207.200',50000,'default',NULL,'2025-05-26 03:23:43'),(74,1,'month','27.125.207.201',50000,'default',NULL,'2025-05-26 03:23:43'),(75,1,'month','27.125.207.202',50000,'default',NULL,'2025-05-26 03:23:43'),(76,1,'month','27.125.207.203',50000,'default',NULL,'2025-05-26 03:23:43'),(77,1,'month','27.125.207.204',50000,'default',NULL,'2025-05-26 03:23:43'),(78,1,'month','27.125.207.205',50000,'default',NULL,'2025-05-26 03:23:43'),(79,1,'month','27.125.207.206',50000,'default',NULL,'2025-05-26 03:23:43'),(80,1,'month','27.125.207.207',50000,'default',NULL,'2025-05-26 03:23:43'),(81,1,'month','27.125.207.208',50000,'default',NULL,'2025-05-26 03:23:43'),(82,1,'month','27.125.207.209',50000,'default',NULL,'2025-05-26 03:23:43'),(83,1,'month','27.125.207.210',50000,'default',NULL,'2025-05-26 03:23:43'),(84,1,'month','27.125.207.211',50000,'default',NULL,'2025-05-26 03:23:43'),(85,1,'month','27.125.207.212',50000,'default',NULL,'2025-05-26 03:23:43'),(86,1,'month','27.125.207.213',50000,'default',NULL,'2025-05-26 03:23:43'),(87,1,'month','27.125.207.214',50000,'default',NULL,'2025-05-26 03:23:43'),(88,1,'month','27.125.207.215',50000,'default',NULL,'2025-05-26 03:23:43'),(89,1,'month','27.125.207.216',50000,'default',NULL,'2025-05-26 03:23:43'),(90,1,'month','27.125.207.217',50000,'default',NULL,'2025-05-26 03:23:43'),(91,1,'month','27.125.207.218',50000,'default',NULL,'2025-05-26 03:23:43'),(92,1,'month','27.125.207.219',50000,'default',NULL,'2025-05-26 03:23:43'),(93,1,'month','27.125.207.220',50000,'default',NULL,'2025-05-26 03:23:43'),(94,1,'month','27.125.207.221',50000,'default',NULL,'2025-05-26 03:23:43'),(95,1,'month','27.125.207.222',50000,'default',NULL,'2025-05-26 03:23:43'),(96,1,'month','27.125.207.223',50000,'default',NULL,'2025-05-26 03:23:43'),(97,1,'month','27.125.207.224',50000,'default',NULL,'2025-05-26 03:23:43'),(98,1,'month','27.125.207.225',50000,'default',NULL,'2025-05-26 03:23:43'),(99,1,'month','27.125.207.226',50000,'default',NULL,'2025-05-26 03:23:43'),(100,1,'month','27.125.207.227',50000,'default',NULL,'2025-05-26 03:23:43'),(101,1,'month','27.125.207.228',50000,'default',NULL,'2025-05-26 03:23:43'),(102,1,'month','27.125.207.229',50000,'default',NULL,'2025-05-26 03:23:43'),(103,1,'month','27.125.207.230',50000,'default',NULL,'2025-05-26 03:23:43'),(104,1,'month','27.125.207.231',50000,'default',NULL,'2025-05-26 03:23:43'),(105,1,'month','27.125.207.232',50000,'default',NULL,'2025-05-26 03:23:43'),(106,1,'month','27.125.207.233',50000,'default',NULL,'2025-05-26 03:23:43'),(107,1,'month','27.125.207.234',50000,'default',NULL,'2025-05-26 03:23:43'),(108,1,'month','27.125.207.235',50000,'default',NULL,'2025-05-26 03:23:43'),(109,1,'month','27.125.207.236',50000,'default',NULL,'2025-05-26 03:23:43'),(110,1,'month','27.125.207.237',50000,'default',NULL,'2025-05-26 03:23:43'),(111,1,'month','27.125.207.238',50000,'default',NULL,'2025-05-26 03:23:43'),(112,1,'month','27.125.207.239',50000,'default',NULL,'2025-05-26 03:23:43'),(113,1,'month','27.125.207.240',50000,'default',NULL,'2025-05-26 03:23:43'),(114,1,'month','27.125.207.241',50000,'default',NULL,'2025-05-26 03:23:43'),(115,1,'month','27.125.207.242',50000,'default',NULL,'2025-05-26 03:23:43'),(116,1,'month','27.125.207.243',50000,'default',NULL,'2025-05-26 03:23:43'),(117,1,'month','27.125.207.244',50000,'default',NULL,'2025-05-26 03:23:43'),(118,1,'month','27.125.207.245',50000,'default',NULL,'2025-05-26 03:23:43'),(119,1,'month','27.125.207.246',50000,'default',NULL,'2025-05-26 03:23:43'),(120,1,'month','27.125.207.247',50000,'default',NULL,'2025-05-26 03:23:43'),(121,1,'month','27.125.207.248',50000,'default',NULL,'2025-05-26 03:23:43'),(122,1,'month','27.125.207.249',50000,'default',NULL,'2025-05-26 03:23:43'),(123,1,'month','27.125.207.250',50000,'default',NULL,'2025-05-26 03:23:44'),(124,1,'month','27.125.207.251',50000,'default',NULL,'2025-05-26 03:23:44'),(125,1,'month','27.125.207.252',50000,'default',NULL,'2025-05-26 03:23:44'),(126,1,'month','27.125.207.253',50000,'default',NULL,'2025-05-26 03:23:44'),(127,1,'month','27.125.207.254',50000,'default',NULL,'2025-05-26 03:23:44'),(128,1,'month','27.125.207.255',50000,'default',NULL,'2025-05-26 03:23:44'); /*!40000 ALTER TABLE `ipinfo` ENABLE KEYS */; UNLOCK TABLES; --- --- Table structure for table `ipinfo_link` --- - -DROP TABLE IF EXISTS `ipinfo_link`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `ipinfo_link` ( - `uid` int(11) NOT NULL AUTO_INCREMENT, - `serviceinfo_uid` int(11) NOT NULL, - `serverinfo_uid` int(11) NOT NULL, - `ipinfo_uid` int(11) NOT NULL, - `billing_type` varchar(20) NOT NULL DEFAULT 'month', - `amount` int(11) NOT NULL DEFAULT 0, - `updated_at` timestamp NULL DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`uid`), - KEY `FK_serviceinfo_TO_ipinfo_link` (`serviceinfo_uid`), - KEY `FK_serverinfo_TO_ipinfo_link` (`serverinfo_uid`), - CONSTRAINT `FK_serverinfo_TO_ipinfo_link` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`), - CONSTRAINT `FK_serviceinfo_TO_ipinfo_link` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서비스-IP 연결'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `ipinfo_link` --- - -LOCK TABLES `ipinfo_link` WRITE; -/*!40000 ALTER TABLE `ipinfo_link` DISABLE KEYS */; -/*!40000 ALTER TABLE `ipinfo_link` ENABLE KEYS */; -UNLOCK TABLES; - -- -- Table structure for table `lineinfo` -- @@ -425,42 +293,10 @@ CREATE TABLE `lineinfo` ( LOCK TABLES `lineinfo` WRITE; /*!40000 ALTER TABLE `lineinfo` DISABLE KEYS */; -INSERT INTO `lineinfo` VALUES (1,NULL,'general','Softbank회선','27.125.207.128/25','default','2025-05-08',NULL,'2025-05-22 05:39:55'); +INSERT INTO `lineinfo` VALUES (1,NULL,'general','일반라인1','27.125.207.128/25','default','2025-05-01',NULL,'2025-05-26 03:23:42'); /*!40000 ALTER TABLE `lineinfo` ENABLE KEYS */; UNLOCK TABLES; --- --- Table structure for table `lineinfo_link` --- - -DROP TABLE IF EXISTS `lineinfo_link`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `lineinfo_link` ( - `uid` int(11) NOT NULL AUTO_INCREMENT, - `serviceinfo_uid` int(11) NOT NULL, - `lineinfo_uid` int(11) NOT NULL, - `billing_type` varchar(20) NOT NULL DEFAULT 'month', - `amount` int(11) NOT NULL DEFAULT 0, - `updated_at` timestamp NULL DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`uid`), - KEY `FK_serviceinfo_TO_lineinfo_link` (`serviceinfo_uid`), - KEY `FK_lineinfo_TO_lineinfo_link` (`lineinfo_uid`), - CONSTRAINT `FK_lineinfo_TO_lineinfo_link` FOREIGN KEY (`lineinfo_uid`) REFERENCES `lineinfo` (`uid`), - CONSTRAINT `FK_serviceinfo_TO_lineinfo_link` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서비스-Line연결'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `lineinfo_link` --- - -LOCK TABLES `lineinfo_link` WRITE; -/*!40000 ALTER TABLE `lineinfo_link` DISABLE KEYS */; -/*!40000 ALTER TABLE `lineinfo_link` ENABLE KEYS */; -UNLOCK TABLES; - -- -- Table structure for table `logger` -- @@ -478,7 +314,7 @@ CREATE TABLE `logger` ( `status` varchar(20) DEFAULT 'default', `created_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`uid`) -) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='작업 기록 로그'; +) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='작업 기록 로그'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -487,10 +323,74 @@ CREATE TABLE `logger` ( LOCK TABLES `logger` WRITE; /*!40000 ALTER TABLE `logger` DISABLE KEYS */; -INSERT INTO `logger` VALUES (1,1,'Customer\\Account','create','작업이 실패하였습니다.','','default','2025-05-22 04:30:16'),(2,1,'Customer\\Account','create','작업이 실패하였습니다.','','default','2025-05-22 04:33:12'),(3,1,'Customer\\Account','create','작업이 실패하였습니다.Customer\\Account 작업 데이터 검증 오류발생\nThe title field is required.','','default','2025-05-22 04:38:48'),(4,1,'Customer\\Account','create','작업이 실패하였습니다.예치금:0 < 출금액:2222 출금이 불가합니다.','','default','2025-05-22 04:38:52'),(5,1,'Customer\\Account','create','작업이 실패하였습니다.예치금:0 < 출금액:2222 출금이 불가합니다.','','default','2025-05-22 04:38:54'),(6,1,'Customer\\Account','create','작업이 실패하였습니다.예치금:0 < 출금액:2222 출금이 불가합니다.','','default','2025-05-22 04:39:03'),(7,1,'Customer\\Account','create','작업이 실패하였습니다.','13:43:37[debug]: 예치금:0 < 출금액:2222 출금이 불가합니다.','default','2025-05-22 04:43:37'),(8,1,'Customer\\Account','create','작업이 실패하였습니다.','13:53:46[debug]: 예치금:0 < 출금액:222 출금이 불가합니다.','default','2025-05-22 04:53:46'),(9,1,'Customer\\Account','create','작업이 실패하였습니다.','13:54:36[debug]: 예치금:0 < 출금액:2222 출금이 불가합니다.','default','2025-05-22 04:54:36'),(10,1,'Customer\\Account','create','작업이 실패하였습니다.','13:55:28[debug]: 예치금:0 < 출금액:2222 출금이 불가합니다.','default','2025-05-22 04:55:28'),(11,1,'Customer\\Account','create','작업이 실패하였습니다.','13:56:38[debug]: 예치금:0 < 출금액:2222 출금이 불가합니다.','default','2025-05-22 04:56:38'),(12,1,'Customer\\Account','create','작업이 실패하였습니다.','13:58:02[debug]: 예치금:0 < 출금액:2222 출금이 불가합니다.','default','2025-05-22 04:58:02'),(13,1,'Customer\\Account','create','작업이 실패하였습니다.','13:58:05[debug]: 예치금:0 < 출금액:2222 출금이 불가합니다.','default','2025-05-22 04:58:05'),(14,1,'Customer\\Account','create','작업이 실패하였습니다.','13:58:27[debug]: 예치금:0 < 출금액:2222 출금이 불가합니다.','default','2025-05-22 04:58:27'),(15,1,'Customer\\Account','create','작업이 실패하였습니다.','14:02:56[debug]: Customer\\Account 작업 데이터 검증 오류발생\nThe amount field is required.','default','2025-05-22 05:02:56'),(16,1,'Customer\\Account','create','작업이 성공적으로 완료되었습니다.','14:04:09[debug]: 입력내용\n14:04:09[debug]: array (\n 'clientinfo_uid' => '2',\n 'status' => 'default',\n 'alias' => 'sdfsdf',\n 'title' => 'sdfsdf',\n 'amount' => '10000',\n)\n14:04:09[debug]: [1/sdfsdf] 입력 후 내용\n14:04:09[debug]: array (\n 'clientinfo_uid' => '2',\n 'status' => 'default',\n 'alias' => 'sdfsdf',\n 'title' => 'sdfsdf',\n 'amount' => '10000',\n 'uid' => 1,\n)\n14:04:09[info]: [sdfsdf]생성되었습니다.:','default','2025-05-22 05:04:09'),(17,1,'Customer\\Account','delete','작업이 성공적으로 완료되었습니다.','14:28:44[info]: [sdfsdf]삭제되였습니다.:','default','2025-05-22 05:28:44'),(18,1,'Customer\\Account','create','작업이 성공적으로 완료되었습니다.','14:31:14[debug]: [1/Test111] 변경 전 내용\n14:31:14[debug]: array (\n 'account_balance' => 100000,\n)\n14:31:14[debug]: array (\n 'uid' => '1',\n 'role' => 'user',\n 'name' => 'Test111',\n 'phone' => '1111',\n 'email' => 'test111@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:56:56.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:31:14[debug]: [1/Test111] 변경 후 내용\n14:31:14[debug]: array (\n 'uid' => '1',\n 'role' => 'user',\n 'name' => 'Test111',\n 'phone' => '1111',\n 'email' => 'test111@co.kr',\n 'account_balance' => 100000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:31:14.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:56:56.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:31:14[info]: [Test111]수정되였습니다.:\n14:31:14[debug]: 입력내용\n14:31:14[debug]: array (\n 'clientinfo_uid' => '1',\n 'status' => 'default',\n 'alias' => 'Test111',\n 'title' => '5월예치금',\n 'amount' => '100000',\n)\n14:31:14[debug]: [2/5월예치금] 입력 후 내용\n14:31:14[debug]: array (\n 'clientinfo_uid' => '1',\n 'status' => 'default',\n 'alias' => 'Test111',\n 'title' => '5월예치금',\n 'amount' => '100000',\n 'uid' => 2,\n)\n14:31:14[info]: [5월예치금]생성되었습니다.:','default','2025-05-22 05:31:14'),(19,1,'Customer\\Account','create','작업이 실패하였습니다.','14:32:11[debug]: Customer\\Account 작업 데이터 검증 오류발생\nThe status field is required.','default','2025-05-22 05:32:11'),(20,1,'Customer\\Account','create','작업이 성공적으로 완료되었습니다.','14:32:17[debug]: [1/Test111] 변경 전 내용\n14:32:17[debug]: array (\n 'account_balance' => 5100000,\n)\n14:32:17[debug]: array (\n 'uid' => '1',\n 'role' => 'user',\n 'name' => 'Test111',\n 'phone' => '1111',\n 'email' => 'test111@co.kr',\n 'account_balance' => 100000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:31:14.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:56:56.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:32:17[debug]: [1/Test111] 변경 후 내용\n14:32:17[debug]: array (\n 'uid' => '1',\n 'role' => 'user',\n 'name' => 'Test111',\n 'phone' => '1111',\n 'email' => 'test111@co.kr',\n 'account_balance' => 5100000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:32:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:56:56.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:32:17[info]: [Test111]수정되였습니다.:\n14:32:17[debug]: 입력내용\n14:32:17[debug]: array (\n 'clientinfo_uid' => '1',\n 'status' => 'out',\n 'alias' => 'Test111',\n 'title' => '5월예치금출금',\n 'amount' => '5000000',\n)\n14:32:17[debug]: [3/5월예치금출금] 입력 후 내용\n14:32:17[debug]: array (\n 'clientinfo_uid' => '1',\n 'status' => 'out',\n 'alias' => 'Test111',\n 'title' => '5월예치금출금',\n 'amount' => '5000000',\n 'uid' => 3,\n)\n14:32:17[info]: [5월예치금출금]생성되었습니다.:','default','2025-05-22 05:32:17'),(21,1,'Customer\\Account','delete','작업이 성공적으로 완료되었습니다.','14:32:50[info]: [5월예치금출금]삭제되였습니다.:','default','2025-05-22 05:32:50'),(22,1,'Customer\\Account','create','작업이 실패하였습니다.','14:35:36[debug]: 예치금:5100000 < 출금액:6000000000 출금이 불가합니다.','default','2025-05-22 05:35:36'),(23,1,'Customer\\Account','create','작업이 성공적으로 완료되었습니다.','14:35:47[debug]: [1/Test111] 변경 전 내용\n14:35:47[debug]: array (\n 'account_balance' => 5000000,\n)\n14:35:47[debug]: array (\n 'uid' => '1',\n 'role' => 'user',\n 'name' => 'Test111',\n 'phone' => '1111',\n 'email' => 'test111@co.kr',\n 'account_balance' => 5100000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:32:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:56:56.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:35:47[debug]: [1/Test111] 변경 후 내용\n14:35:47[debug]: array (\n 'uid' => '1',\n 'role' => 'user',\n 'name' => 'Test111',\n 'phone' => '1111',\n 'email' => 'test111@co.kr',\n 'account_balance' => 5000000,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:35:47.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:56:56.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:35:47[info]: [Test111]수정되였습니다.:\n14:35:47[debug]: 입력내용\n14:35:47[debug]: array (\n 'clientinfo_uid' => '1',\n 'status' => 'out',\n 'alias' => 'Test111',\n 'title' => '5월예치금출금',\n 'amount' => '100000',\n)\n14:35:47[debug]: [4/5월예치금출금] 입력 후 내용\n14:35:47[debug]: array (\n 'clientinfo_uid' => '1',\n 'status' => 'out',\n 'alias' => 'Test111',\n 'title' => '5월예치금출금',\n 'amount' => '100000',\n 'uid' => 4,\n)\n14:35:47[info]: [5월예치금출금]생성되었습니다.:','default','2025-05-22 05:35:47'),(24,1,'Customer\\Coupon','create','작업이 성공적으로 완료되었습니다.','14:36:33[debug]: [2/Test222] 변경 전 내용\n14:36:33[debug]: array (\n 'coupon_balance' => 100,\n)\n14:36:33[debug]: array (\n 'uid' => '2',\n 'role' => 'user,vip',\n 'name' => 'Test222',\n 'phone' => '22222',\n 'email' => 'test222@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:57:13.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:36:33[debug]: [2/Test222] 변경 후 내용\n14:36:33[debug]: array (\n 'uid' => '2',\n 'role' => 'user,vip',\n 'name' => 'Test222',\n 'phone' => '22222',\n 'email' => 'test222@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 100,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:36:33.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:57:13.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:36:33[info]: [Test222]수정되였습니다.:\n14:36:33[debug]: 입력내용\n14:36:33[debug]: array (\n 'clientinfo_uid' => '2',\n 'status' => 'default',\n 'title' => '5월쿠폰추가',\n 'amount' => '100',\n)\n14:36:33[debug]: [1/5월쿠폰추가] 입력 후 내용\n14:36:33[debug]: array (\n 'clientinfo_uid' => '2',\n 'status' => 'default',\n 'title' => '5월쿠폰추가',\n 'amount' => '100',\n 'uid' => 1,\n)\n14:36:33[info]: [5월쿠폰추가]생성되었습니다.:','default','2025-05-22 05:36:33'),(25,1,'Customer\\Coupon','create','작업이 성공적으로 완료되었습니다.','14:37:00[debug]: [2/Test222] 변경 전 내용\n14:37:00[debug]: array (\n 'coupon_balance' => 95,\n)\n14:37:00[debug]: array (\n 'uid' => '2',\n 'role' => 'user,vip',\n 'name' => 'Test222',\n 'phone' => '22222',\n 'email' => 'test222@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 100,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:36:33.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:57:13.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:37:00[debug]: [2/Test222] 변경 후 내용\n14:37:00[debug]: array (\n 'uid' => '2',\n 'role' => 'user,vip',\n 'name' => 'Test222',\n 'phone' => '22222',\n 'email' => 'test222@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 95,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:37:00.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:57:13.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:37:00[info]: [Test222]수정되였습니다.:\n14:37:00[debug]: 입력내용\n14:37:00[debug]: array (\n 'clientinfo_uid' => '2',\n 'status' => 'out',\n 'title' => '5월쿠폰사용',\n 'amount' => '5',\n)\n14:37:00[debug]: [2/5월쿠폰사용] 입력 후 내용\n14:37:00[debug]: array (\n 'clientinfo_uid' => '2',\n 'status' => 'out',\n 'title' => '5월쿠폰사용',\n 'amount' => '5',\n 'uid' => 2,\n)\n14:37:00[info]: [5월쿠폰사용]생성되었습니다.:','default','2025-05-22 05:37:00'),(26,1,'Customer\\Point','create','작업이 성공적으로 완료되었습니다.','14:37:59[debug]: [3/Test333] 변경 전 내용\n14:37:59[debug]: array (\n 'point_balance' => 50000,\n)\n14:37:59[debug]: array (\n 'uid' => '3',\n 'role' => 'user,vip,reseller',\n 'name' => 'Test333',\n 'phone' => '333333',\n 'email' => 'test333@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 0,\n 'status' => 'default',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:57:34.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:37:59[debug]: [3/Test333] 변경 후 내용\n14:37:59[debug]: array (\n 'uid' => '3',\n 'role' => 'user,vip,reseller',\n 'name' => 'Test333',\n 'phone' => '333333',\n 'email' => 'test333@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 50000,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:37:59.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:57:34.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:37:59[info]: [Test333]수정되였습니다.:\n14:37:59[debug]: 입력내용\n14:37:59[debug]: array (\n 'clientinfo_uid' => '3',\n 'status' => 'default',\n 'title' => '5월포인트입금',\n 'amount' => '50000',\n)\n14:37:59[debug]: [1/5월포인트입금] 입력 후 내용\n14:37:59[debug]: array (\n 'clientinfo_uid' => '3',\n 'status' => 'default',\n 'title' => '5월포인트입금',\n 'amount' => '50000',\n 'uid' => 1,\n)\n14:37:59[info]: [5월포인트입금]생성되었습니다.:','default','2025-05-22 05:37:59'),(27,1,'Customer\\Point','create','작업이 성공적으로 완료되었습니다.','14:38:20[debug]: [3/Test333] 변경 전 내용\n14:38:20[debug]: array (\n 'point_balance' => 25000,\n)\n14:38:20[debug]: array (\n 'uid' => '3',\n 'role' => 'user,vip,reseller',\n 'name' => 'Test333',\n 'phone' => '333333',\n 'email' => 'test333@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 50000,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:37:59.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:57:34.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:38:20[debug]: [3/Test333] 변경 후 내용\n14:38:20[debug]: array (\n 'uid' => '3',\n 'role' => 'user,vip,reseller',\n 'name' => 'Test333',\n 'phone' => '333333',\n 'email' => 'test333@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 0,\n 'point_balance' => 25000,\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:38:20.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 12:57:34.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:38:20[info]: [Test333]수정되였습니다.:\n14:38:20[debug]: 입력내용\n14:38:20[debug]: array (\n 'clientinfo_uid' => '3',\n 'status' => 'out',\n 'title' => '5월포인트출금',\n 'amount' => '25000',\n)\n14:38:20[debug]: [2/5월포인트출금] 입력 후 내용\n14:38:20[debug]: array (\n 'clientinfo_uid' => '3',\n 'status' => 'out',\n 'title' => '5월포인트출금',\n 'amount' => '25000',\n 'uid' => 2,\n)\n14:38:20[info]: [5월포인트출금]생성되었습니다.:','default','2025-05-22 05:38:20'),(28,1,'Equipment\\Line','create','작업이 성공적으로 완료되었습니다.','14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'clientinfo_uid' => '',\n 'type' => 'general',\n 'title' => 'Softbank회선',\n 'bandwith' => '27.125.207.128/25',\n 'start_at' => '2025-05-08',\n 'status' => 'default',\n)\n14:39:55[debug]: [1/Softbank회선] 입력 후 내용\n14:39:55[debug]: array (\n 'type' => 'general',\n 'title' => 'Softbank회선',\n 'bandwith' => '27.125.207.128/25',\n 'start_at' => '2025-05-08',\n 'status' => 'default',\n 'uid' => 1,\n)\n14:39:55[info]: [Softbank회선]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.128',\n 'status' => 'default',\n)\n14:39:55[debug]: [1/27.125.207.128] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.128',\n 'status' => 'default',\n 'uid' => 1,\n)\n14:39:55[info]: [27.125.207.128]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.129',\n 'status' => 'default',\n)\n14:39:55[debug]: [2/27.125.207.129] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.129',\n 'status' => 'default',\n 'uid' => 2,\n)\n14:39:55[info]: [27.125.207.129]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.130',\n 'status' => 'default',\n)\n14:39:55[debug]: [3/27.125.207.130] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.130',\n 'status' => 'default',\n 'uid' => 3,\n)\n14:39:55[info]: [27.125.207.130]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.131',\n 'status' => 'default',\n)\n14:39:55[debug]: [4/27.125.207.131] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.131',\n 'status' => 'default',\n 'uid' => 4,\n)\n14:39:55[info]: [27.125.207.131]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.132',\n 'status' => 'default',\n)\n14:39:55[debug]: [5/27.125.207.132] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.132',\n 'status' => 'default',\n 'uid' => 5,\n)\n14:39:55[info]: [27.125.207.132]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.133',\n 'status' => 'default',\n)\n14:39:55[debug]: [6/27.125.207.133] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.133',\n 'status' => 'default',\n 'uid' => 6,\n)\n14:39:55[info]: [27.125.207.133]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.134',\n 'status' => 'default',\n)\n14:39:55[debug]: [7/27.125.207.134] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.134',\n 'status' => 'default',\n 'uid' => 7,\n)\n14:39:55[info]: [27.125.207.134]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.135',\n 'status' => 'default',\n)\n14:39:55[debug]: [8/27.125.207.135] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.135',\n 'status' => 'default',\n 'uid' => 8,\n)\n14:39:55[info]: [27.125.207.135]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.136',\n 'status' => 'default',\n)\n14:39:55[debug]: [9/27.125.207.136] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.136',\n 'status' => 'default',\n 'uid' => 9,\n)\n14:39:55[info]: [27.125.207.136]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.137',\n 'status' => 'default',\n)\n14:39:55[debug]: [10/27.125.207.137] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.137',\n 'status' => 'default',\n 'uid' => 10,\n)\n14:39:55[info]: [27.125.207.137]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.138',\n 'status' => 'default',\n)\n14:39:55[debug]: [11/27.125.207.138] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.138',\n 'status' => 'default',\n 'uid' => 11,\n)\n14:39:55[info]: [27.125.207.138]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.139',\n 'status' => 'default',\n)\n14:39:55[debug]: [12/27.125.207.139] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.139',\n 'status' => 'default',\n 'uid' => 12,\n)\n14:39:55[info]: [27.125.207.139]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.140',\n 'status' => 'default',\n)\n14:39:55[debug]: [13/27.125.207.140] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.140',\n 'status' => 'default',\n 'uid' => 13,\n)\n14:39:55[info]: [27.125.207.140]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.141',\n 'status' => 'default',\n)\n14:39:55[debug]: [14/27.125.207.141] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.141',\n 'status' => 'default',\n 'uid' => 14,\n)\n14:39:55[info]: [27.125.207.141]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.142',\n 'status' => 'default',\n)\n14:39:55[debug]: [15/27.125.207.142] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.142',\n 'status' => 'default',\n 'uid' => 15,\n)\n14:39:55[info]: [27.125.207.142]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.143',\n 'status' => 'default',\n)\n14:39:55[debug]: [16/27.125.207.143] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.143',\n 'status' => 'default',\n 'uid' => 16,\n)\n14:39:55[info]: [27.125.207.143]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.144',\n 'status' => 'default',\n)\n14:39:55[debug]: [17/27.125.207.144] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.144',\n 'status' => 'default',\n 'uid' => 17,\n)\n14:39:55[info]: [27.125.207.144]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.145',\n 'status' => 'default',\n)\n14:39:55[debug]: [18/27.125.207.145] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.145',\n 'status' => 'default',\n 'uid' => 18,\n)\n14:39:55[info]: [27.125.207.145]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.146',\n 'status' => 'default',\n)\n14:39:55[debug]: [19/27.125.207.146] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.146',\n 'status' => 'default',\n 'uid' => 19,\n)\n14:39:55[info]: [27.125.207.146]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.147',\n 'status' => 'default',\n)\n14:39:55[debug]: [20/27.125.207.147] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.147',\n 'status' => 'default',\n 'uid' => 20,\n)\n14:39:55[info]: [27.125.207.147]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.148',\n 'status' => 'default',\n)\n14:39:55[debug]: [21/27.125.207.148] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.148',\n 'status' => 'default',\n 'uid' => 21,\n)\n14:39:55[info]: [27.125.207.148]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.149',\n 'status' => 'default',\n)\n14:39:55[debug]: [22/27.125.207.149] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.149',\n 'status' => 'default',\n 'uid' => 22,\n)\n14:39:55[info]: [27.125.207.149]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.150',\n 'status' => 'default',\n)\n14:39:55[debug]: [23/27.125.207.150] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.150',\n 'status' => 'default',\n 'uid' => 23,\n)\n14:39:55[info]: [27.125.207.150]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.151',\n 'status' => 'default',\n)\n14:39:55[debug]: [24/27.125.207.151] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.151',\n 'status' => 'default',\n 'uid' => 24,\n)\n14:39:55[info]: [27.125.207.151]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.152',\n 'status' => 'default',\n)\n14:39:55[debug]: [25/27.125.207.152] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.152',\n 'status' => 'default',\n 'uid' => 25,\n)\n14:39:55[info]: [27.125.207.152]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.153',\n 'status' => 'default',\n)\n14:39:55[debug]: [26/27.125.207.153] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.153',\n 'status' => 'default',\n 'uid' => 26,\n)\n14:39:55[info]: [27.125.207.153]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.154',\n 'status' => 'default',\n)\n14:39:55[debug]: [27/27.125.207.154] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.154',\n 'status' => 'default',\n 'uid' => 27,\n)\n14:39:55[info]: [27.125.207.154]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.155',\n 'status' => 'default',\n)\n14:39:55[debug]: [28/27.125.207.155] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.155',\n 'status' => 'default',\n 'uid' => 28,\n)\n14:39:55[info]: [27.125.207.155]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.156',\n 'status' => 'default',\n)\n14:39:55[debug]: [29/27.125.207.156] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.156',\n 'status' => 'default',\n 'uid' => 29,\n)\n14:39:55[info]: [27.125.207.156]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.157',\n 'status' => 'default',\n)\n14:39:55[debug]: [30/27.125.207.157] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.157',\n 'status' => 'default',\n 'uid' => 30,\n)\n14:39:55[info]: [27.125.207.157]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.158',\n 'status' => 'default',\n)\n14:39:55[debug]: [31/27.125.207.158] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.158',\n 'status' => 'default',\n 'uid' => 31,\n)\n14:39:55[info]: [27.125.207.158]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.159',\n 'status' => 'default',\n)\n14:39:55[debug]: [32/27.125.207.159] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.159',\n 'status' => 'default',\n 'uid' => 32,\n)\n14:39:55[info]: [27.125.207.159]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.160',\n 'status' => 'default',\n)\n14:39:55[debug]: [33/27.125.207.160] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.160',\n 'status' => 'default',\n 'uid' => 33,\n)\n14:39:55[info]: [27.125.207.160]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.161',\n 'status' => 'default',\n)\n14:39:55[debug]: [34/27.125.207.161] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.161',\n 'status' => 'default',\n 'uid' => 34,\n)\n14:39:55[info]: [27.125.207.161]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.162',\n 'status' => 'default',\n)\n14:39:55[debug]: [35/27.125.207.162] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.162',\n 'status' => 'default',\n 'uid' => 35,\n)\n14:39:55[info]: [27.125.207.162]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.163',\n 'status' => 'default',\n)\n14:39:55[debug]: [36/27.125.207.163] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.163',\n 'status' => 'default',\n 'uid' => 36,\n)\n14:39:55[info]: [27.125.207.163]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.164',\n 'status' => 'default',\n)\n14:39:55[debug]: [37/27.125.207.164] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.164',\n 'status' => 'default',\n 'uid' => 37,\n)\n14:39:55[info]: [27.125.207.164]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.165',\n 'status' => 'default',\n)\n14:39:55[debug]: [38/27.125.207.165] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.165',\n 'status' => 'default',\n 'uid' => 38,\n)\n14:39:55[info]: [27.125.207.165]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.166',\n 'status' => 'default',\n)\n14:39:55[debug]: [39/27.125.207.166] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.166',\n 'status' => 'default',\n 'uid' => 39,\n)\n14:39:55[info]: [27.125.207.166]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.167',\n 'status' => 'default',\n)\n14:39:55[debug]: [40/27.125.207.167] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.167',\n 'status' => 'default',\n 'uid' => 40,\n)\n14:39:55[info]: [27.125.207.167]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.168',\n 'status' => 'default',\n)\n14:39:55[debug]: [41/27.125.207.168] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.168',\n 'status' => 'default',\n 'uid' => 41,\n)\n14:39:55[info]: [27.125.207.168]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.169',\n 'status' => 'default',\n)\n14:39:55[debug]: [42/27.125.207.169] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.169',\n 'status' => 'default',\n 'uid' => 42,\n)\n14:39:55[info]: [27.125.207.169]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.170',\n 'status' => 'default',\n)\n14:39:55[debug]: [43/27.125.207.170] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.170',\n 'status' => 'default',\n 'uid' => 43,\n)\n14:39:55[info]: [27.125.207.170]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.171',\n 'status' => 'default',\n)\n14:39:55[debug]: [44/27.125.207.171] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.171',\n 'status' => 'default',\n 'uid' => 44,\n)\n14:39:55[info]: [27.125.207.171]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.172',\n 'status' => 'default',\n)\n14:39:55[debug]: [45/27.125.207.172] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.172',\n 'status' => 'default',\n 'uid' => 45,\n)\n14:39:55[info]: [27.125.207.172]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.173',\n 'status' => 'default',\n)\n14:39:55[debug]: [46/27.125.207.173] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.173',\n 'status' => 'default',\n 'uid' => 46,\n)\n14:39:55[info]: [27.125.207.173]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.174',\n 'status' => 'default',\n)\n14:39:55[debug]: [47/27.125.207.174] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.174',\n 'status' => 'default',\n 'uid' => 47,\n)\n14:39:55[info]: [27.125.207.174]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.175',\n 'status' => 'default',\n)\n14:39:55[debug]: [48/27.125.207.175] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.175',\n 'status' => 'default',\n 'uid' => 48,\n)\n14:39:55[info]: [27.125.207.175]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.176',\n 'status' => 'default',\n)\n14:39:55[debug]: [49/27.125.207.176] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.176',\n 'status' => 'default',\n 'uid' => 49,\n)\n14:39:55[info]: [27.125.207.176]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.177',\n 'status' => 'default',\n)\n14:39:55[debug]: [50/27.125.207.177] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.177',\n 'status' => 'default',\n 'uid' => 50,\n)\n14:39:55[info]: [27.125.207.177]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.178',\n 'status' => 'default',\n)\n14:39:55[debug]: [51/27.125.207.178] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.178',\n 'status' => 'default',\n 'uid' => 51,\n)\n14:39:55[info]: [27.125.207.178]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.179',\n 'status' => 'default',\n)\n14:39:55[debug]: [52/27.125.207.179] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.179',\n 'status' => 'default',\n 'uid' => 52,\n)\n14:39:55[info]: [27.125.207.179]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.180',\n 'status' => 'default',\n)\n14:39:55[debug]: [53/27.125.207.180] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.180',\n 'status' => 'default',\n 'uid' => 53,\n)\n14:39:55[info]: [27.125.207.180]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.181',\n 'status' => 'default',\n)\n14:39:55[debug]: [54/27.125.207.181] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.181',\n 'status' => 'default',\n 'uid' => 54,\n)\n14:39:55[info]: [27.125.207.181]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.182',\n 'status' => 'default',\n)\n14:39:55[debug]: [55/27.125.207.182] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.182',\n 'status' => 'default',\n 'uid' => 55,\n)\n14:39:55[info]: [27.125.207.182]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.183',\n 'status' => 'default',\n)\n14:39:55[debug]: [56/27.125.207.183] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.183',\n 'status' => 'default',\n 'uid' => 56,\n)\n14:39:55[info]: [27.125.207.183]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.184',\n 'status' => 'default',\n)\n14:39:55[debug]: [57/27.125.207.184] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.184',\n 'status' => 'default',\n 'uid' => 57,\n)\n14:39:55[info]: [27.125.207.184]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.185',\n 'status' => 'default',\n)\n14:39:55[debug]: [58/27.125.207.185] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.185',\n 'status' => 'default',\n 'uid' => 58,\n)\n14:39:55[info]: [27.125.207.185]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.186',\n 'status' => 'default',\n)\n14:39:55[debug]: [59/27.125.207.186] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.186',\n 'status' => 'default',\n 'uid' => 59,\n)\n14:39:55[info]: [27.125.207.186]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.187',\n 'status' => 'default',\n)\n14:39:55[debug]: [60/27.125.207.187] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.187',\n 'status' => 'default',\n 'uid' => 60,\n)\n14:39:55[info]: [27.125.207.187]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.188',\n 'status' => 'default',\n)\n14:39:55[debug]: [61/27.125.207.188] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.188',\n 'status' => 'default',\n 'uid' => 61,\n)\n14:39:55[info]: [27.125.207.188]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.189',\n 'status' => 'default',\n)\n14:39:55[debug]: [62/27.125.207.189] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.189',\n 'status' => 'default',\n 'uid' => 62,\n)\n14:39:55[info]: [27.125.207.189]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.190',\n 'status' => 'default',\n)\n14:39:55[debug]: [63/27.125.207.190] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.190',\n 'status' => 'default',\n 'uid' => 63,\n)\n14:39:55[info]: [27.125.207.190]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.191',\n 'status' => 'default',\n)\n14:39:55[debug]: [64/27.125.207.191] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.191',\n 'status' => 'default',\n 'uid' => 64,\n)\n14:39:55[info]: [27.125.207.191]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.192',\n 'status' => 'default',\n)\n14:39:55[debug]: [65/27.125.207.192] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.192',\n 'status' => 'default',\n 'uid' => 65,\n)\n14:39:55[info]: [27.125.207.192]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.193',\n 'status' => 'default',\n)\n14:39:55[debug]: [66/27.125.207.193] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.193',\n 'status' => 'default',\n 'uid' => 66,\n)\n14:39:55[info]: [27.125.207.193]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.194',\n 'status' => 'default',\n)\n14:39:55[debug]: [67/27.125.207.194] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.194',\n 'status' => 'default',\n 'uid' => 67,\n)\n14:39:55[info]: [27.125.207.194]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.195',\n 'status' => 'default',\n)\n14:39:55[debug]: [68/27.125.207.195] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.195',\n 'status' => 'default',\n 'uid' => 68,\n)\n14:39:55[info]: [27.125.207.195]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.196',\n 'status' => 'default',\n)\n14:39:55[debug]: [69/27.125.207.196] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.196',\n 'status' => 'default',\n 'uid' => 69,\n)\n14:39:55[info]: [27.125.207.196]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.197',\n 'status' => 'default',\n)\n14:39:55[debug]: [70/27.125.207.197] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.197',\n 'status' => 'default',\n 'uid' => 70,\n)\n14:39:55[info]: [27.125.207.197]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.198',\n 'status' => 'default',\n)\n14:39:55[debug]: [71/27.125.207.198] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.198',\n 'status' => 'default',\n 'uid' => 71,\n)\n14:39:55[info]: [27.125.207.198]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.199',\n 'status' => 'default',\n)\n14:39:55[debug]: [72/27.125.207.199] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.199',\n 'status' => 'default',\n 'uid' => 72,\n)\n14:39:55[info]: [27.125.207.199]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.200',\n 'status' => 'default',\n)\n14:39:55[debug]: [73/27.125.207.200] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.200',\n 'status' => 'default',\n 'uid' => 73,\n)\n14:39:55[info]: [27.125.207.200]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.201',\n 'status' => 'default',\n)\n14:39:55[debug]: [74/27.125.207.201] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.201',\n 'status' => 'default',\n 'uid' => 74,\n)\n14:39:55[info]: [27.125.207.201]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.202',\n 'status' => 'default',\n)\n14:39:55[debug]: [75/27.125.207.202] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.202',\n 'status' => 'default',\n 'uid' => 75,\n)\n14:39:55[info]: [27.125.207.202]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.203',\n 'status' => 'default',\n)\n14:39:55[debug]: [76/27.125.207.203] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.203',\n 'status' => 'default',\n 'uid' => 76,\n)\n14:39:55[info]: [27.125.207.203]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.204',\n 'status' => 'default',\n)\n14:39:55[debug]: [77/27.125.207.204] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.204',\n 'status' => 'default',\n 'uid' => 77,\n)\n14:39:55[info]: [27.125.207.204]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.205',\n 'status' => 'default',\n)\n14:39:55[debug]: [78/27.125.207.205] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.205',\n 'status' => 'default',\n 'uid' => 78,\n)\n14:39:55[info]: [27.125.207.205]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.206',\n 'status' => 'default',\n)\n14:39:55[debug]: [79/27.125.207.206] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.206',\n 'status' => 'default',\n 'uid' => 79,\n)\n14:39:55[info]: [27.125.207.206]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.207',\n 'status' => 'default',\n)\n14:39:55[debug]: [80/27.125.207.207] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.207',\n 'status' => 'default',\n 'uid' => 80,\n)\n14:39:55[info]: [27.125.207.207]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.208',\n 'status' => 'default',\n)\n14:39:55[debug]: [81/27.125.207.208] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.208',\n 'status' => 'default',\n 'uid' => 81,\n)\n14:39:55[info]: [27.125.207.208]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.209',\n 'status' => 'default',\n)\n14:39:55[debug]: [82/27.125.207.209] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.209',\n 'status' => 'default',\n 'uid' => 82,\n)\n14:39:55[info]: [27.125.207.209]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.210',\n 'status' => 'default',\n)\n14:39:55[debug]: [83/27.125.207.210] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.210',\n 'status' => 'default',\n 'uid' => 83,\n)\n14:39:55[info]: [27.125.207.210]생성되었습니다.:\n14:39:55[debug]: 입력내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.211',\n 'status' => 'default',\n)\n14:39:55[debug]: [84/27.125.207.211] 입력 후 내용\n14:39:55[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.211',\n 'status' => 'default',\n 'uid' => 84,\n)\n14:39:55[info]: [27.125.207.211]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.212',\n 'status' => 'default',\n)\n14:39:56[debug]: [85/27.125.207.212] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.212',\n 'status' => 'default',\n 'uid' => 85,\n)\n14:39:56[info]: [27.125.207.212]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.213',\n 'status' => 'default',\n)\n14:39:56[debug]: [86/27.125.207.213] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.213',\n 'status' => 'default',\n 'uid' => 86,\n)\n14:39:56[info]: [27.125.207.213]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.214',\n 'status' => 'default',\n)\n14:39:56[debug]: [87/27.125.207.214] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.214',\n 'status' => 'default',\n 'uid' => 87,\n)\n14:39:56[info]: [27.125.207.214]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.215',\n 'status' => 'default',\n)\n14:39:56[debug]: [88/27.125.207.215] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.215',\n 'status' => 'default',\n 'uid' => 88,\n)\n14:39:56[info]: [27.125.207.215]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.216',\n 'status' => 'default',\n)\n14:39:56[debug]: [89/27.125.207.216] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.216',\n 'status' => 'default',\n 'uid' => 89,\n)\n14:39:56[info]: [27.125.207.216]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.217',\n 'status' => 'default',\n)\n14:39:56[debug]: [90/27.125.207.217] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.217',\n 'status' => 'default',\n 'uid' => 90,\n)\n14:39:56[info]: [27.125.207.217]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.218',\n 'status' => 'default',\n)\n14:39:56[debug]: [91/27.125.207.218] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.218',\n 'status' => 'default',\n 'uid' => 91,\n)\n14:39:56[info]: [27.125.207.218]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.219',\n 'status' => 'default',\n)\n14:39:56[debug]: [92/27.125.207.219] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.219',\n 'status' => 'default',\n 'uid' => 92,\n)\n14:39:56[info]: [27.125.207.219]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.220',\n 'status' => 'default',\n)\n14:39:56[debug]: [93/27.125.207.220] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.220',\n 'status' => 'default',\n 'uid' => 93,\n)\n14:39:56[info]: [27.125.207.220]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.221',\n 'status' => 'default',\n)\n14:39:56[debug]: [94/27.125.207.221] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.221',\n 'status' => 'default',\n 'uid' => 94,\n)\n14:39:56[info]: [27.125.207.221]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.222',\n 'status' => 'default',\n)\n14:39:56[debug]: [95/27.125.207.222] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.222',\n 'status' => 'default',\n 'uid' => 95,\n)\n14:39:56[info]: [27.125.207.222]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.223',\n 'status' => 'default',\n)\n14:39:56[debug]: [96/27.125.207.223] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.223',\n 'status' => 'default',\n 'uid' => 96,\n)\n14:39:56[info]: [27.125.207.223]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.224',\n 'status' => 'default',\n)\n14:39:56[debug]: [97/27.125.207.224] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.224',\n 'status' => 'default',\n 'uid' => 97,\n)\n14:39:56[info]: [27.125.207.224]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.225',\n 'status' => 'default',\n)\n14:39:56[debug]: [98/27.125.207.225] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.225',\n 'status' => 'default',\n 'uid' => 98,\n)\n14:39:56[info]: [27.125.207.225]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.226',\n 'status' => 'default',\n)\n14:39:56[debug]: [99/27.125.207.226] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.226',\n 'status' => 'default',\n 'uid' => 99,\n)\n14:39:56[info]: [27.125.207.226]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.227',\n 'status' => 'default',\n)\n14:39:56[debug]: [100/27.125.207.227] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.227',\n 'status' => 'default',\n 'uid' => 100,\n)\n14:39:56[info]: [27.125.207.227]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.228',\n 'status' => 'default',\n)\n14:39:56[debug]: [101/27.125.207.228] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.228',\n 'status' => 'default',\n 'uid' => 101,\n)\n14:39:56[info]: [27.125.207.228]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.229',\n 'status' => 'default',\n)\n14:39:56[debug]: [102/27.125.207.229] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.229',\n 'status' => 'default',\n 'uid' => 102,\n)\n14:39:56[info]: [27.125.207.229]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.230',\n 'status' => 'default',\n)\n14:39:56[debug]: [103/27.125.207.230] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.230',\n 'status' => 'default',\n 'uid' => 103,\n)\n14:39:56[info]: [27.125.207.230]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.231',\n 'status' => 'default',\n)\n14:39:56[debug]: [104/27.125.207.231] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.231',\n 'status' => 'default',\n 'uid' => 104,\n)\n14:39:56[info]: [27.125.207.231]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.232',\n 'status' => 'default',\n)\n14:39:56[debug]: [105/27.125.207.232] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.232',\n 'status' => 'default',\n 'uid' => 105,\n)\n14:39:56[info]: [27.125.207.232]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.233',\n 'status' => 'default',\n)\n14:39:56[debug]: [106/27.125.207.233] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.233',\n 'status' => 'default',\n 'uid' => 106,\n)\n14:39:56[info]: [27.125.207.233]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.234',\n 'status' => 'default',\n)\n14:39:56[debug]: [107/27.125.207.234] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.234',\n 'status' => 'default',\n 'uid' => 107,\n)\n14:39:56[info]: [27.125.207.234]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.235',\n 'status' => 'default',\n)\n14:39:56[debug]: [108/27.125.207.235] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.235',\n 'status' => 'default',\n 'uid' => 108,\n)\n14:39:56[info]: [27.125.207.235]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.236',\n 'status' => 'default',\n)\n14:39:56[debug]: [109/27.125.207.236] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.236',\n 'status' => 'default',\n 'uid' => 109,\n)\n14:39:56[info]: [27.125.207.236]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.237',\n 'status' => 'default',\n)\n14:39:56[debug]: [110/27.125.207.237] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.237',\n 'status' => 'default',\n 'uid' => 110,\n)\n14:39:56[info]: [27.125.207.237]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.238',\n 'status' => 'default',\n)\n14:39:56[debug]: [111/27.125.207.238] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.238',\n 'status' => 'default',\n 'uid' => 111,\n)\n14:39:56[info]: [27.125.207.238]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.239',\n 'status' => 'default',\n)\n14:39:56[debug]: [112/27.125.207.239] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.239',\n 'status' => 'default',\n 'uid' => 112,\n)\n14:39:56[info]: [27.125.207.239]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.240',\n 'status' => 'default',\n)\n14:39:56[debug]: [113/27.125.207.240] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.240',\n 'status' => 'default',\n 'uid' => 113,\n)\n14:39:56[info]: [27.125.207.240]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.241',\n 'status' => 'default',\n)\n14:39:56[debug]: [114/27.125.207.241] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.241',\n 'status' => 'default',\n 'uid' => 114,\n)\n14:39:56[info]: [27.125.207.241]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.242',\n 'status' => 'default',\n)\n14:39:56[debug]: [115/27.125.207.242] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.242',\n 'status' => 'default',\n 'uid' => 115,\n)\n14:39:56[info]: [27.125.207.242]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.243',\n 'status' => 'default',\n)\n14:39:56[debug]: [116/27.125.207.243] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.243',\n 'status' => 'default',\n 'uid' => 116,\n)\n14:39:56[info]: [27.125.207.243]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.244',\n 'status' => 'default',\n)\n14:39:56[debug]: [117/27.125.207.244] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.244',\n 'status' => 'default',\n 'uid' => 117,\n)\n14:39:56[info]: [27.125.207.244]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.245',\n 'status' => 'default',\n)\n14:39:56[debug]: [118/27.125.207.245] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.245',\n 'status' => 'default',\n 'uid' => 118,\n)\n14:39:56[info]: [27.125.207.245]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.246',\n 'status' => 'default',\n)\n14:39:56[debug]: [119/27.125.207.246] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.246',\n 'status' => 'default',\n 'uid' => 119,\n)\n14:39:56[info]: [27.125.207.246]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.247',\n 'status' => 'default',\n)\n14:39:56[debug]: [120/27.125.207.247] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.247',\n 'status' => 'default',\n 'uid' => 120,\n)\n14:39:56[info]: [27.125.207.247]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.248',\n 'status' => 'default',\n)\n14:39:56[debug]: [121/27.125.207.248] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.248',\n 'status' => 'default',\n 'uid' => 121,\n)\n14:39:56[info]: [27.125.207.248]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.249',\n 'status' => 'default',\n)\n14:39:56[debug]: [122/27.125.207.249] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.249',\n 'status' => 'default',\n 'uid' => 122,\n)\n14:39:56[info]: [27.125.207.249]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.250',\n 'status' => 'default',\n)\n14:39:56[debug]: [123/27.125.207.250] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.250',\n 'status' => 'default',\n 'uid' => 123,\n)\n14:39:56[info]: [27.125.207.250]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.251',\n 'status' => 'default',\n)\n14:39:56[debug]: [124/27.125.207.251] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.251',\n 'status' => 'default',\n 'uid' => 124,\n)\n14:39:56[info]: [27.125.207.251]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.252',\n 'status' => 'default',\n)\n14:39:56[debug]: [125/27.125.207.252] 입력 후 내용\n14:39:56[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.252',\n 'status' => 'default',\n 'uid' => 125,\n)\n14:39:56[info]: [27.125.207.252]생성되었습니다.:\n14:39:56[debug]: 입력내용\n14:39:56[debug]: array (\n 'lineinfo_uid' =&','default','2025-05-22 05:39:56'),(29,1,'Equipment\\Server','create','작업이 성공적으로 완료되었습니다.','14:42:39[debug]: 입력내용\n14:42:39[debug]: array (\n 'code' => 'X386',\n 'type' => 'Rack',\n 'model' => 'HP DL360 Gen 8',\n 'status' => 'default',\n 'description' => '',\n)\n14:42:39[debug]: [1/X386 [HP DL360 Gen 8]] 입력 후 내용\n14:42:39[debug]: array (\n 'code' => 'X386',\n 'type' => 'Rack',\n 'model' => 'HP DL360 Gen 8',\n 'status' => 'default',\n 'description' => '',\n 'uid' => 1,\n)\n14:42:39[info]: [X386 [HP DL360 Gen 8]]생성되었습니다.:','default','2025-05-22 05:42:39'),(30,1,'Equipment\\Part\\Cpu','create','작업이 성공적으로 완료되었습니다.','14:44:07[debug]: 입력내용\n14:44:07[debug]: array (\n 'model' => 'Xeon(R) CPU E5-2690 v2 @3.00GHz',\n 'status' => 'default',\n)\n14:44:07[debug]: [1/Xeon(R) CPU E5-2690 v2 @3.00GHz] 입력 후 내용\n14:44:07[debug]: array (\n 'model' => 'Xeon(R) CPU E5-2690 v2 @3.00GHz',\n 'status' => 'default',\n 'uid' => 1,\n)\n14:44:07[info]: [Xeon(R) CPU E5-2690 v2 @3.00GHz]생성되었습니다.:','default','2025-05-22 05:44:07'),(31,1,'Equipment\\Part\\Cpu','create','작업이 성공적으로 완료되었습니다.','14:44:14[debug]: 입력내용\n14:44:14[debug]: array (\n 'model' => 'Xeon(R) CPU E5-2690 v4 @ 2.60GHz',\n 'status' => 'default',\n)\n14:44:14[debug]: [2/Xeon(R) CPU E5-2690 v4 @ 2.60GHz] 입력 후 내용\n14:44:14[debug]: array (\n 'model' => 'Xeon(R) CPU E5-2690 v4 @ 2.60GHz',\n 'status' => 'default',\n 'uid' => 2,\n)\n14:44:14[info]: [Xeon(R) CPU E5-2690 v4 @ 2.60GHz]생성되었습니다.:','default','2025-05-22 05:44:14'),(32,1,'Equipment\\Part\\Ram','create','작업이 성공적으로 완료되었습니다.','14:44:28[debug]: 입력내용\n14:44:28[debug]: array (\n 'model' => 'ECC 2G',\n 'status' => 'default',\n)\n14:44:28[debug]: [1/ECC 2G] 입력 후 내용\n14:44:28[debug]: array (\n 'model' => 'ECC 2G',\n 'status' => 'default',\n 'uid' => 1,\n)\n14:44:28[info]: [ECC 2G]생성되었습니다.:','default','2025-05-22 05:44:28'),(33,1,'Equipment\\Part\\Ram','create','작업이 성공적으로 완료되었습니다.','14:44:36[debug]: 입력내용\n14:44:36[debug]: array (\n 'model' => 'ECC 4G',\n 'status' => 'default',\n)\n14:44:36[debug]: [2/ECC 4G] 입력 후 내용\n14:44:36[debug]: array (\n 'model' => 'ECC 4G',\n 'status' => 'default',\n 'uid' => 2,\n)\n14:44:36[info]: [ECC 4G]생성되었습니다.:','default','2025-05-22 05:44:36'),(34,1,'Equipment\\Part\\Ram','create','작업이 성공적으로 완료되었습니다.','14:44:43[debug]: 입력내용\n14:44:43[debug]: array (\n 'model' => 'ECC 8G',\n 'status' => 'default',\n)\n14:44:43[debug]: [3/ECC 8G] 입력 후 내용\n14:44:43[debug]: array (\n 'model' => 'ECC 8G',\n 'status' => 'default',\n 'uid' => 3,\n)\n14:44:43[info]: [ECC 8G]생성되었습니다.:','default','2025-05-22 05:44:43'),(35,1,'Equipment\\Part\\Ram','create','작업이 성공적으로 완료되었습니다.','14:44:52[debug]: 입력내용\n14:44:52[debug]: array (\n 'model' => 'ECC 16G',\n 'status' => '',\n)\n14:44:52[debug]: [4/ECC 16G] 입력 후 내용\n14:44:52[debug]: array (\n 'model' => 'ECC 16G',\n 'status' => '',\n 'uid' => 4,\n)\n14:44:52[info]: [ECC 16G]생성되었습니다.:','default','2025-05-22 05:44:52'),(36,1,'Equipment\\Part\\Ram','toggle','작업이 성공적으로 완료되었습니다.','14:44:57[debug]: [4/ECC 16G] 변경 전 내용\n14:44:57[debug]: array (\n 'status' => 'default',\n)\n14:44:57[debug]: array (\n 'uid' => '4',\n 'model' => 'ECC 16G',\n 'status' => '',\n 'updated_at' => NULL,\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:44:52.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:44:57[debug]: [4/ECC 16G] 변경 후 내용\n14:44:57[debug]: array (\n 'uid' => '4',\n 'model' => 'ECC 16G',\n 'status' => 'default',\n 'updated_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:44:57.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'created_at' => \n \\CodeIgniter\\I18n\\Time::__set_state(array(\n 'timezone' => \n \\DateTimeZone::__set_state(array(\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'locale' => 'en',\n 'toStringFormat' => 'yyyy-MM-dd HH:mm:ss',\n 'date' => '2025-05-22 14:44:52.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n14:44:57[info]: [ECC 16G]수정되였습니다.:','default','2025-05-22 05:44:57'),(37,1,'Equipment\\Part\\Ram','create','작업이 성공적으로 완료되었습니다.','14:45:05[debug]: 입력내용\n14:45:05[debug]: array (\n 'model' => 'ECC 32G',\n 'status' => 'default',\n)\n14:45:05[debug]: [5/ECC 32G] 입력 후 내용\n14:45:05[debug]: array (\n 'model' => 'ECC 32G',\n 'status' => 'default',\n 'uid' => 5,\n)\n14:45:05[info]: [ECC 32G]생성되었습니다.:','default','2025-05-22 05:45:05'),(38,1,'Equipment\\Part\\Disk','create','작업이 성공적으로 완료되었습니다.','14:45:23[debug]: 입력내용\n14:45:23[debug]: array (\n 'model' => 'Samsung SSD 860 256G',\n 'status' => 'default',\n)\n14:45:23[debug]: [1/Samsung SSD 860 256G] 입력 후 내용\n14:45:23[debug]: array (\n 'model' => 'Samsung SSD 860 256G',\n 'status' => 'default',\n 'uid' => 1,\n)\n14:45:23[info]: [Samsung SSD 860 256G]생성되었습니다.:','default','2025-05-22 05:45:23'),(39,1,'Equipment\\Part\\Disk','create','작업이 성공적으로 완료되었습니다.','14:45:31[debug]: 입력내용\n14:45:31[debug]: array (\n 'model' => 'Samsung SSD 870 EVO 500G',\n 'status' => 'default',\n)\n14:45:31[debug]: [2/Samsung SSD 870 EVO 500G] 입력 후 내용\n14:45:31[debug]: array (\n 'model' => 'Samsung SSD 870 EVO 500G',\n 'status' => 'default',\n 'uid' => 2,\n)\n14:45:31[info]: [Samsung SSD 870 EVO 500G]생성되었습니다.:','default','2025-05-22 05:45:31'),(40,1,'Equipment\\Part\\Disk','create','작업이 성공적으로 완료되었습니다.','14:45:37[debug]: 입력내용\n14:45:37[debug]: array (\n 'model' => 'Samsung SSD 870 Pro 500G',\n 'status' => 'default',\n)\n14:45:37[debug]: [3/Samsung SSD 870 Pro 500G] 입력 후 내용\n14:45:37[debug]: array (\n 'model' => 'Samsung SSD 870 Pro 500G',\n 'status' => 'default',\n 'uid' => 3,\n)\n14:45:37[info]: [Samsung SSD 870 Pro 500G]생성되었습니다.:','default','2025-05-22 05:45:37'); +INSERT INTO `logger` VALUES (22,1,'Equipment\\Line','create','작업이 성공적으로 완료되었습니다.','12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'clientinfo_uid' => '',\n 'type' => 'general',\n 'title' => '일반라인1',\n 'bandwith' => '27.125.207.128/25',\n 'start_at' => '2025-05-01',\n 'status' => 'default',\n)\n12:23:42[debug]: [1/일반라인1] 입력 후 내용\n12:23:42[debug]: array (\n 'type' => 'general',\n 'title' => '일반라인1',\n 'bandwith' => '27.125.207.128/25',\n 'start_at' => '2025-05-01',\n 'status' => 'default',\n 'uid' => 1,\n)\n12:23:42[info]: [일반라인1]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.128',\n 'status' => 'default',\n)\n12:23:42[debug]: [1/27.125.207.128] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.128',\n 'status' => 'default',\n 'uid' => 1,\n)\n12:23:42[info]: [27.125.207.128]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.129',\n 'status' => 'default',\n)\n12:23:42[debug]: [2/27.125.207.129] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.129',\n 'status' => 'default',\n 'uid' => 2,\n)\n12:23:42[info]: [27.125.207.129]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.130',\n 'status' => 'default',\n)\n12:23:42[debug]: [3/27.125.207.130] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.130',\n 'status' => 'default',\n 'uid' => 3,\n)\n12:23:42[info]: [27.125.207.130]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.131',\n 'status' => 'default',\n)\n12:23:42[debug]: [4/27.125.207.131] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.131',\n 'status' => 'default',\n 'uid' => 4,\n)\n12:23:42[info]: [27.125.207.131]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.132',\n 'status' => 'default',\n)\n12:23:42[debug]: [5/27.125.207.132] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.132',\n 'status' => 'default',\n 'uid' => 5,\n)\n12:23:42[info]: [27.125.207.132]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.133',\n 'status' => 'default',\n)\n12:23:42[debug]: [6/27.125.207.133] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.133',\n 'status' => 'default',\n 'uid' => 6,\n)\n12:23:42[info]: [27.125.207.133]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.134',\n 'status' => 'default',\n)\n12:23:42[debug]: [7/27.125.207.134] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.134',\n 'status' => 'default',\n 'uid' => 7,\n)\n12:23:42[info]: [27.125.207.134]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.135',\n 'status' => 'default',\n)\n12:23:42[debug]: [8/27.125.207.135] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.135',\n 'status' => 'default',\n 'uid' => 8,\n)\n12:23:42[info]: [27.125.207.135]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.136',\n 'status' => 'default',\n)\n12:23:42[debug]: [9/27.125.207.136] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.136',\n 'status' => 'default',\n 'uid' => 9,\n)\n12:23:42[info]: [27.125.207.136]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.137',\n 'status' => 'default',\n)\n12:23:42[debug]: [10/27.125.207.137] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.137',\n 'status' => 'default',\n 'uid' => 10,\n)\n12:23:42[info]: [27.125.207.137]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.138',\n 'status' => 'default',\n)\n12:23:42[debug]: [11/27.125.207.138] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.138',\n 'status' => 'default',\n 'uid' => 11,\n)\n12:23:42[info]: [27.125.207.138]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.139',\n 'status' => 'default',\n)\n12:23:42[debug]: [12/27.125.207.139] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.139',\n 'status' => 'default',\n 'uid' => 12,\n)\n12:23:42[info]: [27.125.207.139]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.140',\n 'status' => 'default',\n)\n12:23:42[debug]: [13/27.125.207.140] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.140',\n 'status' => 'default',\n 'uid' => 13,\n)\n12:23:42[info]: [27.125.207.140]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.141',\n 'status' => 'default',\n)\n12:23:42[debug]: [14/27.125.207.141] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.141',\n 'status' => 'default',\n 'uid' => 14,\n)\n12:23:42[info]: [27.125.207.141]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.142',\n 'status' => 'default',\n)\n12:23:42[debug]: [15/27.125.207.142] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.142',\n 'status' => 'default',\n 'uid' => 15,\n)\n12:23:42[info]: [27.125.207.142]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.143',\n 'status' => 'default',\n)\n12:23:42[debug]: [16/27.125.207.143] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.143',\n 'status' => 'default',\n 'uid' => 16,\n)\n12:23:42[info]: [27.125.207.143]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.144',\n 'status' => 'default',\n)\n12:23:42[debug]: [17/27.125.207.144] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.144',\n 'status' => 'default',\n 'uid' => 17,\n)\n12:23:42[info]: [27.125.207.144]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.145',\n 'status' => 'default',\n)\n12:23:42[debug]: [18/27.125.207.145] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.145',\n 'status' => 'default',\n 'uid' => 18,\n)\n12:23:42[info]: [27.125.207.145]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.146',\n 'status' => 'default',\n)\n12:23:42[debug]: [19/27.125.207.146] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.146',\n 'status' => 'default',\n 'uid' => 19,\n)\n12:23:42[info]: [27.125.207.146]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.147',\n 'status' => 'default',\n)\n12:23:42[debug]: [20/27.125.207.147] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.147',\n 'status' => 'default',\n 'uid' => 20,\n)\n12:23:42[info]: [27.125.207.147]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.148',\n 'status' => 'default',\n)\n12:23:42[debug]: [21/27.125.207.148] 입력 후 내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.148',\n 'status' => 'default',\n 'uid' => 21,\n)\n12:23:42[info]: [27.125.207.148]생성되었습니다.:\n12:23:42[debug]: 입력내용\n12:23:42[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.149',\n 'status' => 'default',\n)\n12:23:43[debug]: [22/27.125.207.149] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.149',\n 'status' => 'default',\n 'uid' => 22,\n)\n12:23:43[info]: [27.125.207.149]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.150',\n 'status' => 'default',\n)\n12:23:43[debug]: [23/27.125.207.150] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.150',\n 'status' => 'default',\n 'uid' => 23,\n)\n12:23:43[info]: [27.125.207.150]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.151',\n 'status' => 'default',\n)\n12:23:43[debug]: [24/27.125.207.151] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.151',\n 'status' => 'default',\n 'uid' => 24,\n)\n12:23:43[info]: [27.125.207.151]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.152',\n 'status' => 'default',\n)\n12:23:43[debug]: [25/27.125.207.152] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.152',\n 'status' => 'default',\n 'uid' => 25,\n)\n12:23:43[info]: [27.125.207.152]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.153',\n 'status' => 'default',\n)\n12:23:43[debug]: [26/27.125.207.153] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.153',\n 'status' => 'default',\n 'uid' => 26,\n)\n12:23:43[info]: [27.125.207.153]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.154',\n 'status' => 'default',\n)\n12:23:43[debug]: [27/27.125.207.154] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.154',\n 'status' => 'default',\n 'uid' => 27,\n)\n12:23:43[info]: [27.125.207.154]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.155',\n 'status' => 'default',\n)\n12:23:43[debug]: [28/27.125.207.155] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.155',\n 'status' => 'default',\n 'uid' => 28,\n)\n12:23:43[info]: [27.125.207.155]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.156',\n 'status' => 'default',\n)\n12:23:43[debug]: [29/27.125.207.156] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.156',\n 'status' => 'default',\n 'uid' => 29,\n)\n12:23:43[info]: [27.125.207.156]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.157',\n 'status' => 'default',\n)\n12:23:43[debug]: [30/27.125.207.157] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.157',\n 'status' => 'default',\n 'uid' => 30,\n)\n12:23:43[info]: [27.125.207.157]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.158',\n 'status' => 'default',\n)\n12:23:43[debug]: [31/27.125.207.158] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.158',\n 'status' => 'default',\n 'uid' => 31,\n)\n12:23:43[info]: [27.125.207.158]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.159',\n 'status' => 'default',\n)\n12:23:43[debug]: [32/27.125.207.159] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.159',\n 'status' => 'default',\n 'uid' => 32,\n)\n12:23:43[info]: [27.125.207.159]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.160',\n 'status' => 'default',\n)\n12:23:43[debug]: [33/27.125.207.160] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.160',\n 'status' => 'default',\n 'uid' => 33,\n)\n12:23:43[info]: [27.125.207.160]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.161',\n 'status' => 'default',\n)\n12:23:43[debug]: [34/27.125.207.161] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.161',\n 'status' => 'default',\n 'uid' => 34,\n)\n12:23:43[info]: [27.125.207.161]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.162',\n 'status' => 'default',\n)\n12:23:43[debug]: [35/27.125.207.162] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.162',\n 'status' => 'default',\n 'uid' => 35,\n)\n12:23:43[info]: [27.125.207.162]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.163',\n 'status' => 'default',\n)\n12:23:43[debug]: [36/27.125.207.163] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.163',\n 'status' => 'default',\n 'uid' => 36,\n)\n12:23:43[info]: [27.125.207.163]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.164',\n 'status' => 'default',\n)\n12:23:43[debug]: [37/27.125.207.164] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.164',\n 'status' => 'default',\n 'uid' => 37,\n)\n12:23:43[info]: [27.125.207.164]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.165',\n 'status' => 'default',\n)\n12:23:43[debug]: [38/27.125.207.165] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.165',\n 'status' => 'default',\n 'uid' => 38,\n)\n12:23:43[info]: [27.125.207.165]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.166',\n 'status' => 'default',\n)\n12:23:43[debug]: [39/27.125.207.166] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.166',\n 'status' => 'default',\n 'uid' => 39,\n)\n12:23:43[info]: [27.125.207.166]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.167',\n 'status' => 'default',\n)\n12:23:43[debug]: [40/27.125.207.167] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.167',\n 'status' => 'default',\n 'uid' => 40,\n)\n12:23:43[info]: [27.125.207.167]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.168',\n 'status' => 'default',\n)\n12:23:43[debug]: [41/27.125.207.168] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.168',\n 'status' => 'default',\n 'uid' => 41,\n)\n12:23:43[info]: [27.125.207.168]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.169',\n 'status' => 'default',\n)\n12:23:43[debug]: [42/27.125.207.169] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.169',\n 'status' => 'default',\n 'uid' => 42,\n)\n12:23:43[info]: [27.125.207.169]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.170',\n 'status' => 'default',\n)\n12:23:43[debug]: [43/27.125.207.170] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.170',\n 'status' => 'default',\n 'uid' => 43,\n)\n12:23:43[info]: [27.125.207.170]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.171',\n 'status' => 'default',\n)\n12:23:43[debug]: [44/27.125.207.171] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.171',\n 'status' => 'default',\n 'uid' => 44,\n)\n12:23:43[info]: [27.125.207.171]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.172',\n 'status' => 'default',\n)\n12:23:43[debug]: [45/27.125.207.172] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.172',\n 'status' => 'default',\n 'uid' => 45,\n)\n12:23:43[info]: [27.125.207.172]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.173',\n 'status' => 'default',\n)\n12:23:43[debug]: [46/27.125.207.173] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.173',\n 'status' => 'default',\n 'uid' => 46,\n)\n12:23:43[info]: [27.125.207.173]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.174',\n 'status' => 'default',\n)\n12:23:43[debug]: [47/27.125.207.174] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.174',\n 'status' => 'default',\n 'uid' => 47,\n)\n12:23:43[info]: [27.125.207.174]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.175',\n 'status' => 'default',\n)\n12:23:43[debug]: [48/27.125.207.175] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.175',\n 'status' => 'default',\n 'uid' => 48,\n)\n12:23:43[info]: [27.125.207.175]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.176',\n 'status' => 'default',\n)\n12:23:43[debug]: [49/27.125.207.176] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.176',\n 'status' => 'default',\n 'uid' => 49,\n)\n12:23:43[info]: [27.125.207.176]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.177',\n 'status' => 'default',\n)\n12:23:43[debug]: [50/27.125.207.177] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.177',\n 'status' => 'default',\n 'uid' => 50,\n)\n12:23:43[info]: [27.125.207.177]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.178',\n 'status' => 'default',\n)\n12:23:43[debug]: [51/27.125.207.178] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.178',\n 'status' => 'default',\n 'uid' => 51,\n)\n12:23:43[info]: [27.125.207.178]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.179',\n 'status' => 'default',\n)\n12:23:43[debug]: [52/27.125.207.179] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.179',\n 'status' => 'default',\n 'uid' => 52,\n)\n12:23:43[info]: [27.125.207.179]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.180',\n 'status' => 'default',\n)\n12:23:43[debug]: [53/27.125.207.180] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.180',\n 'status' => 'default',\n 'uid' => 53,\n)\n12:23:43[info]: [27.125.207.180]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.181',\n 'status' => 'default',\n)\n12:23:43[debug]: [54/27.125.207.181] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.181',\n 'status' => 'default',\n 'uid' => 54,\n)\n12:23:43[info]: [27.125.207.181]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.182',\n 'status' => 'default',\n)\n12:23:43[debug]: [55/27.125.207.182] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.182',\n 'status' => 'default',\n 'uid' => 55,\n)\n12:23:43[info]: [27.125.207.182]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.183',\n 'status' => 'default',\n)\n12:23:43[debug]: [56/27.125.207.183] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.183',\n 'status' => 'default',\n 'uid' => 56,\n)\n12:23:43[info]: [27.125.207.183]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.184',\n 'status' => 'default',\n)\n12:23:43[debug]: [57/27.125.207.184] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.184',\n 'status' => 'default',\n 'uid' => 57,\n)\n12:23:43[info]: [27.125.207.184]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.185',\n 'status' => 'default',\n)\n12:23:43[debug]: [58/27.125.207.185] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.185',\n 'status' => 'default',\n 'uid' => 58,\n)\n12:23:43[info]: [27.125.207.185]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.186',\n 'status' => 'default',\n)\n12:23:43[debug]: [59/27.125.207.186] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.186',\n 'status' => 'default',\n 'uid' => 59,\n)\n12:23:43[info]: [27.125.207.186]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.187',\n 'status' => 'default',\n)\n12:23:43[debug]: [60/27.125.207.187] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.187',\n 'status' => 'default',\n 'uid' => 60,\n)\n12:23:43[info]: [27.125.207.187]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.188',\n 'status' => 'default',\n)\n12:23:43[debug]: [61/27.125.207.188] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.188',\n 'status' => 'default',\n 'uid' => 61,\n)\n12:23:43[info]: [27.125.207.188]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.189',\n 'status' => 'default',\n)\n12:23:43[debug]: [62/27.125.207.189] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.189',\n 'status' => 'default',\n 'uid' => 62,\n)\n12:23:43[info]: [27.125.207.189]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.190',\n 'status' => 'default',\n)\n12:23:43[debug]: [63/27.125.207.190] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.190',\n 'status' => 'default',\n 'uid' => 63,\n)\n12:23:43[info]: [27.125.207.190]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.191',\n 'status' => 'default',\n)\n12:23:43[debug]: [64/27.125.207.191] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.191',\n 'status' => 'default',\n 'uid' => 64,\n)\n12:23:43[info]: [27.125.207.191]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.192',\n 'status' => 'default',\n)\n12:23:43[debug]: [65/27.125.207.192] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.192',\n 'status' => 'default',\n 'uid' => 65,\n)\n12:23:43[info]: [27.125.207.192]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.193',\n 'status' => 'default',\n)\n12:23:43[debug]: [66/27.125.207.193] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.193',\n 'status' => 'default',\n 'uid' => 66,\n)\n12:23:43[info]: [27.125.207.193]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.194',\n 'status' => 'default',\n)\n12:23:43[debug]: [67/27.125.207.194] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.194',\n 'status' => 'default',\n 'uid' => 67,\n)\n12:23:43[info]: [27.125.207.194]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.195',\n 'status' => 'default',\n)\n12:23:43[debug]: [68/27.125.207.195] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.195',\n 'status' => 'default',\n 'uid' => 68,\n)\n12:23:43[info]: [27.125.207.195]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.196',\n 'status' => 'default',\n)\n12:23:43[debug]: [69/27.125.207.196] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.196',\n 'status' => 'default',\n 'uid' => 69,\n)\n12:23:43[info]: [27.125.207.196]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.197',\n 'status' => 'default',\n)\n12:23:43[debug]: [70/27.125.207.197] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.197',\n 'status' => 'default',\n 'uid' => 70,\n)\n12:23:43[info]: [27.125.207.197]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.198',\n 'status' => 'default',\n)\n12:23:43[debug]: [71/27.125.207.198] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.198',\n 'status' => 'default',\n 'uid' => 71,\n)\n12:23:43[info]: [27.125.207.198]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.199',\n 'status' => 'default',\n)\n12:23:43[debug]: [72/27.125.207.199] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.199',\n 'status' => 'default',\n 'uid' => 72,\n)\n12:23:43[info]: [27.125.207.199]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.200',\n 'status' => 'default',\n)\n12:23:43[debug]: [73/27.125.207.200] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.200',\n 'status' => 'default',\n 'uid' => 73,\n)\n12:23:43[info]: [27.125.207.200]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.201',\n 'status' => 'default',\n)\n12:23:43[debug]: [74/27.125.207.201] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.201',\n 'status' => 'default',\n 'uid' => 74,\n)\n12:23:43[info]: [27.125.207.201]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.202',\n 'status' => 'default',\n)\n12:23:43[debug]: [75/27.125.207.202] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.202',\n 'status' => 'default',\n 'uid' => 75,\n)\n12:23:43[info]: [27.125.207.202]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.203',\n 'status' => 'default',\n)\n12:23:43[debug]: [76/27.125.207.203] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.203',\n 'status' => 'default',\n 'uid' => 76,\n)\n12:23:43[info]: [27.125.207.203]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.204',\n 'status' => 'default',\n)\n12:23:43[debug]: [77/27.125.207.204] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.204',\n 'status' => 'default',\n 'uid' => 77,\n)\n12:23:43[info]: [27.125.207.204]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.205',\n 'status' => 'default',\n)\n12:23:43[debug]: [78/27.125.207.205] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.205',\n 'status' => 'default',\n 'uid' => 78,\n)\n12:23:43[info]: [27.125.207.205]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.206',\n 'status' => 'default',\n)\n12:23:43[debug]: [79/27.125.207.206] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.206',\n 'status' => 'default',\n 'uid' => 79,\n)\n12:23:43[info]: [27.125.207.206]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.207',\n 'status' => 'default',\n)\n12:23:43[debug]: [80/27.125.207.207] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.207',\n 'status' => 'default',\n 'uid' => 80,\n)\n12:23:43[info]: [27.125.207.207]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.208',\n 'status' => 'default',\n)\n12:23:43[debug]: [81/27.125.207.208] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.208',\n 'status' => 'default',\n 'uid' => 81,\n)\n12:23:43[info]: [27.125.207.208]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.209',\n 'status' => 'default',\n)\n12:23:43[debug]: [82/27.125.207.209] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.209',\n 'status' => 'default',\n 'uid' => 82,\n)\n12:23:43[info]: [27.125.207.209]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.210',\n 'status' => 'default',\n)\n12:23:43[debug]: [83/27.125.207.210] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.210',\n 'status' => 'default',\n 'uid' => 83,\n)\n12:23:43[info]: [27.125.207.210]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.211',\n 'status' => 'default',\n)\n12:23:43[debug]: [84/27.125.207.211] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.211',\n 'status' => 'default',\n 'uid' => 84,\n)\n12:23:43[info]: [27.125.207.211]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.212',\n 'status' => 'default',\n)\n12:23:43[debug]: [85/27.125.207.212] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.212',\n 'status' => 'default',\n 'uid' => 85,\n)\n12:23:43[info]: [27.125.207.212]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.213',\n 'status' => 'default',\n)\n12:23:43[debug]: [86/27.125.207.213] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.213',\n 'status' => 'default',\n 'uid' => 86,\n)\n12:23:43[info]: [27.125.207.213]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.214',\n 'status' => 'default',\n)\n12:23:43[debug]: [87/27.125.207.214] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.214',\n 'status' => 'default',\n 'uid' => 87,\n)\n12:23:43[info]: [27.125.207.214]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.215',\n 'status' => 'default',\n)\n12:23:43[debug]: [88/27.125.207.215] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.215',\n 'status' => 'default',\n 'uid' => 88,\n)\n12:23:43[info]: [27.125.207.215]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.216',\n 'status' => 'default',\n)\n12:23:43[debug]: [89/27.125.207.216] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.216',\n 'status' => 'default',\n 'uid' => 89,\n)\n12:23:43[info]: [27.125.207.216]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.217',\n 'status' => 'default',\n)\n12:23:43[debug]: [90/27.125.207.217] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.217',\n 'status' => 'default',\n 'uid' => 90,\n)\n12:23:43[info]: [27.125.207.217]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.218',\n 'status' => 'default',\n)\n12:23:43[debug]: [91/27.125.207.218] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.218',\n 'status' => 'default',\n 'uid' => 91,\n)\n12:23:43[info]: [27.125.207.218]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.219',\n 'status' => 'default',\n)\n12:23:43[debug]: [92/27.125.207.219] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.219',\n 'status' => 'default',\n 'uid' => 92,\n)\n12:23:43[info]: [27.125.207.219]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.220',\n 'status' => 'default',\n)\n12:23:43[debug]: [93/27.125.207.220] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.220',\n 'status' => 'default',\n 'uid' => 93,\n)\n12:23:43[info]: [27.125.207.220]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.221',\n 'status' => 'default',\n)\n12:23:43[debug]: [94/27.125.207.221] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.221',\n 'status' => 'default',\n 'uid' => 94,\n)\n12:23:43[info]: [27.125.207.221]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.222',\n 'status' => 'default',\n)\n12:23:43[debug]: [95/27.125.207.222] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.222',\n 'status' => 'default',\n 'uid' => 95,\n)\n12:23:43[info]: [27.125.207.222]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.223',\n 'status' => 'default',\n)\n12:23:43[debug]: [96/27.125.207.223] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.223',\n 'status' => 'default',\n 'uid' => 96,\n)\n12:23:43[info]: [27.125.207.223]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.224',\n 'status' => 'default',\n)\n12:23:43[debug]: [97/27.125.207.224] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.224',\n 'status' => 'default',\n 'uid' => 97,\n)\n12:23:43[info]: [27.125.207.224]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.225',\n 'status' => 'default',\n)\n12:23:43[debug]: [98/27.125.207.225] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.225',\n 'status' => 'default',\n 'uid' => 98,\n)\n12:23:43[info]: [27.125.207.225]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.226',\n 'status' => 'default',\n)\n12:23:43[debug]: [99/27.125.207.226] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.226',\n 'status' => 'default',\n 'uid' => 99,\n)\n12:23:43[info]: [27.125.207.226]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.227',\n 'status' => 'default',\n)\n12:23:43[debug]: [100/27.125.207.227] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.227',\n 'status' => 'default',\n 'uid' => 100,\n)\n12:23:43[info]: [27.125.207.227]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.228',\n 'status' => 'default',\n)\n12:23:43[debug]: [101/27.125.207.228] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.228',\n 'status' => 'default',\n 'uid' => 101,\n)\n12:23:43[info]: [27.125.207.228]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.229',\n 'status' => 'default',\n)\n12:23:43[debug]: [102/27.125.207.229] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.229',\n 'status' => 'default',\n 'uid' => 102,\n)\n12:23:43[info]: [27.125.207.229]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.230',\n 'status' => 'default',\n)\n12:23:43[debug]: [103/27.125.207.230] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.230',\n 'status' => 'default',\n 'uid' => 103,\n)\n12:23:43[info]: [27.125.207.230]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.231',\n 'status' => 'default',\n)\n12:23:43[debug]: [104/27.125.207.231] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.231',\n 'status' => 'default',\n 'uid' => 104,\n)\n12:23:43[info]: [27.125.207.231]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.232',\n 'status' => 'default',\n)\n12:23:43[debug]: [105/27.125.207.232] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.232',\n 'status' => 'default',\n 'uid' => 105,\n)\n12:23:43[info]: [27.125.207.232]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.233',\n 'status' => 'default',\n)\n12:23:43[debug]: [106/27.125.207.233] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.233',\n 'status' => 'default',\n 'uid' => 106,\n)\n12:23:43[info]: [27.125.207.233]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.234',\n 'status' => 'default',\n)\n12:23:43[debug]: [107/27.125.207.234] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.234',\n 'status' => 'default',\n 'uid' => 107,\n)\n12:23:43[info]: [27.125.207.234]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.235',\n 'status' => 'default',\n)\n12:23:43[debug]: [108/27.125.207.235] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.235',\n 'status' => 'default',\n 'uid' => 108,\n)\n12:23:43[info]: [27.125.207.235]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.236',\n 'status' => 'default',\n)\n12:23:43[debug]: [109/27.125.207.236] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.236',\n 'status' => 'default',\n 'uid' => 109,\n)\n12:23:43[info]: [27.125.207.236]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.237',\n 'status' => 'default',\n)\n12:23:43[debug]: [110/27.125.207.237] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.237',\n 'status' => 'default',\n 'uid' => 110,\n)\n12:23:43[info]: [27.125.207.237]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.238',\n 'status' => 'default',\n)\n12:23:43[debug]: [111/27.125.207.238] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.238',\n 'status' => 'default',\n 'uid' => 111,\n)\n12:23:43[info]: [27.125.207.238]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.239',\n 'status' => 'default',\n)\n12:23:43[debug]: [112/27.125.207.239] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.239',\n 'status' => 'default',\n 'uid' => 112,\n)\n12:23:43[info]: [27.125.207.239]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.240',\n 'status' => 'default',\n)\n12:23:43[debug]: [113/27.125.207.240] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.240',\n 'status' => 'default',\n 'uid' => 113,\n)\n12:23:43[info]: [27.125.207.240]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.241',\n 'status' => 'default',\n)\n12:23:43[debug]: [114/27.125.207.241] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.241',\n 'status' => 'default',\n 'uid' => 114,\n)\n12:23:43[info]: [27.125.207.241]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.242',\n 'status' => 'default',\n)\n12:23:43[debug]: [115/27.125.207.242] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.242',\n 'status' => 'default',\n 'uid' => 115,\n)\n12:23:43[info]: [27.125.207.242]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.243',\n 'status' => 'default',\n)\n12:23:43[debug]: [116/27.125.207.243] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.243',\n 'status' => 'default',\n 'uid' => 116,\n)\n12:23:43[info]: [27.125.207.243]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.244',\n 'status' => 'default',\n)\n12:23:43[debug]: [117/27.125.207.244] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.244',\n 'status' => 'default',\n 'uid' => 117,\n)\n12:23:43[info]: [27.125.207.244]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.245',\n 'status' => 'default',\n)\n12:23:43[debug]: [118/27.125.207.245] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.245',\n 'status' => 'default',\n 'uid' => 118,\n)\n12:23:43[info]: [27.125.207.245]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.246',\n 'status' => 'default',\n)\n12:23:43[debug]: [119/27.125.207.246] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.246',\n 'status' => 'default',\n 'uid' => 119,\n)\n12:23:43[info]: [27.125.207.246]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.247',\n 'status' => 'default',\n)\n12:23:43[debug]: [120/27.125.207.247] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.247',\n 'status' => 'default',\n 'uid' => 120,\n)\n12:23:43[info]: [27.125.207.247]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.248',\n 'status' => 'default',\n)\n12:23:43[debug]: [121/27.125.207.248] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.248',\n 'status' => 'default',\n 'uid' => 121,\n)\n12:23:43[info]: [27.125.207.248]생성되었습니다.:\n12:23:43[debug]: 입력내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.249',\n 'status' => 'default',\n)\n12:23:43[debug]: [122/27.125.207.249] 입력 후 내용\n12:23:43[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.249',\n 'status' => 'default',\n 'uid' => 122,\n)\n12:23:44[info]: [27.125.207.249]생성되었습니다.:\n12:23:44[debug]: 입력내용\n12:23:44[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.250',\n 'status' => 'default',\n)\n12:23:44[debug]: [123/27.125.207.250] 입력 후 내용\n12:23:44[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.250',\n 'status' => 'default',\n 'uid' => 123,\n)\n12:23:44[info]: [27.125.207.250]생성되었습니다.:\n12:23:44[debug]: 입력내용\n12:23:44[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.251',\n 'status' => 'default',\n)\n12:23:44[debug]: [124/27.125.207.251] 입력 후 내용\n12:23:44[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.251',\n 'status' => 'default',\n 'uid' => 124,\n)\n12:23:44[info]: [27.125.207.251]생성되었습니다.:\n12:23:44[debug]: 입력내용\n12:23:44[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.252',\n 'status' => 'default',\n)\n12:23:44[debug]: [125/27.125.207.252] 입력 후 내용\n12:23:44[debug]: array (\n 'lineinfo_uid' => '1',\n 'ip' => '27.125.207.252',\n 'status' => 'default',\n 'uid' => 125,\n)\n12:23:44[info]: [27.125.207.252]생성되었습니다.:\n12:23:44[debug]: 입력내용\n12:23:44[debug]: array (\n 'lineinfo_uid' => ','default','2025-05-26 03:23:44'),(23,1,'Equipment\\Part\\Cpu','create','작업이 성공적으로 완료되었습니다.','13:21:21[debug]: 입력내용\n13:21:21[debug]: array (\n 'model' => 'Xeon(R) CPU E5-2690 v2 @3.00GHz',\n 'price' => '50000',\n 'status' => 'default',\n)\n13:21:21[debug]: [2/Xeon(R) CPU E5-2690 v2 @3.00GHz] 입력 후 내용\n13:21:21[debug]: array (\n 'model' => 'Xeon(R) CPU E5-2690 v2 @3.00GHz',\n 'price' => '50000',\n 'status' => 'default',\n 'uid' => 2,\n)\n13:21:21[info]: [Xeon(R) CPU E5-2690 v2 @3.00GHz]생성되었습니다.:','default','2025-05-26 04:21:21'),(24,1,'Equipment\\Part\\Cpu','create','작업이 성공적으로 완료되었습니다.','13:21:46[debug]: 입력내용\n13:21:46[debug]: array (\n 'model' => 'Xeon(R) CPU E5-2690 v4 @ 2.60GHz',\n 'price' => '70000',\n 'status' => 'default',\n)\n13:21:46[debug]: [3/Xeon(R) CPU E5-2690 v4 @ 2.60GHz] 입력 후 내용\n13:21:46[debug]: array (\n 'model' => 'Xeon(R) CPU E5-2690 v4 @ 2.60GHz',\n 'price' => '70000',\n 'status' => 'default',\n 'uid' => 3,\n)\n13:21:46[info]: [Xeon(R) CPU E5-2690 v4 @ 2.60GHz]생성되었습니다.:','default','2025-05-26 04:21:46'),(25,1,'Equipment\\Part\\Ram','create','작업이 성공적으로 완료되었습니다.','13:22:54[debug]: 입력내용\n13:22:54[debug]: array (\n 'model' => 'ECC 2G',\n 'price' => '5000',\n 'status' => 'default',\n)\n13:22:54[debug]: [1/ECC 2G] 입력 후 내용\n13:22:54[debug]: array (\n 'model' => 'ECC 2G',\n 'price' => '5000',\n 'status' => 'default',\n 'uid' => 1,\n)\n13:22:54[info]: [ECC 2G]생성되었습니다.:','default','2025-05-26 04:22:54'),(26,1,'Equipment\\Part\\Ram','create','작업이 성공적으로 완료되었습니다.','13:23:09[debug]: 입력내용\n13:23:09[debug]: array (\n 'model' => 'ECC 4G',\n 'price' => '10000',\n 'status' => 'default',\n)\n13:23:09[debug]: [2/ECC 4G] 입력 후 내용\n13:23:09[debug]: array (\n 'model' => 'ECC 4G',\n 'price' => '10000',\n 'status' => 'default',\n 'uid' => 2,\n)\n13:23:09[info]: [ECC 4G]생성되었습니다.:','default','2025-05-26 04:23:09'),(27,1,'Equipment\\Part\\Ram','create','작업이 성공적으로 완료되었습니다.','13:23:37[debug]: 입력내용\n13:23:37[debug]: array (\n 'model' => 'ECC 8G',\n 'price' => '20000',\n 'status' => 'default',\n)\n13:23:37[debug]: [3/ECC 8G] 입력 후 내용\n13:23:37[debug]: array (\n 'model' => 'ECC 8G',\n 'price' => '20000',\n 'status' => 'default',\n 'uid' => 3,\n)\n13:23:37[info]: [ECC 8G]생성되었습니다.:','default','2025-05-26 04:23:37'),(28,1,'Equipment\\Part\\Disk','create','작업이 성공적으로 완료되었습니다.','13:24:11[debug]: 입력내용\n13:24:11[debug]: array (\n 'model' => 'Samsung SSD 860 256G',\n 'price' => '100000',\n 'status' => 'default',\n)\n13:24:11[debug]: [1/Samsung SSD 860 256G] 입력 후 내용\n13:24:11[debug]: array (\n 'model' => 'Samsung SSD 860 256G',\n 'price' => '100000',\n 'status' => 'default',\n 'uid' => 1,\n)\n13:24:11[info]: [Samsung SSD 860 256G]생성되었습니다.:','default','2025-05-26 04:24:11'),(29,1,'Equipment\\Part\\Disk','create','작업이 성공적으로 완료되었습니다.','13:24:31[debug]: 입력내용\n13:24:31[debug]: array (\n 'model' => 'Samsung SSD 870 EVO 500G',\n 'price' => '150000',\n 'status' => 'default',\n)\n13:24:31[debug]: [2/Samsung SSD 870 EVO 500G] 입력 후 내용\n13:24:31[debug]: array (\n 'model' => 'Samsung SSD 870 EVO 500G',\n 'price' => '150000',\n 'status' => 'default',\n 'uid' => 2,\n)\n13:24:31[info]: [Samsung SSD 870 EVO 500G]생성되었습니다.:','default','2025-05-26 04:24:31'),(30,1,'Equipment\\Part\\Disk','create','작업이 성공적으로 완료되었습니다.','13:24:43[debug]: 입력내용\n13:24:43[debug]: array (\n 'model' => 'Samsung SSD 870 Pro 500G',\n 'price' => '170000',\n 'status' => 'default',\n)\n13:24:43[debug]: [3/Samsung SSD 870 Pro 500G] 입력 후 내용\n13:24:43[debug]: array (\n 'model' => 'Samsung SSD 870 Pro 500G',\n 'price' => '170000',\n 'status' => 'default',\n 'uid' => 3,\n)\n13:24:43[info]: [Samsung SSD 870 Pro 500G]생성되었습니다.:','default','2025-05-26 04:24:43'),(31,1,'Equipment\\Software','create','작업이 성공적으로 완료되었습니다.','13:26:52[debug]: 입력내용\n13:26:52[debug]: array (\n 'type' => 'Windows',\n 'model' => 'Windows 2008R2 Ent',\n 'price' => '10000',\n 'status' => 'default',\n 'description' => '',\n)\n13:26:52[debug]: [1/Windows 2008R2 Ent] 입력 후 내용\n13:26:52[debug]: array (\n 'type' => 'Windows',\n 'model' => 'Windows 2008R2 Ent',\n 'price' => '10000',\n 'status' => 'default',\n 'description' => '',\n 'uid' => 1,\n)\n13:26:52[info]: [Windows 2008R2 Ent]생성되었습니다.:','default','2025-05-26 04:26:52'),(32,1,'Equipment\\Software','create','작업이 성공적으로 완료되었습니다.','13:27:20[debug]: 입력내용\n13:27:20[debug]: array (\n 'type' => 'Linux',\n 'model' => 'CentOS 7.9',\n 'price' => '1000',\n 'status' => 'default',\n 'description' => '',\n)\n13:27:20[debug]: [2/CentOS 7.9] 입력 후 내용\n13:27:20[debug]: array (\n 'type' => 'Linux',\n 'model' => 'CentOS 7.9',\n 'price' => '1000',\n 'status' => 'default',\n 'description' => '',\n 'uid' => 2,\n)\n13:27:20[info]: [CentOS 7.9]생성되었습니다.:','default','2025-05-26 04:27:20'),(33,1,'Equipment\\Software','create','작업이 성공적으로 완료되었습니다.','13:27:50[debug]: 입력내용\n13:27:50[debug]: array (\n 'type' => 'Security',\n 'model' => '닷디펜더',\n 'price' => '100000',\n 'status' => 'default',\n 'description' => '',\n)\n13:27:50[debug]: [3/닷디펜더] 입력 후 내용\n13:27:50[debug]: array (\n 'type' => 'Security',\n 'model' => '닷디펜더',\n 'price' => '100000',\n 'status' => 'default',\n 'description' => '',\n 'uid' => 3,\n)\n13:27:50[info]: [닷디펜더]생성되었습니다.:','default','2025-05-26 04:27:50'),(34,1,'Equipment\\Software','create','작업이 성공적으로 완료되었습니다.','13:28:27[debug]: 입력내용\n13:28:27[debug]: array (\n 'type' => 'Virus',\n 'model' => '비트디펜더',\n 'price' => '100000',\n 'status' => 'default',\n 'description' => '',\n)\n13:28:27[debug]: [4/비트디펜더] 입력 후 내용\n13:28:27[debug]: array (\n 'type' => 'Virus',\n 'model' => '비트디펜더',\n 'price' => '100000',\n 'status' => 'default',\n 'description' => '',\n 'uid' => 4,\n)\n13:28:27[info]: [비트디펜더]생성되었습니다.:','default','2025-05-26 04:28:27'),(35,1,'Equipment\\Software','create','작업이 성공적으로 완료되었습니다.','13:28:57[debug]: 입력내용\n13:28:57[debug]: array (\n 'type' => 'Linux',\n 'model' => 'Ubuntu 20.04',\n 'price' => '1000',\n 'status' => 'default',\n 'description' => '',\n)\n13:28:57[debug]: [5/Ubuntu 20.04] 입력 후 내용\n13:28:57[debug]: array (\n 'type' => 'Linux',\n 'model' => 'Ubuntu 20.04',\n 'price' => '1000',\n 'status' => 'default',\n 'description' => '',\n 'uid' => 5,\n)\n13:28:57[info]: [Ubuntu 20.04]생성되었습니다.:','default','2025-05-26 04:28:57'),(36,1,'Equipment\\Software','create','작업이 성공적으로 완료되었습니다.','13:29:26[debug]: 입력내용\n13:29:26[debug]: array (\n 'type' => 'Windows',\n 'model' => 'Windows 10',\n 'price' => '10000',\n 'status' => 'default',\n 'description' => '',\n)\n13:29:26[debug]: [6/Windows 10] 입력 후 내용\n13:29:26[debug]: array (\n 'type' => 'Windows',\n 'model' => 'Windows 10',\n 'price' => '10000',\n 'status' => 'default',\n 'description' => '',\n 'uid' => 6,\n)\n13:29:26[info]: [Windows 10]생성되었습니다.:','default','2025-05-26 04:29:26'),(37,1,'Equipment\\Defence','create','작업이 성공적으로 완료되었습니다.','13:33:17[debug]: 입력내용\n13:33:17[debug]: array (\n 'type' => 'VPC-CS',\n 'ip' => '13.23.4.2',\n 'price' => '100000',\n 'accountid' => 'VPC-X21',\n 'domain' => '',\n 'status' => 'default',\n 'description' => '',\n)\n13:33:17[debug]: [1/13.23.4.2] 입력 후 내용\n13:33:17[debug]: array (\n 'type' => 'VPC-CS',\n 'ip' => '13.23.4.2',\n 'price' => '100000',\n 'accountid' => 'VPC-X21',\n 'domain' => '',\n 'status' => 'default',\n 'description' => '',\n 'uid' => 1,\n)\n13:33:17[info]: [13.23.4.2]생성되었습니다.:','default','2025-05-26 04:33:17'),(38,1,'Equipment\\Defence','create','작업이 성공적으로 완료되었습니다.','13:34:17[debug]: 입력내용\n13:34:17[debug]: array (\n 'type' => 'KT-CS',\n 'ip' => '21.238.234.34',\n 'price' => '100000',\n 'accountid' => 'KT-X23',\n 'domain' => '',\n 'status' => 'default',\n 'description' => '',\n)\n13:34:17[debug]: [2/21.238.234.34] 입력 후 내용\n13:34:17[debug]: array (\n 'type' => 'KT-CS',\n 'ip' => '21.238.234.34',\n 'price' => '100000',\n 'accountid' => 'KT-X23',\n 'domain' => '',\n 'status' => 'default',\n 'description' => '',\n 'uid' => 2,\n)\n13:34:17[info]: [21.238.234.34]생성되었습니다.:','default','2025-05-26 04:34:17'),(39,1,'Equipment\\Server','create','작업이 성공적으로 완료되었습니다.','13:34:53[debug]: 입력내용\n13:34:53[debug]: array (\n 'code' => 'X386',\n 'type' => 'Rack',\n 'model' => 'HP DL360 Gen 7',\n 'price' => '200000',\n 'raid' => 'RAID1',\n 'status' => 'default',\n 'description' => '',\n)\n13:34:53[debug]: [1/X386 [HP DL360 Gen 7]] 입력 후 내용\n13:34:53[debug]: array (\n 'code' => 'X386',\n 'type' => 'Rack',\n 'model' => 'HP DL360 Gen 7',\n 'price' => '200000',\n 'raid' => 'RAID1',\n 'status' => 'default',\n 'description' => '',\n 'uid' => 1,\n)\n13:34:53[info]: [X386 [HP DL360 Gen 7]]생성되었습니다.:','default','2025-05-26 04:34:53'),(40,1,'Equipment\\Link\\Cpu','create','작업이 성공적으로 완료되었습니다.','14:10:38[debug]: 입력내용\n14:10:38[debug]: array (\n 'serverinfo_uid' => '1',\n 'cpuinfo_uid' => '2',\n)\n14:10:38[debug]: [1/1] 입력 후 내용\n14:10:38[debug]: array (\n 'serverinfo_uid' => '1',\n 'cpuinfo_uid' => '2',\n 'uid' => 1,\n)\n14:10:38[info]: [1]생성되었습니다.:','default','2025-05-26 05:10:38'),(41,1,'Equipment\\Link\\Cpu','create','작업이 성공적으로 완료되었습니다.','14:14:50[debug]: 입력내용\n14:14:50[debug]: array (\n 'serverinfo_uid' => '1',\n 'cpuinfo_uid' => '2',\n)\n14:14:50[debug]: [2/2] 입력 후 내용\n14:14:50[debug]: array (\n 'serverinfo_uid' => '1',\n 'cpuinfo_uid' => '2',\n 'uid' => 2,\n)\n14:14:50[info]: [2]생성되었습니다.:','default','2025-05-26 05:14:50'),(42,1,'Equipment\\Link\\Ram','create','작업이 성공적으로 완료되었습니다.','14:16:27[debug]: 입력내용\n14:16:27[debug]: array (\n 'serverinfo_uid' => '1',\n 'raminfo_uid' => '2',\n)\n14:16:27[debug]: [1/1] 입력 후 내용\n14:16:27[debug]: array (\n 'serverinfo_uid' => '1',\n 'raminfo_uid' => '2',\n 'uid' => 1,\n)\n14:16:27[info]: [1]생성되었습니다.:','default','2025-05-26 05:16:27'),(43,1,'Equipment\\Link\\Ram','create','작업이 성공적으로 완료되었습니다.','14:16:58[debug]: 입력내용\n14:16:58[debug]: array (\n 'serverinfo_uid' => '1',\n 'raminfo_uid' => '2',\n)\n14:16:58[debug]: [2/2] 입력 후 내용\n14:16:58[debug]: array (\n 'serverinfo_uid' => '1',\n 'raminfo_uid' => '2',\n 'uid' => 2,\n)\n14:16:58[info]: [2]생성되었습니다.:','default','2025-05-26 05:16:58'),(44,1,'Equipment\\Link\\Disk','create','작업이 성공적으로 완료되었습니다.','14:17:27[debug]: 입력내용\n14:17:27[debug]: array (\n 'serverinfo_uid' => '1',\n 'diskinfo_uid' => '2',\n)\n14:17:27[debug]: [1/1] 입력 후 내용\n14:17:27[debug]: array (\n 'serverinfo_uid' => '1',\n 'diskinfo_uid' => '2',\n 'uid' => 1,\n)\n14:17:27[info]: [1]생성되었습니다.:','default','2025-05-26 05:17:27'),(45,1,'Equipment\\Link\\Disk','create','작업이 성공적으로 완료되었습니다.','14:17:48[debug]: 입력내용\n14:17:48[debug]: array (\n 'serverinfo_uid' => '1',\n 'diskinfo_uid' => '2',\n)\n14:17:48[debug]: [2/2] 입력 후 내용\n14:17:48[debug]: array (\n 'serverinfo_uid' => '1',\n 'diskinfo_uid' => '2',\n 'uid' => 2,\n)\n14:17:48[info]: [2]생성되었습니다.:','default','2025-05-26 05:17:48'); /*!40000 ALTER TABLE `logger` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `orderinfo` +-- + +DROP TABLE IF EXISTS `orderinfo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `orderinfo` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `clientinfo_uid` int(11) NOT NULL, + `invoice_at` date DEFAULT NULL COMMENT '청구일', + `due_at` date DEFAULT NULL COMMENT '납부기한일', + `amount` int(11) NOT NULL DEFAULT 0 COMMENT '총금액', + `status` varchar(20) NOT NULL DEFAULT 'default' COMMENT '납부여부', + `updated_at` timestamp NULL DEFAULT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`uid`), + KEY `FK_clientinfo_TO_orderinfo` (`clientinfo_uid`), + CONSTRAINT `FK_clientinfo_TO_orderinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='주문정보'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `orderinfo` +-- + +LOCK TABLES `orderinfo` WRITE; +/*!40000 ALTER TABLE `orderinfo` DISABLE KEYS */; +/*!40000 ALTER TABLE `orderinfo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `orderiteminfo` +-- + +DROP TABLE IF EXISTS `orderiteminfo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `orderiteminfo` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `orderinfo_uid` int(11) NOT NULL, + `item_type` varchar(20) NOT NULL DEFAULT 'server', + `item_uid` int(11) NOT NULL, + `price_type` varchar(20) NOT NULL DEFAULT 'month', + `price` int(11) NOT NULL DEFAULT 0 COMMENT '기본금액', + `reason` varchar(255) DEFAULT NULL COMMENT '할인이유', + `amount` int(11) NOT NULL DEFAULT 0 COMMENT '주문금액', + `updated_at` timestamp NULL DEFAULT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`uid`), + KEY `FK_orderinfo_TO_orderiteminfo` (`orderinfo_uid`), + CONSTRAINT `FK_orderinfo_TO_orderiteminfo` FOREIGN KEY (`orderinfo_uid`) REFERENCES `orderinfo` (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='주문Item정보'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `orderiteminfo` +-- + +LOCK TABLES `orderiteminfo` WRITE; +/*!40000 ALTER TABLE `orderiteminfo` DISABLE KEYS */; +/*!40000 ALTER TABLE `orderiteminfo` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `pointinfo` -- @@ -508,7 +408,7 @@ CREATE TABLE `pointinfo` ( PRIMARY KEY (`uid`), KEY `FK_clientinfo_TO_pointinfo` (`clientinfo_uid`), CONSTRAINT `FK_clientinfo_TO_pointinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='포인트정보'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='포인트정보'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -517,7 +417,6 @@ CREATE TABLE `pointinfo` ( LOCK TABLES `pointinfo` WRITE; /*!40000 ALTER TABLE `pointinfo` DISABLE KEYS */; -INSERT INTO `pointinfo` VALUES (1,3,'5월포인트입금',50000,'default','2025-05-22 05:37:59'),(2,3,'5월포인트출금',25000,'out','2025-05-22 05:38:20'); /*!40000 ALTER TABLE `pointinfo` ENABLE KEYS */; UNLOCK TABLES; @@ -531,6 +430,8 @@ DROP TABLE IF EXISTS `raminfo`; CREATE TABLE `raminfo` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `model` varchar(50) NOT NULL, + `price_type` varchar(20) NOT NULL DEFAULT 'month', + `price` int(11) NOT NULL DEFAULT 0, `status` varchar(20) NOT NULL DEFAULT 'default', `updated_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), @@ -545,43 +446,39 @@ CREATE TABLE `raminfo` ( LOCK TABLES `raminfo` WRITE; /*!40000 ALTER TABLE `raminfo` DISABLE KEYS */; -INSERT INTO `raminfo` VALUES (1,'Samsung SSD 860 256G','default',NULL,'2025-05-22 05:45:23'),(2,'Samsung SSD 870 EVO 500G','default',NULL,'2025-05-22 05:45:31'),(3,'Samsung SSD 870 Pro 500G','default',NULL,'2025-05-22 05:45:37'); +INSERT INTO `raminfo` VALUES (1,'Samsung SSD 860 256G','month',100000,'default',NULL,'2025-05-26 04:24:11'),(2,'Samsung SSD 870 EVO 500G','month',150000,'default',NULL,'2025-05-26 04:24:31'),(3,'Samsung SSD 870 Pro 500G','month',170000,'default',NULL,'2025-05-26 04:24:43'); /*!40000 ALTER TABLE `raminfo` ENABLE KEYS */; UNLOCK TABLES; -- --- Table structure for table `raminfo_link` +-- Table structure for table `renewalinfo` -- -DROP TABLE IF EXISTS `raminfo_link`; +DROP TABLE IF EXISTS `renewalinfo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; -CREATE TABLE `raminfo_link` ( +CREATE TABLE `renewalinfo` ( `uid` int(11) NOT NULL AUTO_INCREMENT, - `serviceinfo_uid` int(11) DEFAULT NULL, - `serverinfo_uid` int(11) NOT NULL, - `raminfo_uid` int(11) NOT NULL, - `billing_type` varchar(20) NOT NULL DEFAULT 'month', - `amount` int(11) DEFAULT 0, + `clientinfo_uid` int(11) NOT NULL, + `item_type` varchar(20) NOT NULL, + `item_uid` int(11) NOT NULL, + `status` varchar(20) NOT NULL DEFAULT 'default' COMMENT '다음달청구여부', + `renewal_at` date DEFAULT NULL COMMENT '다음갱신일', `updated_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`uid`), - KEY `FK_serviceinfo_TO_raminfo_link` (`serviceinfo_uid`), - KEY `FK_raminfo_TO_raminfo_link` (`raminfo_uid`), - KEY `FK_serverinfo_TO_raminfo_link` (`serverinfo_uid`), - CONSTRAINT `FK_raminfo_TO_raminfo_link` FOREIGN KEY (`raminfo_uid`) REFERENCES `raminfo` (`uid`), - CONSTRAINT `FK_serverinfo_TO_raminfo_link` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`), - CONSTRAINT `FK_serviceinfo_TO_raminfo_link` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='섭비스_RAM 연결'; + KEY `FK_clientinfo_TO_renewalinfo` (`clientinfo_uid`), + CONSTRAINT `FK_clientinfo_TO_renewalinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='자동갱신정보'; /*!40101 SET character_set_client = @saved_cs_client */; -- --- Dumping data for table `raminfo_link` +-- Dumping data for table `renewalinfo` -- -LOCK TABLES `raminfo_link` WRITE; -/*!40000 ALTER TABLE `raminfo_link` DISABLE KEYS */; -/*!40000 ALTER TABLE `raminfo_link` ENABLE KEYS */; +LOCK TABLES `renewalinfo` WRITE; +/*!40000 ALTER TABLE `renewalinfo` DISABLE KEYS */; +/*!40000 ALTER TABLE `renewalinfo` ENABLE KEYS */; UNLOCK TABLES; -- @@ -596,6 +493,9 @@ CREATE TABLE `serverinfo` ( `code` varchar(20) NOT NULL, `type` varchar(20) NOT NULL DEFAULT 'Rackmount', `model` varchar(50) NOT NULL, + `price_type` varchar(20) NOT NULL DEFAULT 'month', + `price` int(11) NOT NULL DEFAULT 0, + `raid` varchar(10) NOT NULL DEFAULT 'default', `description` text DEFAULT NULL, `status` varchar(20) NOT NULL DEFAULT 'default', `updated_at` timestamp NULL DEFAULT NULL, @@ -612,73 +512,252 @@ CREATE TABLE `serverinfo` ( LOCK TABLES `serverinfo` WRITE; /*!40000 ALTER TABLE `serverinfo` DISABLE KEYS */; -INSERT INTO `serverinfo` VALUES (1,'X386','Rack','HP DL360 Gen 8','','default',NULL,'2025-05-22 05:42:39'); +INSERT INTO `serverinfo` VALUES (1,'X386','Rack','HP DL360 Gen 7','month',200000,'RAID1','','default',NULL,'2025-05-26 04:34:53'); /*!40000 ALTER TABLE `serverinfo` ENABLE KEYS */; UNLOCK TABLES; -- --- Table structure for table `serverinfo_link` +-- Table structure for table `serverinfos_cpuinfos` -- -DROP TABLE IF EXISTS `serverinfo_link`; +DROP TABLE IF EXISTS `serverinfos_cpuinfos`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; -CREATE TABLE `serverinfo_link` ( +CREATE TABLE `serverinfos_cpuinfos` ( `uid` int(11) NOT NULL AUTO_INCREMENT, - `serviceinfo_uid` int(11) NOT NULL, `serverinfo_uid` int(11) NOT NULL, - `billing_type` varchar(20) NOT NULL DEFAULT 'month', - `amount` int(11) NOT NULL DEFAULT 0, - `updated_at` timestamp NULL DEFAULT NULL, + `cpuinfo_uid` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`uid`), - KEY `FK_serviceinfo_TO_serverinfo_link` (`serviceinfo_uid`), - KEY `FK_serverinfo_TO_serverinfo_link` (`serverinfo_uid`), - CONSTRAINT `FK_serverinfo_TO_serverinfo_link` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`), - CONSTRAINT `FK_serviceinfo_TO_serverinfo_link` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서비스-Server 연결'; + UNIQUE KEY `UQ_uid` (`uid`), + KEY `FK_serverinfo_TO_serverinfos_cpuinfos` (`serverinfo_uid`), + KEY `FK_cpuinfo_TO_serverinfos_cpuinfos` (`cpuinfo_uid`), + CONSTRAINT `FK_cpuinfo_TO_serverinfos_cpuinfos` FOREIGN KEY (`cpuinfo_uid`) REFERENCES `cpuinfo` (`uid`), + CONSTRAINT `FK_serverinfo_TO_serverinfos_cpuinfos` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서버_CPU연결'; /*!40101 SET character_set_client = @saved_cs_client */; -- --- Dumping data for table `serverinfo_link` +-- Dumping data for table `serverinfos_cpuinfos` -- -LOCK TABLES `serverinfo_link` WRITE; -/*!40000 ALTER TABLE `serverinfo_link` DISABLE KEYS */; -/*!40000 ALTER TABLE `serverinfo_link` ENABLE KEYS */; +LOCK TABLES `serverinfos_cpuinfos` WRITE; +/*!40000 ALTER TABLE `serverinfos_cpuinfos` DISABLE KEYS */; +INSERT INTO `serverinfos_cpuinfos` VALUES (1,1,2,'2025-05-26 05:10:38'),(2,1,2,'2025-05-26 05:14:50'); +/*!40000 ALTER TABLE `serverinfos_cpuinfos` ENABLE KEYS */; UNLOCK TABLES; -- --- Table structure for table `serviceinfo` +-- Table structure for table `serverinfos_defenceinfos` -- -DROP TABLE IF EXISTS `serviceinfo`; +DROP TABLE IF EXISTS `serverinfos_defenceinfos`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; -CREATE TABLE `serviceinfo` ( +CREATE TABLE `serverinfos_defenceinfos` ( `uid` int(11) NOT NULL AUTO_INCREMENT, - `clientinfo_uid` int(11) NOT NULL, - `rack` varchar(10) NOT NULL COMMENT 'Rack번호', - `type` varchar(20) NOT NULL DEFAULT 'hosting', - `billing_at` date NOT NULL COMMENT '청구일', - `start_at` date DEFAULT NULL COMMENT '개통일', - `end_at` date DEFAULT NULL COMMENT '종료일', - `status` varchar(20) NOT NULL DEFAULT 'default', - `updated_at` timestamp NULL DEFAULT NULL, + `serverinfo_uid` int(11) NOT NULL, + `defenceinfo_uid` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`uid`), - KEY `FK_clientinfo_TO_serviceinfo` (`clientinfo_uid`), - CONSTRAINT `FK_clientinfo_TO_serviceinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서비스 정보'; + UNIQUE KEY `UQ_uid` (`uid`), + KEY `FK_serverinfo_TO_serverinfos_defenceinfos` (`serverinfo_uid`), + KEY `FK_defenceinfo_TO_serverinfos_defenceinfos` (`defenceinfo_uid`), + CONSTRAINT `FK_defenceinfo_TO_serverinfos_defenceinfos` FOREIGN KEY (`defenceinfo_uid`) REFERENCES `defenceinfo` (`uid`), + CONSTRAINT `FK_serverinfo_TO_serverinfos_defenceinfos` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서버_방어연결'; /*!40101 SET character_set_client = @saved_cs_client */; -- --- Dumping data for table `serviceinfo` +-- Dumping data for table `serverinfos_defenceinfos` -- -LOCK TABLES `serviceinfo` WRITE; -/*!40000 ALTER TABLE `serviceinfo` DISABLE KEYS */; -/*!40000 ALTER TABLE `serviceinfo` ENABLE KEYS */; +LOCK TABLES `serverinfos_defenceinfos` WRITE; +/*!40000 ALTER TABLE `serverinfos_defenceinfos` DISABLE KEYS */; +/*!40000 ALTER TABLE `serverinfos_defenceinfos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `serverinfos_diskinfos` +-- + +DROP TABLE IF EXISTS `serverinfos_diskinfos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `serverinfos_diskinfos` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `serverinfo_uid` int(11) NOT NULL, + `diskinfo_uid` int(11) NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`uid`), + UNIQUE KEY `UQ_uid` (`uid`), + KEY `FK_serverinfo_TO_serverinfos_diskinfos` (`serverinfo_uid`), + KEY `FK_diskinfo_TO_serverinfos_diskinfos` (`diskinfo_uid`), + CONSTRAINT `FK_diskinfo_TO_serverinfos_diskinfos` FOREIGN KEY (`diskinfo_uid`) REFERENCES `diskinfo` (`uid`), + CONSTRAINT `FK_serverinfo_TO_serverinfos_diskinfos` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서버_DISK연결'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `serverinfos_diskinfos` +-- + +LOCK TABLES `serverinfos_diskinfos` WRITE; +/*!40000 ALTER TABLE `serverinfos_diskinfos` DISABLE KEYS */; +INSERT INTO `serverinfos_diskinfos` VALUES (1,1,2,'2025-05-26 05:17:27'),(2,1,2,'2025-05-26 05:17:48'); +/*!40000 ALTER TABLE `serverinfos_diskinfos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `serverinfos_domaininfos` +-- + +DROP TABLE IF EXISTS `serverinfos_domaininfos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `serverinfos_domaininfos` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `serverinfo_uid` int(11) NOT NULL, + `domaininfo_uid` int(11) NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`uid`), + UNIQUE KEY `UQ_uid` (`uid`), + KEY `FK_serverinfo_TO_serverinfos_domaininfos` (`serverinfo_uid`), + KEY `FK_domaininfo_TO_serverinfos_domaininfos` (`domaininfo_uid`), + CONSTRAINT `FK_domaininfo_TO_serverinfos_domaininfos` FOREIGN KEY (`domaininfo_uid`) REFERENCES `domaininfo` (`uid`), + CONSTRAINT `FK_serverinfo_TO_serverinfos_domaininfos` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서버_도메인연결'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `serverinfos_domaininfos` +-- + +LOCK TABLES `serverinfos_domaininfos` WRITE; +/*!40000 ALTER TABLE `serverinfos_domaininfos` DISABLE KEYS */; +/*!40000 ALTER TABLE `serverinfos_domaininfos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `serverinfos_ipinfos` +-- + +DROP TABLE IF EXISTS `serverinfos_ipinfos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `serverinfos_ipinfos` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `serverinfo_uid` int(11) NOT NULL, + `ipinfo_uid` int(11) NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`uid`), + UNIQUE KEY `UQ_uid` (`uid`), + KEY `FK_ipinfo_TO_serverinfos_ipinfos` (`ipinfo_uid`), + KEY `FK_serverinfo_TO_serverinfos_ipinfos` (`serverinfo_uid`), + CONSTRAINT `FK_ipinfo_TO_serverinfos_ipinfos` FOREIGN KEY (`ipinfo_uid`) REFERENCES `ipinfo` (`uid`), + CONSTRAINT `FK_serverinfo_TO_serverinfos_ipinfos` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서버_IP연결'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `serverinfos_ipinfos` +-- + +LOCK TABLES `serverinfos_ipinfos` WRITE; +/*!40000 ALTER TABLE `serverinfos_ipinfos` DISABLE KEYS */; +/*!40000 ALTER TABLE `serverinfos_ipinfos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `serverinfos_raminfos` +-- + +DROP TABLE IF EXISTS `serverinfos_raminfos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `serverinfos_raminfos` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `serverinfo_uid` int(11) NOT NULL, + `raminfo_uid` int(11) NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`uid`), + UNIQUE KEY `UQ_uid` (`uid`), + KEY `FK_serverinfo_TO_serverinfos_raminfos` (`serverinfo_uid`), + KEY `FK_raminfo_TO_serverinfos_raminfos` (`raminfo_uid`), + CONSTRAINT `FK_raminfo_TO_serverinfos_raminfos` FOREIGN KEY (`raminfo_uid`) REFERENCES `raminfo` (`uid`), + CONSTRAINT `FK_serverinfo_TO_serverinfos_raminfos` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서버_RAM연결'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `serverinfos_raminfos` +-- + +LOCK TABLES `serverinfos_raminfos` WRITE; +/*!40000 ALTER TABLE `serverinfos_raminfos` DISABLE KEYS */; +INSERT INTO `serverinfos_raminfos` VALUES (1,1,2,'2025-05-26 05:16:27'),(2,1,2,'2025-05-26 05:16:58'); +/*!40000 ALTER TABLE `serverinfos_raminfos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `serverinfos_softwareinfos` +-- + +DROP TABLE IF EXISTS `serverinfos_softwareinfos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `serverinfos_softwareinfos` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `serverinfo_uid` int(11) NOT NULL, + `softwareinfo_uid` int(11) NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`uid`), + UNIQUE KEY `UQ_uid` (`uid`), + KEY `FK_serverinfo_TO_serverinfos_softwareinfos` (`serverinfo_uid`), + KEY `FK_softwareinfo_TO_serverinfos_softwareinfos` (`softwareinfo_uid`), + CONSTRAINT `FK_serverinfo_TO_serverinfos_softwareinfos` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`), + CONSTRAINT `FK_softwareinfo_TO_serverinfos_softwareinfos` FOREIGN KEY (`softwareinfo_uid`) REFERENCES `softwareinfo` (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서버_Software연결'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `serverinfos_softwareinfos` +-- + +LOCK TABLES `serverinfos_softwareinfos` WRITE; +/*!40000 ALTER TABLE `serverinfos_softwareinfos` DISABLE KEYS */; +/*!40000 ALTER TABLE `serverinfos_softwareinfos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `servicweinfo` +-- + +DROP TABLE IF EXISTS `servicweinfo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `servicweinfo` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `clientinfo_uid` int(11) NOT NULL, + `item_type` varchar(20) NOT NULL DEFAULT 'server', + `item_uid` int(11) NOT NULL, + `reason` varchar(255) DEFAULT NULL COMMENT '이유', + `status` varchar(20) NOT NULL DEFAULT 'default' COMMENT '상태', + `updated_at` timestamp NULL DEFAULT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`uid`), + KEY `FK_clientinfo_TO_servicweinfo` (`clientinfo_uid`), + CONSTRAINT `FK_clientinfo_TO_servicweinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서비스 상황정보'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `servicweinfo` +-- + +LOCK TABLES `servicweinfo` WRITE; +/*!40000 ALTER TABLE `servicweinfo` DISABLE KEYS */; +/*!40000 ALTER TABLE `servicweinfo` ENABLE KEYS */; UNLOCK TABLES; -- @@ -692,13 +771,15 @@ CREATE TABLE `softwareinfo` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(20) NOT NULL DEFAULT 'Windows', `model` varchar(50) NOT NULL, + `price_type` varchar(20) NOT NULL DEFAULT 'month', + `price` int(11) NOT NULL DEFAULT 0, `description` text DEFAULT NULL, `status` varchar(20) NOT NULL DEFAULT 'default', `updated_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`uid`), UNIQUE KEY `UQ_model` (`model`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='소프트웨어 정보'; +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='소프트웨어 정보'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -707,44 +788,10 @@ CREATE TABLE `softwareinfo` ( LOCK TABLES `softwareinfo` WRITE; /*!40000 ALTER TABLE `softwareinfo` DISABLE KEYS */; +INSERT INTO `softwareinfo` VALUES (1,'Windows','Windows 2008R2 Ent','month',10000,'','default',NULL,'2025-05-26 04:26:52'),(2,'Linux','CentOS 7.9','month',1000,'','default',NULL,'2025-05-26 04:27:20'),(3,'Security','닷디펜더','month',100000,'','default',NULL,'2025-05-26 04:27:50'),(4,'Virus','비트디펜더','month',100000,'','default',NULL,'2025-05-26 04:28:27'),(5,'Linux','Ubuntu 20.04','month',1000,'','default',NULL,'2025-05-26 04:28:57'),(6,'Windows','Windows 10','month',10000,'','default',NULL,'2025-05-26 04:29:26'); /*!40000 ALTER TABLE `softwareinfo` ENABLE KEYS */; UNLOCK TABLES; --- --- Table structure for table `softwareinfo_link` --- - -DROP TABLE IF EXISTS `softwareinfo_link`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `softwareinfo_link` ( - `uid` int(11) NOT NULL AUTO_INCREMENT, - `serviceinfo_uid` int(11) NOT NULL, - `serverinfo_uid` int(11) NOT NULL, - `softwareinfo_uid` int(11) NOT NULL, - `billing_type` varchar(20) NOT NULL DEFAULT 'month', - `amount` int(11) NOT NULL DEFAULT 0, - `updated_at` timestamp NULL DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`uid`), - KEY `FK_serviceinfo_TO_softwareinfo_link` (`serviceinfo_uid`), - KEY `FK_softwareinfo_TO_softwareinfo_link` (`softwareinfo_uid`), - KEY `FK_serverinfo_TO_softwareinfo_link` (`serverinfo_uid`), - CONSTRAINT `FK_serverinfo_TO_softwareinfo_link` FOREIGN KEY (`serverinfo_uid`) REFERENCES `serverinfo` (`uid`), - CONSTRAINT `FK_serviceinfo_TO_softwareinfo_link` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`), - CONSTRAINT `FK_softwareinfo_TO_softwareinfo_link` FOREIGN KEY (`softwareinfo_uid`) REFERENCES `softwareinfo` (`uid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='서비스-소프트웨어 연결'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `softwareinfo_link` --- - -LOCK TABLES `softwareinfo_link` WRITE; -/*!40000 ALTER TABLE `softwareinfo_link` DISABLE KEYS */; -/*!40000 ALTER TABLE `softwareinfo_link` ENABLE KEYS */; -UNLOCK TABLES; - -- -- Table structure for table `user` -- @@ -777,7 +824,7 @@ CREATE TABLE `user` ( LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; -INSERT INTO `user` VALUES (1,'choi.jh','$2y$10$9kUte0xrvEkxtI9CzVaeKeCAxzOR4pKPpsCaQHR1YW7dXsCrTLWeC','최준흠','choi.jh@prime-idc.jp','','manager,cloudflare,firewall,director,master','default','2023-05-31 14:55:51','2023-03-23 06:50:04'),(2,'cho.jh','$2y$10$ot/aUXR/W1n4Q3dZA2dZCOxQrpVb2Bq31Y7xFQS3G6D1gtImmyBjm','조준희','cho.jh@prime-idc.jp',NULL,'manager,cloudflare','default','2023-05-30 14:35:55','2023-03-24 02:20:48'),(4,'kimdy','$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC','김동윤','kimdy@prime-idc.jp',NULL,'manager,cloudflare','default','2023-03-24 02:21:50','2023-03-24 02:21:50'),(5,'kimhy','$2y$10$.yEKVqY.F7HoSOZijl4uyeulUtfAQ4EDRiyR2JpgFYBuKw.mZoZvG','김효영','khy@prime-idc.jp',NULL,'manager,cloudflare,director','default','2023-03-24 02:23:18','2023-03-24 02:23:18'),(6,'kim.eh','$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq','김은혁','kim.eh@prime-idc.jp',NULL,'manager,cloudflare','default','2023-03-24 02:23:52','2023-03-24 02:23:52'),(7,'leeph','$2y$10$lR739WzJsW6rDLgchYs7buek4BYeTlKHTQY60RDqRms9Io7RSY3AC','이풍호','leeph@prime-idc.jp',NULL,'manager,cloudflare','default','2023-05-29 16:32:52','2023-03-24 02:24:21'),(8,'jinmingyu','$2y$10$PI8WA6d/z4hDE6hxJoUhbuMH3vTTWH0Ry2Z6fTLUUpwQGaE/9bEZa','김명옥','jinmingyu@idcjp.jp',NULL,'manager,cloudflare','default','2023-07-21 06:48:39','2023-03-24 02:25:00'),(9,'kangdh','$2y$10$gu9OS2DDQQ5H.Hh61t3BSOUp87l35q.xsduVSxvCcn8IgA4jrATgG','강동헌','kang.dh@idcjp.jp',NULL,'manager,cloudflare','default','2023-06-22 23:59:07','2023-03-24 02:25:48'),(10,'yoohs','$2y$10$TGASk98FuZ6Ux6FDquu1aO3rztA01MCle/Vs1.3iaEMQzakAbCzJy','유혜성','yoo.hs@idcjp.jp',NULL,'manager,cloudflare','default','2023-06-02 02:07:19','2023-03-24 02:26:31'),(11,'kim.yh','$2y$10$8GciQXpKYiR3TDWQfh9JjOQAQ.YWGoOSCL0a0/w4XACO0mUgjjbWy','김영환','kim.yh@idcjp.jp',NULL,'manager,cloudflare,firewall','default','2023-10-16 23:08:51','2023-03-24 02:27:05'),(12,'yunmuj','$2y$10$zkgwGVj2JSOVIsxLe8fePe1gvWWaCemfZMktzBlrN8oLb3CKydkZC','윤무정','yunmuj@idcjp.jp',NULL,'manager,cloudflare','default','2024-06-12 00:21:07','2023-03-24 02:27:59'),(13,'kim.mt','$2y$10$3dfkA0oq4LqiJOmjbBGKe.p0Dhj/MDqjoTdw11BOPF/H2qJqnEuHO','김문태','kim.mt@idcjp.jp',NULL,'manager,cloudflare','default','2023-05-31 14:22:43','2023-03-24 02:28:31'),(14,'shin.ms','$2y$10$.jaDkGtm/gZK3ZDF.fJUGOwMI7Zif5588X5AxSMvvk238RDI7spQ6','신민수','shin.ms@idcjp.jp',NULL,'manager,cloudflare','default','2023-03-24 02:29:00','2023-03-24 02:29:00'),(15,'park.sm','$2y$10$BwMxw0uvw2tAdQ0EZQ2/hu.Q7zYu7mbuBPPRTaa14bwG3VLf0cXfu','박선미','park.sm@idcjp.jp',NULL,'manager,cloudflare','default','2024-03-12 02:14:09','2023-03-24 02:29:34'),(19,'park.hg','$2y$10$x7QQOkOEJHVKOnghbHBqYuI12Vsa9KLV8W4wgebCWy1pZiM93/W.e','박혁규','park.hg@prime-idc.jp',NULL,'manager','pause','2025-05-22 03:54:57','2023-09-04 09:48:02'),(21,'masakuni','$2y$10$di6Y7CqJGbbf72kDyCrOCOafJgk3vqJCYg6N3EtBUc3J6r24/7SFe','김창국','masakuni@prime-idc.jp',NULL,'cloudflare','pause','2025-05-22 03:54:55','2023-12-18 08:56:29'),(22,'bjh','$2y$10$LnEQ6kz4igRPZeDYwe7UluRiSaMVGN9Jj1fW3QqUUp6zPeLJW9goS','배장훈','bjh@prime-idc.jp',NULL,'cloudflare','pause','2025-05-22 03:54:54','2024-02-26 01:26:20'),(23,'cho.sh','$2y$10$jmmNrEsFmb2.Zj3OkBXDHuktrIj.NCP/tO2k9kquFBTBssa/lNG6y','조성호','cho.sh@prime-idc.jp','','manager','pause','2025-05-22 03:54:53','2024-10-02 00:32:30'),(24,'kobn','$2y$10$pWM/XFfSNeSng32sypbDX.WaR4UlM4EDkYKCQfFkYIOC7Ppg0nc5G','고병남','ko@prime-idc.jp',NULL,'manager,cloudflare','default',NULL,'2024-10-29 06:30:19'),(25,'jeong.sg','$2y$10$OzH6140JztiUEs4s/VHbPOxfxubFooqwqVhGpdFG8OJCGAFXNu546','정상구','jeong.sg@prime-idc.jp',NULL,'manager,cloudflare','default','2025-01-23 00:30:13','2025-01-23 00:29:46'),(38,'choi.jh234222222','$2y$10$zCgVXnCClLbftgeGxH0rk.v3o1zHkoO8Ywq2UDmGkdjIhK5mLJhvu','adfasdfas2222','postfixadmin@idcjp.jp2222222','043443432722222','cloudflare','pause',NULL,'2025-05-02 04:49:19'),(40,'choi.jh2342222224','$2y$10$hP/z5Nojh4eNKnTxZe3Cm.0NtvqHW2U2U0vvVDSzelKRaXSxlVj2y','adfasdfas22222221234','postfixadmin@idcjp.jp3234343','04344343271234','manager,cloudflare','pause',NULL,'2025-05-02 06:34:43'); +INSERT INTO `user` VALUES (1,'choi.jh','$2y$10$9kUte0xrvEkxtI9CzVaeKeCAxzOR4pKPpsCaQHR1YW7dXsCrTLWeC','최준흠','choi.jh@prime-idc.jp','','manager,cloudflare,firewall,director,master','default','2023-05-31 14:55:51','2023-03-23 06:50:04'),(2,'cho.jh','$2y$10$ot/aUXR/W1n4Q3dZA2dZCOxQrpVb2Bq31Y7xFQS3G6D1gtImmyBjm','조준희','cho.jh@prime-idc.jp',NULL,'manager,cloudflare','default','2023-05-30 14:35:55','2023-03-24 02:20:48'),(4,'kimdy','$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC','김동윤','kimdy@prime-idc.jp',NULL,'manager,cloudflare','default','2023-03-24 02:21:50','2023-03-24 02:21:50'),(5,'kimhy','$2y$10$.yEKVqY.F7HoSOZijl4uyeulUtfAQ4EDRiyR2JpgFYBuKw.mZoZvG','김효영','khy@prime-idc.jp',NULL,'manager,cloudflare,director','default','2023-03-24 02:23:18','2023-03-24 02:23:18'),(6,'kim.eh','$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq','김은혁','kim.eh@prime-idc.jp',NULL,'manager,cloudflare','default','2023-03-24 02:23:52','2023-03-24 02:23:52'),(7,'leeph','$2y$10$lR739WzJsW6rDLgchYs7buek4BYeTlKHTQY60RDqRms9Io7RSY3AC','이풍호','leeph@prime-idc.jp',NULL,'manager,cloudflare','default','2023-05-29 16:32:52','2023-03-24 02:24:21'),(8,'jinmingyu','$2y$10$PI8WA6d/z4hDE6hxJoUhbuMH3vTTWH0Ry2Z6fTLUUpwQGaE/9bEZa','김명옥','jinmingyu@idcjp.jp',NULL,'manager,cloudflare','default','2023-07-21 06:48:39','2023-03-24 02:25:00'),(9,'kangdh','$2y$10$gu9OS2DDQQ5H.Hh61t3BSOUp87l35q.xsduVSxvCcn8IgA4jrATgG','강동헌','kang.dh@idcjp.jp',NULL,'manager,cloudflare','default','2023-06-22 23:59:07','2023-03-24 02:25:48'),(10,'yoohs','$2y$10$TGASk98FuZ6Ux6FDquu1aO3rztA01MCle/Vs1.3iaEMQzakAbCzJy','유혜성','yoo.hs@idcjp.jp',NULL,'manager,cloudflare','default','2023-06-02 02:07:19','2023-03-24 02:26:31'),(11,'kim.yh','$2y$10$8GciQXpKYiR3TDWQfh9JjOQAQ.YWGoOSCL0a0/w4XACO0mUgjjbWy','김영환','kim.yh@idcjp.jp',NULL,'manager,cloudflare,firewall','default','2023-10-16 23:08:51','2023-03-24 02:27:05'),(12,'yunmuj','$2y$10$zkgwGVj2JSOVIsxLe8fePe1gvWWaCemfZMktzBlrN8oLb3CKydkZC','윤무정','yunmuj@idcjp.jp',NULL,'manager,cloudflare','default','2024-06-12 00:21:07','2023-03-24 02:27:59'),(13,'kim.mt','$2y$10$3dfkA0oq4LqiJOmjbBGKe.p0Dhj/MDqjoTdw11BOPF/H2qJqnEuHO','김문태','kim.mt@idcjp.jp',NULL,'manager,cloudflare','default','2023-05-31 14:22:43','2023-03-24 02:28:31'),(14,'shin.ms','$2y$10$.jaDkGtm/gZK3ZDF.fJUGOwMI7Zif5588X5AxSMvvk238RDI7spQ6','신민수','shin.ms@idcjp.jp',NULL,'manager,cloudflare','default','2023-03-24 02:29:00','2023-03-24 02:29:00'),(15,'park.sm','$2y$10$BwMxw0uvw2tAdQ0EZQ2/hu.Q7zYu7mbuBPPRTaa14bwG3VLf0cXfu','박선미','park.sm@idcjp.jp',NULL,'manager,cloudflare','default','2024-03-12 02:14:09','2023-03-24 02:29:34'),(19,'park.hg','$2y$10$x7QQOkOEJHVKOnghbHBqYuI12Vsa9KLV8W4wgebCWy1pZiM93/W.e','박혁규','park.hg@prime-idc.jp',NULL,'manager','pause','2023-09-04 10:27:32','2023-09-04 09:48:02'),(21,'masakuni','$2y$10$di6Y7CqJGbbf72kDyCrOCOafJgk3vqJCYg6N3EtBUc3J6r24/7SFe','김창국','masakuni@prime-idc.jp',NULL,'cloudflare','pause','2023-12-18 08:56:29','2023-12-18 08:56:29'),(22,'bjh','$2y$10$LnEQ6kz4igRPZeDYwe7UluRiSaMVGN9Jj1fW3QqUUp6zPeLJW9goS','배장훈','bjh@prime-idc.jp',NULL,'cloudflare','pause','2024-06-06 23:51:19','2024-02-26 01:26:20'),(23,'cho.sh','$2y$10$jmmNrEsFmb2.Zj3OkBXDHuktrIj.NCP/tO2k9kquFBTBssa/lNG6y','조성호','cho.sh@prime-idc.jp','','manager','pause','2024-10-02 00:45:19','2024-10-02 00:32:30'),(24,'kobn','$2y$10$pWM/XFfSNeSng32sypbDX.WaR4UlM4EDkYKCQfFkYIOC7Ppg0nc5G','고병남','ko@prime-idc.jp',NULL,'manager,cloudflare','default',NULL,'2024-10-29 06:30:19'),(25,'jeong.sg','$2y$10$OzH6140JztiUEs4s/VHbPOxfxubFooqwqVhGpdFG8OJCGAFXNu546','정상구','jeong.sg@prime-idc.jp',NULL,'manager,cloudflare','default','2025-01-23 00:30:13','2025-01-23 00:29:46'),(38,'choi.jh234222222','$2y$10$zCgVXnCClLbftgeGxH0rk.v3o1zHkoO8Ywq2UDmGkdjIhK5mLJhvu','adfasdfas2222','postfixadmin@idcjp.jp2222222','043443432722222','cloudflare','pause',NULL,'2025-05-02 04:49:19'),(40,'choi.jh2342222224','$2y$10$hP/z5Nojh4eNKnTxZe3Cm.0NtvqHW2U2U0vvVDSzelKRaXSxlVj2y','adfasdfas22222221234','postfixadmin@idcjp.jp3234343','04344343271234','manager,cloudflare','pause',NULL,'2025-05-02 06:34:43'); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -790,4 +837,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2025-05-22 14:45:47 +-- Dump completed on 2025-05-26 14:18:36 diff --git a/app/Database/erp2_1.vuerd.json b/app/Database/erp2_1.vuerd.json new file mode 100644 index 0000000..ab813a5 --- /dev/null +++ b/app/Database/erp2_1.vuerd.json @@ -0,0 +1,8455 @@ +{ + "$schema": "https://raw.githubusercontent.com/dineug/erd-editor/main/json-schema/schema.json", + "version": "3.0.0", + "settings": { + "width": 4000, + "height": 4000, + "scrollTop": -1509.6709, + "scrollLeft": -462.1479, + "zoomLevel": 0.76, + "show": 511, + "database": 4, + "databaseName": "", + "canvasType": "ERD", + "language": 1, + "tableNameCase": 4, + "columnNameCase": 2, + "bracketType": 1, + "relationshipDataTypeSync": true, + "relationshipOptimization": false, + "columnOrder": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64 + ], + "maxWidthComment": -1, + "ignoreSaveSettings": 0 + }, + "doc": { + "tableIds": [ + "Jq5Qkun2FzQhCGKANIVOZ", + "6ajvOCaGuXU9pzV0Y9jEi", + "GDEF0_WuOpaYtsZxjn2zM", + "B4qGh3KZsXHQ3_4EOgwJZ", + "ZMGIWLFEswObjH2Sx0NlW", + "doERb3lIVeBW_D0NtNYX8", + "ZLEpY5EjuZV21718zf-Y1", + "jO40Ej5EXImXnadoJo9bn", + "gsa0XtQZQgrJ8ZXy8VQVg", + "5AUwJum9FKPCoYRMBhLnF", + "RMhrLs7bOaopKmKt9YKHQ", + "RTq5rHQupiXXJPXqpN8K5", + "lwd2DR7f1FW8fXtJ0lX-r", + "dnFyz1CSdGeS6mCbfCMO0", + "GRBrbb1hqwKSRMfod3I7U", + "ne09vvne6LjZp75VVGiWV", + "UuZoDcFNrKD0iTjVkA2Ew", + "TZkszBNw47IF3fHl8bt74", + "iggJbjwkw3-xTK9Xkh67n", + "4Phnxm-pTS6CW9EX4iqu1", + "PxyXFfFpwwkq_8XYE9MRu", + "fY4sPzjnlPRGToBG-WZeH", + "F_0cYo78BnayQhVv3ArRp", + "XywAFAP3s5Xl6G-3txHTH", + "kHLWAzQmZ3CCs0KpilqZ7", + "x7rn2-q2i7C6Lin0XwIR_", + "DKSom-hQqNhI1z7FqSa6Y" + ], + "relationshipIds": [ + "gAVYXWnBSnCw-0ieO4Mil", + "95uRv2fz3rssNbkyuzkLh", + "4BDt10BeeryoN0ZdEHIui", + "KtdVJCYZ3DMVnPnFGKi3P", + "AH1dyESfueUlhcoiU6KsQ", + "rDaiOqjpenuTOWAB9GhA6", + "v46CChXRw5SF2MshWwutt", + "SX8-IgbNqZeapxRW00EXs", + "r6mAlLk8IvM88VwRAMRym", + "NoESNPo-vKCdbfZX-2e8J", + "LcNQfyNLPKko1ikabCFSB", + "CqlSt_m6HDGZuXBxuTx-P", + "GXoV4vfYX8rPzJ-Ab3wy_", + "Pfyiwj2BJwPfU6s1EfzNV", + "C6ZxhJok7WoZ1MS9nXXEf", + "PQzGhFUJprfxrBncWAfrf", + "_LZZrk6stzdUHIcu9FNzh", + "S0Mb2Q0b_-_dMKTFVkZ7M", + "O9MiIc0aAX5rt42_hM40C", + "lXcwd0sSi7t7OdvEjaznH", + "GNsC6xDRv10hUO6q9Xdnc", + "J7H72NkdPg1gZdSAur4la", + "7aO23DPo-ueZ6G-9dCKXu", + "2yh_-sL8npRIpX_JwH3Vl", + "c9fmyTtPkeRt6aHosMiSQ" + ], + "indexIds": [], + "memoIds": [] + }, + "collections": { + "tableEntities": { + "Jq5Qkun2FzQhCGKANIVOZ": { + "id": "Jq5Qkun2FzQhCGKANIVOZ", + "name": "user", + "comment": "관리자정보", + "columnIds": [ + "mfHtgzc_Aeocr6xkgwYWh", + "7DHaQCuxiYmzxE0eGpGxb", + "DkvMbsxXt6KWxlySb-X11", + "4KSZ7KgTh_tw7obM3dwuP", + "fBkXuryUQyHhfKXBjjKY2", + "vRWAi067oa76RKlyBllFH", + "5ZWglx6I92JkdajKWQyGq", + "GSZc6SEGQpz6SnTW-mo2n", + "-eAu93drXUckSR1goyAW0", + "_Isvu_q8_Gsp82W0Lkk-r" + ], + "seqColumnIds": [ + "mfHtgzc_Aeocr6xkgwYWh", + "7DHaQCuxiYmzxE0eGpGxb", + "DkvMbsxXt6KWxlySb-X11", + "4KSZ7KgTh_tw7obM3dwuP", + "fBkXuryUQyHhfKXBjjKY2", + "vRWAi067oa76RKlyBllFH", + "5ZWglx6I92JkdajKWQyGq", + "GSZc6SEGQpz6SnTW-mo2n", + "-eAu93drXUckSR1goyAW0", + "_Isvu_q8_Gsp82W0Lkk-r" + ], + "ui": { + "x": 265.2341, + "y": 40.2718, + "zIndex": 2, + "widthName": 60, + "widthComment": 62, + "color": "" + }, + "meta": { + "updateAt": 1748218196145, + "createAt": 1745819764136 + } + }, + "6ajvOCaGuXU9pzV0Y9jEi": { + "id": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "clientinfo", + "comment": "고객정보", + "columnIds": [ + "_AcWUYKzNJd-V0fRHq8Cx", + "z-q_Ah0sghd0nR7VcCTLX", + "n61V7aSxLmcIeQqsYgAEE", + "5hP5ZiQGWDGf4HJrOiFb6", + "XPpipgVUsGKsXCW5YNg1X", + "zFbEbi2-nyWp4zEvOHsUG", + "02r_3OPPiD_vAgD7rmZK4", + "Vb_CyMe0qvi7oxda4dUVW", + "6JNus18UqajPfwOjkPali", + "qmfQUBHfeiJwR5kq3SyNW", + "D1tPn8Uq5C8UWh6dtzBJZ" + ], + "seqColumnIds": [ + "_AcWUYKzNJd-V0fRHq8Cx", + "z-q_Ah0sghd0nR7VcCTLX", + "n61V7aSxLmcIeQqsYgAEE", + "5hP5ZiQGWDGf4HJrOiFb6", + "XPpipgVUsGKsXCW5YNg1X", + "fMx3gLKi1fsfp7g26-QA9", + "xEoc72X0ErdGKU7rMzenm", + "zFbEbi2-nyWp4zEvOHsUG", + "02r_3OPPiD_vAgD7rmZK4", + "Vb_CyMe0qvi7oxda4dUVW", + "Ksp65Qh_aOFmAb1ksx64Q", + "6JNus18UqajPfwOjkPali", + "qmfQUBHfeiJwR5kq3SyNW", + "D1tPn8Uq5C8UWh6dtzBJZ", + "Z4egkB50o_Ii-lP5VRBGr", + "NVO-aO4GEW9DHdEV8XQq6" + ], + "ui": { + "x": 1170.0947, + "y": 777.4039, + "zIndex": 2, + "widthName": 60, + "widthComment": 60, + "color": "" + }, + "meta": { + "updateAt": 1747888111107, + "createAt": 1745819764137 + } + }, + "GDEF0_WuOpaYtsZxjn2zM": { + "id": "GDEF0_WuOpaYtsZxjn2zM", + "name": "accountinfo", + "comment": "예치금계좌", + "columnIds": [ + "ia3c6jjHvbTOX0cX4gbJl", + "nPYun5WHoy8uroXUBiqh8", + "tmkHXMc6fdNicHeig7nss", + "foBGnViYEjNlWIAhXeuLw", + "OwsCuEWoHNZ8zov4IClUR", + "-egu-8EQDsUJcOi-nzl74", + "ut3UlHsNjxqNgAzENBkfy" + ], + "seqColumnIds": [ + "ia3c6jjHvbTOX0cX4gbJl", + "nPYun5WHoy8uroXUBiqh8", + "tmkHXMc6fdNicHeig7nss", + "foBGnViYEjNlWIAhXeuLw", + "HaKM09bv5DwJFH9pxSqWI", + "f4NQ8F-FyamLyf4YR0VY1", + "hQM1tPHn6MrCa4pIL7t7w", + "OwsCuEWoHNZ8zov4IClUR", + "-egu-8EQDsUJcOi-nzl74", + "Mr4qiMpKO4UVj3aZ3HueW", + "ut3UlHsNjxqNgAzENBkfy" + ], + "ui": { + "x": 281.2262, + "y": 475.1583, + "zIndex": 2, + "widthName": 64, + "widthComment": 62, + "color": "" + }, + "meta": { + "updateAt": 1748229610888, + "createAt": 1745819764137 + } + }, + "B4qGh3KZsXHQ3_4EOgwJZ": { + "id": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "serverinfo", + "comment": "서버정보", + "columnIds": [ + "F9EPb6nsDx6Tf3GG8rvP1", + "GUAjQ-qFNvMHOaqY-rBXq", + "BAzGsBrmLOwZGYLchLmyP", + "9F6QpQqxeEggZ0FHM81O1", + "T1h0jM57gCedXd5wWL30b", + "C_yfBNgyfir7swSSCwZIF", + "70VrVnWpv5vcn3MTsTHC4", + "54iuIW4knok06vP4JH-oN", + "bh-W1plz0vCW2rURDnfDR", + "tNaVOzr3vywCXiQdfUJWq", + "6bQ_6eGfINic9LpM6PtDw" + ], + "seqColumnIds": [ + "F9EPb6nsDx6Tf3GG8rvP1", + "F6TXYV3uwRzb-aZYCmf5x", + "6QKQkCLEQNWLc1oF16LgN", + "kyD7tU9kevxCDow7j2uHI", + "pY1RZgzuWBgRILX2XsMTt", + "J97WIRanerqkRvOlQCnL3", + "dluCt7VimWWwGu4Is8V0v", + "GUAjQ-qFNvMHOaqY-rBXq", + "BAzGsBrmLOwZGYLchLmyP", + "9F6QpQqxeEggZ0FHM81O1", + "T1h0jM57gCedXd5wWL30b", + "6e3HgOnQwPQRS7r37pAK6", + "Wks-dXdsHSF-EATUWnxzY", + "lu2r9w2xmXsB8H7Mrdt1t", + "C_yfBNgyfir7swSSCwZIF", + "tUEipJ29hmJw6PGIvTRe4", + "70VrVnWpv5vcn3MTsTHC4", + "54iuIW4knok06vP4JH-oN", + "o0KMVEBZAnWRSsxx10HmA", + "Djbw3B6xZWKAvwJDto9xl", + "bh-W1plz0vCW2rURDnfDR", + "tNaVOzr3vywCXiQdfUJWq", + "6bQ_6eGfINic9LpM6PtDw", + "yjaoHnd4nFaa-3REXvRfN", + "AlvBDBVGfLoVcNjd__kFZ" + ], + "ui": { + "x": 1192.032, + "y": 1455.8365, + "zIndex": 2, + "widthName": 60, + "widthComment": 60, + "color": "" + }, + "meta": { + "updateAt": 1748229167728, + "createAt": 1745819764137 + } + }, + "ZMGIWLFEswObjH2Sx0NlW": { + "id": "ZMGIWLFEswObjH2Sx0NlW", + "name": "softwareinfo", + "comment": "소프트웨어 정보", + "columnIds": [ + "2HB01q46-mugMjuOz85YG", + "4acJag7ORjUzX7FP-gnhZ", + "1q8jG5dQKdD35_XYimkSk", + "D7Q_X02LvMZbBtg71_hCK", + "lwe5PLEmpyTipKEVSCHRJ", + "P84ZMnZu1nZtRhDY18T5o", + "VycsOgeM1SXkcq_5XYUMS", + "k4vpMNZ75fNUjX-hrjXzs", + "8ZPjmeG3NoO6C0icGibJP" + ], + "seqColumnIds": [ + "2HB01q46-mugMjuOz85YG", + "4acJag7ORjUzX7FP-gnhZ", + "1q8jG5dQKdD35_XYimkSk", + "D7Q_X02LvMZbBtg71_hCK", + "lwe5PLEmpyTipKEVSCHRJ", + "zL9bBVm37HTSU-xWpwxxJ", + "G9PMddYQm9ohnzkJUa_nw", + "P84ZMnZu1nZtRhDY18T5o", + "VycsOgeM1SXkcq_5XYUMS", + "k4vpMNZ75fNUjX-hrjXzs", + "8ZPjmeG3NoO6C0icGibJP" + ], + "ui": { + "x": 1208.9179, + "y": 2611.3424, + "zIndex": 2, + "widthName": 68, + "widthComment": 89, + "color": "" + }, + "meta": { + "updateAt": 1748229244424, + "createAt": 1745819764138 + } + }, + "doERb3lIVeBW_D0NtNYX8": { + "id": "doERb3lIVeBW_D0NtNYX8", + "name": "lineinfo", + "comment": "회선 정보", + "columnIds": [ + "7B0zaLoZnOoMNW8OHZlrQ", + "5KRw8TtT2nLqpYfKFOBwe", + "oc5quhO8E3mqrBZKbIy_G", + "lZQAY89JoyOHoTQEHeS1Y", + "fiQBfXvw-4tj42PuGiDAk", + "PHhRG4nKR6k_CQF9B8xS1", + "wb9_XvPZHAOrpH-s0B0YN", + "ltPYBs_iNuZJM6wTnK0H-", + "liJON6hIBB9aS-pQgM0Q6" + ], + "seqColumnIds": [ + "7B0zaLoZnOoMNW8OHZlrQ", + "XQE8sY3pDLC2iy95uc9Ir", + "dkwDt8XZjnu1Hq3vX4Wta", + "Ue1gt0C4DyjOQswV8LxkE", + "5KRw8TtT2nLqpYfKFOBwe", + "B5P-XTPII39W_C1xsZEM-", + "oc5quhO8E3mqrBZKbIy_G", + "lZQAY89JoyOHoTQEHeS1Y", + "fiQBfXvw-4tj42PuGiDAk", + "BaXSr0Zs4Yk5dCbD8X_lm", + "ehNv0f07ci1ARnkTSDG6J", + "xaUC3GLta1iHmo1YQ-qDo", + "PHhRG4nKR6k_CQF9B8xS1", + "wb9_XvPZHAOrpH-s0B0YN", + "ltPYBs_iNuZJM6wTnK0H-", + "liJON6hIBB9aS-pQgM0Q6" + ], + "ui": { + "x": 2523.531, + "y": 975.4882, + "zIndex": 2, + "widthName": 60, + "widthComment": 60, + "color": "" + }, + "meta": { + "updateAt": 1748229375830, + "createAt": 1745819764138 + } + }, + "ZLEpY5EjuZV21718zf-Y1": { + "id": "ZLEpY5EjuZV21718zf-Y1", + "name": "ipinfo", + "comment": " IP 정보", + "columnIds": [ + "Id0h8QbOdlhPj9P1zTm5o", + "f7_MGvRjkwL1xkCWrAgDR", + "OGLPunD1CL5Yx1Onabetn", + "6qd6rcTkraI_AbHcVbp6T", + "2-mxsDaVU45SAAkg_CmAZ", + "nDoaVrEhO8hLuHbgZV4il", + "Vm1-FnoJLcJ0GRnTp0vnn", + "R-UjmO-S2UeQdddVNwH5M" + ], + "seqColumnIds": [ + "Do7xvuwqsEo1L9PMTYoFg", + "Id0h8QbOdlhPj9P1zTm5o", + "SFj3q5xg6pcI4RSDKPSgI", + "f7_MGvRjkwL1xkCWrAgDR", + "SaTapKkBzVUluKTG_fsBy", + "lhQ3PpSdLxVcH5LvI4DNx", + "OGLPunD1CL5Yx1Onabetn", + "6qd6rcTkraI_AbHcVbp6T", + "0ONL4QLQRyZ32MBJ7TN7u", + "e6eWKMFnpXI-rPJZ_9tBt", + "2-mxsDaVU45SAAkg_CmAZ", + "nDoaVrEhO8hLuHbgZV4il", + "Vm1-FnoJLcJ0GRnTp0vnn", + "R-UjmO-S2UeQdddVNwH5M" + ], + "ui": { + "x": 1182.4307, + "y": 1141.8961, + "zIndex": 2, + "widthName": 60, + "widthComment": 60, + "color": "" + }, + "meta": { + "updateAt": 1748229170568, + "createAt": 1745819764138 + } + }, + "kc1EFvFhlBSc0B0bDgX28": { + "id": "kc1EFvFhlBSc0B0bDgX28", + "name": "serviceinfo", + "comment": "서비스 정보", + "columnIds": [ + "nb5CGzskl3_LIRA0yyede", + "sscrxOdwLlx94tx1j_MrH", + "jN2378kieoBKN-G1x8myT", + "iM3NfWTfO6qrXv94EUFgk", + "lwr6RuK8OGKJNLdd70NGS", + "qnVCOfUyejx2ToAQhkmu0", + "JItDVSlR3alwlWIyiXSyW", + "jBxeJ8Sz7jRGrKBCkD1q1", + "mNL0XMdVPG6j_TTghhHg6", + "29LdworovSsHw2EaPP8Zv" + ], + "seqColumnIds": [ + "nb5CGzskl3_LIRA0yyede", + "sscrxOdwLlx94tx1j_MrH", + "74hYN_2bj1ubH9fDJVRVz", + "JXFtN33CEiVr8DDSQay0k", + "CY-ZAs3Ns1YhoxL9UiCee", + "UKMpq-uPW9JhNhwRMtBmC", + "HFfXA_mDYFa0cgMnr8qBF", + "6zK3adxA2E9fHUYDhbE8g", + "jN2378kieoBKN-G1x8myT", + "iM3NfWTfO6qrXv94EUFgk", + "CITRNBpXOZqGM6gHy5MlB", + "lwr6RuK8OGKJNLdd70NGS", + "sGkif4Lcd1cXyGgJQCuZl", + "qnVCOfUyejx2ToAQhkmu0", + "JItDVSlR3alwlWIyiXSyW", + "xbFxL4RtJRdTlfQlDG3Ag", + "Yw-nVASb0K3Qf7KU2Vxto", + "jBxeJ8Sz7jRGrKBCkD1q1", + "mNL0XMdVPG6j_TTghhHg6", + "29LdworovSsHw2EaPP8Zv" + ], + "ui": { + "x": 204.912, + "y": 1725.4913, + "zIndex": 2, + "widthName": 60, + "widthComment": 65, + "color": "" + }, + "meta": { + "updateAt": 1748218261430, + "createAt": 1745819764139 + } + }, + "R4reSshLxH3DQW6fUfSPa": { + "id": "R4reSshLxH3DQW6fUfSPa", + "name": "billinginfo", + "comment": "청구서 정보", + "columnIds": [ + "fsAJySlXPbGQahV59hQgo", + "uodvC_rgsnCqB65A3uZYW", + "NzUNVP-O0U298m6bClqyd", + "hCs1Oji5S6161mXCnAgP6", + "iDvGbVnpR-GTfqajd7P02", + "2SU_tNQXyQlsQc6WchJ04" + ], + "seqColumnIds": [ + "fsAJySlXPbGQahV59hQgo", + "Mlq3l8ZyEkSzXldwOmRed", + "bEnLVhafLMHZluEaYba4n", + "F6kponQqcXk2TT-AIElPY", + "h9_O9yvER5oW6Tb7ygofm", + "uodvC_rgsnCqB65A3uZYW", + "NzUNVP-O0U298m6bClqyd", + "zT13NpysXzkDKNUgdBOIC", + "hCs1Oji5S6161mXCnAgP6", + "iDvGbVnpR-GTfqajd7P02", + "RcKYLal7wRQe2aYxGDKNl", + "rfUyj0qgcwNt8AYQrQpwr", + "2SU_tNQXyQlsQc6WchJ04" + ], + "ui": { + "x": 269.8997, + "y": 2862.8079, + "zIndex": 2, + "widthName": 60, + "widthComment": 65, + "color": "" + }, + "meta": { + "updateAt": 1748218645631, + "createAt": 1745819764139 + } + }, + "jO40Ej5EXImXnadoJo9bn": { + "id": "jO40Ej5EXImXnadoJo9bn", + "name": "couponinfo", + "comment": "쿠폰정보", + "columnIds": [ + "9gNKhuq9UnDKyb9KuZ7cY", + "35XbdvgOzpNdasPnMcbkx", + "ALRvTZjYrv4K1ltFn30Mn", + "TFkQ1ID6ShcMqf9wLGEP1", + "DSAUgD7rG7Lzm2-jVWKA3", + "6WOE-jsg5rFe2X04atr-Y" + ], + "seqColumnIds": [ + "9gNKhuq9UnDKyb9KuZ7cY", + "O_MKuQKv7yP-k0dsyszkk", + "G3KLXJzl6S28Y8pN8hfy2", + "35XbdvgOzpNdasPnMcbkx", + "ALRvTZjYrv4K1ltFn30Mn", + "3EFy0j6PlKaha31ajJSsZ", + "3jtklRjnxzZANo69T6vWW", + "hZ6BBU-xMeNW6jafbpxzY", + "6ZDZLrSpVuAeUGWvifvq7", + "Dw-euSUHCJjMfHmPx9RZw", + "bc7vXbPHzkkSjtIb1Eu_C", + "1bvped58WqdQLlaObX0AT", + "RJRgO2-42FxCW0ucjngu9", + "iMCMcnQGafCPo46R91hOK", + "TFkQ1ID6ShcMqf9wLGEP1", + "DSAUgD7rG7Lzm2-jVWKA3", + "6WOE-jsg5rFe2X04atr-Y" + ], + "ui": { + "x": 1964.6501, + "y": 479.016, + "zIndex": 2, + "widthName": 63, + "widthComment": 60, + "color": "" + }, + "meta": { + "updateAt": 1748229184067, + "createAt": 1745819764140 + } + }, + "gsa0XtQZQgrJ8ZXy8VQVg": { + "id": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "logger", + "comment": "작업 기록 로그", + "columnIds": [ + "J_xS3cvULouXCTo5gCiTm", + "DGl10GI58QwOHwpTu4Z1Y", + "KvMMNu-PKESt0_2K4AJcB", + "kKI4hKELPs9Nh5UtQvSu7", + "wkjLZ-Bc9g3Z6Rh_IQ7_q", + "W5bxFTggHoO9_PPsfy2EB", + "WHpensFTMwtupqV5TbNMV", + "qHceMMaFcmVnWPlJ2T4Sg" + ], + "seqColumnIds": [ + "J_xS3cvULouXCTo5gCiTm", + "DGl10GI58QwOHwpTu4Z1Y", + "yMcXBh6lgSLWfLhrivvuX", + "KvMMNu-PKESt0_2K4AJcB", + "kKI4hKELPs9Nh5UtQvSu7", + "wkjLZ-Bc9g3Z6Rh_IQ7_q", + "W5bxFTggHoO9_PPsfy2EB", + "Wef1cEik-NFTr_alGxLpa", + "OgECIC2AofE3lQIX-nOkM", + "WHpensFTMwtupqV5TbNMV", + "qHceMMaFcmVnWPlJ2T4Sg" + ], + "ui": { + "x": 1958.4526, + "y": 135.0175, + "zIndex": 2, + "widthName": 60, + "widthComment": 81, + "color": "" + }, + "meta": { + "updateAt": 1748229188146, + "createAt": 1745819764142 + } + }, + "5AUwJum9FKPCoYRMBhLnF": { + "id": "5AUwJum9FKPCoYRMBhLnF", + "name": "pointinfo", + "comment": "포인트정보", + "columnIds": [ + "PJapuo6nvm3x9hJPUfXd6", + "PyXYmokQzpzzT08WTmtsN", + "fhM5WF3fhv8_g8KDcNF9g", + "C-iSSJV5sjbkmpIKBx4Km", + "txROOkHVXSfJOTHlU5mdz", + "jav6q3L-HQhPYJBdcLIgz" + ], + "seqColumnIds": [ + "PJapuo6nvm3x9hJPUfXd6", + "X1GxGekOLLuoEkqGQDF86", + "PyXYmokQzpzzT08WTmtsN", + "fhM5WF3fhv8_g8KDcNF9g", + "QfmlZ3--qScQizx76syAE", + "NnXAqOInrD08SltZoFNHu", + "S3K2h7O2zUHNoSb5rfn5c", + "9CJ9f4Gdh5iKDZAMDjNAz", + "v6TBpKQ_tIXDcJth0Hf4s", + "hpqVO4TcRRrwuvlSosSGx", + "loBrh2giB1WiI1GakcT46", + "qHxcsOsImKFSnmwyIE_XZ", + "C-iSSJV5sjbkmpIKBx4Km", + "txROOkHVXSfJOTHlU5mdz", + "jav6q3L-HQhPYJBdcLIgz" + ], + "ui": { + "x": 1203.8458, + "y": 399.2148, + "zIndex": 287, + "widthName": 60, + "widthComment": 62, + "color": "" + }, + "meta": { + "updateAt": 1747124830680, + "createAt": 1745914844735 + } + }, + "RMhrLs7bOaopKmKt9YKHQ": { + "id": "RMhrLs7bOaopKmKt9YKHQ", + "name": "cpuinfo", + "comment": "CPU 정보", + "columnIds": [ + "Jh6e_-9QYe1Tqve0PE3kT", + "DC7TvFFpBT7vY0UKKHt-W", + "VDwq7FTa8NVFgubAOFjso", + "AdK-ftiebHNTIjlPzqGxQ", + "qcYZvSlfu93cigmIRzU_C", + "3nwgqrQd_qDGdg6Fe3kEp", + "mwVYv9PaJFpoxYvTRJ223" + ], + "seqColumnIds": [ + "roON46ztrEREN9ysNVyCK", + "Jh6e_-9QYe1Tqve0PE3kT", + "ha72QbBWfvyRymsyFBov8", + "VxbbWBYPZdH63koVtdRuv", + "-Vr-igaSkx5zEcVp0oUGN", + "DC7TvFFpBT7vY0UKKHt-W", + "kXkNsvdbXOcI-DslovgVa", + "cg9Jr22ykbciJUTruf5fu", + "dr0UoY8ebsS-TjcPyP4is", + "GnoGvT4HaG9kp-BvwZ4FQ", + "wx8zTFviA4I8YQnn-MFpW", + "QbDQaanzFqNjwfLHyANBC", + "VDwq7FTa8NVFgubAOFjso", + "AdK-ftiebHNTIjlPzqGxQ", + "34e96O1llg-e0TtBY7IWL", + "qcYZvSlfu93cigmIRzU_C", + "3nwgqrQd_qDGdg6Fe3kEp", + "mwVYv9PaJFpoxYvTRJ223" + ], + "ui": { + "x": 1197.3716, + "y": 1822.7912, + "zIndex": 495, + "widthName": 60, + "widthComment": 60, + "color": "" + }, + "meta": { + "updateAt": 1748229213260, + "createAt": 1746783410914 + } + }, + "RTq5rHQupiXXJPXqpN8K5": { + "id": "RTq5rHQupiXXJPXqpN8K5", + "name": "defenceinfo", + "comment": "방어정보", + "columnIds": [ + "zBz4vBOZSIA8vKmfqXckO", + "YqInlreLnga0pOXtaP8GF", + "ixoWg1kPLrUYL069d75Kq", + "3JKv9gwi5ig1yLoBJsLC9", + "tTTzHZFvoMJ0RzAexXY2L", + "BvHyGw9Xf_gz7bEkZhLbk", + "0STHSEXiceoCa6a7jGXV5", + "j2hkudsfMKexNL6P7SM8R", + "mDU5e29uBK_pIGHPmO6Nv", + "W9QKu7VjB-92E2pV0v2dk", + "pzEFysMFfI2J8uB8YHXxA" + ], + "seqColumnIds": [ + "zBz4vBOZSIA8vKmfqXckO", + "YqInlreLnga0pOXtaP8GF", + "VYbvSvXIEQPQtx6GL-tdv", + "ixoWg1kPLrUYL069d75Kq", + "3JKv9gwi5ig1yLoBJsLC9", + "tTTzHZFvoMJ0RzAexXY2L", + "BvHyGw9Xf_gz7bEkZhLbk", + "0STHSEXiceoCa6a7jGXV5", + "j2hkudsfMKexNL6P7SM8R", + "lf3Q5NccF2HWpq4GlYVta", + "mDU5e29uBK_pIGHPmO6Nv", + "W9QKu7VjB-92E2pV0v2dk", + "pzEFysMFfI2J8uB8YHXxA" + ], + "ui": { + "x": 1206.5028, + "y": 2922.629, + "zIndex": 796, + "widthName": 64, + "widthComment": 60, + "color": "" + }, + "meta": { + "updateAt": 1748229254375, + "createAt": 1747374666215 + } + }, + "lwd2DR7f1FW8fXtJ0lX-r": { + "id": "lwd2DR7f1FW8fXtJ0lX-r", + "name": "raminfo", + "comment": "RAM 정보", + "columnIds": [ + "203b3hUKUQ_Gu5wKShBgZ", + "kohhWoNuei3x97SzgQUF4", + "jmi6LrAtLmYLaoDiEZ10f", + "Tuyrnk-V3RykdGluC-86m", + "SzD5tmOIoZodU1wBH56I4", + "EEerVyCwkEAuiRc-gon8s", + "uki_QcviBOFJ57v1IbbPX" + ], + "seqColumnIds": [ + "203b3hUKUQ_Gu5wKShBgZ", + "kohhWoNuei3x97SzgQUF4", + "jmi6LrAtLmYLaoDiEZ10f", + "Tuyrnk-V3RykdGluC-86m", + "SzD5tmOIoZodU1wBH56I4", + "EEerVyCwkEAuiRc-gon8s", + "uki_QcviBOFJ57v1IbbPX", + "5EZEDNUFxzmElbK6goZPK", + "W42ouHmZOfJRQQ6XPu3Eq", + "K_QGLeRYAUneRz7KBswho" + ], + "ui": { + "x": 1200.3245, + "y": 2082.5248, + "zIndex": 1036, + "widthName": 60, + "widthComment": 60, + "color": "" + }, + "meta": { + "updateAt": 1748229224412, + "createAt": 1747808112554 + } + }, + "dnFyz1CSdGeS6mCbfCMO0": { + "id": "dnFyz1CSdGeS6mCbfCMO0", + "name": "diskinfo", + "comment": "DISK 정보", + "columnIds": [ + "WaCB3uNZYFReAPiBqQ97v", + "tn-GhYT445kEh1tzf8Lf1", + "zdhazSc2UskbRIFTbn0MV", + "vzqaqaPuF4guI7nUCRFIE", + "FOr_RCEoaL3a0M7smSYRC", + "cMe_lKgwfS-LNTHhHIYrk", + "ixmBlLhmVt4et6tZEwLPC" + ], + "seqColumnIds": [ + "WaCB3uNZYFReAPiBqQ97v", + "tn-GhYT445kEh1tzf8Lf1", + "zdhazSc2UskbRIFTbn0MV", + "vzqaqaPuF4guI7nUCRFIE", + "FOr_RCEoaL3a0M7smSYRC", + "cMe_lKgwfS-LNTHhHIYrk", + "ixmBlLhmVt4et6tZEwLPC" + ], + "ui": { + "x": 1206.5149, + "y": 2350.4325, + "zIndex": 1118, + "widthName": 60, + "widthComment": 60, + "color": "" + }, + "meta": { + "updateAt": 1748229235528, + "createAt": 1747808548333 + } + }, + "KjMkfDhEIFtqzt24wZL_o": { + "id": "KjMkfDhEIFtqzt24wZL_o", + "name": "lineinfo_link", + "comment": "서비스-Line연결", + "columnIds": [ + "7H1dMNV2UxOx8O6DD_fv3", + "nL-8jbbaXLAxQmwKmxwVp", + "COpm-00QT2DzD70f8srX-", + "A5jE2aplbrccrkErwht-L", + "xXf6S4ALrDaYympxFLecy", + "xVa4vn9BzbObswNs0nbUQ", + "R1A5zjJSem_5G2_5bAffz", + "s4YF5Cw7Z65Hvw-z95dDa" + ], + "seqColumnIds": [ + "7H1dMNV2UxOx8O6DD_fv3", + "quc3ij2-2WjckJbeT42jS", + "nL-8jbbaXLAxQmwKmxwVp", + "COpm-00QT2DzD70f8srX-", + "A5jE2aplbrccrkErwht-L", + "xXf6S4ALrDaYympxFLecy", + "xVa4vn9BzbObswNs0nbUQ", + "R1A5zjJSem_5G2_5bAffz", + "s4YF5Cw7Z65Hvw-z95dDa" + ], + "ui": { + "x": 1171.6967, + "y": 1137.7536, + "zIndex": 1250, + "widthName": 65, + "widthComment": 88, + "color": "" + }, + "meta": { + "updateAt": 1747990531189, + "createAt": 1747809933290 + } + }, + "GRBrbb1hqwKSRMfod3I7U": { + "id": "GRBrbb1hqwKSRMfod3I7U", + "name": "domaininfo", + "comment": "도메인 정보", + "columnIds": [ + "XnNj7H0bnTxo_NuZm7BOs", + "w404_rDrrYyt26iqY8Eur", + "gHKfQQEPUr_YKqvm5K_gd", + "EcVzL-sPHB3OIUYfPrAs6", + "E8iokQ-rKyw43cNe746kt", + "SeMtkfNiltpn4j-M-XkG-", + "6T7sNUPqpTPJm6TI7Qbbe" + ], + "seqColumnIds": [ + "XnNj7H0bnTxo_NuZm7BOs", + "w404_rDrrYyt26iqY8Eur", + "gHKfQQEPUr_YKqvm5K_gd", + "ftF3nsGwio93Yhy60Pn99", + "qzikkq9Ixd8qxTt9ZsXU_", + "x2aQLdokECUat0FErWqlV", + "EcVzL-sPHB3OIUYfPrAs6", + "qA0r0AonbnrXvdqm7AZfg", + "uz14PltMKB0QJK1MyZMAA", + "E8iokQ-rKyw43cNe746kt", + "SeMtkfNiltpn4j-M-XkG-", + "6T7sNUPqpTPJm6TI7Qbbe" + ], + "ui": { + "x": 1214.1526, + "y": 3284.386, + "zIndex": 1276, + "widthName": 63, + "widthComment": 65, + "color": "" + }, + "meta": { + "updateAt": 1748229267465, + "createAt": 1748218895681 + } + }, + "ne09vvne6LjZp75VVGiWV": { + "id": "ne09vvne6LjZp75VVGiWV", + "name": "orderinfo", + "comment": "주문정보", + "columnIds": [ + "DX0y0VIZ430hVZbT_pmKl", + "4ZPfgU2ooMQksUvTVE3DH", + "rgmXZMa0DdI-L8pC-RiJt", + "wzFAJ75F6Ov68WDd8Mbkv", + "xrgRRbiWznf6wfOZvPbzl", + "UVlz7EjXt8gYUYQhV96kM", + "L3Hv2zU68j89zfA6wxlrV", + "qQNX4BucxlsaO8sTVFHFB" + ], + "seqColumnIds": [ + "DX0y0VIZ430hVZbT_pmKl", + "4ZPfgU2ooMQksUvTVE3DH", + "rgmXZMa0DdI-L8pC-RiJt", + "wzFAJ75F6Ov68WDd8Mbkv", + "xrgRRbiWznf6wfOZvPbzl", + "UVlz7EjXt8gYUYQhV96kM", + "L3Hv2zU68j89zfA6wxlrV", + "qQNX4BucxlsaO8sTVFHFB", + "W3wh0h5zKLtV6LmBly1fv" + ], + "ui": { + "x": 193.0917, + "y": 1518.7496, + "zIndex": 1306, + "widthName": 60, + "widthComment": 60, + "color": "" + }, + "meta": { + "updateAt": 1748229306138, + "createAt": 1748223128194 + } + }, + "UuZoDcFNrKD0iTjVkA2Ew": { + "id": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "orderiteminfo", + "comment": "주문Item정보", + "columnIds": [ + "T4cTcTKn8tiZ4cXkI1yKe", + "GInoklis2NulHalQTqnGQ", + "s4Hjjd9NLPLbGSYf6R4Eq", + "n9OtuKOQ5kpDFg38i89EP", + "mItqR-yNDeKnaPfHyd5Ds", + "bnIGEl3uSTni7_L6hpLcl", + "6_YG06qtnwrFkx-MI5VrS", + "0NhzxE0qF3EhLwFXCJokc", + "JHWWGSU7g_qkXfv2iazQh", + "gWMUdAw0INZvmuuwLbkwH" + ], + "seqColumnIds": [ + "T4cTcTKn8tiZ4cXkI1yKe", + "GInoklis2NulHalQTqnGQ", + "s4Hjjd9NLPLbGSYf6R4Eq", + "n9OtuKOQ5kpDFg38i89EP", + "RNtqq-QEUZiTGYJCYB7is", + "mItqR-yNDeKnaPfHyd5Ds", + "bnIGEl3uSTni7_L6hpLcl", + "6_YG06qtnwrFkx-MI5VrS", + "0NhzxE0qF3EhLwFXCJokc", + "JHWWGSU7g_qkXfv2iazQh", + "gWMUdAw0INZvmuuwLbkwH" + ], + "ui": { + "x": 37.5995, + "y": 1898.2412, + "zIndex": 1348, + "widthName": 75, + "widthComment": 74, + "color": "" + }, + "meta": { + "updateAt": 1748229296872, + "createAt": 1748223498531 + } + }, + "TZkszBNw47IF3fHl8bt74": { + "id": "TZkszBNw47IF3fHl8bt74", + "name": "paymentinfo", + "comment": "결제정보", + "columnIds": [ + "FtMFDsdDMDrwscoxUMnJ5", + "eCpp9N4KVZH6f5eRxZxvU", + "tHpQul6q-svWnjL_59s03", + "5E7rjgiVESzW4OSHB7yc1", + "ItpzPPEIIr1wko5oKg07v", + "PBLFWkHd0MV69qOa06y-V", + "27-3VzVLvJ8pr9kF1tk2u", + "HYNanPfS08M6xRE32jR_Q" + ], + "seqColumnIds": [ + "FtMFDsdDMDrwscoxUMnJ5", + "eCpp9N4KVZH6f5eRxZxvU", + "tHpQul6q-svWnjL_59s03", + "5E7rjgiVESzW4OSHB7yc1", + "ItpzPPEIIr1wko5oKg07v", + "PBLFWkHd0MV69qOa06y-V", + "27-3VzVLvJ8pr9kF1tk2u", + "HYNanPfS08M6xRE32jR_Q" + ], + "ui": { + "x": 588.8799, + "y": 1900.8701, + "zIndex": 1406, + "widthName": 69, + "widthComment": 60, + "color": "" + }, + "meta": { + "updateAt": 1748229315470, + "createAt": 1748224021135 + } + }, + "iggJbjwkw3-xTK9Xkh67n": { + "id": "iggJbjwkw3-xTK9Xkh67n", + "name": "renewalinfo", + "comment": "자동갱신정보", + "columnIds": [ + "qbFSpJHuQASfTKxcC3RIX", + "s6Juv5DV5R4Yc_nxRzyQG", + "nR_Q3crWVEb_xqW3WSaot", + "pNxxLyI7ZCDfk3_Z82xop", + "jPtofEaJEQQHMy1bc6bS2", + "YNRS8vDjt2qI0fyRLEoTN", + "1yY72VVJjbP3_21sWoJgA", + "Ho9aHOXhQNaQYcJdaMz98" + ], + "seqColumnIds": [ + "qbFSpJHuQASfTKxcC3RIX", + "s6Juv5DV5R4Yc_nxRzyQG", + "nR_Q3crWVEb_xqW3WSaot", + "pNxxLyI7ZCDfk3_Z82xop", + "jPtofEaJEQQHMy1bc6bS2", + "YNRS8vDjt2qI0fyRLEoTN", + "1yY72VVJjbP3_21sWoJgA", + "Ho9aHOXhQNaQYcJdaMz98" + ], + "ui": { + "x": 184.6859, + "y": 1202.4731, + "zIndex": 1446, + "widthName": 64, + "widthComment": 74, + "color": "" + }, + "meta": { + "updateAt": 1748229119647, + "createAt": 1748224348554 + } + }, + "4Phnxm-pTS6CW9EX4iqu1": { + "id": "4Phnxm-pTS6CW9EX4iqu1", + "name": "servicweinfo", + "comment": "서비스 상황정보", + "columnIds": [ + "W0i3aiC-uKIsGR49noc-s", + "8TLeYhxU1ZWII8eSABTTP", + "3JGYnarc_4JvXzPKnqvEO", + "_yI7nTfn7jLJGqyzmreZf", + "9bxqG90EvnSGBkyWVty3j", + "3e79SDuH1dBSkrCYrdPqT", + "71ymy3xKN9WlySAw8EBoO", + "0b3XIZcKMDp_3uSOXHEH4" + ], + "seqColumnIds": [ + "W0i3aiC-uKIsGR49noc-s", + "8TLeYhxU1ZWII8eSABTTP", + "3JGYnarc_4JvXzPKnqvEO", + "_yI7nTfn7jLJGqyzmreZf", + "9bxqG90EvnSGBkyWVty3j", + "3e79SDuH1dBSkrCYrdPqT", + "71ymy3xKN9WlySAw8EBoO", + "0b3XIZcKMDp_3uSOXHEH4" + ], + "ui": { + "x": 185.3818, + "y": 887.9307, + "zIndex": 1593, + "widthName": 67, + "widthComment": 89, + "color": "" + }, + "meta": { + "updateAt": 1748229116873, + "createAt": 1748226446838 + } + }, + "PxyXFfFpwwkq_8XYE9MRu": { + "id": "PxyXFfFpwwkq_8XYE9MRu", + "name": "serverinfos_ipinfos", + "comment": "서버_IP연결", + "columnIds": [ + "tJG_hLLa6l_kwuf92KzRg", + "067vdUFESzj48PGB_QLjg", + "woS0kjRSXcXN1L79VN2ix", + "8qAFg1S4o6WBlSMD-ehm1" + ], + "seqColumnIds": [ + "tJG_hLLa6l_kwuf92KzRg", + "067vdUFESzj48PGB_QLjg", + "woS0kjRSXcXN1L79VN2ix", + "8qAFg1S4o6WBlSMD-ehm1" + ], + "ui": { + "x": 2530.3659, + "y": 1320.2421, + "zIndex": 1650, + "widthName": 100, + "widthComment": 65, + "color": "" + }, + "meta": { + "updateAt": 1748229369917, + "createAt": 1748227846189 + } + }, + "fY4sPzjnlPRGToBG-WZeH": { + "id": "fY4sPzjnlPRGToBG-WZeH", + "name": "serverinfos_cpuinfos", + "comment": "서버_CPU연결", + "columnIds": [ + "-S18drCAD--FIyZMR21wd", + "B6XMwBsjXzUg7Glny_NkC", + "CBCTA2-9kJYGl-jsoO1w6", + "HVV8J5AkMnozP0S65BeS2" + ], + "seqColumnIds": [ + "-S18drCAD--FIyZMR21wd", + "B6XMwBsjXzUg7Glny_NkC", + "CBCTA2-9kJYGl-jsoO1w6", + "HVV8J5AkMnozP0S65BeS2" + ], + "ui": { + "x": 2545.6855, + "y": 1632.2914, + "zIndex": 1683, + "widthName": 109, + "widthComment": 77, + "color": "" + }, + "meta": { + "updateAt": 1748229366062, + "createAt": 1748228149005 + } + }, + "F_0cYo78BnayQhVv3ArRp": { + "id": "F_0cYo78BnayQhVv3ArRp", + "name": "serverinfos_raminfos", + "comment": "서버_RAM연결", + "columnIds": [ + "Wq3PNPt2_iqWXokhnVx_u", + "0UhqQkNDg3DHug5zXFJEY", + "Bg-Tx0N2d0uSzyhPkhyck", + "kP95mIVWhIRaVVvCLTXSH" + ], + "seqColumnIds": [ + "Wq3PNPt2_iqWXokhnVx_u", + "0UhqQkNDg3DHug5zXFJEY", + "Bg-Tx0N2d0uSzyhPkhyck", + "kP95mIVWhIRaVVvCLTXSH" + ], + "ui": { + "x": 2543.5995, + "y": 1975.5922, + "zIndex": 1720, + "widthName": 110, + "widthComment": 81, + "color": "" + }, + "meta": { + "updateAt": 1748229362549, + "createAt": 1748228343657 + } + }, + "XywAFAP3s5Xl6G-3txHTH": { + "id": "XywAFAP3s5Xl6G-3txHTH", + "name": "serverinfos_diskinfos", + "comment": "서버_DISK연결", + "columnIds": [ + "n614CP2FyjGjPH-OD5wPM", + "STLYnqCG56zLLyNnfgnqR", + "thCqAUxooyOoqA0o8Cr1S", + "5hericEusqGgI1pg0jFc1" + ], + "seqColumnIds": [ + "n614CP2FyjGjPH-OD5wPM", + "STLYnqCG56zLLyNnfgnqR", + "thCqAUxooyOoqA0o8Cr1S", + "5hericEusqGgI1pg0jFc1" + ], + "ui": { + "x": 2551.0909, + "y": 2244.407, + "zIndex": 1741, + "widthName": 111, + "widthComment": 80, + "color": "" + }, + "meta": { + "updateAt": 1748229359366, + "createAt": 1748228440581 + } + }, + "kHLWAzQmZ3CCs0KpilqZ7": { + "id": "kHLWAzQmZ3CCs0KpilqZ7", + "name": "serverinfos_defenceinfos", + "comment": "서버_방어연결", + "columnIds": [ + "t1UNhIBRL91lX0O9a0xMj", + "PhV2kPOROFN2Paxn0Q3KK", + "JVNCmWuI_UAnZEGZUbBQv", + "4yuH6ZQUnURnk_U6roXVl" + ], + "seqColumnIds": [ + "t1UNhIBRL91lX0O9a0xMj", + "PhV2kPOROFN2Paxn0Q3KK", + "JVNCmWuI_UAnZEGZUbBQv", + "4yuH6ZQUnURnk_U6roXVl" + ], + "ui": { + "x": 2566.4476, + "y": 2805.6594, + "zIndex": 1763, + "widthName": 132, + "widthComment": 79, + "color": "" + }, + "meta": { + "updateAt": 1748229353582, + "createAt": 1748228523646 + } + }, + "x7rn2-q2i7C6Lin0XwIR_": { + "id": "x7rn2-q2i7C6Lin0XwIR_", + "name": "serverinfos_softwareinfos", + "comment": "서버_Software연결", + "columnIds": [ + "7b5Ac7AAJFfTOiS3HEMhg", + "OqPMHX5b1-Qct8xqaypd1", + "Wjix1VNvwEfcogjAdEgc2", + "bLPLRDM9p3TWgZqOehkRR" + ], + "seqColumnIds": [ + "7b5Ac7AAJFfTOiS3HEMhg", + "OqPMHX5b1-Qct8xqaypd1", + "Wjix1VNvwEfcogjAdEgc2", + "bLPLRDM9p3TWgZqOehkRR" + ], + "ui": { + "x": 2570.5649, + "y": 2562.7184, + "zIndex": 1797, + "widthName": 135, + "widthComment": 101, + "color": "" + }, + "meta": { + "updateAt": 1748229356135, + "createAt": 1748228685683 + } + }, + "DKSom-hQqNhI1z7FqSa6Y": { + "id": "DKSom-hQqNhI1z7FqSa6Y", + "name": "serverinfos_domaininfos", + "comment": "서버_도메인연결", + "columnIds": [ + "tWqLaWbK888YRNrL_m8Aw", + "CCtqlfF2lD-XJILWNJMGC", + "XRRh5KRH2WqKryhsba-KG", + "AWwG30rhbOSU6Euyee2Px" + ], + "seqColumnIds": [ + "tWqLaWbK888YRNrL_m8Aw", + "CCtqlfF2lD-XJILWNJMGC", + "XRRh5KRH2WqKryhsba-KG", + "AWwG30rhbOSU6Euyee2Px" + ], + "ui": { + "x": 2562.3299, + "y": 3088.0124, + "zIndex": 1822, + "widthName": 130, + "widthComment": 91, + "color": "" + }, + "meta": { + "updateAt": 1748229350758, + "createAt": 1748228820879 + } + } + }, + "tableColumnEntities": { + "mfHtgzc_Aeocr6xkgwYWh": { + "id": "mfHtgzc_Aeocr6xkgwYWh", + "tableId": "Jq5Qkun2FzQhCGKANIVOZ", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 3, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764136, + "createAt": 1745819764136 + } + }, + "7DHaQCuxiYmzxE0eGpGxb": { + "id": "7DHaQCuxiYmzxE0eGpGxb", + "tableId": "Jq5Qkun2FzQhCGKANIVOZ", + "name": "id", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764136, + "createAt": 1745819764136 + } + }, + "DkvMbsxXt6KWxlySb-X11": { + "id": "DkvMbsxXt6KWxlySb-X11", + "tableId": "Jq5Qkun2FzQhCGKANIVOZ", + "name": "passwd", + "comment": "", + "dataType": "VARCHAR(255)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764136, + "createAt": 1745819764136 + } + }, + "4KSZ7KgTh_tw7obM3dwuP": { + "id": "4KSZ7KgTh_tw7obM3dwuP", + "tableId": "Jq5Qkun2FzQhCGKANIVOZ", + "name": "name", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "fBkXuryUQyHhfKXBjjKY2": { + "id": "fBkXuryUQyHhfKXBjjKY2", + "tableId": "Jq5Qkun2FzQhCGKANIVOZ", + "name": "email", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "vRWAi067oa76RKlyBllFH": { + "id": "vRWAi067oa76RKlyBllFH", + "tableId": "Jq5Qkun2FzQhCGKANIVOZ", + "name": "mobile", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "5ZWglx6I92JkdajKWQyGq": { + "id": "5ZWglx6I92JkdajKWQyGq", + "tableId": "Jq5Qkun2FzQhCGKANIVOZ", + "name": "role", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "'manager'", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878103240, + "createAt": 1745819764137 + } + }, + "GSZc6SEGQpz6SnTW-mo2n": { + "id": "GSZc6SEGQpz6SnTW-mo2n", + "tableId": "Jq5Qkun2FzQhCGKANIVOZ", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878027715, + "createAt": 1745819764137 + } + }, + "-eAu93drXUckSR1goyAW0": { + "id": "-eAu93drXUckSR1goyAW0", + "tableId": "Jq5Qkun2FzQhCGKANIVOZ", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "_Isvu_q8_Gsp82W0Lkk-r": { + "id": "_Isvu_q8_Gsp82W0Lkk-r", + "tableId": "Jq5Qkun2FzQhCGKANIVOZ", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "_AcWUYKzNJd-V0fRHq8Cx": { + "id": "_AcWUYKzNJd-V0fRHq8Cx", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746576275687, + "createAt": 1745819764137 + } + }, + "n61V7aSxLmcIeQqsYgAEE": { + "id": "n61V7aSxLmcIeQqsYgAEE", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "name", + "comment": "", + "dataType": "VARCHAR(100)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "5hP5ZiQGWDGf4HJrOiFb6": { + "id": "5hP5ZiQGWDGf4HJrOiFb6", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "phone", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745915052394, + "createAt": 1745819764137 + } + }, + "fMx3gLKi1fsfp7g26-QA9": { + "id": "fMx3gLKi1fsfp7g26-QA9", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "email", + "comment": "", + "dataType": "VARCHAR(100)", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "xEoc72X0ErdGKU7rMzenm": { + "id": "xEoc72X0ErdGKU7rMzenm", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "account_balance", + "comment": "보증금", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 90, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747281854267, + "createAt": 1745819764137 + } + }, + "z-q_Ah0sghd0nR7VcCTLX": { + "id": "z-q_Ah0sghd0nR7VcCTLX", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "role", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "'user'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746420283048, + "createAt": 1745819764137 + } + }, + "Ksp65Qh_aOFmAb1ksx64Q": { + "id": "Ksp65Qh_aOFmAb1ksx64Q", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "note", + "comment": "", + "dataType": "TEXT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "6JNus18UqajPfwOjkPali": { + "id": "6JNus18UqajPfwOjkPali", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878195845, + "createAt": 1745819764137 + } + }, + "qmfQUBHfeiJwR5kq3SyNW": { + "id": "qmfQUBHfeiJwR5kq3SyNW", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "D1tPn8Uq5C8UWh6dtzBJZ": { + "id": "D1tPn8Uq5C8UWh6dtzBJZ", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "ia3c6jjHvbTOX0cX4gbJl": { + "id": "ia3c6jjHvbTOX0cX4gbJl", + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746576268559, + "createAt": 1745819764137 + } + }, + "nPYun5WHoy8uroXUBiqh8": { + "id": "nPYun5WHoy8uroXUBiqh8", + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746406061984, + "createAt": 1745819764137 + } + }, + "hQM1tPHn6MrCa4pIL7t7w": { + "id": "hQM1tPHn6MrCa4pIL7t7w", + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'in'", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746421449083, + "createAt": 1745819764137 + } + }, + "tmkHXMc6fdNicHeig7nss": { + "id": "tmkHXMc6fdNicHeig7nss", + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "name": "title", + "comment": "", + "dataType": "VARCHAR(255)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "foBGnViYEjNlWIAhXeuLw": { + "id": "foBGnViYEjNlWIAhXeuLw", + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "name": "alias", + "comment": "입출금자명", + "dataType": "VARCHAR(50)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 62, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "HaKM09bv5DwJFH9pxSqWI": { + "id": "HaKM09bv5DwJFH9pxSqWI", + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "name": "amount", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "f4NQ8F-FyamLyf4YR0VY1": { + "id": "f4NQ8F-FyamLyf4YR0VY1", + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "name": "note", + "comment": "", + "dataType": "TEXT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "Mr4qiMpKO4UVj3aZ3HueW": { + "id": "Mr4qiMpKO4UVj3aZ3HueW", + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "ut3UlHsNjxqNgAzENBkfy": { + "id": "ut3UlHsNjxqNgAzENBkfy", + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745819764137, + "createAt": 1745819764137 + } + }, + "F9EPb6nsDx6Tf3GG8rvP1": { + "id": "F9EPb6nsDx6Tf3GG8rvP1", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 15, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747795104844, + "createAt": 1745819764137 + } + }, + "BAzGsBrmLOwZGYLchLmyP": { + "id": "BAzGsBrmLOwZGYLchLmyP", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'Rackmount'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 67 + }, + "meta": { + "updateAt": 1747878140724, + "createAt": 1745819764138 + } + }, + "9F6QpQqxeEggZ0FHM81O1": { + "id": "9F6QpQqxeEggZ0FHM81O1", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "model", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747378887223, + "createAt": 1745819764138 + } + }, + "6e3HgOnQwPQRS7r37pAK6": { + "id": "6e3HgOnQwPQRS7r37pAK6", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "model", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764138, + "createAt": 1745819764138 + } + }, + "Wks-dXdsHSF-EATUWnxzY": { + "id": "Wks-dXdsHSF-EATUWnxzY", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "cost_price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764138, + "createAt": 1745819764138 + } + }, + "lu2r9w2xmXsB8H7Mrdt1t": { + "id": "lu2r9w2xmXsB8H7Mrdt1t", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746576622840, + "createAt": 1745819764138 + } + }, + "54iuIW4knok06vP4JH-oN": { + "id": "54iuIW4knok06vP4JH-oN", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "description", + "comment": "", + "dataType": "TEXT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 61, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764138, + "createAt": 1745819764138 + } + }, + "Djbw3B6xZWKAvwJDto9xl": { + "id": "Djbw3B6xZWKAvwJDto9xl", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "status", + "comment": "", + "dataType": "ENUM(use,stop)", + "default": "use", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 87, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764138, + "createAt": 1745819764138 + } + }, + "tNaVOzr3vywCXiQdfUJWq": { + "id": "tNaVOzr3vywCXiQdfUJWq", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746606227026, + "createAt": 1745819764138 + } + }, + "6bQ_6eGfINic9LpM6PtDw": { + "id": "6bQ_6eGfINic9LpM6PtDw", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745819764138, + "createAt": 1745819764138 + } + }, + "2HB01q46-mugMjuOz85YG": { + "id": "2HB01q46-mugMjuOz85YG", + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746576290577, + "createAt": 1745819764138 + } + }, + "4acJag7ORjUzX7FP-gnhZ": { + "id": "4acJag7ORjUzX7FP-gnhZ", + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "name": "type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'Windows'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747121966001, + "createAt": 1745819764138 + } + }, + "1q8jG5dQKdD35_XYimkSk": { + "id": "1q8jG5dQKdD35_XYimkSk", + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "name": "model", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746609596359, + "createAt": 1745819764138 + } + }, + "zL9bBVm37HTSU-xWpwxxJ": { + "id": "zL9bBVm37HTSU-xWpwxxJ", + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "name": "cost_price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764138, + "createAt": 1745819764138 + } + }, + "G9PMddYQm9ohnzkJUa_nw": { + "id": "G9PMddYQm9ohnzkJUa_nw", + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746576533911, + "createAt": 1745819764138 + } + }, + "P84ZMnZu1nZtRhDY18T5o": { + "id": "P84ZMnZu1nZtRhDY18T5o", + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "name": "description", + "comment": "", + "dataType": "TEXT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 61, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746576343186, + "createAt": 1745819764138 + } + }, + "k4vpMNZ75fNUjX-hrjXzs": { + "id": "k4vpMNZ75fNUjX-hrjXzs", + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764138, + "createAt": 1745819764138 + } + }, + "8ZPjmeG3NoO6C0icGibJP": { + "id": "8ZPjmeG3NoO6C0icGibJP", + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745819764138, + "createAt": 1745819764138 + } + }, + "7B0zaLoZnOoMNW8OHZlrQ": { + "id": "7B0zaLoZnOoMNW8OHZlrQ", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746576741115, + "createAt": 1745819764138 + } + }, + "XQE8sY3pDLC2iy95uc9Ir": { + "id": "XQE8sY3pDLC2iy95uc9Ir", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "code", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764138, + "createAt": 1745819764138 + } + }, + "oc5quhO8E3mqrBZKbIy_G": { + "id": "oc5quhO8E3mqrBZKbIy_G", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "type", + "comment": "회선구분", + "dataType": "VARCHAR(20)", + "default": "'general'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746764496647, + "createAt": 1745819764138 + } + }, + "ehNv0f07ci1ARnkTSDG6J": { + "id": "ehNv0f07ci1ARnkTSDG6J", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746576747163, + "createAt": 1745819764138 + } + }, + "xaUC3GLta1iHmo1YQ-qDo": { + "id": "xaUC3GLta1iHmo1YQ-qDo", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "status", + "comment": "", + "dataType": "ENUM(use,stop)", + "default": "use", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 87, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764138, + "createAt": 1745819764138 + } + }, + "ltPYBs_iNuZJM6wTnK0H-": { + "id": "ltPYBs_iNuZJM6wTnK0H-", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746769042882, + "createAt": 1745819764138 + } + }, + "liJON6hIBB9aS-pQgM0Q6": { + "id": "liJON6hIBB9aS-pQgM0Q6", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745819764138, + "createAt": 1745819764138 + } + }, + "Do7xvuwqsEo1L9PMTYoFg": { + "id": "Do7xvuwqsEo1L9PMTYoFg", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "uid", + "comment": "", + "dataType": "", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745820641243, + "createAt": 1745819764138 + } + }, + "nb5CGzskl3_LIRA0yyede": { + "id": "nb5CGzskl3_LIRA0yyede", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746576278847, + "createAt": 1745819764139 + } + }, + "sscrxOdwLlx94tx1j_MrH": { + "id": "sscrxOdwLlx94tx1j_MrH", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746406061984, + "createAt": 1745819764139 + } + }, + "iM3NfWTfO6qrXv94EUFgk": { + "id": "iM3NfWTfO6qrXv94EUFgk", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'hosting'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747733895712, + "createAt": 1745819764139 + } + }, + "CITRNBpXOZqGM6gHy5MlB": { + "id": "CITRNBpXOZqGM6gHy5MlB", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "title", + "comment": "", + "dataType": "VARCHAR(255)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747125180442, + "createAt": 1745819764139 + } + }, + "lwr6RuK8OGKJNLdd70NGS": { + "id": "lwr6RuK8OGKJNLdd70NGS", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "billing_at", + "comment": "청구일", + "dataType": "DATE", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747371214135, + "createAt": 1745819764139 + } + }, + "sGkif4Lcd1cXyGgJQCuZl": { + "id": "sGkif4Lcd1cXyGgJQCuZl", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "amount", + "comment": "청구액", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747371386113, + "createAt": 1745819764139 + } + }, + "xbFxL4RtJRdTlfQlDG3Ag": { + "id": "xbFxL4RtJRdTlfQlDG3Ag", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "startdate_at", + "comment": "", + "dataType": "DATE", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 64, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747125021252, + "createAt": 1745819764139 + } + }, + "Yw-nVASb0K3Qf7KU2Vxto": { + "id": "Yw-nVASb0K3Qf7KU2Vxto", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "enddate_at", + "comment": "", + "dataType": "DATE", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 61, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747124987001, + "createAt": 1745819764139 + } + }, + "jBxeJ8Sz7jRGrKBCkD1q1": { + "id": "jBxeJ8Sz7jRGrKBCkD1q1", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878210199, + "createAt": 1745819764139 + } + }, + "mNL0XMdVPG6j_TTghhHg6": { + "id": "mNL0XMdVPG6j_TTghhHg6", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764139, + "createAt": 1745819764139 + } + }, + "29LdworovSsHw2EaPP8Zv": { + "id": "29LdworovSsHw2EaPP8Zv", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745819764139, + "createAt": 1745819764139 + } + }, + "fsAJySlXPbGQahV59hQgo": { + "id": "fsAJySlXPbGQahV59hQgo", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746576282952, + "createAt": 1745819764139 + } + }, + "bEnLVhafLMHZluEaYba4n": { + "id": "bEnLVhafLMHZluEaYba4n", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "serviceinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 80, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764139, + "createAt": 1745819764139 + } + }, + "F6kponQqcXk2TT-AIElPY": { + "id": "F6kponQqcXk2TT-AIElPY", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "type", + "comment": "", + "dataType": "ENUM(monthly,onetime,daily)", + "default": "monthly", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 161, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764139, + "createAt": 1745819764139 + } + }, + "hCs1Oji5S6161mXCnAgP6": { + "id": "hCs1Oji5S6161mXCnAgP6", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "total_amount", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 72, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747281826097, + "createAt": 1745819764139 + } + }, + "h9_O9yvER5oW6Tb7ygofm": { + "id": "h9_O9yvER5oW6Tb7ygofm", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "description", + "comment": "", + "dataType": "TEXT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 61, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764139, + "createAt": 1745819764139 + } + }, + "iDvGbVnpR-GTfqajd7P02": { + "id": "iDvGbVnpR-GTfqajd7P02", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878219530, + "createAt": 1745819764139 + } + }, + "RcKYLal7wRQe2aYxGDKNl": { + "id": "RcKYLal7wRQe2aYxGDKNl", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764139, + "createAt": 1745819764139 + } + }, + "2SU_tNQXyQlsQc6WchJ04": { + "id": "2SU_tNQXyQlsQc6WchJ04", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745819764139, + "createAt": 1745819764139 + } + }, + "9gNKhuq9UnDKyb9KuZ7cY": { + "id": "9gNKhuq9UnDKyb9KuZ7cY", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745914714975, + "createAt": 1745819764140 + } + }, + "O_MKuQKv7yP-k0dsyszkk": { + "id": "O_MKuQKv7yP-k0dsyszkk", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "G3KLXJzl6S28Y8pN8hfy2": { + "id": "G3KLXJzl6S28Y8pN8hfy2", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "type", + "comment": "", + "dataType": "ENUM()", + "default": "point", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745914669471, + "createAt": 1745819764142 + } + }, + "ALRvTZjYrv4K1ltFn30Mn": { + "id": "ALRvTZjYrv4K1ltFn30Mn", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "title", + "comment": "", + "dataType": "VARCHAR(100)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "3EFy0j6PlKaha31ajJSsZ": { + "id": "3EFy0j6PlKaha31ajJSsZ", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "value", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "6ZDZLrSpVuAeUGWvifvq7": { + "id": "6ZDZLrSpVuAeUGWvifvq7", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "note", + "comment": "", + "dataType": "TEXT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "1bvped58WqdQLlaObX0AT": { + "id": "1bvped58WqdQLlaObX0AT", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "status", + "comment": "", + "dataType": "ENUM(use,expired)", + "default": "use", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 103, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "iMCMcnQGafCPo46R91hOK": { + "id": "iMCMcnQGafCPo46R91hOK", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "6WOE-jsg5rFe2X04atr-Y": { + "id": "6WOE-jsg5rFe2X04atr-Y", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "J_xS3cvULouXCTo5gCiTm": { + "id": "J_xS3cvULouXCTo5gCiTm", + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 3, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "DGl10GI58QwOHwpTu4Z1Y": { + "id": "DGl10GI58QwOHwpTu4Z1Y", + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "user_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747816382451, + "createAt": 1745819764142 + } + }, + "yMcXBh6lgSLWfLhrivvuX": { + "id": "yMcXBh6lgSLWfLhrivvuX", + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "type", + "comment": "", + "dataType": "ENUM(info,warn,error,debug)", + "default": "info", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 157, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "KvMMNu-PKESt0_2K4AJcB": { + "id": "KvMMNu-PKESt0_2K4AJcB", + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "class_name", + "comment": "", + "dataType": "VARCHAR(255)", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 61, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746409083866, + "createAt": 1745819764142 + } + }, + "kKI4hKELPs9Nh5UtQvSu7": { + "id": "kKI4hKELPs9Nh5UtQvSu7", + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "method_name", + "comment": "", + "dataType": "VARCHAR(255)", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 78, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746409091430, + "createAt": 1745819764142 + } + }, + "wkjLZ-Bc9g3Z6Rh_IQ7_q": { + "id": "wkjLZ-Bc9g3Z6Rh_IQ7_q", + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "title", + "comment": "", + "dataType": "VARCHAR(255)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "W5bxFTggHoO9_PPsfy2EB": { + "id": "W5bxFTggHoO9_PPsfy2EB", + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "content", + "comment": "", + "dataType": "TEXT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746409102873, + "createAt": 1745819764142 + } + }, + "Wef1cEik-NFTr_alGxLpa": { + "id": "Wef1cEik-NFTr_alGxLpa", + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "status", + "comment": "", + "dataType": "ENUM(info,warning,error,megency,critical,debug)", + "default": "info", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 262, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745885282627, + "createAt": 1745819764142 + } + }, + "OgECIC2AofE3lQIX-nOkM": { + "id": "OgECIC2AofE3lQIX-nOkM", + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "qHceMMaFcmVnWPlJ2T4Sg": { + "id": "qHceMMaFcmVnWPlJ2T4Sg", + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745819764142, + "createAt": 1745819764142 + } + }, + "SFj3q5xg6pcI4RSDKPSgI": { + "id": "SFj3q5xg6pcI4RSDKPSgI", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "ip", + "comment": "", + "dataType": "CHAR(16)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746576026143, + "createAt": 1745820616316 + } + }, + "Id0h8QbOdlhPj9P1zTm5o": { + "id": "Id0h8QbOdlhPj9P1zTm5o", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746764385134, + "createAt": 1745820637059 + } + }, + "Vm1-FnoJLcJ0GRnTp0vnn": { + "id": "Vm1-FnoJLcJ0GRnTp0vnn", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745820683602, + "createAt": 1745820683602 + } + }, + "R-UjmO-S2UeQdddVNwH5M": { + "id": "R-UjmO-S2UeQdddVNwH5M", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745820683602, + "createAt": 1745820683602 + } + }, + "0ONL4QLQRyZ32MBJ7TN7u": { + "id": "0ONL4QLQRyZ32MBJ7TN7u", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "50000", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746609434306, + "createAt": 1745821113011 + } + }, + "e6eWKMFnpXI-rPJZ_9tBt": { + "id": "e6eWKMFnpXI-rPJZ_9tBt", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "status", + "comment": "", + "dataType": "ENUM(use,stop)", + "default": "use", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 87, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745821113012, + "createAt": 1745821113011 + } + }, + "Dw-euSUHCJjMfHmPx9RZw": { + "id": "Dw-euSUHCJjMfHmPx9RZw", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "startdate_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 64, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745821287277, + "createAt": 1745821287276 + } + }, + "bc7vXbPHzkkSjtIb1Eu_C": { + "id": "bc7vXbPHzkkSjtIb1Eu_C", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "enddate_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 61, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745821287277, + "createAt": 1745821287277 + } + }, + "3jtklRjnxzZANo69T6vWW": { + "id": "3jtklRjnxzZANo69T6vWW", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "deposit", + "comment": "추가", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746609838106, + "createAt": 1745914576666 + } + }, + "RJRgO2-42FxCW0ucjngu9": { + "id": "RJRgO2-42FxCW0ucjngu9", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'in'", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746421463531, + "createAt": 1745914717252 + } + }, + "35XbdvgOzpNdasPnMcbkx": { + "id": "35XbdvgOzpNdasPnMcbkx", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746406061984, + "createAt": 1745914803629 + } + }, + "PJapuo6nvm3x9hJPUfXd6": { + "id": "PJapuo6nvm3x9hJPUfXd6", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746764362759, + "createAt": 1745914874024 + } + }, + "X1GxGekOLLuoEkqGQDF86": { + "id": "X1GxGekOLLuoEkqGQDF86", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745914874024, + "createAt": 1745914874024 + } + }, + "fhM5WF3fhv8_g8KDcNF9g": { + "id": "fhM5WF3fhv8_g8KDcNF9g", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "title", + "comment": "", + "dataType": "VARCHAR(255)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745914874024, + "createAt": 1745914874024 + } + }, + "QfmlZ3--qScQizx76syAE": { + "id": "QfmlZ3--qScQizx76syAE", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "alias", + "comment": "입출금자명", + "dataType": "VARCHAR(50)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 62, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745914874025, + "createAt": 1745914874024 + } + }, + "NnXAqOInrD08SltZoFNHu": { + "id": "NnXAqOInrD08SltZoFNHu", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "amount", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745914874025, + "createAt": 1745914874025 + } + }, + "S3K2h7O2zUHNoSb5rfn5c": { + "id": "S3K2h7O2zUHNoSb5rfn5c", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "note", + "comment": "", + "dataType": "TEXT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745914874025, + "createAt": 1745914874025 + } + }, + "v6TBpKQ_tIXDcJth0Hf4s": { + "id": "v6TBpKQ_tIXDcJth0Hf4s", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "status", + "comment": "", + "dataType": "ENUM(deposit,withdrawal)", + "default": "deposit", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 143, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745914874025, + "createAt": 1745914874025 + } + }, + "qHxcsOsImKFSnmwyIE_XZ": { + "id": "qHxcsOsImKFSnmwyIE_XZ", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745914874025, + "createAt": 1745914874025 + } + }, + "jav6q3L-HQhPYJBdcLIgz": { + "id": "jav6q3L-HQhPYJBdcLIgz", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1745914874025, + "createAt": 1745914874025 + } + }, + "PyXYmokQzpzzT08WTmtsN": { + "id": "PyXYmokQzpzzT08WTmtsN", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746406061984, + "createAt": 1745914916195 + } + }, + "Z4egkB50o_Ii-lP5VRBGr": { + "id": "Z4egkB50o_Ii-lP5VRBGr", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "", + "comment": "", + "dataType": "", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1745914974320, + "createAt": 1745914974320 + } + }, + "02r_3OPPiD_vAgD7rmZK4": { + "id": "02r_3OPPiD_vAgD7rmZK4", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "coupon_balance", + "comment": "쿠폰수", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 88, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747281855057, + "createAt": 1745914990795 + } + }, + "Vb_CyMe0qvi7oxda4dUVW": { + "id": "Vb_CyMe0qvi7oxda4dUVW", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "point_balance", + "comment": "포인트", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747281855834, + "createAt": 1745914991602 + } + }, + "XPpipgVUsGKsXCW5YNg1X": { + "id": "XPpipgVUsGKsXCW5YNg1X", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "email", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747281907332, + "createAt": 1745915055367 + } + }, + "NVO-aO4GEW9DHdEV8XQq6": { + "id": "NVO-aO4GEW9DHdEV8XQq6", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "code", + "comment": "", + "dataType": "VARCHAR(", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746404371161, + "createAt": 1746404353801 + } + }, + "WHpensFTMwtupqV5TbNMV": { + "id": "WHpensFTMwtupqV5TbNMV", + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878040311, + "createAt": 1746409047865 + } + }, + "VycsOgeM1SXkcq_5XYUMS": { + "id": "VycsOgeM1SXkcq_5XYUMS", + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878050418, + "createAt": 1746409123565 + } + }, + "bh-W1plz0vCW2rURDnfDR": { + "id": "bh-W1plz0vCW2rURDnfDR", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878126469, + "createAt": 1746409135259 + } + }, + "nDoaVrEhO8hLuHbgZV4il": { + "id": "nDoaVrEhO8hLuHbgZV4il", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878150246, + "createAt": 1746409147624 + } + }, + "PHhRG4nKR6k_CQF9B8xS1": { + "id": "PHhRG4nKR6k_CQF9B8xS1", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878160216, + "createAt": 1746409157661 + } + }, + "9CJ9f4Gdh5iKDZAMDjNAz": { + "id": "9CJ9f4Gdh5iKDZAMDjNAz", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'in'", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746421440442, + "createAt": 1746409195694 + } + }, + "dkwDt8XZjnu1Hq3vX4Wta": { + "id": "dkwDt8XZjnu1Hq3vX4Wta", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "code", + "comment": "회선번호", + "dataType": "VARCHAR(20)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746595620522, + "createAt": 1746595138876 + } + }, + "lZQAY89JoyOHoTQEHeS1Y": { + "id": "lZQAY89JoyOHoTQEHeS1Y", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "title", + "comment": "", + "dataType": "VARCHAR(100)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746609572983, + "createAt": 1746595187788 + } + }, + "f7_MGvRjkwL1xkCWrAgDR": { + "id": "f7_MGvRjkwL1xkCWrAgDR", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "lineinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 63, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746595301986, + "createAt": 1746595277836 + } + }, + "6qd6rcTkraI_AbHcVbp6T": { + "id": "6qd6rcTkraI_AbHcVbp6T", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "ip", + "comment": "", + "dataType": "CHAR(16)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746609553358, + "createAt": 1746595324623 + } + }, + "fiQBfXvw-4tj42PuGiDAk": { + "id": "fiQBfXvw-4tj42PuGiDAk", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "bandwith", + "comment": "IP 대역", + "dataType": "VARCHAR(20)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746595529898, + "createAt": 1746595486404 + } + }, + "6QKQkCLEQNWLc1oF16LgN": { + "id": "6QKQkCLEQNWLc1oF16LgN", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "code", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746609616841, + "createAt": 1746604787601 + } + }, + "o0KMVEBZAnWRSsxx10HmA": { + "id": "o0KMVEBZAnWRSsxx10HmA", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "manufactur_at", + "comment": "제조일", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 78, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747118914494, + "createAt": 1746606232069 + } + }, + "lhQ3PpSdLxVcH5LvI4DNx": { + "id": "lhQ3PpSdLxVcH5LvI4DNx", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "type", + "comment": "", + "dataType": "VHARCHAR(20)", + "default": "'public'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 84, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746607706344, + "createAt": 1746607691544 + } + }, + "hZ6BBU-xMeNW6jafbpxzY": { + "id": "hZ6BBU-xMeNW6jafbpxzY", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "withdrawal", + "comment": "사용", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746609843005, + "createAt": 1746609796989 + } + }, + "hpqVO4TcRRrwuvlSosSGx": { + "id": "hpqVO4TcRRrwuvlSosSGx", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "deposit", + "comment": "입금", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746609901157, + "createAt": 1746609863007 + } + }, + "loBrh2giB1WiI1GakcT46": { + "id": "loBrh2giB1WiI1GakcT46", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "withdrawal", + "comment": "출금", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746609905642, + "createAt": 1746609863007 + } + }, + "OwsCuEWoHNZ8zov4IClUR": { + "id": "OwsCuEWoHNZ8zov4IClUR", + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "name": "amount", + "comment": "압출금액", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747124730978, + "createAt": 1746609884642 + } + }, + "-egu-8EQDsUJcOi-nzl74": { + "id": "-egu-8EQDsUJcOi-nzl74", + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878184329, + "createAt": 1746609884642 + } + }, + "wb9_XvPZHAOrpH-s0B0YN": { + "id": "wb9_XvPZHAOrpH-s0B0YN", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "start_at", + "comment": "개통일", + "dataType": "DATE", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747368685355, + "createAt": 1746769048830 + } + }, + "roON46ztrEREN9ysNVyCK": { + "id": "roON46ztrEREN9ysNVyCK", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'cpu'", + "options": 10, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746783530740, + "createAt": 1746783443622 + } + }, + "DC7TvFFpBT7vY0UKKHt-W": { + "id": "DC7TvFFpBT7vY0UKKHt-W", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "model", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746783443622, + "createAt": 1746783443622 + } + }, + "kXkNsvdbXOcI-DslovgVa": { + "id": "kXkNsvdbXOcI-DslovgVa", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "capacity", + "comment": "성능", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747117842173, + "createAt": 1746783443622 + } + }, + "cg9Jr22ykbciJUTruf5fu": { + "id": "cg9Jr22ykbciJUTruf5fu", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746783443622, + "createAt": 1746783443622 + } + }, + "dr0UoY8ebsS-TjcPyP4is": { + "id": "dr0UoY8ebsS-TjcPyP4is", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "description", + "comment": "", + "dataType": "TEXT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 61, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746783443622, + "createAt": 1746783443622 + } + }, + "wx8zTFviA4I8YQnn-MFpW": { + "id": "wx8zTFviA4I8YQnn-MFpW", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'use'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746783443622, + "createAt": 1746783443622 + } + }, + "3nwgqrQd_qDGdg6Fe3kEp": { + "id": "3nwgqrQd_qDGdg6Fe3kEp", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746783443622, + "createAt": 1746783443622 + } + }, + "mwVYv9PaJFpoxYvTRJ223": { + "id": "mwVYv9PaJFpoxYvTRJ223", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1746783443622, + "createAt": 1746783443622 + } + }, + "Jh6e_-9QYe1Tqve0PE3kT": { + "id": "Jh6e_-9QYe1Tqve0PE3kT", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1746783593438, + "createAt": 1746783511284 + } + }, + "F6TXYV3uwRzb-aZYCmf5x": { + "id": "F6TXYV3uwRzb-aZYCmf5x", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "clientinfo_uid", + "comment": "소유자", + "dataType": "INT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747118585059, + "createAt": 1747033130118 + } + }, + "-Vr-igaSkx5zEcVp0oUGN": { + "id": "-Vr-igaSkx5zEcVp0oUGN", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'CPU'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747286951047, + "createAt": 1747117813787 + } + }, + "ha72QbBWfvyRymsyFBov8": { + "id": "ha72QbBWfvyRymsyFBov8", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "clientinfo_uid", + "comment": "소유자", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747118591540, + "createAt": 1747118545119 + } + }, + "GnoGvT4HaG9kp-BvwZ4FQ": { + "id": "GnoGvT4HaG9kp-BvwZ4FQ", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "manufactur_at", + "comment": "제조일", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 78, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747118918222, + "createAt": 1747118813753 + } + }, + "C-iSSJV5sjbkmpIKBx4Km": { + "id": "C-iSSJV5sjbkmpIKBx4Km", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "amount", + "comment": "압출금액", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747124828013, + "createAt": 1747124828013 + } + }, + "txROOkHVXSfJOTHlU5mdz": { + "id": "txROOkHVXSfJOTHlU5mdz", + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878174792, + "createAt": 1747124828013 + } + }, + "TFkQ1ID6ShcMqf9wLGEP1": { + "id": "TFkQ1ID6ShcMqf9wLGEP1", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "amount", + "comment": "갯수", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747124875293, + "createAt": 1747124839902 + } + }, + "DSAUgD7rG7Lzm2-jVWKA3": { + "id": "DSAUgD7rG7Lzm2-jVWKA3", + "tableId": "jO40Ej5EXImXnadoJo9bn", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878167336, + "createAt": 1747124839902 + } + }, + "Ue1gt0C4DyjOQswV8LxkE": { + "id": "Ue1gt0C4DyjOQswV8LxkE", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "clientinfo_uid", + "comment": "소유자", + "dataType": "INT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747198771670, + "createAt": 1747198681287 + } + }, + "qnVCOfUyejx2ToAQhkmu0": { + "id": "qnVCOfUyejx2ToAQhkmu0", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "start_at", + "comment": "개통일", + "dataType": "DATE", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747371188940, + "createAt": 1747277755303 + } + }, + "JItDVSlR3alwlWIyiXSyW": { + "id": "JItDVSlR3alwlWIyiXSyW", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "end_at", + "comment": "종료일", + "dataType": "DATE", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747792789752, + "createAt": 1747277755303 + } + }, + "Mlq3l8ZyEkSzXldwOmRed": { + "id": "Mlq3l8ZyEkSzXldwOmRed", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747279138866, + "createAt": 1747279114628 + } + }, + "NzUNVP-O0U298m6bClqyd": { + "id": "NzUNVP-O0U298m6bClqyd", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "issue_at", + "comment": "", + "dataType": "DATE", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747627020647, + "createAt": 1747279159758 + } + }, + "zT13NpysXzkDKNUgdBOIC": { + "id": "zT13NpysXzkDKNUgdBOIC", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "issued_at", + "comment": "", + "dataType": "DATE", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747279366874, + "createAt": 1747279159758 + } + }, + "rfUyj0qgcwNt8AYQrQpwr": { + "id": "rfUyj0qgcwNt8AYQrQpwr", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747279185055, + "createAt": 1747279185055 + } + }, + "pY1RZgzuWBgRILX2XsMTt": { + "id": "pY1RZgzuWBgRILX2XsMTt", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "code", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747283581346, + "createAt": 1747283571951 + } + }, + "5KRw8TtT2nLqpYfKFOBwe": { + "id": "5KRw8TtT2nLqpYfKFOBwe", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "clientinfo_uid", + "comment": "소유자정보", + "dataType": "INT", + "default": "", + "options": 0, + "ui": { + "keys": 2, + "widthName": 73, + "widthComment": 62, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747367958122, + "createAt": 1747286811587 + } + }, + "yjaoHnd4nFaa-3REXvRfN": { + "id": "yjaoHnd4nFaa-3REXvRfN", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747286871486, + "createAt": 1747286871486 + } + }, + "VxbbWBYPZdH63koVtdRuv": { + "id": "VxbbWBYPZdH63koVtdRuv", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747286961671, + "createAt": 1747286910519 + } + }, + "kyD7tU9kevxCDow7j2uHI": { + "id": "kyD7tU9kevxCDow7j2uHI", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747286947375, + "createAt": 1747286929609 + } + }, + "SaTapKkBzVUluKTG_fsBy": { + "id": "SaTapKkBzVUluKTG_fsBy", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747367978937, + "createAt": 1747297811324 + } + }, + "B5P-XTPII39W_C1xsZEM-": { + "id": "B5P-XTPII39W_C1xsZEM-", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "clientinfo_uid", + "comment": "고객정보", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747297979214, + "createAt": 1747297931757 + } + }, + "74hYN_2bj1ubH9fDJVRVz": { + "id": "74hYN_2bj1ubH9fDJVRVz", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 4, + "ui": { + "keys": 0, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747374069326, + "createAt": 1747373947529 + } + }, + "JXFtN33CEiVr8DDSQay0k": { + "id": "JXFtN33CEiVr8DDSQay0k", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "code", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747374066119, + "createAt": 1747374044582 + } + }, + "zBz4vBOZSIA8vKmfqXckO": { + "id": "zBz4vBOZSIA8vKmfqXckO", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 15, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747374857754, + "createAt": 1747374853724 + } + }, + "YqInlreLnga0pOXtaP8GF": { + "id": "YqInlreLnga0pOXtaP8GF", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'VPC-CS'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747375226334, + "createAt": 1747374853724 + } + }, + "ixoWg1kPLrUYL069d75Kq": { + "id": "ixoWg1kPLrUYL069d75Kq", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "ip", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747817155134, + "createAt": 1747374853724 + } + }, + "0STHSEXiceoCa6a7jGXV5": { + "id": "0STHSEXiceoCa6a7jGXV5", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "domain", + "comment": "", + "dataType": "VARCHAR(100)", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747375169681, + "createAt": 1747374853724 + } + }, + "j2hkudsfMKexNL6P7SM8R": { + "id": "j2hkudsfMKexNL6P7SM8R", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "description", + "comment": "", + "dataType": "TEXT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 61, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747374853724, + "createAt": 1747374853724 + } + }, + "lf3Q5NccF2HWpq4GlYVta": { + "id": "lf3Q5NccF2HWpq4GlYVta", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "manufactur_at", + "comment": "제조일", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 78, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747374853724, + "createAt": 1747374853724 + } + }, + "mDU5e29uBK_pIGHPmO6Nv": { + "id": "mDU5e29uBK_pIGHPmO6Nv", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878056417, + "createAt": 1747374853724 + } + }, + "W9QKu7VjB-92E2pV0v2dk": { + "id": "W9QKu7VjB-92E2pV0v2dk", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747374853724, + "createAt": 1747374853724 + } + }, + "pzEFysMFfI2J8uB8YHXxA": { + "id": "pzEFysMFfI2J8uB8YHXxA", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1747374853725, + "createAt": 1747374853724 + } + }, + "VYbvSvXIEQPQtx6GL-tdv": { + "id": "VYbvSvXIEQPQtx6GL-tdv", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "code", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747374914892, + "createAt": 1747374914892 + } + }, + "J97WIRanerqkRvOlQCnL3": { + "id": "J97WIRanerqkRvOlQCnL3", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "code", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747380440853, + "createAt": 1747378814732 + } + }, + "UKMpq-uPW9JhNhwRMtBmC": { + "id": "UKMpq-uPW9JhNhwRMtBmC", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "code", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747380826300, + "createAt": 1747380826300 + } + }, + "BaXSr0Zs4Yk5dCbD8X_lm": { + "id": "BaXSr0Zs4Yk5dCbD8X_lm", + "tableId": "doERb3lIVeBW_D0NtNYX8", + "name": "price", + "comment": "단가", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747620603412, + "createAt": 1747620566701 + } + }, + "CY-ZAs3Ns1YhoxL9UiCee": { + "id": "CY-ZAs3Ns1YhoxL9UiCee", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747621946921, + "createAt": 1747621930444 + } + }, + "uodvC_rgsnCqB65A3uZYW": { + "id": "uodvC_rgsnCqB65A3uZYW", + "tableId": "R4reSshLxH3DQW6fUfSPa", + "name": "serviceinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 80, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747626616365, + "createAt": 1747626605945 + } + }, + "GUAjQ-qFNvMHOaqY-rBXq": { + "id": "GUAjQ-qFNvMHOaqY-rBXq", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "code", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747638862777, + "createAt": 1747632565731 + } + }, + "jN2378kieoBKN-G1x8myT": { + "id": "jN2378kieoBKN-G1x8myT", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "rack", + "comment": "Rack번호", + "dataType": "VARCHAR(10)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747733996079, + "createAt": 1747733912998 + } + }, + "HFfXA_mDYFa0cgMnr8qBF": { + "id": "HFfXA_mDYFa0cgMnr8qBF", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "lineinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 63, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747788179949, + "createAt": 1747788167946 + } + }, + "6zK3adxA2E9fHUYDhbE8g": { + "id": "6zK3adxA2E9fHUYDhbE8g", + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747788598740, + "createAt": 1747788592272 + } + }, + "dluCt7VimWWwGu4Is8V0v": { + "id": "dluCt7VimWWwGu4Is8V0v", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "clientinfo_uid", + "comment": "소유자정보", + "dataType": "INT", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 73, + "widthComment": 62, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747795106997, + "createAt": 1747795106997 + } + }, + "203b3hUKUQ_Gu5wKShBgZ": { + "id": "203b3hUKUQ_Gu5wKShBgZ", + "tableId": "lwd2DR7f1FW8fXtJ0lX-r", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747808149491, + "createAt": 1747808146987 + } + }, + "kohhWoNuei3x97SzgQUF4": { + "id": "kohhWoNuei3x97SzgQUF4", + "tableId": "lwd2DR7f1FW8fXtJ0lX-r", + "name": "model", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747808146988, + "createAt": 1747808146988 + } + }, + "EEerVyCwkEAuiRc-gon8s": { + "id": "EEerVyCwkEAuiRc-gon8s", + "tableId": "lwd2DR7f1FW8fXtJ0lX-r", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747808146988, + "createAt": 1747808146988 + } + }, + "uki_QcviBOFJ57v1IbbPX": { + "id": "uki_QcviBOFJ57v1IbbPX", + "tableId": "lwd2DR7f1FW8fXtJ0lX-r", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1747808146988, + "createAt": 1747808146988 + } + }, + "5EZEDNUFxzmElbK6goZPK": { + "id": "5EZEDNUFxzmElbK6goZPK", + "tableId": "lwd2DR7f1FW8fXtJ0lX-r", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747808226928, + "createAt": 1747808226928 + } + }, + "WaCB3uNZYFReAPiBqQ97v": { + "id": "WaCB3uNZYFReAPiBqQ97v", + "tableId": "dnFyz1CSdGeS6mCbfCMO0", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747808579838, + "createAt": 1747808577955 + } + }, + "tn-GhYT445kEh1tzf8Lf1": { + "id": "tn-GhYT445kEh1tzf8Lf1", + "tableId": "dnFyz1CSdGeS6mCbfCMO0", + "name": "model", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747808577955, + "createAt": 1747808577955 + } + }, + "cMe_lKgwfS-LNTHhHIYrk": { + "id": "cMe_lKgwfS-LNTHhHIYrk", + "tableId": "dnFyz1CSdGeS6mCbfCMO0", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747808577955, + "createAt": 1747808577955 + } + }, + "ixmBlLhmVt4et6tZEwLPC": { + "id": "ixmBlLhmVt4et6tZEwLPC", + "tableId": "dnFyz1CSdGeS6mCbfCMO0", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1747808577955, + "createAt": 1747808577955 + } + }, + "7H1dMNV2UxOx8O6DD_fv3": { + "id": "7H1dMNV2UxOx8O6DD_fv3", + "tableId": "KjMkfDhEIFtqzt24wZL_o", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747809992907, + "createAt": 1747809990681 + } + }, + "xXf6S4ALrDaYympxFLecy": { + "id": "xXf6S4ALrDaYympxFLecy", + "tableId": "KjMkfDhEIFtqzt24wZL_o", + "name": "billing_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'month'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 63, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747809990682, + "createAt": 1747809990681 + } + }, + "xVa4vn9BzbObswNs0nbUQ": { + "id": "xVa4vn9BzbObswNs0nbUQ", + "tableId": "KjMkfDhEIFtqzt24wZL_o", + "name": "amount", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747809990682, + "createAt": 1747809990682 + } + }, + "s4YF5Cw7Z65Hvw-z95dDa": { + "id": "s4YF5Cw7Z65Hvw-z95dDa", + "tableId": "KjMkfDhEIFtqzt24wZL_o", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1747809990682, + "createAt": 1747809990682 + } + }, + "nL-8jbbaXLAxQmwKmxwVp": { + "id": "nL-8jbbaXLAxQmwKmxwVp", + "tableId": "KjMkfDhEIFtqzt24wZL_o", + "name": "serviceinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 80, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747810011779, + "createAt": 1747810002441 + } + }, + "A5jE2aplbrccrkErwht-L": { + "id": "A5jE2aplbrccrkErwht-L", + "tableId": "KjMkfDhEIFtqzt24wZL_o", + "name": "lineinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 63, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747810040937, + "createAt": 1747810029959 + } + }, + "qcYZvSlfu93cigmIRzU_C": { + "id": "qcYZvSlfu93cigmIRzU_C", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878090679, + "createAt": 1747816623991 + } + }, + "SzD5tmOIoZodU1wBH56I4": { + "id": "SzD5tmOIoZodU1wBH56I4", + "tableId": "lwd2DR7f1FW8fXtJ0lX-r", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878082292, + "createAt": 1747816631727 + } + }, + "FOr_RCEoaL3a0M7smSYRC": { + "id": "FOr_RCEoaL3a0M7smSYRC", + "tableId": "dnFyz1CSdGeS6mCbfCMO0", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747878064464, + "createAt": 1747816636766 + } + }, + "BvHyGw9Xf_gz7bEkZhLbk": { + "id": "BvHyGw9Xf_gz7bEkZhLbk", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "accountid", + "comment": "", + "dataType": "VARCHAR(50)", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747817197659, + "createAt": 1747817172798 + } + }, + "quc3ij2-2WjckJbeT42jS": { + "id": "quc3ij2-2WjckJbeT42jS", + "tableId": "KjMkfDhEIFtqzt24wZL_o", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747874015318, + "createAt": 1747874015318 + } + }, + "R1A5zjJSem_5G2_5bAffz": { + "id": "R1A5zjJSem_5G2_5bAffz", + "tableId": "KjMkfDhEIFtqzt24wZL_o", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747876941885, + "createAt": 1747876941885 + } + }, + "zFbEbi2-nyWp4zEvOHsUG": { + "id": "zFbEbi2-nyWp4zEvOHsUG", + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "name": "account_balance", + "comment": "예치금", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 90, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747888103295, + "createAt": 1747888079555 + } + }, + "COpm-00QT2DzD70f8srX-": { + "id": "COpm-00QT2DzD70f8srX-", + "tableId": "KjMkfDhEIFtqzt24wZL_o", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747990527059, + "createAt": 1747990514880 + } + }, + "70VrVnWpv5vcn3MTsTHC4": { + "id": "70VrVnWpv5vcn3MTsTHC4", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "raid", + "comment": "", + "dataType": "VARCHAR(10)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1747993949848, + "createAt": 1747993531109 + } + }, + "ftF3nsGwio93Yhy60Pn99": { + "id": "ftF3nsGwio93Yhy60Pn99", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "serviceinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 80, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748219076528, + "createAt": 1748219042340 + } + }, + "XnNj7H0bnTxo_NuZm7BOs": { + "id": "XnNj7H0bnTxo_NuZm7BOs", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748219080932, + "createAt": 1748219060419 + } + }, + "x2aQLdokECUat0FErWqlV": { + "id": "x2aQLdokECUat0FErWqlV", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "serviceinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 80, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748219060419, + "createAt": 1748219060419 + } + }, + "qA0r0AonbnrXvdqm7AZfg": { + "id": "qA0r0AonbnrXvdqm7AZfg", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "billing_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'onetime'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 63, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748219145773, + "createAt": 1748219060419 + } + }, + "SeMtkfNiltpn4j-M-XkG-": { + "id": "SeMtkfNiltpn4j-M-XkG-", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748219060419, + "createAt": 1748219060419 + } + }, + "6T7sNUPqpTPJm6TI7Qbbe": { + "id": "6T7sNUPqpTPJm6TI7Qbbe", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748219060420, + "createAt": 1748219060419 + } + }, + "w404_rDrrYyt26iqY8Eur": { + "id": "w404_rDrrYyt26iqY8Eur", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "domain", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 12, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748219115821, + "createAt": 1748219094476 + } + }, + "uz14PltMKB0QJK1MyZMAA": { + "id": "uz14PltMKB0QJK1MyZMAA", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "amount", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748219965791, + "createAt": 1748219965790 + } + }, + "qzikkq9Ixd8qxTt9ZsXU_": { + "id": "qzikkq9Ixd8qxTt9ZsXU_", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748220040634, + "createAt": 1748220023732 + } + }, + "2-mxsDaVU45SAAkg_CmAZ": { + "id": "2-mxsDaVU45SAAkg_CmAZ", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "50000", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748221713175, + "createAt": 1748221692523 + } + }, + "AlvBDBVGfLoVcNjd__kFZ": { + "id": "AlvBDBVGfLoVcNjd__kFZ", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "price", + "comment": "", + "dataType": "", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748221750661, + "createAt": 1748221746587 + } + }, + "C_yfBNgyfir7swSSCwZIF": { + "id": "C_yfBNgyfir7swSSCwZIF", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748221771786, + "createAt": 1748221759593 + } + }, + "QbDQaanzFqNjwfLHyANBC": { + "id": "QbDQaanzFqNjwfLHyANBC", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "price", + "comment": "", + "dataType": "", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748221956989, + "createAt": 1748221950329 + } + }, + "AdK-ftiebHNTIjlPzqGxQ": { + "id": "AdK-ftiebHNTIjlPzqGxQ", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748221965908, + "createAt": 1748221965908 + } + }, + "34e96O1llg-e0TtBY7IWL": { + "id": "34e96O1llg-e0TtBY7IWL", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "is_oneitme", + "comment": "", + "dataType": "VARCHAR(", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222087742, + "createAt": 1748222044155 + } + }, + "VDwq7FTa8NVFgubAOFjso": { + "id": "VDwq7FTa8NVFgubAOFjso", + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "name": "price_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'month'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222151075, + "createAt": 1748222126774 + } + }, + "jmi6LrAtLmYLaoDiEZ10f": { + "id": "jmi6LrAtLmYLaoDiEZ10f", + "tableId": "lwd2DR7f1FW8fXtJ0lX-r", + "name": "price_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'month'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222181063, + "createAt": 1748222181063 + } + }, + "Tuyrnk-V3RykdGluC-86m": { + "id": "Tuyrnk-V3RykdGluC-86m", + "tableId": "lwd2DR7f1FW8fXtJ0lX-r", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222181063, + "createAt": 1748222181063 + } + }, + "W42ouHmZOfJRQQ6XPu3Eq": { + "id": "W42ouHmZOfJRQQ6XPu3Eq", + "tableId": "lwd2DR7f1FW8fXtJ0lX-r", + "name": "price_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'month'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222181174, + "createAt": 1748222181173 + } + }, + "K_QGLeRYAUneRz7KBswho": { + "id": "K_QGLeRYAUneRz7KBswho", + "tableId": "lwd2DR7f1FW8fXtJ0lX-r", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222181174, + "createAt": 1748222181174 + } + }, + "zdhazSc2UskbRIFTbn0MV": { + "id": "zdhazSc2UskbRIFTbn0MV", + "tableId": "dnFyz1CSdGeS6mCbfCMO0", + "name": "price_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'month'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222197668, + "createAt": 1748222197668 + } + }, + "vzqaqaPuF4guI7nUCRFIE": { + "id": "vzqaqaPuF4guI7nUCRFIE", + "tableId": "dnFyz1CSdGeS6mCbfCMO0", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222197668, + "createAt": 1748222197668 + } + }, + "3JKv9gwi5ig1yLoBJsLC9": { + "id": "3JKv9gwi5ig1yLoBJsLC9", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "price_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'month'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222221059, + "createAt": 1748222221059 + } + }, + "tTTzHZFvoMJ0RzAexXY2L": { + "id": "tTTzHZFvoMJ0RzAexXY2L", + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222221060, + "createAt": 1748222221059 + } + }, + "D7Q_X02LvMZbBtg71_hCK": { + "id": "D7Q_X02LvMZbBtg71_hCK", + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "name": "price_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'month'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222242450, + "createAt": 1748222242450 + } + }, + "lwe5PLEmpyTipKEVSCHRJ": { + "id": "lwe5PLEmpyTipKEVSCHRJ", + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222242451, + "createAt": 1748222242450 + } + }, + "T1h0jM57gCedXd5wWL30b": { + "id": "T1h0jM57gCedXd5wWL30b", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "price_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'month'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222405195, + "createAt": 1748222405195 + } + }, + "tUEipJ29hmJw6PGIvTRe4": { + "id": "tUEipJ29hmJw6PGIvTRe4", + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222405195, + "createAt": 1748222405195 + } + }, + "OGLPunD1CL5Yx1Onabetn": { + "id": "OGLPunD1CL5Yx1Onabetn", + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "name": "price_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'month'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748222971768, + "createAt": 1748222971768 + } + }, + "gHKfQQEPUr_YKqvm5K_gd": { + "id": "gHKfQQEPUr_YKqvm5K_gd", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "price_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'month'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748223056333, + "createAt": 1748223056332 + } + }, + "EcVzL-sPHB3OIUYfPrAs6": { + "id": "EcVzL-sPHB3OIUYfPrAs6", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "price", + "comment": "", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748223056333, + "createAt": 1748223056333 + } + }, + "E8iokQ-rKyw43cNe746kt": { + "id": "E8iokQ-rKyw43cNe746kt", + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "name": "status", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748223080862, + "createAt": 1748223080861 + } + }, + "4ZPfgU2ooMQksUvTVE3DH": { + "id": "4ZPfgU2ooMQksUvTVE3DH", + "tableId": "ne09vvne6LjZp75VVGiWV", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748223216844, + "createAt": 1748223209235 + } + }, + "rgmXZMa0DdI-L8pC-RiJt": { + "id": "rgmXZMa0DdI-L8pC-RiJt", + "tableId": "ne09vvne6LjZp75VVGiWV", + "name": "invoice_at", + "comment": "청구일", + "dataType": "DATE", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225252920, + "createAt": 1748223248421 + } + }, + "wzFAJ75F6Ov68WDd8Mbkv": { + "id": "wzFAJ75F6Ov68WDd8Mbkv", + "tableId": "ne09vvne6LjZp75VVGiWV", + "name": "due_at", + "comment": "납부기한일", + "dataType": "DATE", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 62, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225271468, + "createAt": 1748223338350 + } + }, + "xrgRRbiWznf6wfOZvPbzl": { + "id": "xrgRRbiWznf6wfOZvPbzl", + "tableId": "ne09vvne6LjZp75VVGiWV", + "name": "amount", + "comment": "총금액", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225491317, + "createAt": 1748223398948 + } + }, + "UVlz7EjXt8gYUYQhV96kM": { + "id": "UVlz7EjXt8gYUYQhV96kM", + "tableId": "ne09vvne6LjZp75VVGiWV", + "name": "status", + "comment": "납부여부", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225690597, + "createAt": 1748223423906 + } + }, + "L3Hv2zU68j89zfA6wxlrV": { + "id": "L3Hv2zU68j89zfA6wxlrV", + "tableId": "ne09vvne6LjZp75VVGiWV", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748223453446, + "createAt": 1748223453446 + } + }, + "W3wh0h5zKLtV6LmBly1fv": { + "id": "W3wh0h5zKLtV6LmBly1fv", + "tableId": "ne09vvne6LjZp75VVGiWV", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748223453446, + "createAt": 1748223453446 + } + }, + "DX0y0VIZ430hVZbT_pmKl": { + "id": "DX0y0VIZ430hVZbT_pmKl", + "tableId": "ne09vvne6LjZp75VVGiWV", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748223542387, + "createAt": 1748223536458 + } + }, + "T4cTcTKn8tiZ4cXkI1yKe": { + "id": "T4cTcTKn8tiZ4cXkI1yKe", + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748223567531, + "createAt": 1748223564893 + } + }, + "GInoklis2NulHalQTqnGQ": { + "id": "GInoklis2NulHalQTqnGQ", + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "orderinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748223582233, + "createAt": 1748223574921 + } + }, + "s4Hjjd9NLPLbGSYf6R4Eq": { + "id": "s4Hjjd9NLPLbGSYf6R4Eq", + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "item_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'server'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748226757326, + "createAt": 1748223601646 + } + }, + "n9OtuKOQ5kpDFg38i89EP": { + "id": "n9OtuKOQ5kpDFg38i89EP", + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "item_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748223688677, + "createAt": 1748223664990 + } + }, + "0NhzxE0qF3EhLwFXCJokc": { + "id": "0NhzxE0qF3EhLwFXCJokc", + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "amount", + "comment": "주문금액", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225475332, + "createAt": 1748223803075 + } + }, + "bnIGEl3uSTni7_L6hpLcl": { + "id": "bnIGEl3uSTni7_L6hpLcl", + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "price", + "comment": "기본금액", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225480073, + "createAt": 1748223810604 + } + }, + "mItqR-yNDeKnaPfHyd5Ds": { + "id": "mItqR-yNDeKnaPfHyd5Ds", + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "price_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'month'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748223850661, + "createAt": 1748223850661 + } + }, + "FtMFDsdDMDrwscoxUMnJ5": { + "id": "FtMFDsdDMDrwscoxUMnJ5", + "tableId": "TZkszBNw47IF3fHl8bt74", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748224197412, + "createAt": 1748224060778 + } + }, + "eCpp9N4KVZH6f5eRxZxvU": { + "id": "eCpp9N4KVZH6f5eRxZxvU", + "tableId": "TZkszBNw47IF3fHl8bt74", + "name": "orderinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748224103537, + "createAt": 1748224092362 + } + }, + "ItpzPPEIIr1wko5oKg07v": { + "id": "ItpzPPEIIr1wko5oKg07v", + "tableId": "TZkszBNw47IF3fHl8bt74", + "name": "amount", + "comment": "납부액", + "dataType": "INT", + "default": "0", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225519477, + "createAt": 1748224115866 + } + }, + "PBLFWkHd0MV69qOa06y-V": { + "id": "PBLFWkHd0MV69qOa06y-V", + "tableId": "TZkszBNw47IF3fHl8bt74", + "name": "issue_at", + "comment": "납부일", + "dataType": "DATE", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225524907, + "createAt": 1748224128955 + } + }, + "RNtqq-QEUZiTGYJCYB7is": { + "id": "RNtqq-QEUZiTGYJCYB7is", + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748224176845, + "createAt": 1748224176845 + } + }, + "qQNX4BucxlsaO8sTVFHFB": { + "id": "qQNX4BucxlsaO8sTVFHFB", + "tableId": "ne09vvne6LjZp75VVGiWV", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748224184828, + "createAt": 1748224184828 + } + }, + "JHWWGSU7g_qkXfv2iazQh": { + "id": "JHWWGSU7g_qkXfv2iazQh", + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748224188825, + "createAt": 1748224188825 + } + }, + "gWMUdAw0INZvmuuwLbkwH": { + "id": "gWMUdAw0INZvmuuwLbkwH", + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748224188825, + "createAt": 1748224188825 + } + }, + "27-3VzVLvJ8pr9kF1tk2u": { + "id": "27-3VzVLvJ8pr9kF1tk2u", + "tableId": "TZkszBNw47IF3fHl8bt74", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748224190231, + "createAt": 1748224190231 + } + }, + "HYNanPfS08M6xRE32jR_Q": { + "id": "HYNanPfS08M6xRE32jR_Q", + "tableId": "TZkszBNw47IF3fHl8bt74", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748224190231, + "createAt": 1748224190231 + } + }, + "qbFSpJHuQASfTKxcC3RIX": { + "id": "qbFSpJHuQASfTKxcC3RIX", + "tableId": "iggJbjwkw3-xTK9Xkh67n", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748224510868, + "createAt": 1748224508735 + } + }, + "nR_Q3crWVEb_xqW3WSaot": { + "id": "nR_Q3crWVEb_xqW3WSaot", + "tableId": "iggJbjwkw3-xTK9Xkh67n", + "name": "item_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748224508735, + "createAt": 1748224508735 + } + }, + "pNxxLyI7ZCDfk3_Z82xop": { + "id": "pNxxLyI7ZCDfk3_Z82xop", + "tableId": "iggJbjwkw3-xTK9Xkh67n", + "name": "item_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748224637749, + "createAt": 1748224508735 + } + }, + "1yY72VVJjbP3_21sWoJgA": { + "id": "1yY72VVJjbP3_21sWoJgA", + "tableId": "iggJbjwkw3-xTK9Xkh67n", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748224632933, + "createAt": 1748224632933 + } + }, + "Ho9aHOXhQNaQYcJdaMz98": { + "id": "Ho9aHOXhQNaQYcJdaMz98", + "tableId": "iggJbjwkw3-xTK9Xkh67n", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748224632933, + "createAt": 1748224632933 + } + }, + "jPtofEaJEQQHMy1bc6bS2": { + "id": "jPtofEaJEQQHMy1bc6bS2", + "tableId": "iggJbjwkw3-xTK9Xkh67n", + "name": "status", + "comment": "다음달청구여부", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 86, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225846915, + "createAt": 1748224641335 + } + }, + "YNRS8vDjt2qI0fyRLEoTN": { + "id": "YNRS8vDjt2qI0fyRLEoTN", + "tableId": "iggJbjwkw3-xTK9Xkh67n", + "name": "renewal_at", + "comment": "다음갱신일", + "dataType": "DATE", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 62, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748226008323, + "createAt": 1748224702027 + } + }, + "s6Juv5DV5R4Yc_nxRzyQG": { + "id": "s6Juv5DV5R4Yc_nxRzyQG", + "tableId": "iggJbjwkw3-xTK9Xkh67n", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748224735989, + "createAt": 1748224727978 + } + }, + "6_YG06qtnwrFkx-MI5VrS": { + "id": "6_YG06qtnwrFkx-MI5VrS", + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "name": "reason", + "comment": "할인이유", + "dataType": "VARCHAR(255)", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225443451, + "createAt": 1748224941328 + } + }, + "tHpQul6q-svWnjL_59s03": { + "id": "tHpQul6q-svWnjL_59s03", + "tableId": "TZkszBNw47IF3fHl8bt74", + "name": "type", + "comment": "지급방식", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 5, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225607708, + "createAt": 1748225355446 + } + }, + "5E7rjgiVESzW4OSHB7yc1": { + "id": "5E7rjgiVESzW4OSHB7yc1", + "tableId": "TZkszBNw47IF3fHl8bt74", + "name": "alias", + "comment": "납부자명", + "dataType": "VARCHAR(50)", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748225622683, + "createAt": 1748225610075 + } + }, + "W0i3aiC-uKIsGR49noc-s": { + "id": "W0i3aiC-uKIsGR49noc-s", + "tableId": "4Phnxm-pTS6CW9EX4iqu1", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 11, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748226700974, + "createAt": 1748226698030 + } + }, + "3JGYnarc_4JvXzPKnqvEO": { + "id": "3JGYnarc_4JvXzPKnqvEO", + "tableId": "4Phnxm-pTS6CW9EX4iqu1", + "name": "item_type", + "comment": "", + "dataType": "VARCHAR(20)", + "default": "'server'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748226747942, + "createAt": 1748226698030 + } + }, + "_yI7nTfn7jLJGqyzmreZf": { + "id": "_yI7nTfn7jLJGqyzmreZf", + "tableId": "4Phnxm-pTS6CW9EX4iqu1", + "name": "item_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748226698030, + "createAt": 1748226698030 + } + }, + "3e79SDuH1dBSkrCYrdPqT": { + "id": "3e79SDuH1dBSkrCYrdPqT", + "tableId": "4Phnxm-pTS6CW9EX4iqu1", + "name": "status", + "comment": "상태", + "dataType": "VARCHAR(20)", + "default": "'default'", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 75, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748226846782, + "createAt": 1748226698030 + } + }, + "71ymy3xKN9WlySAw8EBoO": { + "id": "71ymy3xKN9WlySAw8EBoO", + "tableId": "4Phnxm-pTS6CW9EX4iqu1", + "name": "updated_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 62, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748226698030, + "createAt": 1748226698030 + } + }, + "0b3XIZcKMDp_3uSOXHEH4": { + "id": "0b3XIZcKMDp_3uSOXHEH4", + "tableId": "4Phnxm-pTS6CW9EX4iqu1", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748226698030, + "createAt": 1748226698030 + } + }, + "8TLeYhxU1ZWII8eSABTTP": { + "id": "8TLeYhxU1ZWII8eSABTTP", + "tableId": "4Phnxm-pTS6CW9EX4iqu1", + "name": "clientinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 73, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748226721451, + "createAt": 1748226710780 + } + }, + "9bxqG90EvnSGBkyWVty3j": { + "id": "9bxqG90EvnSGBkyWVty3j", + "tableId": "4Phnxm-pTS6CW9EX4iqu1", + "name": "reason", + "comment": "이유", + "dataType": "VARCHAR(255)", + "default": "", + "options": 0, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 81, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748226828842, + "createAt": 1748226822189 + } + }, + "woS0kjRSXcXN1L79VN2ix": { + "id": "woS0kjRSXcXN1L79VN2ix", + "tableId": "PxyXFfFpwwkq_8XYE9MRu", + "name": "ipinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748227988332, + "createAt": 1748227976481 + } + }, + "067vdUFESzj48PGB_QLjg": { + "id": "067vdUFESzj48PGB_QLjg", + "tableId": "PxyXFfFpwwkq_8XYE9MRu", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228002860, + "createAt": 1748227997397 + } + }, + "8qAFg1S4o6WBlSMD-ehm1": { + "id": "8qAFg1S4o6WBlSMD-ehm1", + "tableId": "PxyXFfFpwwkq_8XYE9MRu", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748228008465, + "createAt": 1748228008464 + } + }, + "tJG_hLLa6l_kwuf92KzRg": { + "id": "tJG_hLLa6l_kwuf92KzRg", + "tableId": "PxyXFfFpwwkq_8XYE9MRu", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 15, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228141180, + "createAt": 1748228136886 + } + }, + "-S18drCAD--FIyZMR21wd": { + "id": "-S18drCAD--FIyZMR21wd", + "tableId": "fY4sPzjnlPRGToBG-WZeH", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 15, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228352113, + "createAt": 1748228165191 + } + }, + "HVV8J5AkMnozP0S65BeS2": { + "id": "HVV8J5AkMnozP0S65BeS2", + "tableId": "fY4sPzjnlPRGToBG-WZeH", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748228165191, + "createAt": 1748228165191 + } + }, + "B6XMwBsjXzUg7Glny_NkC": { + "id": "B6XMwBsjXzUg7Glny_NkC", + "tableId": "fY4sPzjnlPRGToBG-WZeH", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228195550, + "createAt": 1748228188827 + } + }, + "CBCTA2-9kJYGl-jsoO1w6": { + "id": "CBCTA2-9kJYGl-jsoO1w6", + "tableId": "fY4sPzjnlPRGToBG-WZeH", + "name": "cpuinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 64, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228216498, + "createAt": 1748228206866 + } + }, + "Wq3PNPt2_iqWXokhnVx_u": { + "id": "Wq3PNPt2_iqWXokhnVx_u", + "tableId": "F_0cYo78BnayQhVv3ArRp", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 15, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228397995, + "createAt": 1748228356107 + } + }, + "kP95mIVWhIRaVVvCLTXSH": { + "id": "kP95mIVWhIRaVVvCLTXSH", + "tableId": "F_0cYo78BnayQhVv3ArRp", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748228356107, + "createAt": 1748228356107 + } + }, + "0UhqQkNDg3DHug5zXFJEY": { + "id": "0UhqQkNDg3DHug5zXFJEY", + "tableId": "F_0cYo78BnayQhVv3ArRp", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228402887, + "createAt": 1748228388839 + } + }, + "Bg-Tx0N2d0uSzyhPkhyck": { + "id": "Bg-Tx0N2d0uSzyhPkhyck", + "tableId": "F_0cYo78BnayQhVv3ArRp", + "name": "raminfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 65, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228425317, + "createAt": 1748228413078 + } + }, + "n614CP2FyjGjPH-OD5wPM": { + "id": "n614CP2FyjGjPH-OD5wPM", + "tableId": "XywAFAP3s5Xl6G-3txHTH", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 15, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228463932, + "createAt": 1748228461790 + } + }, + "5hericEusqGgI1pg0jFc1": { + "id": "5hericEusqGgI1pg0jFc1", + "tableId": "XywAFAP3s5Xl6G-3txHTH", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748228461790, + "createAt": 1748228461790 + } + }, + "STLYnqCG56zLLyNnfgnqR": { + "id": "STLYnqCG56zLLyNnfgnqR", + "tableId": "XywAFAP3s5Xl6G-3txHTH", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228487226, + "createAt": 1748228478337 + } + }, + "thCqAUxooyOoqA0o8Cr1S": { + "id": "thCqAUxooyOoqA0o8Cr1S", + "tableId": "XywAFAP3s5Xl6G-3txHTH", + "name": "diskinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 65, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228500378, + "createAt": 1748228494465 + } + }, + "PhV2kPOROFN2Paxn0Q3KK": { + "id": "PhV2kPOROFN2Paxn0Q3KK", + "tableId": "kHLWAzQmZ3CCs0KpilqZ7", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228634908, + "createAt": 1748228594885 + } + }, + "t1UNhIBRL91lX0O9a0xMj": { + "id": "t1UNhIBRL91lX0O9a0xMj", + "tableId": "kHLWAzQmZ3CCs0KpilqZ7", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 15, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228623057, + "createAt": 1748228619154 + } + }, + "4yuH6ZQUnURnk_U6roXVl": { + "id": "4yuH6ZQUnURnk_U6roXVl", + "tableId": "kHLWAzQmZ3CCs0KpilqZ7", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748228619154, + "createAt": 1748228619154 + } + }, + "JVNCmWuI_UAnZEGZUbBQv": { + "id": "JVNCmWuI_UAnZEGZUbBQv", + "tableId": "kHLWAzQmZ3CCs0KpilqZ7", + "name": "defenceinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 86, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228655181, + "createAt": 1748228645385 + } + }, + "7b5Ac7AAJFfTOiS3HEMhg": { + "id": "7b5Ac7AAJFfTOiS3HEMhg", + "tableId": "x7rn2-q2i7C6Lin0XwIR_", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 15, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228720410, + "createAt": 1748228718462 + } + }, + "bLPLRDM9p3TWgZqOehkRR": { + "id": "bLPLRDM9p3TWgZqOehkRR", + "tableId": "x7rn2-q2i7C6Lin0XwIR_", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748228718462, + "createAt": 1748228718462 + } + }, + "OqPMHX5b1-Qct8xqaypd1": { + "id": "OqPMHX5b1-Qct8xqaypd1", + "tableId": "x7rn2-q2i7C6Lin0XwIR_", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228748257, + "createAt": 1748228740886 + } + }, + "Wjix1VNvwEfcogjAdEgc2": { + "id": "Wjix1VNvwEfcogjAdEgc2", + "tableId": "x7rn2-q2i7C6Lin0XwIR_", + "name": "softwareinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 89, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228771232, + "createAt": 1748228761127 + } + }, + "tWqLaWbK888YRNrL_m8Aw": { + "id": "tWqLaWbK888YRNrL_m8Aw", + "tableId": "DKSom-hQqNhI1z7FqSa6Y", + "name": "uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 15, + "ui": { + "keys": 1, + "widthName": 60, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228854494, + "createAt": 1748228852520 + } + }, + "AWwG30rhbOSU6Euyee2Px": { + "id": "AWwG30rhbOSU6Euyee2Px", + "tableId": "DKSom-hQqNhI1z7FqSa6Y", + "name": "created_at", + "comment": "", + "dataType": "TIMESTAMP", + "default": "CURRENT_TIMESTAMP", + "options": 8, + "ui": { + "keys": 0, + "widthName": 60, + "widthComment": 60, + "widthDataType": 65, + "widthDefault": 122 + }, + "meta": { + "updateAt": 1748228852520, + "createAt": 1748228852520 + } + }, + "CCtqlfF2lD-XJILWNJMGC": { + "id": "CCtqlfF2lD-XJILWNJMGC", + "tableId": "DKSom-hQqNhI1z7FqSa6Y", + "name": "serverinfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 76, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228906869, + "createAt": 1748228870743 + } + }, + "XRRh5KRH2WqKryhsba-KG": { + "id": "XRRh5KRH2WqKryhsba-KG", + "tableId": "DKSom-hQqNhI1z7FqSa6Y", + "name": "domaininfo_uid", + "comment": "", + "dataType": "INT", + "default": "", + "options": 8, + "ui": { + "keys": 2, + "widthName": 84, + "widthComment": 60, + "widthDataType": 60, + "widthDefault": 60 + }, + "meta": { + "updateAt": 1748228901285, + "createAt": 1748228892140 + } + } + }, + "relationshipEntities": { + "gAVYXWnBSnCw-0ieO4Mil": { + "id": "gAVYXWnBSnCw-0ieO4Mil", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "columnIds": [ + "_AcWUYKzNJd-V0fRHq8Cx" + ], + "x": 1170.0947, + "y": 817.4039, + "direction": 1 + }, + "end": { + "tableId": "GDEF0_WuOpaYtsZxjn2zM", + "columnIds": [ + "nPYun5WHoy8uroXUBiqh8" + ], + "x": 797.2262000000001, + "y": 587.1583, + "direction": 2 + }, + "meta": { + "updateAt": 1746604503019, + "createAt": 1745819764143 + } + }, + "95uRv2fz3rssNbkyuzkLh": { + "id": "95uRv2fz3rssNbkyuzkLh", + "identification": false, + "relationshipType": 4, + "startRelationshipType": 2, + "start": { + "tableId": "Jq5Qkun2FzQhCGKANIVOZ", + "columnIds": [ + "mfHtgzc_Aeocr6xkgwYWh" + ], + "x": 768.2341, + "y": 188.27179999999998, + "direction": 2 + }, + "end": { + "tableId": "gsa0XtQZQgrJ8ZXy8VQVg", + "columnIds": [ + "DGl10GI58QwOHwpTu4Z1Y" + ], + "x": 1958.4526, + "y": 259.01750000000004, + "direction": 1 + }, + "meta": { + "updateAt": 1745819764143, + "createAt": 1745819764143 + } + }, + "4BDt10BeeryoN0ZdEHIui": { + "id": "4BDt10BeeryoN0ZdEHIui", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "columnIds": [ + "_AcWUYKzNJd-V0fRHq8Cx" + ], + "x": 1701.0947, + "y": 857.4039, + "direction": 2 + }, + "end": { + "tableId": "jO40Ej5EXImXnadoJo9bn", + "columnIds": [ + "35XbdvgOzpNdasPnMcbkx" + ], + "x": 1964.6501, + "y": 579.0160000000001, + "direction": 1 + }, + "meta": { + "updateAt": 1745914803629, + "createAt": 1745914803629 + } + }, + "KtdVJCYZ3DMVnPnFGKi3P": { + "id": "KtdVJCYZ3DMVnPnFGKi3P", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "columnIds": [ + "_AcWUYKzNJd-V0fRHq8Cx" + ], + "x": 1435.5947, + "y": 777.4039, + "direction": 4 + }, + "end": { + "tableId": "5AUwJum9FKPCoYRMBhLnF", + "columnIds": [ + "PyXYmokQzpzzT08WTmtsN" + ], + "x": 1460.8458, + "y": 599.2148, + "direction": 8 + }, + "meta": { + "updateAt": 1745914916196, + "createAt": 1745914916196 + } + }, + "AH1dyESfueUlhcoiU6KsQ": { + "id": "AH1dyESfueUlhcoiU6KsQ", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "doERb3lIVeBW_D0NtNYX8", + "columnIds": [ + "7B0zaLoZnOoMNW8OHZlrQ" + ], + "x": 2523.531, + "y": 1179.4882, + "direction": 1 + }, + "end": { + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "columnIds": [ + "f7_MGvRjkwL1xkCWrAgDR" + ], + "x": 1680.4307, + "y": 1203.8961, + "direction": 2 + }, + "meta": { + "updateAt": 1746595277837, + "createAt": 1746595277837 + } + }, + "rDaiOqjpenuTOWAB9GhA6": { + "id": "rDaiOqjpenuTOWAB9GhA6", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 1, + "start": { + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "columnIds": [ + "_AcWUYKzNJd-V0fRHq8Cx" + ], + "x": 1701.0947, + "y": 1017.4039, + "direction": 2 + }, + "end": { + "tableId": "doERb3lIVeBW_D0NtNYX8", + "columnIds": [ + "5KRw8TtT2nLqpYfKFOBwe" + ], + "x": 2523.531, + "y": 1043.4882, + "direction": 1 + }, + "meta": { + "updateAt": 1748229710470, + "createAt": 1747286811587 + } + }, + "aRre0Gt6aw2zeW8Ib15Me": { + "id": "aRre0Gt6aw2zeW8Ib15Me", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "columnIds": [ + "F9EPb6nsDx6Tf3GG8rvP1" + ], + "x": 2285.2456, + "y": 1701.6035285714283, + "direction": 1 + }, + "end": { + "tableId": "KjMkfDhEIFtqzt24wZL_o", + "columnIds": [ + "COpm-00QT2DzD70f8srX-" + ], + "x": 1686.6967, + "y": 1323.7536, + "direction": 2 + }, + "meta": { + "updateAt": 1747990514880, + "createAt": 1747990514880 + } + }, + "1yZtVrzSyQC6rVY0KZdwh": { + "id": "1yZtVrzSyQC6rVY0KZdwh", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "kc1EFvFhlBSc0B0bDgX28", + "columnIds": [ + "nb5CGzskl3_LIRA0yyede" + ], + "x": 628.2453333333334, + "y": 2021.4913, + "direction": 8 + }, + "end": { + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "columnIds": [ + "ftF3nsGwio93Yhy60Pn99" + ], + "x": 1183.8546, + "y": 3366.3914, + "direction": 1 + }, + "meta": { + "updateAt": 1748219042340, + "createAt": 1748219042340 + } + }, + "tZvCOfAR3fz1kHLdCltgW": { + "id": "tZvCOfAR3fz1kHLdCltgW", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "columnIds": [ + "F9EPb6nsDx6Tf3GG8rvP1" + ], + "x": 2409.4956, + "y": 2021.0321, + "direction": 8 + }, + "end": { + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "columnIds": [ + "qzikkq9Ixd8qxTt9ZsXU_" + ], + "x": 1698.8546, + "y": 3366.3914, + "direction": 2 + }, + "meta": { + "updateAt": 1748220023734, + "createAt": 1748220023734 + } + }, + "v46CChXRw5SF2MshWwutt": { + "id": "v46CChXRw5SF2MshWwutt", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "columnIds": [ + "_AcWUYKzNJd-V0fRHq8Cx" + ], + "x": 1170.0947, + "y": 1057.4039, + "direction": 1 + }, + "end": { + "tableId": "ne09vvne6LjZp75VVGiWV", + "columnIds": [ + "4ZPfgU2ooMQksUvTVE3DH" + ], + "x": 703.0917, + "y": 1580.7496, + "direction": 2 + }, + "meta": { + "updateAt": 1748223209235, + "createAt": 1748223209235 + } + }, + "SX8-IgbNqZeapxRW00EXs": { + "id": "SX8-IgbNqZeapxRW00EXs", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "ne09vvne6LjZp75VVGiWV", + "columnIds": [ + "DX0y0VIZ430hVZbT_pmKl" + ], + "x": 448.0917, + "y": 1766.7496, + "direction": 8 + }, + "end": { + "tableId": "UuZoDcFNrKD0iTjVkA2Ew", + "columnIds": [ + "GInoklis2NulHalQTqnGQ" + ], + "x": 294.5995, + "y": 1898.2412, + "direction": 4 + }, + "meta": { + "updateAt": 1748223574921, + "createAt": 1748223574921 + } + }, + "r6mAlLk8IvM88VwRAMRym": { + "id": "r6mAlLk8IvM88VwRAMRym", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "ne09vvne6LjZp75VVGiWV", + "columnIds": [ + "DX0y0VIZ430hVZbT_pmKl" + ], + "x": 703.0917, + "y": 1704.7496, + "direction": 2 + }, + "end": { + "tableId": "TZkszBNw47IF3fHl8bt74", + "columnIds": [ + "eCpp9N4KVZH6f5eRxZxvU" + ], + "x": 842.8799, + "y": 1900.8701, + "direction": 4 + }, + "meta": { + "updateAt": 1748224092362, + "createAt": 1748224092362 + } + }, + "NoESNPo-vKCdbfZX-2e8J": { + "id": "NoESNPo-vKCdbfZX-2e8J", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "columnIds": [ + "_AcWUYKzNJd-V0fRHq8Cx" + ], + "x": 1170.0947, + "y": 977.4039, + "direction": 1 + }, + "end": { + "tableId": "iggJbjwkw3-xTK9Xkh67n", + "columnIds": [ + "s6Juv5DV5R4Yc_nxRzyQG" + ], + "x": 718.6859, + "y": 1326.4731, + "direction": 2 + }, + "meta": { + "updateAt": 1748224727979, + "createAt": 1748224727979 + } + }, + "LcNQfyNLPKko1ikabCFSB": { + "id": "LcNQfyNLPKko1ikabCFSB", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "6ajvOCaGuXU9pzV0Y9jEi", + "columnIds": [ + "_AcWUYKzNJd-V0fRHq8Cx" + ], + "x": 1170.0947, + "y": 897.4039, + "direction": 1 + }, + "end": { + "tableId": "4Phnxm-pTS6CW9EX4iqu1", + "columnIds": [ + "8TLeYhxU1ZWII8eSABTTP" + ], + "x": 699.3818, + "y": 1011.9307, + "direction": 2 + }, + "meta": { + "updateAt": 1748226710780, + "createAt": 1748226710780 + } + }, + "CqlSt_m6HDGZuXBxuTx-P": { + "id": "CqlSt_m6HDGZuXBxuTx-P", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "ZLEpY5EjuZV21718zf-Y1", + "columnIds": [ + "Id0h8QbOdlhPj9P1zTm5o" + ], + "x": 1680.4307, + "y": 1327.8961, + "direction": 2 + }, + "end": { + "tableId": "PxyXFfFpwwkq_8XYE9MRu", + "columnIds": [ + "woS0kjRSXcXN1L79VN2ix" + ], + "x": 2530.3659, + "y": 1358.2421, + "direction": 1 + }, + "meta": { + "updateAt": 1748227976481, + "createAt": 1748227976481 + } + }, + "GXoV4vfYX8rPzJ-Ab3wy_": { + "id": "GXoV4vfYX8rPzJ-Ab3wy_", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "columnIds": [ + "F9EPb6nsDx6Tf3GG8rvP1" + ], + "x": 1689.032, + "y": 1478.6936428571428, + "direction": 2 + }, + "end": { + "tableId": "PxyXFfFpwwkq_8XYE9MRu", + "columnIds": [ + "067vdUFESzj48PGB_QLjg" + ], + "x": 2530.3659, + "y": 1434.2421, + "direction": 1 + }, + "meta": { + "updateAt": 1748227997397, + "createAt": 1748227997397 + } + }, + "Pfyiwj2BJwPfU6s1EfzNV": { + "id": "Pfyiwj2BJwPfU6s1EfzNV", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "columnIds": [ + "F9EPb6nsDx6Tf3GG8rvP1" + ], + "x": 1689.032, + "y": 1524.4079285714286, + "direction": 2 + }, + "end": { + "tableId": "fY4sPzjnlPRGToBG-WZeH", + "columnIds": [ + "B6XMwBsjXzUg7Glny_NkC" + ], + "x": 2545.6855, + "y": 1670.2914, + "direction": 1 + }, + "meta": { + "updateAt": 1748228188827, + "createAt": 1748228188827 + } + }, + "C6ZxhJok7WoZ1MS9nXXEf": { + "id": "C6ZxhJok7WoZ1MS9nXXEf", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "RMhrLs7bOaopKmKt9YKHQ", + "columnIds": [ + "Jh6e_-9QYe1Tqve0PE3kT" + ], + "x": 1694.3716, + "y": 1934.7912, + "direction": 2 + }, + "end": { + "tableId": "fY4sPzjnlPRGToBG-WZeH", + "columnIds": [ + "CBCTA2-9kJYGl-jsoO1w6" + ], + "x": 2545.6855, + "y": 1746.2914, + "direction": 1 + }, + "meta": { + "updateAt": 1748228206866, + "createAt": 1748228206866 + } + }, + "PQzGhFUJprfxrBncWAfrf": { + "id": "PQzGhFUJprfxrBncWAfrf", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "columnIds": [ + "F9EPb6nsDx6Tf3GG8rvP1" + ], + "x": 1689.032, + "y": 1570.1222142857143, + "direction": 2 + }, + "end": { + "tableId": "F_0cYo78BnayQhVv3ArRp", + "columnIds": [ + "0UhqQkNDg3DHug5zXFJEY" + ], + "x": 2543.5995, + "y": 2013.5922, + "direction": 1 + }, + "meta": { + "updateAt": 1748228388840, + "createAt": 1748228388840 + } + }, + "_LZZrk6stzdUHIcu9FNzh": { + "id": "_LZZrk6stzdUHIcu9FNzh", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "lwd2DR7f1FW8fXtJ0lX-r", + "columnIds": [ + "203b3hUKUQ_Gu5wKShBgZ" + ], + "x": 1697.3245, + "y": 2194.5248, + "direction": 2 + }, + "end": { + "tableId": "F_0cYo78BnayQhVv3ArRp", + "columnIds": [ + "Bg-Tx0N2d0uSzyhPkhyck" + ], + "x": 2543.5995, + "y": 2089.5922, + "direction": 1 + }, + "meta": { + "updateAt": 1748228413078, + "createAt": 1748228413078 + } + }, + "S0Mb2Q0b_-_dMKTFVkZ7M": { + "id": "S0Mb2Q0b_-_dMKTFVkZ7M", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "columnIds": [ + "F9EPb6nsDx6Tf3GG8rvP1" + ], + "x": 1689.032, + "y": 1615.8365000000001, + "direction": 2 + }, + "end": { + "tableId": "XywAFAP3s5Xl6G-3txHTH", + "columnIds": [ + "STLYnqCG56zLLyNnfgnqR" + ], + "x": 2551.0909, + "y": 2282.407, + "direction": 1 + }, + "meta": { + "updateAt": 1748228478337, + "createAt": 1748228478337 + } + }, + "O9MiIc0aAX5rt42_hM40C": { + "id": "O9MiIc0aAX5rt42_hM40C", + "identification": false, + "relationshipType": 8, + "startRelationshipType": 2, + "start": { + "tableId": "dnFyz1CSdGeS6mCbfCMO0", + "columnIds": [ + "WaCB3uNZYFReAPiBqQ97v" + ], + "x": 1703.5149, + "y": 2462.4325, + "direction": 2 + }, + "end": { + "tableId": "XywAFAP3s5Xl6G-3txHTH", + "columnIds": [ + "thCqAUxooyOoqA0o8Cr1S" + ], + "x": 2551.0909, + "y": 2358.407, + "direction": 1 + }, + "meta": { + "updateAt": 1748228494466, + "createAt": 1748228494466 + } + }, + "lXcwd0sSi7t7OdvEjaznH": { + "id": "lXcwd0sSi7t7OdvEjaznH", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "columnIds": [ + "F9EPb6nsDx6Tf3GG8rvP1" + ], + "x": 1689.032, + "y": 1707.2650714285717, + "direction": 2 + }, + "end": { + "tableId": "kHLWAzQmZ3CCs0KpilqZ7", + "columnIds": [ + "PhV2kPOROFN2Paxn0Q3KK" + ], + "x": 2566.4476, + "y": 2843.6594, + "direction": 1 + }, + "meta": { + "updateAt": 1748228594886, + "createAt": 1748228594886 + } + }, + "GNsC6xDRv10hUO6q9Xdnc": { + "id": "GNsC6xDRv10hUO6q9Xdnc", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "RTq5rHQupiXXJPXqpN8K5", + "columnIds": [ + "zBz4vBOZSIA8vKmfqXckO" + ], + "x": 1709.5028, + "y": 3082.629, + "direction": 2 + }, + "end": { + "tableId": "kHLWAzQmZ3CCs0KpilqZ7", + "columnIds": [ + "JVNCmWuI_UAnZEGZUbBQv" + ], + "x": 2566.4476, + "y": 2919.6594, + "direction": 1 + }, + "meta": { + "updateAt": 1748228645385, + "createAt": 1748228645385 + } + }, + "J7H72NkdPg1gZdSAur4la": { + "id": "J7H72NkdPg1gZdSAur4la", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "columnIds": [ + "F9EPb6nsDx6Tf3GG8rvP1" + ], + "x": 1689.032, + "y": 1661.550785714286, + "direction": 2 + }, + "end": { + "tableId": "x7rn2-q2i7C6Lin0XwIR_", + "columnIds": [ + "OqPMHX5b1-Qct8xqaypd1" + ], + "x": 2570.5649, + "y": 2600.7184, + "direction": 1 + }, + "meta": { + "updateAt": 1748228740886, + "createAt": 1748228740886 + } + }, + "7aO23DPo-ueZ6G-9dCKXu": { + "id": "7aO23DPo-ueZ6G-9dCKXu", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "ZMGIWLFEswObjH2Sx0NlW", + "columnIds": [ + "2HB01q46-mugMjuOz85YG" + ], + "x": 1705.9179, + "y": 2747.3424, + "direction": 2 + }, + "end": { + "tableId": "x7rn2-q2i7C6Lin0XwIR_", + "columnIds": [ + "Wjix1VNvwEfcogjAdEgc2" + ], + "x": 2570.5649, + "y": 2676.7184, + "direction": 1 + }, + "meta": { + "updateAt": 1748228761127, + "createAt": 1748228761127 + } + }, + "2yh_-sL8npRIpX_JwH3Vl": { + "id": "2yh_-sL8npRIpX_JwH3Vl", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "B4qGh3KZsXHQ3_4EOgwJZ", + "columnIds": [ + "F9EPb6nsDx6Tf3GG8rvP1" + ], + "x": 1689.032, + "y": 1752.9793571428575, + "direction": 2 + }, + "end": { + "tableId": "DKSom-hQqNhI1z7FqSa6Y", + "columnIds": [ + "CCtqlfF2lD-XJILWNJMGC" + ], + "x": 2562.3299, + "y": 3126.0124, + "direction": 1 + }, + "meta": { + "updateAt": 1748228870743, + "createAt": 1748228870743 + } + }, + "c9fmyTtPkeRt6aHosMiSQ": { + "id": "c9fmyTtPkeRt6aHosMiSQ", + "identification": false, + "relationshipType": 16, + "startRelationshipType": 2, + "start": { + "tableId": "GRBrbb1hqwKSRMfod3I7U", + "columnIds": [ + "XnNj7H0bnTxo_NuZm7BOs" + ], + "x": 1711.1526, + "y": 3396.386, + "direction": 2 + }, + "end": { + "tableId": "DKSom-hQqNhI1z7FqSa6Y", + "columnIds": [ + "XRRh5KRH2WqKryhsba-KG" + ], + "x": 2562.3299, + "y": 3202.0124, + "direction": 1 + }, + "meta": { + "updateAt": 1748228892140, + "createAt": 1748228892140 + } + } + }, + "indexEntities": {}, + "indexColumnEntities": {}, + "memoEntities": {} + } +} \ No newline at end of file diff --git a/app/Helpers/CommonHelper.php b/app/Helpers/CommonHelper.php index 2dcf1ac..384185e 100644 --- a/app/Helpers/CommonHelper.php +++ b/app/Helpers/CommonHelper.php @@ -260,6 +260,8 @@ class CommonHelper if (!is_array($viewDatas['field_options'][$field])) { throw new \Exception(__METHOD__ . "에서 {$field}의 field_options가 array형태가 아닙니다."); } + //request값이 있을경우 + $value = $this->request->getVar($field) ?? $value; $extra_class = isset($extras['class']) ? $extras['class'] . ' select-field' : 'select-field'; // $extra_class = isset($extras['class']) ? $extras['class'] : ""; $formOptions = ["" => lang($viewDatas['class_path'] . '.label.' . $field) . ' 선택']; @@ -307,6 +309,10 @@ class CommonHelper case 'created_at': $value = $value ? date("Y-m-d", strtotime($value)) : ""; break; + case 'price': + case 'amount': + $value = $value ? number_format($value) : ""; + break; default: if (in_array($field, $viewDatas['filter_fields'])) { $extras["onChange"] = sprintf( @@ -349,6 +355,7 @@ class CommonHelper { switch ($action) { case 'create': + // echo current_url() . '/' . $action . '?' . $this->request->getUri()->getQuery(); $extras = ["class" => "btn btn-outline btn-primary btn-circle", "target" => "_self", ...$extras]; $action = form_label( '입력', diff --git a/app/Language/en/Equipment/Part/Cpu.php b/app/Language/en/Equipment/Part/Cpu.php index 1f94cdb..198511a 100644 --- a/app/Language/en/Equipment/Part/Cpu.php +++ b/app/Language/en/Equipment/Part/Cpu.php @@ -3,6 +3,7 @@ return [ 'title' => "CPU정보", 'label' => [ 'model' => "모델", + 'price' => "가격", 'description' => "설명", 'status' => "상태", 'updated_at' => "수정일", diff --git a/app/Language/en/Equipment/Part/Disk.php b/app/Language/en/Equipment/Part/Disk.php index bb49177..af32647 100644 --- a/app/Language/en/Equipment/Part/Disk.php +++ b/app/Language/en/Equipment/Part/Disk.php @@ -3,6 +3,7 @@ return [ 'title' => "DISK정보", 'label' => [ 'model' => "모델", + 'price' => "가격", 'description' => "설명", 'status' => "상태", 'updated_at' => "수정일", diff --git a/app/Language/en/Equipment/Part/Ram.php b/app/Language/en/Equipment/Part/Ram.php index dee703f..32a8f3b 100644 --- a/app/Language/en/Equipment/Part/Ram.php +++ b/app/Language/en/Equipment/Part/Ram.php @@ -3,6 +3,7 @@ return [ 'title' => "RAM정보", 'label' => [ 'model' => "모델", + 'price' => "가격", 'description' => "설명", 'status' => "상태", 'updated_at' => "수정일", diff --git a/app/Models/Equipment/DefenceModel.php b/app/Models/Equipment/DefenceModel.php index c395048..dc7781b 100644 --- a/app/Models/Equipment/DefenceModel.php +++ b/app/Models/Equipment/DefenceModel.php @@ -15,6 +15,7 @@ class DefenceModel extends EquipmentModel protected $allowedFields = [ "type", "ip", + "price", "accountid", "domain", "description", @@ -38,6 +39,9 @@ class DefenceModel extends EquipmentModel case "ip": $rule = "required|trim|valid_ip[both]"; //ipv4 , ipv6 , both(ipv4,ipv6) break; + case "price": + $rule = "required|numeric"; + break; default: $rule = parent::getFieldRule($action, $field); break; diff --git a/app/Models/Equipment/IpModel.php b/app/Models/Equipment/IpModel.php index 23dbb3c..cd900db 100644 --- a/app/Models/Equipment/IpModel.php +++ b/app/Models/Equipment/IpModel.php @@ -15,6 +15,7 @@ class IpModel extends EquipmentModel protected $allowedFields = [ "lineinfo_uid", "ip", + "price", "status", "updated_at" ]; @@ -29,6 +30,7 @@ class IpModel extends EquipmentModel } switch ($field) { case "lineinfo_uid": + case "price": $rule = "required|numeric"; break; case "ip": diff --git a/app/Models/Equipment/Link/CpuModel.php b/app/Models/Equipment/Link/CpuModel.php index ba9ea52..f590897 100644 --- a/app/Models/Equipment/Link/CpuModel.php +++ b/app/Models/Equipment/Link/CpuModel.php @@ -6,7 +6,7 @@ use App\Entities\Equipment\Link\CpuEntity; class CpuModel extends LinkModel { - const TABLE = "cpuinfo_link"; + const TABLE = "serverinfos_cpuinfos"; const PK = "uid"; const TITLE = "uid"; protected $table = self::TABLE; diff --git a/app/Models/Equipment/Link/DiskModel.php b/app/Models/Equipment/Link/DiskModel.php index cd49cea..2a6ca14 100644 --- a/app/Models/Equipment/Link/DiskModel.php +++ b/app/Models/Equipment/Link/DiskModel.php @@ -6,7 +6,7 @@ use App\Entities\Equipment\Link\DiskEntity; class DiskModel extends LinkModel { - const TABLE = "diskinfo_link"; + const TABLE = "serverinfos_diskinfos"; const PK = "uid"; const TITLE = "uid"; protected $table = self::TABLE; diff --git a/app/Models/Equipment/Link/RamModel.php b/app/Models/Equipment/Link/RamModel.php index a962a8f..9b00a4d 100644 --- a/app/Models/Equipment/Link/RamModel.php +++ b/app/Models/Equipment/Link/RamModel.php @@ -6,7 +6,7 @@ use App\Entities\Equipment\Link\RamEntity; class RamModel extends LinkModel { - const TABLE = "raminfo_link"; + const TABLE = "serverinfos_raminfos"; const PK = "uid"; const TITLE = "uid"; protected $table = self::TABLE; diff --git a/app/Models/Equipment/Part/PartModel.php b/app/Models/Equipment/Part/PartModel.php index 100eec0..296a0dd 100644 --- a/app/Models/Equipment/Part/PartModel.php +++ b/app/Models/Equipment/Part/PartModel.php @@ -8,6 +8,7 @@ abstract class PartModel extends EquipmentModel { protected $allowedFields = [ "model", + "price", "status", "updated_at" ]; @@ -24,6 +25,9 @@ abstract class PartModel extends EquipmentModel case "model": $rule = "required|trim|string"; break; + case "price": + $rule = "required|numeric"; + break; default: $rule = parent::getFieldRule($action, $field); break; diff --git a/app/Models/Equipment/ServerModel.php b/app/Models/Equipment/ServerModel.php index 3e7e27c..2464817 100644 --- a/app/Models/Equipment/ServerModel.php +++ b/app/Models/Equipment/ServerModel.php @@ -16,6 +16,7 @@ class ServerModel extends EquipmentModel "code", "type", "model", + "price", "raid", "description", "status", @@ -37,6 +38,9 @@ class ServerModel extends EquipmentModel case "raid": $rule = "required|trim|string"; break; + case "price": + $rule = "required|numeric"; + break; default: $rule = parent::getFieldRule($action, $field); break; diff --git a/app/Models/Equipment/SoftwareModel.php b/app/Models/Equipment/SoftwareModel.php index fbad757..548665a 100644 --- a/app/Models/Equipment/SoftwareModel.php +++ b/app/Models/Equipment/SoftwareModel.php @@ -15,6 +15,7 @@ class SoftwareModel extends EquipmentModel protected $allowedFields = [ "type", "model", + "price", "status", "description", "updated_at" @@ -33,6 +34,9 @@ class SoftwareModel extends EquipmentModel case "type": $rule = "required|trim|string"; break; + case "price": + $rule = "required|numeric"; + break; default: $rule = parent::getFieldRule($action, $field); break; diff --git a/app/Services/Equipment/DefenceService.php b/app/Services/Equipment/DefenceService.php index a803369..bc56b60 100644 --- a/app/Services/Equipment/DefenceService.php +++ b/app/Services/Equipment/DefenceService.php @@ -28,6 +28,7 @@ class DefenceService extends EquipmentService return [ "type", "ip", + "price", "accountid", "domain", "status", diff --git a/app/Services/Equipment/IpService.php b/app/Services/Equipment/IpService.php index 767207c..fed0f9b 100644 --- a/app/Services/Equipment/IpService.php +++ b/app/Services/Equipment/IpService.php @@ -27,6 +27,7 @@ class IpService extends EquipmentService return [ "lineinfo_uid", "ip", + "price", "status", ]; } diff --git a/app/Services/Equipment/Part/PartService.php b/app/Services/Equipment/Part/PartService.php index 06413d6..511884c 100644 --- a/app/Services/Equipment/Part/PartService.php +++ b/app/Services/Equipment/Part/PartService.php @@ -16,6 +16,7 @@ abstract class PartService extends EquipmentService { return [ "model", + "price", "status", ]; } diff --git a/app/Services/Equipment/ServerService.php b/app/Services/Equipment/ServerService.php index 12e6e81..e7e1d92 100644 --- a/app/Services/Equipment/ServerService.php +++ b/app/Services/Equipment/ServerService.php @@ -29,6 +29,7 @@ class ServerService extends EquipmentService "code", "type", "model", + "price", "raid", "status", "description", diff --git a/app/Services/Equipment/SoftwareService.php b/app/Services/Equipment/SoftwareService.php index e2c343f..91907a6 100644 --- a/app/Services/Equipment/SoftwareService.php +++ b/app/Services/Equipment/SoftwareService.php @@ -27,6 +27,7 @@ class SoftwareService extends EquipmentService return [ "type", "model", + "price", "status", "description", ]; diff --git a/app/Views/templates/common/modal_iframe.php b/app/Views/templates/common/modal_iframe.php index 909bd45..b576bf2 100644 --- a/app/Views/templates/common/modal_iframe.php +++ b/app/Views/templates/common/modal_iframe.php @@ -19,7 +19,7 @@ @@ -35,9 +35,9 @@ function closeBootstrapModal() { var modalElement = document.getElementById('index_action_form'); // 모달의 실제 DOM 요소 가져오기 var modalInstance = bootstrap.Modal.getInstance(modalElement); // 모달 인스턴스 가져오기 + // 먼저 모달을 호출한 페이지를 리로드 + // window.location.reload(); if (modalInstance) { - // 먼저 모달을 호출한 페이지를 리로드 - window.location.reload(); modalInstance.hide(); // 모달 닫기 (hide() 메서드 사용) } else { console.error("Modal instance not found.");