841 lines
347 KiB
SQL
841 lines
347 KiB
SQL
-- MySQL dump 10.19 Distrib 10.3.28-MariaDB, for Linux (x86_64)
|
|
--
|
|
-- Host: localhost Database: dbms
|
|
-- ------------------------------------------------------
|
|
-- Server version 10.3.28-MariaDB-log
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
|
|
--
|
|
-- Table structure for table `accountinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `accountinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `accountinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`clientinfo_uid` int(11) NOT NULL,
|
|
`title` varchar(255) NOT NULL,
|
|
`alias` varchar(50) NOT NULL COMMENT '입출금자명',
|
|
`amount` 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(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
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=12 DEFAULT CHARSET=utf8 COMMENT='예치금계좌';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `accountinfo`
|
|
--
|
|
|
|
LOCK TABLES `accountinfo` WRITE;
|
|
/*!40000 ALTER TABLE `accountinfo` DISABLE KEYS */;
|
|
INSERT INTO `accountinfo` VALUES (1,1,'5월예치금입금','Test111',100000,'default','2025-06-17 02:09:08','2025-05-29 06:08:43',NULL),(2,1,'5월예치금출금','Test111',50000,'out','2025-06-17 02:08:21','2025-05-29 06:09:07',NULL),(3,3,'테스트입금333','Test333',100000,'default',NULL,'2025-06-17 02:11:41',NULL),(4,5,'test1','test555',10000,'default',NULL,'2025-06-20 00:41:39',NULL),(5,5,'test2','test5555',30000,'default',NULL,'2025-06-20 00:41:56',NULL),(6,5,'test3','test55555',444444,'default',NULL,'2025-06-20 00:44:36',NULL),(7,5,'test4','test5555',2147483647,'default',NULL,'2025-06-20 00:49:23',NULL),(8,6,'test1','Test666',10000,'default',NULL,'2025-06-20 00:51:46',NULL),(9,6,'test2','Test666',20000,'default',NULL,'2025-06-20 00:51:59',NULL),(10,6,'test3','Test6666',10000000,'default',NULL,'2025-06-20 01:00:36',NULL),(11,6,'test4','test6666',100000,'out',NULL,'2025-06-20 01:21:03',NULL);
|
|
/*!40000 ALTER TABLE `accountinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `clientinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `clientinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `clientinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`code` varchar(20) DEFAULT NULL COMMENT 'client code',
|
|
`role` varchar(50) NOT NULL DEFAULT 'user',
|
|
`name` varchar(100) NOT NULL,
|
|
`phone` varchar(50) DEFAULT NULL,
|
|
`email` varchar(50) NOT NULL,
|
|
`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(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_code` (`code`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=593 DEFAULT CHARSET=utf8 COMMENT='고객정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `clientinfo`
|
|
--
|
|
|
|
LOCK TABLES `clientinfo` WRITE;
|
|
/*!40000 ALTER TABLE `clientinfo` DISABLE KEYS */;
|
|
INSERT INTO `clientinfo` VALUES (1,NULL,'user','Test111','1111','test111@co.kr',50000,0,0,'default','2025-05-29 06:09:07','2025-05-29 06:07:37',NULL),(2,NULL,'user,vip','Test222','222','test222@co.kr',0,50,0,'default','2025-05-29 06:10:10','2025-05-29 06:07:54',NULL),(3,NULL,'user,vip,reseller','Test333','3333','test333@co.kr',100000,0,50000,'default','2025-06-17 02:11:41','2025-05-29 06:08:07',NULL),(4,NULL,'user','Test444','4444','test444@co.kr',0,1223,0,'default','2025-06-20 00:28:39','2025-05-29 06:08:17',NULL),(5,NULL,'user,vip','Test5555','234-234','test555@test.co.kr',2147483647,0,0,'default','2025-06-20 00:49:23','2025-06-20 00:41:10',NULL),(6,NULL,'user,reseller','Test666','234234','test666@test.co.kr',9930000,0,0,'default','2025-06-20 01:21:03','2025-06-20 00:51:01',NULL),(7,NULL,'user,vip','Test777','234-234-342','test777@test.co.kr',0,0,0,'default',NULL,'2025-06-23 07:42:00',NULL),(8,NULL,'user,vip,reseller','Test8888','00000-23423-3434','test8888@co.kr',0,0,0,'default',NULL,'2025-06-25 09:40:18',NULL),(9,'C001','user','온나이스애드','','sh8221a@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(10,'C003','user','밤의신사','010-7342-7199','ocean6719@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(11,'C004','user','Ez-IDC','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(12,'C006','user','newworld','','torofmars@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(13,'C007','user','휴먼테크','070-7528-3795(결번)','kakaonetworks@gmx.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(14,'C009','user','SHTraning','050-7882-2459','suhoung2@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(15,'C010','user','망치','010-7386-6729','100cinderellaa@gmali.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(16,'C011','user','대동','010-8270-5663','rladltn1031@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(17,'C012','user,reseller','게임윙','','nagayo333@gmail.com',14396000,0,0,'default','2025-07-07 10:20:13','2025-07-07 09:55:24',NULL),(18,'C014','user','킬러','010-4889-3794','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(19,'C016','user','월미도상사','010-8139-2848','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(20,'C018','user','아우라','010-8888-0813','sinzzang118@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(21,'C019','user','FX','070 7746 2135','rladlsqhr@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(22,'C020','user','김민성','070-7893-2528','rlaalstjd001@hotmail.co.kr',40000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(23,'C021','user','게임피아넷','010-2321-2493','bsuyju@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(24,'C022','user','동그라미','010-5641-4164','konge2713@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(25,'C023','user','서울','01064642371','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(26,'C025','user','선인장','010-2839-6285','newstar77@outlook.kr',30000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(27,'C027','user','메가마케팅','010-2576-7981','choirn39@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(28,'C028','user','uni솔루션','01023929293','woduf1325@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(29,'C029','user','돈킹','010-2648-4034','enjoyeasy001@gmail.com',200000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(30,'C030','user','돌이','070-4879-0529(돌이아니라고함) ','eternalourlove@gmail.com',51000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(31,'C032','user','두진','010-4044-6144','jaudit@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(32,'C034','user','윤성일.넘버원','010-7649-3626','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(33,'C035','user','로얄호스트','010-5060-5441','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(34,'C038','user','도날드','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(35,'C042','user','픽스디자인','','nawaba88@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(36,'C043','user','RKSYSTEM','010-3484-9944','irocks9999@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(37,'C044','user','베스인','','rdsdre398@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(38,'C045','user','두리','010-2194-2310','wldxld88@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(39,'C046','user','던힐','','companysun@protonmail.com',2920000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(40,'C047','user','이민호','','seorim777@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(41,'C048','user','이준석','010-4636-7109','pakrok6773@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(42,'C050','user','양제일','010-2309-1973','yji800@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(43,'C051','user','와우누리','010-6208-1939','wownurinet@live.co.kr',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(44,'C053','user','L(엘)','010-2132-5316','eoqkr201805@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(45,'C054','user','VAVAsoftware','+63-95-6953-9837','kwoo@vavasoft.net',380000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(46,'C057','user','주)오피스피아','010-5271-8172','hoop854@gmail.com',51000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(47,'C058','user','청도김기호','010-3835-1083','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(48,'C059','user','kjm','010-5000-9625','dltmddhqkqj@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(49,'C063','user','노블','010-2597-5265','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(50,'C065','user','mis','010-4898-5031','demkfjk@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(51,'C068','user','INTech-IDC','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(52,'C072','user','원데이','010-6641-2486','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(53,'C074','user','마도','010-5749-5235','jkl165381@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(54,'C075','user','ABC','010-5924-4204','abceoqkr@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(55,'C078','user','롤플레잉','010-8208-4371','gustmd2130@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(56,'C080','user','golf zone','01083427916','sgim70211@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(57,'C081','user','test01','000-0000-0000','test1234@aaaa.com',10000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(58,'C082','user','mister','010-3086-0985','vpdlzjrmekq@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(59,'C083','user','오투','070 4159 9998','camking1001@hotmail.com',504000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(60,'C084','user','David','02-222-2022','epdlqlemzla2022@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(61,'C085','user','윤성일.피스타','010-7649-3626','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(62,'C088','user','체어맨','01029562210','w2480310@gmail.com',900000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(63,'C089','user','강남스크린골프','010-8378-5751','gimn7696@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(64,'C095','user','테스트-일회성','010-0000-0000','dkanrjsk.@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(65,'C096','user','다나까타로','','',23508000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(66,'C097','user','이지스','855-979-586-842','gimsaem5@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(67,'C098','user','리얼야구존일산점','01080979151','class8690@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(68,'C099','user','프리셀','010-7653-5597','010-7653-5597',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(69,'C100','user','ㅇㅇㅇ','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(70,'C101','user','강태현','010-3059-6252','minjong556@hotmail.com',4522000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(71,'C103','user','어나미','','oneone33two@outlook.kr',141000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(72,'C105','user','릴파라다이스','','reel82@live.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(73,'C106','user','지앤시스','','mymanager07@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(74,'C107','user','데모닉','010-3403-0907','demonicsoft@daum.net',50000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(75,'C109','user','갤럭시S','010-6430-3357','nono701501@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(76,'C111','user','잭팟777','639055167494','nicejackpot777@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(77,'C112','user','555group','+63 916 799 5265','kazumihonda250@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(78,'C114','user','minsoft','050-6026-9097','777callcenter@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(79,'C116','user','WinIDC','','winidcwin@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(80,'C117','user','asiantrans','01059606670','denis1313denis1313@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(81,'C118','user','토마토','010-3061-5771(과금담당)','qqaa146763@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(82,'C119','user','R-solution','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(83,'C120','user','캄솔루션','+85585917915','dlcjfgks001@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(84,'C121','user','아시안웨이','010-2560-1218','asianwayp@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(85,'C124','user','코어','010-6756-1881','rlawjdrl6969@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(86,'C125','user','강호수','010-3244-2656','mycard7@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(87,'C129','user','이기웅','010-2674-3478','kakakakaaa1212123@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(88,'C130','user','코드원소프트','010-2900-5862','codeone4321@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(89,'C131','user','벨루가강남지점','\'01053320036','qortkstn2000@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(90,'C132','user','아이커','+86-136-6154-4945','3203736758@qq.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(91,'C136','user','수수','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(92,'C137','user','trust','010-3916-7685','simsonj358@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(93,'C142','user','스타','010-3488-9035','idcstar@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(94,'C144','user','moon(액티브랩직원)','070-7893-5596','skyblue.mmmj@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(95,'C145','user','abet','010-8324-7740','abet77877@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(96,'C147','user','핫아','+66 098-201-0020','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(97,'C148','user','주주','+63 9155528095','slrlaltlqkf2000@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(98,'C152','user','인포텍','010-7469-4296','dragonchan555@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(99,'C153','user','포뇨','01043477808','vhsy1416@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(100,'C155','user','RCG','070-7890-7890','royok789@gmail.com(박상무)',1999000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(101,'C156','user','월드테크','01058313494','jteam569@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(102,'C158','user','리얼야구존화곡점','010-6584-2924','wjddms19933@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(103,'C159','user','gobetsoft','+86-1554-2500-319','3042888044@qq.com',32000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(104,'C161','user','김태희','','rpg256@mail.ru',820000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(105,'C162','user','오엑스게이트','01029600107','chungyg@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(106,'C163','user','으뜸','010-4425-7236','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(107,'C166','user','골드뮤','010-9446-5835','dlawls663@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(108,'C169','user','스포하이','010-2666-1422','hoya0_0@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(109,'C173','user','123','010-4769-5836','didehdrbsk@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(110,'C176','user','강건너','010-8319-6653','mklppppp@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(111,'C180','user','야만','010-4637-8889','funrun202007@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(112,'C181','user','신미경','010-5933-5820','kimd228877@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(113,'C182','user','사이다2','010-9915-6514','tazo1212@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(114,'C183','user','레전드','010-5841-4421','dlruqhwk2636@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(115,'C184','user','스카이통신','+840924167404','enjsrhkwkddlek@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(116,'C185','user','메종드','01050610666','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(117,'C187','user','나인','070-1665-7007','kso8409@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(118,'C188','user','센트솔루션','010-2384-4482','woduf1325@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(119,'C189','user','유성','01039435335','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(120,'C190','user','프라이빗솔루션','010-8945-2258','y5993241@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(121,'C192','user','로랜매니아','010-4554-2454','neea517@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(122,'C197','user','KJ컴퍼니','010-5192-4546','12games1282@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(123,'C198','user','마닐라','010-2548-2979','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(124,'C199','user','이상민','010-7460-3368','wkdldjsxm112@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(125,'C200','user','아이비(이화경)','010-8222-1825','parkbumking@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(126,'C201','user','신규교육','120937444','1111@111.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(127,'C202','user','sky','070-8098-2838','highclassgame@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(128,'C203','user','프리넷','010-2178-8558','byewin@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(129,'C204','user','매니아','01048893794','dnjsrur8@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(130,'C205','user','더블소프트','8613001699562','softprograme2018@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(131,'C206','user','퍼스트','070-7751-4873','yodalove9@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(132,'C209','user','신세계','010-8294-9403','smyoun123@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(133,'C210','user','김정훈','010-6590-9114','jskim000@outlook.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(134,'C211','user','비즈넷','010-7469-4296','smile88@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(135,'C212','user','시케이다핀테크','','cicadafintech@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(136,'C213','user','로만','01028690034','di0467401@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(137,'C216','user','메탈컴퍼니','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(138,'C217','user','발리','01048893794','dnjsrur8@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(139,'C218','user','블레스','070-8248-0240','ryu@jpbless.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(140,'C219','user','IDC-JP','1544-6069','idc@idcjp.jp',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(141,'C220','user','제우스.킹콩','010-5936-5844','arhdwnsla@gmail.com ',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(142,'C223','user','탑테니스','\'01082698906','qkwlqk124@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(143,'C224','user','애기2','070-7751-2778','rprnflek7@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(144,'C229','user','창업에듀','01030860985','dyrksus12@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(145,'C231','user','한병선','010-8331-2641','usersh1510@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(146,'C234','user','로얄','010 7651 4010','hyeonseogy83@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(147,'C235','user','에이스넷','070 7499 7504','hwang8811@hanmail.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(148,'C237','user','K-soft','010-5101-7559','tlseovh@gmail.com',245000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(149,'C240','user','탐탐','01059331078','csunja77cm@gmail.com',5500,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(150,'C241','user','넷스타','','corea.no1@hotmail.com(반송됨)',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(151,'C242','user','부활','13247374931','vkdls1k@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(152,'C243','user','펌프','01095999184','vhdlwmsdlek12@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(153,'C244','user','SSC','010 2915 1793','kim18000175@hanmail.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(154,'C245','user','이원석','010 - 8929 - 2851','ssba00@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(155,'C247','user','idcjapan','010-6468-0095','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(156,'C248','user','대박','01030297807','a01030297807@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(157,'C249','user','장안동2','010-5393-7469','tobicok@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(158,'C250','user','웨이브','010-5891-3626','asas1991237@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(159,'C253','user','예체능','010-5906-0759','bfy-123@outlook.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(160,'C254','user','기네스','010-2581-1235','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(161,'C255','user','싸구려','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(162,'C256','user','매광복','131-7331-1753','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(163,'C258','user','김대리','010-7511-3455','coolkgs65@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(164,'C260','user','데이터콜로니아','','',100000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(165,'C265','user','대구','010-5906-6337','urlsms1@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(166,'C267','user','만사','010-5927-0932','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(167,'C268','user','바이오월드','010-7469-4296','dragonchan555@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(168,'C269','user','라온모바일','010-9572-5953','yangsangchul1@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(169,'C270','user','마이홈','010-8376-7771','midqwer123@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(170,'C272','user','로또서버','01047891364','jsj4487@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(171,'C273','user','성진쇼핑','070-8153-5647','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(172,'C275','user','승찬이','010-7859-6695','is0865763@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(173,'C277','user','하데스(서재필)','010-8546-3886','jpseo@jpblog.co.kr',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(174,'C278','user','엄규호','1071585191','ss141418@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(175,'C280','user','진','010-4638-3975','admin@maplejin.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(176,'C281','user','신민당','010-3930-0624','baejjanglee@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(177,'C282','user','인포텍(아이티플러스)','010-2351-5734','byewin@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(178,'C283','user','삼다수','01059066532','mrzoro2016@gmx.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(179,'C284','user','김철','070-8227-7584','vseoul@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(180,'C286','user','유진','010-6234-8661 ','cjsdlf7936@daum.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(181,'C287','user','루카스','010-2416-3220','withscan@gmail.com',90000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(182,'C288','user','신돌이','010-8088-0052','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(183,'C290','user','B&B','013-0298-0796','oadari@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(184,'C291','user','백호','01037371910','dbtn7187@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(185,'C292','user','글로벌정보','60-10-269-7024','rmffhqjfwjdqh@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(186,'C293','user','콜드서버','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(187,'C294','user','애기','070-7751-2778','rprnflek7@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(188,'C295','user','AK','010-3462-5487','noye@outlook.kr',3000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(189,'C299','user','퍼펙트','010-8925-8820','dnjsrur8@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(190,'C300','user','오쓰','0130-297-5950(정지)','exbase@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(191,'C302','user','신한','','tyleiro1@live.co.kr',10000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(192,'C303','user','박시우','010-8352-7337','bibiux7777@yahoo.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(193,'C304','user','WITHIDC','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(194,'C306','user','기획솔루션','010-7754-5889','rieo1049@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(195,'C309','user','시티헌트','010-2891-9059','city.hunter79@gmail.com',28000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(196,'C311','user','최천중','010-8827-9974','breeder000@live.co.kr(반송됨))',43000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(197,'C315','user','야관문','010-7674-5998','gania4489@gmail.com ',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(198,'C318','user','컴온','01084651559','redpuppyface@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(199,'C319','user','Laverti(라벨티)','010-3778-2785','laverti6789@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(200,'C320','user','솔지','070-8015-1673(전번바뀜)','costan123456@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(201,'C321','user','AIR','010-5864-3549','gania4489@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(202,'C322','user','삼국온라인','010-6852-1021','dnjsdntkfkd1@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(203,'C323','user','최진영','010-9415-0072','jyjyjy70@hanmail.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(204,'C325','user','Notes','86-132-4270-7252','shedang123@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(205,'C328','user','젠틀소프트','010-5709-8102','fxgt0155@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(206,'C329','user','박민수','010-5938-0327',' goehgoeh@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(207,'C330','user','모리화','+86-135-7025-8704','webperz@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(208,'C331','user','인사이드넷','사용안함(메신저)','사용안함(메신저)',1000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(209,'C332','user','제우스.소망/황소','010-4672-3666(소망)','thakd152152@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(210,'C333','user','엄브렐라소프트','050-7882-1998','tanga1004@outlook.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(211,'C335','user','SBOX','010-5937-2019','wpqkf99@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(212,'C336','user','윤성일.원탑','010-7649-3626','dnjsrur8@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(213,'C337','user','킹덤','010-2553-6233','mini885522@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(214,'C338','user','for you soft',' 86-159-4430-2827(중국)','rlagh7758@gmail.com',200000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(215,'C340','user','유니콤','156-9927-7788','unicc2017@hotmail.com',5000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(216,'C342','user','마카오','010-5505-0300','sungsukui@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(217,'C345','user','알에이','010-2196-3341','chssha1980@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(218,'C346','user','아빈','','abins1004@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(219,'C347','user','energuB','010-9643-5904','GGSSAA0001@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(220,'C350','user','피터스미스(PeterSmith)','070-7751-2537','dldudgh205205@gmail.com',653000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(221,'C351','user','황원포수산','010-6445-0203','wpwn011@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(222,'C352','user','art-king','','maru3chon@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(223,'C353','user','라라','010-4448-7220','djsejrktkfrlf@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(224,'C354','user','프리비즈','070-8018-3718','hye-yeon1004@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(225,'C358','user','팝콘미디어','010-4865-7155','papconbet@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(226,'C359','user','펜타빌','010-4896-0136','bonglee83@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(227,'C361','user','문시스템','86-1558-844-9837','no1mall2022@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(228,'C362','user','루비','+639566758232','qhslvktldh2017@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(229,'C363','user','이정주','01063484832','leejungju1109@daum.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(230,'C365','user','Htorren','+86-15562314256','jgx987456@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(231,'C366','user','(주)윈소프트','010-9649-3867','sbdkffprtm@gmail.com',3560930,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(232,'C367','user','아자아자','01089077143','HANUDUJA@HOTMAIL.COM',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(233,'C370','user','ZimiTech','070-4732-6734','korea.ac88@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(234,'C372','user','고구려','01074172353','sususuman2015@gmail.com',5000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(235,'C378','user','하재선','010-3127-8910','jsha6963@gmail.com',400000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(236,'C379','user','high','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(237,'C383','user','sinjhon','','jsin9061@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(238,'C384','user','CS','','dusdk59431@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(239,'C385','user','미래','010-9178-5430','aace7777@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(240,'C386','user','왕실장','07079468788','maru3chon@gmail.com',134000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(241,'C387','user','골프렉스마곡점','010-4637-2055','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(242,'C388','user','윤성일.제이제이','010-7649-3626','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(243,'C395','user','mt','010-2143-6597','boss94712157@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(244,'C396','user','스포24','010-8095-5804','opo2021@outlook.kr',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(245,'C397','user','엘레강스','01032185768','flwns32@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(246,'C398','user','소박동','010-8805-4273','ehdwns0080@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(247,'C400','user','RealAdmob','01086918856','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(248,'C401','user','리니온20','17768698207','lineaon20@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(249,'C402','user','정동엔터테이먼트','010-4378-3868','olive9970@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(250,'C405','user','탑세븐','010-2306-9255','alstn20222022@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(251,'C406','user','동민이','담당자 정하면 알려주기로 함','jim-jones-us@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(252,'C407','user','SS소프트','','hohoagent@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(253,'C408','user','24k','01042465498','wkdrnsdl0707@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(254,'C409','user','아이즈','','vipaa7931@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(255,'C411','user','케이쓰리','010-2724-5281','gon7777@outlook.kr ',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(256,'C413','user','유호성','010-7508-1038','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(257,'C414','user','짱구','010-2475-0609','qpdlwld123567@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(258,'C415','user','never','010-4392-3130','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(259,'C417','user','보너스','070-7630-6222','ttop008@hanmail.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(260,'C418','user','TOPIDC','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(261,'C421','user','제우스.니케','010-9740-8099','arhdwnsla@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(262,'C423','user','오토프리','','dlwjd122524@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(263,'C424','user','사다리','01048893794','dnjsrur8@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(264,'C426','user','fxgd','010-3318-8887','fxsmart@daum.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(265,'C427','user','패밀리','010-4483-9955','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(266,'C428','user','㈜동그라미','','konge2713@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(267,'C429','user','해피카지노','070-7682-1084','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(268,'C430','user','H(에이치)','01065161130','kjs40780@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(269,'C431','user','가젯트','010-2163-4715','gadget9284@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(270,'C432','user','니드','01043330019','needserver88@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(271,'C434','user','새론넷','01042435899','tbstechkor@gmail.com',300000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(272,'C435','user','유시','010-2226-5870','qowo845@gmail.com(반송됨)',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(273,'C436','user','박상래','','aba551111@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(274,'C438','user','Jap-IDC','070-4829-9768','idc@jap-idc.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(275,'C439','user','KE','010-4747-2841','karate482@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(276,'C440','user','갑돌이','010-5841-3372','batok1004@gmail.com',103000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(277,'C441','user','도미닉','010-8396-5999','dominic33339@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(278,'C442','user','jang','010-9254-5160','uyjang0708@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(279,'C445','user','레이크','010-9817-8243','vvipghost2015@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(280,'C447','user','메가','070-7616-8885','tnsdlf04@naver.com ',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(281,'C448','user','RARA','010-6662-8512','hoya8645@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(282,'C450','user','클랩','010-2134-1565','loveclab1@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(283,'C451','user','데빌','','epepqlfqlf@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(284,'C452','user','에스플레이','070-7374-1012','asmin2235@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(285,'C454','user','마담','010-4889-3794','dnjsrur8@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(286,'C455','user','토실장','','ketese@163.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(287,'C458','user','마블','070-7662-2037','marble7942@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(288,'C459','user','머메이드','010-8227-0145','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(289,'C460','user','삼영','010-5959-5932','tkaduddldpstl@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(290,'C462','user','올림픽','010-6669-0220','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(291,'C463','user','다솔네트웍스','010-5953-6357','axe1284001002@163.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(292,'C464','user','NEMOTO','65-9299-8694(싱가폴)','steve@nemoto.tv',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(293,'C465','user','바쿠스','010-2459-1037','ho454535@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(294,'C468','user','mansony','','karma77077@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(295,'C471','user','김일호','070-7078-4372(현재는전화없음)','rlxoenjs9267@outlook.kr',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(296,'C473','user','오렌지','010-6449-9021','mmyjun73@daum.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(297,'C475','user','레인','070-7678-6266','mailto.petersmith@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(298,'C478','user','이프텍','070-7678-6266','mailto.petersmith@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(299,'C481','user','멀티슈즈','010-4380-4666','kevin837465@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(300,'C483','user','grace','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(301,'C484','user','박찬호','010-9465-9335','kk1625kk@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(302,'C485','user','매우','01059575238','neo79119@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(303,'C486','user','글로리아','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(304,'C487','user','액티브랩','+855-1183-5114','skyblue.mmmj@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(305,'C488','user','Aproworld','070-4287-7200','siyagi5@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(306,'C489','user','김창민','010-2154-6548','hominkang7@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(307,'C492','user','마이티','070-7616-9239','vorahvorah@hotmail.com',198000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(308,'C493','user','애플솔루션','+84 376-197-614','dev_oc@outlook.com',168000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(309,'C494','user','ABA','+63 91 7415 5593','phnompen0247@muchomail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(310,'C496','user','김은진','010-2869-0693','tkatjd12451@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(311,'C497','user','리치브라이트','070-4035-3322','pcw@richbright.co.kr',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(312,'C498','user','ruby','855-88-8403-930','ruby654123@muchomail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(313,'C500','user','루인','','kkclgmc@gmail.com',2558700,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(314,'C501','user','갤럭시','010-4447-7512 ','vbsm0007000@gmail.com',150000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(315,'C502','user','AsiaLine','','skyblue2027@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(316,'C503','user','한맥게임즈','010-5933-9616','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(317,'C504','user','케이제이테크','010-6712-9935','qkreovh@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(318,'C505','user','적토마','+86 13256850105','designmyung@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(319,'C506','user','미르넷','84-9170-75849','mostpo132@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(320,'C507','user','에이','010-2561-7865','mr_hong2@hotmail.com',11000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(321,'C508','user','제임스본','070-7616-9995','mansony1177@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(322,'C510','user','Cabin','','paypaper8@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(323,'C512','user','디자인','','1986949233@qq.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(324,'C514','user','인디언','010-2157-9704','indian150115@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(325,'C515','user','제니스','','kimsejung588@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(326,'C516','user','쏘니킹','010-4598-7575','jiwangsun24@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(327,'C517','user','엔젤갤럭시','010-8906-1108','fxzimin@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(328,'C518','user','매직','010-4872-8443','ljk400@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(329,'C519','user','LK','010-8934-3639','angelmei3516@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(330,'C520','user','김현우','010-7175-0918','kim119918@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(331,'C521','user','강남','010-9178-5430','rkems78@hotmail.com',25000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(332,'C522','user','유사','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(333,'C524','user','CK','','vbsm00700@gmail.com',37000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(334,'C525','user','도찐개찐','010-2953-8018','pcpc1212@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(335,'C526','user','솔로몬','86-155-5426-6102','ckvack8438@daum.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(336,'C527','user','장수로코리아','','xoxoxo2055@daum.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(337,'C528','user','샤크','050-7788-1122','kbs1234@live.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(338,'C529','user','베가','070-4768-9259','rlaeovy5562@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(339,'C530','user','드림엘티이','63-9173-864169','naverid2014@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(340,'C531','user','삼정','010-6873-4691','pgmadm4@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(341,'C532','user','조전무','010-2950-6633','bomi33383@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(342,'C533','user','백야드','010-2156-1195','backyard247@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(343,'C534','user','볼소프트','010-5937-1468','icinoo2525@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(344,'C535','user','윈드','010-5401-6166','rhfem2013@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(345,'C536','user','정성','010-5938-4154','ahfl007ahfl@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(346,'C537','user','비바','010-9979-5788 ','program7708@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(347,'C539','user','태극','01038195632','plugig@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(348,'C542','user','재팬호스팅','010-5622-6576','japanhosting@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(349,'C543','user','그린컴퍼니','070-7671-4447','cheolsu2422@hanmail.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(350,'C544','user','너구리','010-2787-4764','qpgh133@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(351,'C545','user','이슬','01010101010','namu38211@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(352,'C546','user','NECTECH','070-7748-7849','pshery@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(353,'C547','user','에반에이전시','010-8003-8794','even8794@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(354,'C548','user','Ezone','010-9953-5984','richball1234@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(355,'C551','user','inside','','iside1717@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(356,'C552','user','장시시','','briohonda2010@gmail.com',150000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(357,'C554','user','서실장','010-2141-2391','mongnis588@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(358,'C555','user','민정','639060598045','kim171494@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(359,'C556','user','가온','010-6835-6759','rlatkdgus1888@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(360,'C557','user','김재환','000-0000-0000','aaa@aaa.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(361,'C558','user','spm1004','010-3822-8201','spidermmm333@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(362,'C559','user','강원총판대리점','01039354654','callleemy@gamil.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(363,'C561','user','dy','07042313717','choichoi878778@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(364,'C564','user','콜로세움','010-2459-2132','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(365,'C567','user','윤성일.스마일','010-7649-3626','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(366,'C569','user','이풍호','2122','221',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(367,'C570','user','김병진','','dktjdgns188@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(368,'C571','user','제우스.엘프','010-9740-8099','arhdwnsla@gmail.com ',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(369,'C572','user','장수촌','010-4562-2366','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(370,'C576','user','Sunday','010-6631-9340','xxxeeeor@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(371,'C580','user','소풍','010-2476-3366','gi6106301@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(372,'C582','user','영다이캐스팅','010-8318-2748','jh4271811@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(373,'C585','user','압구정','010-9912-7029','poiu8728@gmail.com',31000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(374,'C590','user','해연','010-4195-3485','showmethe12341@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(375,'C594','user','4msol','010-9953-5984','playgg5588@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(376,'C595','user','일등','01094355749','alsgur5863@naver.com',50000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(377,'C596','user','윤성일.스타트','010-7649-3626','dnjsrur99@nate.com',50000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(378,'C597','user','mmi','010-5596-2841','Sjsjwi2@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(379,'C598','user','김동윤','','',-400000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(380,'C599','user','대명','86-157-1201-7277','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(381,'C602','user','글로벌마케팅','','manager3311@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(382,'C603','user','골드라인','010-7352-1141','jimicyoi0409@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(383,'C604','user','테크솔루션','070-4300-6482','whdqja3210@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(384,'C605','user','대성','070-7754-2706','akfqhfhfkdlxm@hotmail.com',10000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(385,'C606','user','오아시스','010 8847 8879','appking4422@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(386,'C608','user','핌코','010-2467-5221','jyjy010@naver.com',8500,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(387,'C610','user','윤성일.프로그','010-7649-3626','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(388,'C613','user','김은영','','eunyeong89.kim@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(389,'C615','user','tmt','010-7444-1449','vinsenzo83@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(390,'C616','user','미스터큐','01086939895','skyhp65@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(391,'C617','user','지씨아이티','010-7161-8458','gcitceo@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(392,'C619','user','체크독 엔터테이먼트','010-9880-3812','wntkdduf2008@naver.com',30000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(393,'C620','user','콕이오','','ydianr@live.co.kr',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(394,'C621','user','WebStory','070-7678-7366','web-story@live.hk',150000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(395,'C624','user','헬릭스','1084865180','byj258963@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(396,'C625','user','서성원','010-8402-6868','laudis@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(397,'C626','user','그레이트','070-7538-2039','yjhpower@nate.com ',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(398,'C627','user','골드','','hjkhh477@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(399,'C628','user',' 쌍용','','bitox.co@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(400,'C631','user','베라','07079460633','wldbs12sla@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(401,'C633','user','달님네아울렛','07041897700','mario855855@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(402,'C635','user','팬더','010-6873-4691','pgmadm4@gmail.com',12000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(403,'C636','user','GDIDC','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(404,'C639','user','윤성일.엘리트','010-7649-3626','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(405,'C642','user','리더스','010-9581-5270','sysmgfdsas@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(406,'C643','user','세밤','86-1318-414-2363','sexbam66@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(407,'C644','user','메이드','010-4769-5836','didehdrbsk@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(408,'C647','user','크루즈','01084526113','jinsung223311@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(409,'C648','user','레드','01043188945','leehuis@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(410,'C649','user','탐스','010-7614-2563','nagunes9987@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(411,'C650','user','드림','010-8403-7226','gimd31084@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(412,'C651','user','kobe(코비)','010-3062-4366','soka3795@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(413,'C654','user','나우','050-7095-1675','k1164513@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(414,'C655','user','대구강실장','010-5906-6337','urlsms1@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(415,'C656','user','노블레스','01058258246','patience0205@gmail.com ',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(416,'C657','user','땅콩','01092669220','juhwan0@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(417,'C662','user','정여진','000-0000-0000','ccc@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(418,'C665','user','겜블','01058226929','kimgr93@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(419,'C666','user','제우스.산소','010-2151-5313','tksth5656@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(420,'C670','user','showtm','01028942372','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(421,'C671','user','제우스','010-5846-6794','tour8721@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(422,'C674','user','윤성일.몰타','010-7649-3626','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(423,'C678','user','김수진','010-5671-1902','baejjanglee@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(424,'C679','user','코리아상사','01090307164','whiteapple2@daum.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(425,'C680','user','ace','010-5896-7871','dpdltm2022@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(426,'C681','user','매니아2','01048893794','dnjsrur8@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(427,'C682','user','광주애플','01098969011','9011aa9011@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(428,'C683','user','애플','010-2794-6212','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(429,'C685','user','Nknoz','01020688356','Oz79797979@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(430,'C686','user','서길룡','010-2167-4218','tjrlffyd@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(431,'C687','user','아이기스서버','01057958760','jklajk@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(432,'C690','user','그린소프트','','wpwp74@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(433,'C692','user','올스타','010-3037-0960','allstar588269@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(434,'C697','user','정소프트','010-7213-4786','dustjrgo@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(435,'C702','user','럭키337','010-4419-2447','Kimcheolsu365@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(436,'C704','user','제우스.조커','010-9724-8544','whzj9393@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(437,'C706','user','윤성일.퍼펙트','010-7649-3626','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(438,'C707','user','avt','','zodiac8310@gmail.com',270000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(439,'C709','user','사이다','010-4889-3794','dnjsrur8@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(440,'C712','user','아이템','010-3283-9918','dlwowns1122@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(441,'C715','user','med','010-6833-0947','medkigkang@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(442,'C716','user','라바','+86-130-2168-0552','kimparksa08@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(443,'C718','user','가자Go','010-5839-1872','ho454535@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(444,'C720','user','a2','01027444096','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(445,'C721','user','한솔소프트','010-8495-6492','ilgan1966@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(446,'C732','user','전두환','01031278910','seawar1@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(447,'C735','user','라이트','010-2241-9701','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(448,'C736','user','컬리넌','010-8107-3356','cul3732@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(449,'C738','user','윈너비','','winnerbe2008@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(450,'C743','user','너트','010-5922-7347','anemdtks0003@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(451,'C744','user','블랙','01058477485','rnrwptksdjq2301@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(452,'C746','user','슈렉','010-8671-2414','camboda112@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(453,'C747','user','토마토스크린골프존','010-4637-5219','gnlwns00000@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(454,'C750','user','엔젤상사','010-2314-6623','na112888@naver.com',4000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(455,'C751','user','master','010-6448-4177','mastershot2018@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(456,'C753','user','바카스','010-3981-5612','asky8700@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(457,'C756','user','대로기업','010 9596 9601','rlaeofh0707@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(458,'C758','user','먹튀수사대','','kenzoj835@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(459,'C760','user','하이어스컴퍼니','','toytop85@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(460,'C761','user','도라도라','oht2500@naver.com','010-4339-3832',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(461,'C762','user','오이시','010-6499-4861','ghdud121212@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(462,'C772','user','FM2','01032937794','rich7way@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(463,'C773','user','에이원','010-5849-5491','artist_hong01@outlook.kr',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(464,'C774','user','땡벌','010-5762-5517','jart51@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(465,'C779','user','강원','010-9446-5835','dydwo4651@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(466,'C780','user','길동이','010-2111-6798','topprt@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(467,'C781','user','두꺼비','010-2892-6050','qkrgoqhd12@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(468,'C782','user','폭시서버','텔레그램','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(469,'C785','user','헐크','01065059856','hulkdebak@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(470,'C786','user','스프라이트','010-8331-2641','usersh00@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(471,'C787','user','김창국','test','',80000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(472,'C788','user','PXG','010-7238-1423','ktt1043@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(473,'C791','user','배터리','01097476215','blowflyking@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(474,'C795','user','톡매니아','010-5966-8965','gania4489@gmail.com ',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(475,'C796','user','게임1','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(476,'C797','user','솔리드','01085785743','newton01208@hotmail.com',30000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(477,'C800','user','nice100','070-8095-2151','cjh787800@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(478,'C801','user','상록수PC','01094000024','lsk2871@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(479,'C802','user','골드문','010-7764-4215','rladudtjs0413@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(480,'C804','user','이재홍','010-7134-5664','shote78@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(481,'C806','user','바이브','','nomadam7979@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(482,'C807','user','오딘MS','010-2446-8923','pgw6060@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(483,'C809','user','UUP','010-5725-1514','unknownuserprotocol@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(484,'C812','user','골드서버','010-3969-0043','rksekfkdj1111@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(485,'C813','user','프로','010-2328-2726','promini777@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(486,'C814','user','아이호스팅','01032115809','i2cloud@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(487,'C815','user','김성환','','kimsunghwan1122@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(488,'C816','user','Mu','01082370362','ppinak1234@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(489,'C818','user','sando','010-9643-5477','crownsando365@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(490,'C819','user','강인규','','ritawear@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(491,'C820','user','SM카지노','010-2188-0547','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(492,'C821','user','원반','010-9836-7113','dnjsqks6492@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(493,'C824','user','윤성일.타노스','010-7649-3626','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(494,'C825','user','콜라','070-4127-7733','khs277882@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(495,'C826','user','세이프제로','010-3211-5809','kangss98@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(496,'C828','user','아이언맨','01048893794','dnjsrur8@nate.com',160000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(497,'C830','user','조선','07074338111','chosunca@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(498,'C831','user','ADELL','','dkadell777@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(499,'C832','user','플루토','010-9912-7029','poiu8728@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(500,'C833','user','비비안','010-2184-8211','sack95087@gmail.com ',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(501,'C835','user','박수현','010-6207-2673','xiaweifong@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(502,'C839','user','홍길동','','bogus@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(503,'C841','user','윤성일.클로버','010-7649-3626','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(504,'C844','user','세리아월드','01056935398','kya00011@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(505,'C845','user','윌슨','070-7662-1809','Wlee9213@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(506,'C846','user','아몬드','010-6463-4374','gogaldung@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(507,'C848','user','깐부','010-8006-4251','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(508,'C849','user','우림테크','010-4425-7236','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(509,'C852','user','네오비전','010-7469-4296','ggbbt556@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(510,'C855','user','김도훈','010-7549-0513','afg.brucekim@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(511,'C856','user','홍콩반점','','aoa010203@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(512,'C857','user','도서관','01084940503','turtle@hanmail.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(513,'C858','user','에릭','010-3069-4193','kimsg19700701@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(514,'C861','user','폭포수','63 9217159147','god572047@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(515,'C862','user','은하수','010-1111-1111','bcow1001@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(516,'C864','user','조성호','010-0000-0000','test@test.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(517,'C865','user','좋은데이','010-7431-4947','crush9876543210@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(518,'C866','user','attigaming','010-5000-2197','rkdnl1311@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(519,'C867','user','gopay','','royok789@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(520,'C868','user','당근','010-2943-6301','xodnr910829@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(521,'C870','user','대전','010-9178-5430','rkems78@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(522,'C872','user','kimnamyoon','01050560110','kimnamyoon@daum.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(523,'C873','user','박성원','010-3900-9228','deadrun7@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(524,'C874','user','윤성일.벙커','010-7649-3626','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(525,'C875','user','포즈','010-3294-2265','windra2021@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(526,'C877','user','위즈피아','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(527,'C878','user','이영호','','jslee7410@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(528,'C879','user','시원','01021375952','f2580f2580@gmail.com',50000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(529,'C883','user','포레스트','010-3940-5920','forest.asset@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(530,'C886','user','홀소프트','010-2943-3739','holl11@ruu.kr',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(531,'C887','user','고려아이티','01072628952','g4266330@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(532,'C888','user','보난자','01067325263','salovesun1@outlook.kr',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(533,'C890','user','황금','010-7218-7954','kangbyungsu11@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(534,'C891','user','코난','01030377475','konan3650@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(535,'C892','user','올레테크','01095815270','zxzxcvcv007@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(536,'C893','user','던전','01076156923','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(537,'C894','user','레인프레젠테이션','','rainrepresentation4786@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(538,'C895','user','유탑','010-5447-4667','fatherdj@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(539,'C896','user','비너스','010-9175-8000','brainkim@empas.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(540,'C897','user','IDC솔루션','010-8331-5132','idcsol@daum.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(541,'C904','user','코코','070-7517-5656','webdog-bulls@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(542,'C906','user','스케치','','skchgogo@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(543,'C909','user','라이언','010-5860-4142','3190239363@qq.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(544,'C910','user','킹덤뮤','01094465835','dlawls0000@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(545,'C911','user','주식회사바이씨알','010-4898-5055','grankee7@gmail.com',1057000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(546,'C916','user','윤성일.피망','010-7649-3626','dnjsrur99@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(547,'C919','user','그렌드','010-4832-9599','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(548,'C922','user','JD SOLUTION','63-95-6634-8000','tony262666@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(549,'C924','user','미라클','010-8685-4664','mars888808888@gmail.com',50000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(550,'C930','user','계백','\'01025090766','eoodl@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(551,'C932','user','서희','010-9576-7710','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(552,'C936','user','동양','010-5816-6652','bms0312123@navercom',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(553,'C937','user','카카오','','tyleiro1@live.co.kr',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(554,'C938','user','마당','010-4889-3794','dnjsrur8@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(555,'C942','user','speed','010-5873-9871','speed8088@outlook.kr',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(556,'C943','user','안디오','010-4827-3337','dotns091@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(557,'C944','user','리얼야구존발산점','010-5799-5355','wnalswn1988@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(558,'C945','user','한중희test','000-000-0000','asdjkw@naver.com',300000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(559,'C947','user','대박이','01023935519','spop8279@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(560,'C948','user','엘오티','010-4672-9171','im774868@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(561,'C950','user','비트','010-7426-2813','mjmj0090807@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(562,'C952','user','헨리스토리','0803350020','half-coil-crayfish@duck.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(563,'C953','user','민우','','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(564,'C954','user','엘사','010-8433-9522','neea517@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(565,'C956','user','라스','010-2918-0844','snhjjang@nate.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(566,'C958','user','BLUE','010-6709-4291','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(567,'C959','user','아이기획','010-2143-1770','',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(568,'C960','user','쿠키','010-2006-3241','znzl114@hanmail.net',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(569,'C961','user','아워플랜(OurPlan)','010-7292-2400','kang154123@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(570,'C962','user','태양','01043061041','qhrrn777@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(571,'C963','user','도그슬롯','010-8785-3544','racoonb@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(572,'C965','user','(주)백만장자','','showmethe12341@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(573,'C967','user','다온','010-2144-7628','love0160love3@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(574,'C968','user','스피드','01066915844','lg0775@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(575,'C971','user','머니머니','010-4695-4218','made1116@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(576,'C972','user','세이프티-C','010-9986-8293','bgldev1234@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(577,'C975','user','동동동','01021595647','ayak48@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(578,'C978','user','제우스.mlb','010-9740-8099','mlbpk001@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(579,'C979','user','크림','010-8302-4682','qkzkfk7206@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(580,'C981','user','하니서버','','yousarang1989@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(581,'C982','user','헬로우','01021749248','yhcho3000@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(582,'C983','user','디올','010-2178-9848','imh89334@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(583,'C985','user','뉴야소프트','84-91-324-1714','ya2013help@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(584,'C988','user','두부','010-3850-7453','tmdcjf2532@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(585,'C990','user','미니볼','010-6557-6677','jangkun1201@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(586,'C991','user','박은걸','010-5551-5356','engerpark@hotmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(587,'C992','user','토르','010-9891-3285','wjdgksdyd3285@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(588,'C993','user','PANDA','01086009312','listuer@naver.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(589,'C995','user','힛트','010-8348-6955','cminsu426@gmail.com',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(590,'C996','user','BBin','+86 17135460800','gidtjshong@hotmail.com ',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(591,'C999','user','프리미엄','010-5647-2284','komyeongsuk1004@gmail.com',17000,0,0,'default',NULL,'2025-07-07 09:55:24',NULL),(592,'IDCJP','user','IDCJP','','idc@idcjp.jp',0,0,0,'default',NULL,'2025-07-07 09:55:24',NULL);
|
|
/*!40000 ALTER TABLE `clientinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `clientinfo_history`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `clientinfo_history`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `clientinfo_history` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`clientinfo_uid` int(11) NOT NULL,
|
|
`title` varchar(255) NOT NULL,
|
|
`description` text DEFAULT NULL,
|
|
`status` varchar(20) NOT NULL DEFAULT 'default' COMMENT '상태',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
KEY `FK_clientinfo_TO_clientinfo_history` (`clientinfo_uid`),
|
|
CONSTRAINT `FK_clientinfo_TO_clientinfo_history` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='고객_history';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `clientinfo_history`
|
|
--
|
|
|
|
LOCK TABLES `clientinfo_history` WRITE;
|
|
/*!40000 ALTER TABLE `clientinfo_history` DISABLE KEYS */;
|
|
INSERT INTO `clientinfo_history` VALUES (1,7,'test777특이사항1',NULL,'default',NULL,'2025-06-26 05:57:53',NULL),(2,7,'test777특이사항2',NULL,'default',NULL,'2025-06-26 05:58:04',NULL),(3,4,'test444특이사항1',NULL,'default',NULL,'2025-06-26 05:58:26',NULL),(4,4,'test444특이사항2',NULL,'default',NULL,'2025-06-26 05:58:35',NULL);
|
|
/*!40000 ALTER TABLE `clientinfo_history` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `codeinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `codeinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `codeinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`code` varchar(20) NOT NULL COMMENT '서버코드',
|
|
`status` varchar(20) DEFAULT 'default',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_code` (`code`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='코드표';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `codeinfo`
|
|
--
|
|
|
|
LOCK TABLES `codeinfo` WRITE;
|
|
/*!40000 ALTER TABLE `codeinfo` DISABLE KEYS */;
|
|
INSERT INTO `codeinfo` VALUES (1,'ZEN100','occupied','2025-06-26 02:33:40','2025-06-26 02:04:31',NULL),(2,'JPN-R420','default','2025-06-26 02:45:20','2025-06-26 02:04:44',NULL),(3,'XEON-T249','occupied','2025-06-26 02:45:14','2025-06-26 02:05:00',NULL),(4,'I3-T453','default','2025-06-26 02:45:28','2025-06-26 02:05:10',NULL),(5,'I5-Z343','default','2025-06-26 02:45:40','2025-06-26 02:05:22',NULL),(6,'I7-TXR2','occupied','2025-06-26 02:45:40','2025-06-26 02:05:34',NULL),(7,'I9-XT432','default','2025-06-26 02:45:48','2025-06-26 02:05:46',NULL),(8,'M3456','occupied','2025-06-26 02:45:48','2025-06-26 02:06:03',NULL),(9,'P23-AC23','default',NULL,'2025-07-04 08:14:09',NULL);
|
|
/*!40000 ALTER TABLE `codeinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `couponinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `couponinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `couponinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`clientinfo_uid` int(11) NOT NULL,
|
|
`title` varchar(100) NOT NULL,
|
|
`amount` 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(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
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=7 DEFAULT CHARSET=utf8 COMMENT='쿠폰정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `couponinfo`
|
|
--
|
|
|
|
LOCK TABLES `couponinfo` WRITE;
|
|
/*!40000 ALTER TABLE `couponinfo` DISABLE KEYS */;
|
|
INSERT INTO `couponinfo` VALUES (1,2,'5월쿠폰추가',100,'default',NULL,'2025-05-29 06:09:41',NULL),(2,2,'5월쿠폰사용',50,'out',NULL,'2025-05-29 06:10:10',NULL),(3,4,'test111',1,'default','2025-06-20 00:28:39','2025-06-19 23:57:35',NULL),(4,4,'test',343,'default',NULL,'2025-06-19 23:58:04',NULL),(5,4,'test',222,'default',NULL,'2025-06-20 00:00:35',NULL),(6,4,'test222',1000,'default',NULL,'2025-06-20 00:28:07',NULL);
|
|
/*!40000 ALTER TABLE `couponinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `cpuinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `cpuinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `cpuinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`model` varchar(50) NOT NULL,
|
|
`status` varchar(20) NOT NULL DEFAULT 'default',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_model` (`model`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='CPU 정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for 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-29 07:25:04',NULL),(2,'Xeon(R) CPU E5-2690 v4 @ 2.60GHz','default',NULL,'2025-05-29 07:25:17',NULL),(3,'Intel i3','default',NULL,'2025-05-29 07:25:56',NULL),(4,'Intel i5','default',NULL,'2025-05-29 07:26:08',NULL),(5,'Intel i7','default',NULL,'2025-05-29 07:26:22',NULL);
|
|
/*!40000 ALTER TABLE `cpuinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `defenceinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `defenceinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `defenceinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`type` varchar(20) NOT NULL,
|
|
`ip` varchar(50) DEFAULT NULL,
|
|
`accountid` varchar(50) DEFAULT NULL,
|
|
`domain` varchar(100) DEFAULT NULL,
|
|
`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(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_uid` (`uid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='방어(CS)정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `defenceinfo`
|
|
--
|
|
|
|
LOCK TABLES `defenceinfo` WRITE;
|
|
/*!40000 ALTER TABLE `defenceinfo` DISABLE KEYS */;
|
|
INSERT INTO `defenceinfo` VALUES (2,'VPC-CS','21.238.234.34','VPC-X21',NULL,NULL,'default','2025-06-09 07:44:42','2025-05-29 07:20:50',NULL),(3,'KT-CS','13.23.4.2','KT-X23',NULL,NULL,'default',NULL,'2025-05-29 07:22:55',NULL);
|
|
/*!40000 ALTER TABLE `defenceinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `domaininfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `domaininfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `domaininfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`domain` varchar(20) NOT NULL,
|
|
`status` varchar(20) NOT NULL DEFAULT 'default',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_domain` (`domain`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COMMENT='도메인 정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `domaininfo`
|
|
--
|
|
|
|
LOCK TABLES `domaininfo` WRITE;
|
|
/*!40000 ALTER TABLE `domaininfo` DISABLE KEYS */;
|
|
INSERT INTO `domaininfo` VALUES (1,'Ckoa.kk','occupied','2025-07-07 00:21:06','2025-06-09 08:44:41',NULL),(10,'test1.co.kr','default',NULL,'2025-07-04 09:35:58',NULL),(11,'test2.co.kr','default',NULL,'2025-07-04 09:35:58',NULL),(12,'test3.kr.sdfksdfsdfs','default',NULL,'2025-07-07 00:22:42',NULL);
|
|
/*!40000 ALTER TABLE `domaininfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `invoiceinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `invoiceinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `invoiceinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`clientinfo_uid` int(11) NOT NULL,
|
|
`issue_at` date DEFAULT NULL COMMENT '발행일',
|
|
`due_at` date DEFAULT NULL COMMENT '지급기한일',
|
|
`total_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_invoiceinfo` (`clientinfo_uid`),
|
|
CONSTRAINT `FK_clientinfo_TO_invoiceinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='청구서정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `invoiceinfo`
|
|
--
|
|
|
|
LOCK TABLES `invoiceinfo` WRITE;
|
|
/*!40000 ALTER TABLE `invoiceinfo` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `invoiceinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `invoiceinfo_items`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `invoiceinfo_items`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `invoiceinfo_items` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`invoiceinfo_uid` int(11) NOT NULL,
|
|
`item_type` varchar(20) NOT NULL,
|
|
`item_uid` int(11) NOT NULL,
|
|
`billing_cyle` varchar(20) NOT NULL,
|
|
`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_invoiceinfo_TO_invoiceinfo_items` (`invoiceinfo_uid`),
|
|
CONSTRAINT `FK_invoiceinfo_TO_invoiceinfo_items` FOREIGN KEY (`invoiceinfo_uid`) REFERENCES `invoiceinfo` (`uid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='청구서Item정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `invoiceinfo_items`
|
|
--
|
|
|
|
LOCK TABLES `invoiceinfo_items` WRITE;
|
|
/*!40000 ALTER TABLE `invoiceinfo_items` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `invoiceinfo_items` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `ipinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `ipinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `ipinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`lineinfo_uid` int(11) NOT NULL,
|
|
`ip` char(16) NOT NULL,
|
|
`status` varchar(20) NOT NULL DEFAULT 'default',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_ip` (`ip`),
|
|
KEY `FK_lineinfo_TO_ipinfo` (`lineinfo_uid`),
|
|
CONSTRAINT `FK_lineinfo_TO_ipinfo` FOREIGN KEY (`lineinfo_uid`) REFERENCES `lineinfo` (`uid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=129 DEFAULT CHARSET=utf8 COMMENT=' IP 정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `ipinfo`
|
|
--
|
|
|
|
LOCK TABLES `ipinfo` WRITE;
|
|
/*!40000 ALTER TABLE `ipinfo` DISABLE KEYS */;
|
|
INSERT INTO `ipinfo` VALUES (1,8,'27.125.207.128','default','2025-06-09 06:09:21','2025-05-29 06:45:34',NULL),(2,8,'27.125.207.129','default',NULL,'2025-05-29 06:45:34',NULL),(3,8,'27.125.207.130','occupied','2025-06-25 08:33:30','2025-05-29 06:45:34',NULL),(4,8,'27.125.207.131','default',NULL,'2025-05-29 06:45:34',NULL),(5,8,'27.125.207.132','default',NULL,'2025-05-29 06:45:34',NULL),(6,8,'27.125.207.133','default',NULL,'2025-05-29 06:45:34',NULL),(7,8,'27.125.207.134','default',NULL,'2025-05-29 06:45:34',NULL),(8,8,'27.125.207.135','default',NULL,'2025-05-29 06:45:34',NULL),(9,8,'27.125.207.136','default',NULL,'2025-05-29 06:45:34',NULL),(10,8,'27.125.207.137','default',NULL,'2025-05-29 06:45:34',NULL),(11,8,'27.125.207.138','occupied','2025-07-01 01:03:48','2025-05-29 06:45:34',NULL),(12,8,'27.125.207.139','occupied','2025-06-25 08:33:39','2025-05-29 06:45:34',NULL),(13,8,'27.125.207.140','occupied','2025-06-25 09:51:54','2025-05-29 06:45:34',NULL),(14,8,'27.125.207.141','default',NULL,'2025-05-29 06:45:34',NULL),(15,8,'27.125.207.142','default',NULL,'2025-05-29 06:45:34',NULL),(16,8,'27.125.207.143','default',NULL,'2025-05-29 06:45:34',NULL),(17,8,'27.125.207.144','default',NULL,'2025-05-29 06:45:34',NULL),(18,8,'27.125.207.145','default',NULL,'2025-05-29 06:45:34',NULL),(19,8,'27.125.207.146','default',NULL,'2025-05-29 06:45:34',NULL),(20,8,'27.125.207.147','default',NULL,'2025-05-29 06:45:34',NULL),(21,8,'27.125.207.148','default',NULL,'2025-05-29 06:45:34',NULL),(22,8,'27.125.207.149','default',NULL,'2025-05-29 06:45:34',NULL),(23,8,'27.125.207.150','default',NULL,'2025-05-29 06:45:34',NULL),(24,8,'27.125.207.151','default',NULL,'2025-05-29 06:45:34',NULL),(25,8,'27.125.207.152','default',NULL,'2025-05-29 06:45:34',NULL),(26,8,'27.125.207.153','default',NULL,'2025-05-29 06:45:34',NULL),(27,8,'27.125.207.154','default',NULL,'2025-05-29 06:45:34',NULL),(28,8,'27.125.207.155','default',NULL,'2025-05-29 06:45:34',NULL),(29,8,'27.125.207.156','default',NULL,'2025-05-29 06:45:34',NULL),(30,8,'27.125.207.157','default',NULL,'2025-05-29 06:45:34',NULL),(31,8,'27.125.207.158','default',NULL,'2025-05-29 06:45:34',NULL),(32,8,'27.125.207.159','default',NULL,'2025-05-29 06:45:34',NULL),(33,8,'27.125.207.160','default',NULL,'2025-05-29 06:45:34',NULL),(34,8,'27.125.207.161','default',NULL,'2025-05-29 06:45:34',NULL),(35,8,'27.125.207.162','default',NULL,'2025-05-29 06:45:34',NULL),(36,8,'27.125.207.163','default',NULL,'2025-05-29 06:45:34',NULL),(37,8,'27.125.207.164','default',NULL,'2025-05-29 06:45:34',NULL),(38,8,'27.125.207.165','default',NULL,'2025-05-29 06:45:34',NULL),(39,8,'27.125.207.166','default',NULL,'2025-05-29 06:45:34',NULL),(40,8,'27.125.207.167','default',NULL,'2025-05-29 06:45:34',NULL),(41,8,'27.125.207.168','default',NULL,'2025-05-29 06:45:34',NULL),(42,8,'27.125.207.169','default',NULL,'2025-05-29 06:45:34',NULL),(43,8,'27.125.207.170','default',NULL,'2025-05-29 06:45:34',NULL),(44,8,'27.125.207.171','default',NULL,'2025-05-29 06:45:34',NULL),(45,8,'27.125.207.172','default',NULL,'2025-05-29 06:45:34',NULL),(46,8,'27.125.207.173','default',NULL,'2025-05-29 06:45:34',NULL),(47,8,'27.125.207.174','default',NULL,'2025-05-29 06:45:34',NULL),(48,8,'27.125.207.175','default',NULL,'2025-05-29 06:45:34',NULL),(49,8,'27.125.207.176','default',NULL,'2025-05-29 06:45:34',NULL),(50,8,'27.125.207.177','default',NULL,'2025-05-29 06:45:34',NULL),(51,8,'27.125.207.178','default',NULL,'2025-05-29 06:45:34',NULL),(52,8,'27.125.207.179','default',NULL,'2025-05-29 06:45:34',NULL),(53,8,'27.125.207.180','default',NULL,'2025-05-29 06:45:34',NULL),(54,8,'27.125.207.181','default',NULL,'2025-05-29 06:45:34',NULL),(55,8,'27.125.207.182','default',NULL,'2025-05-29 06:45:34',NULL),(56,8,'27.125.207.183','default',NULL,'2025-05-29 06:45:34',NULL),(57,8,'27.125.207.184','default',NULL,'2025-05-29 06:45:34',NULL),(58,8,'27.125.207.185','default',NULL,'2025-05-29 06:45:34',NULL),(59,8,'27.125.207.186','default',NULL,'2025-05-29 06:45:34',NULL),(60,8,'27.125.207.187','default',NULL,'2025-05-29 06:45:34',NULL),(61,8,'27.125.207.188','default',NULL,'2025-05-29 06:45:34',NULL),(62,8,'27.125.207.189','default',NULL,'2025-05-29 06:45:34',NULL),(63,8,'27.125.207.190','default',NULL,'2025-05-29 06:45:34',NULL),(64,8,'27.125.207.191','default',NULL,'2025-05-29 06:45:34',NULL),(65,8,'27.125.207.192','default',NULL,'2025-05-29 06:45:34',NULL),(66,8,'27.125.207.193','default',NULL,'2025-05-29 06:45:34',NULL),(67,8,'27.125.207.194','default',NULL,'2025-05-29 06:45:35',NULL),(68,8,'27.125.207.195','default',NULL,'2025-05-29 06:45:35',NULL),(69,8,'27.125.207.196','default',NULL,'2025-05-29 06:45:35',NULL),(70,8,'27.125.207.197','default',NULL,'2025-05-29 06:45:35',NULL),(71,8,'27.125.207.198','default',NULL,'2025-05-29 06:45:35',NULL),(72,8,'27.125.207.199','default',NULL,'2025-05-29 06:45:35',NULL),(73,8,'27.125.207.200','default',NULL,'2025-05-29 06:45:35',NULL),(74,8,'27.125.207.201','default',NULL,'2025-05-29 06:45:35',NULL),(75,8,'27.125.207.202','default',NULL,'2025-05-29 06:45:35',NULL),(76,8,'27.125.207.203','default',NULL,'2025-05-29 06:45:35',NULL),(77,8,'27.125.207.204','default',NULL,'2025-05-29 06:45:35',NULL),(78,8,'27.125.207.205','default',NULL,'2025-05-29 06:45:35',NULL),(79,8,'27.125.207.206','default',NULL,'2025-05-29 06:45:35',NULL),(80,8,'27.125.207.207','default',NULL,'2025-05-29 06:45:35',NULL),(81,8,'27.125.207.208','default',NULL,'2025-05-29 06:45:35',NULL),(82,8,'27.125.207.209','occupied',NULL,'2025-05-29 06:45:35',NULL),(83,8,'27.125.207.210','forbidden',NULL,'2025-05-29 06:45:35',NULL),(84,8,'27.125.207.211','default',NULL,'2025-05-29 06:45:35',NULL),(85,8,'27.125.207.212','default',NULL,'2025-05-29 06:45:35',NULL),(86,8,'27.125.207.213','default',NULL,'2025-05-29 06:45:35',NULL),(87,8,'27.125.207.214','default',NULL,'2025-05-29 06:45:35',NULL),(88,8,'27.125.207.215','default',NULL,'2025-05-29 06:45:35',NULL),(89,8,'27.125.207.216','default',NULL,'2025-05-29 06:45:35',NULL),(90,8,'27.125.207.217','default',NULL,'2025-05-29 06:45:35',NULL),(91,8,'27.125.207.218','default',NULL,'2025-05-29 06:45:35',NULL),(92,8,'27.125.207.219','default',NULL,'2025-05-29 06:45:35',NULL),(93,8,'27.125.207.220','default',NULL,'2025-05-29 06:45:35',NULL),(94,8,'27.125.207.221','default',NULL,'2025-05-29 06:45:35',NULL),(95,8,'27.125.207.222','default',NULL,'2025-05-29 06:45:35',NULL),(96,8,'27.125.207.223','default',NULL,'2025-05-29 06:45:35',NULL),(97,8,'27.125.207.224','default',NULL,'2025-05-29 06:45:35',NULL),(98,8,'27.125.207.225','default',NULL,'2025-05-29 06:45:35',NULL),(99,8,'27.125.207.226','default',NULL,'2025-05-29 06:45:35',NULL),(100,8,'27.125.207.227','default',NULL,'2025-05-29 06:45:35',NULL),(101,8,'27.125.207.228','default',NULL,'2025-05-29 06:45:35',NULL),(102,8,'27.125.207.229','default',NULL,'2025-05-29 06:45:35',NULL),(103,8,'27.125.207.230','default',NULL,'2025-05-29 06:45:35',NULL),(104,8,'27.125.207.231','default',NULL,'2025-05-29 06:45:35',NULL),(105,8,'27.125.207.232','default',NULL,'2025-05-29 06:45:35',NULL),(106,8,'27.125.207.233','default',NULL,'2025-05-29 06:45:35',NULL),(107,8,'27.125.207.234','default',NULL,'2025-05-29 06:45:35',NULL),(108,8,'27.125.207.235','default',NULL,'2025-05-29 06:45:35',NULL),(109,8,'27.125.207.236','default',NULL,'2025-05-29 06:45:35',NULL),(110,8,'27.125.207.237','default',NULL,'2025-05-29 06:45:35',NULL),(111,8,'27.125.207.238','default',NULL,'2025-05-29 06:45:35',NULL),(112,8,'27.125.207.239','default',NULL,'2025-05-29 06:45:35',NULL),(113,8,'27.125.207.240','default',NULL,'2025-05-29 06:45:35',NULL),(114,8,'27.125.207.241','default',NULL,'2025-05-29 06:45:35',NULL),(115,8,'27.125.207.242','default',NULL,'2025-05-29 06:45:35',NULL),(116,8,'27.125.207.243','default',NULL,'2025-05-29 06:45:35',NULL),(117,8,'27.125.207.244','default',NULL,'2025-05-29 06:45:35',NULL),(118,8,'27.125.207.245','default',NULL,'2025-05-29 06:45:35',NULL),(119,8,'27.125.207.246','default',NULL,'2025-05-29 06:45:35',NULL),(120,8,'27.125.207.247','default',NULL,'2025-05-29 06:45:35',NULL),(121,8,'27.125.207.248','default',NULL,'2025-05-29 06:45:35',NULL),(122,8,'27.125.207.249','default',NULL,'2025-05-29 06:45:35',NULL),(123,8,'27.125.207.250','default',NULL,'2025-05-29 06:45:35',NULL),(124,8,'27.125.207.251','default',NULL,'2025-05-29 06:45:35',NULL),(125,8,'27.125.207.252','default',NULL,'2025-05-29 06:45:35',NULL),(126,8,'27.125.207.253','default',NULL,'2025-05-29 06:45:35',NULL),(127,8,'27.125.207.254','default',NULL,'2025-05-29 06:45:35',NULL),(128,8,'27.125.207.255','default',NULL,'2025-05-29 06:45:35',NULL);
|
|
/*!40000 ALTER TABLE `ipinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `lineinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `lineinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `lineinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`clientinfo_uid` int(11) DEFAULT NULL COMMENT '소유자정보',
|
|
`type` varchar(20) NOT NULL COMMENT '회선구분',
|
|
`title` varchar(100) NOT NULL,
|
|
`bandwith` varchar(20) NOT NULL COMMENT 'IP 대역',
|
|
`status` varchar(20) NOT NULL DEFAULT 'default',
|
|
`start_at` date DEFAULT NULL COMMENT '개통일',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_title` (`title`),
|
|
KEY `FK_clientinfo_TO_lineinfo` (`clientinfo_uid`),
|
|
CONSTRAINT `FK_clientinfo_TO_lineinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='회선 정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `lineinfo`
|
|
--
|
|
|
|
LOCK TABLES `lineinfo` WRITE;
|
|
/*!40000 ALTER TABLE `lineinfo` DISABLE KEYS */;
|
|
INSERT INTO `lineinfo` VALUES (8,NULL,'default','Softbank회선','27.125.207.128/25','default','2025-05-01','2025-06-03 03:26:52','2025-05-29 06:45:34',NULL);
|
|
/*!40000 ALTER TABLE `lineinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `logger`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `logger`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `logger` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`user_uid` int(11) NOT NULL,
|
|
`class_name` varchar(255) DEFAULT NULL,
|
|
`method_name` varchar(255) DEFAULT NULL,
|
|
`title` varchar(255) NOT NULL,
|
|
`content` text NOT NULL,
|
|
`status` varchar(20) DEFAULT 'default',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
KEY `FK_user_TO_logger` (`user_uid`),
|
|
CONSTRAINT `FK_user_TO_logger` FOREIGN KEY (`user_uid`) REFERENCES `user` (`uid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=246 DEFAULT CHARSET=utf8 COMMENT='작업 기록 로그';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `logger`
|
|
--
|
|
|
|
LOCK TABLES `logger` WRITE;
|
|
/*!40000 ALTER TABLE `logger` DISABLE KEYS */;
|
|
INSERT INTO `logger` VALUES (1,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:22:57[debug]: 입력내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'STORAGE',\n 'item_uid' => '1',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n)\n13:22:57[debug]: [67/STORAGE] 입력 후 내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n 'uid' => 67,\n)\n13:22:57[info]: [STORAGE]생성되었습니다.:\n13:22:57[debug]: 입력내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n)\n13:22:57[debug]: [68/STORAGE] 입력 후 내용\n13:22:57[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n 'uid' => 68,\n)\n13:22:57[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-18 04:22:57',NULL),(2,1,'Customer/ServiceItem','getResultFail','Undefined array key \"DOMAIN\"','15:59:32[debug]: Undefined array key "DOMAIN"','default',NULL,'2025-06-18 06:59:32',NULL),(3,1,'Customer/ServiceItem','getResultFail','Undefined array key \"DEFENCE\"','15:59:50[debug]: Undefined array key "DEFENCE"','default',NULL,'2025-06-18 06:59:50',NULL),(4,1,'Customer/ServiceItem','getResultFail','Undefined array key \"SERVER\"','16:01:25[debug]: Undefined array key "SERVER"','default',NULL,'2025-06-18 07:01:25',NULL),(5,1,'Customer/ServiceItem','getResultFail','Undefined array key \"CPU\"','16:32:17[debug]: Undefined array key "CPU"','default',NULL,'2025-06-18 07:32:17',NULL),(6,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:32:27[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:32:27',NULL),(7,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:45:06[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:45:06',NULL),(8,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:48:07[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:48:07',NULL),(9,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','16:49:13[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 07:49:13',NULL),(10,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:00:15[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:00:15',NULL),(11,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:00:54[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:00:54',NULL),(12,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RA\"','17:05:22[debug]: Undefined array key "RA"','default',NULL,'2025-06-18 08:05:22',NULL),(13,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:05:30[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:05:30',NULL),(14,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:07:50[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:07:50',NULL),(15,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:09:10[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:09:10',NULL),(16,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:09:49[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:09:49',NULL),(17,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:09:55[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:09:55',NULL),(18,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:11:03[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:11:03',NULL),(19,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:11:49[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:11:49',NULL),(20,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:13:47[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:13:47',NULL),(21,1,'Customer/ServiceItem','getResultFail','getFormFieldOption에서 item_type이 지정되지 않았습니다.','17:14:45[debug]: getFormFieldOption에서 item_type이 지정되지 않았습니다.','default',NULL,'2025-06-18 08:14:45',NULL),(22,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:16:43[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:16:43',NULL),(23,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:20:49[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:20:49',NULL),(24,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:21:41[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:21:41',NULL),(25,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:24:39[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:24:39',NULL),(26,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:26:34[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:26:34',NULL),(27,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','17:32:27[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 08:32:27',NULL),(28,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:37:15[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:37:15',NULL),(29,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:37:16[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:37:16',NULL),(30,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:37:58[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:37:58',NULL),(31,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:37:58[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:37:58',NULL),(32,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:42:05[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:42:05',NULL),(33,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:42:05[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:42:05',NULL),(34,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:45:02[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:45:02',NULL),(35,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:45:02[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:45:02',NULL),(36,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:48:55[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:48:55',NULL),(37,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:48:55[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:48:55',NULL),(38,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','17:50:46[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 08:50:46',NULL),(39,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','17:50:46[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 08:50:46',NULL),(40,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','18:25:49[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-18 09:25:49',NULL),(41,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','18:25:49[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 09:25:49',NULL),(42,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','18:48:54[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 09:48:54',NULL),(43,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','18:48:54[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 09:48:54',NULL),(44,1,'Customer/ServiceItem','getResultFail','Undefined array key \"RAM\"','18:49:21[debug]: Undefined array key "RAM"','default',NULL,'2025-06-18 09:49:21',NULL),(45,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','18:49:21[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-18 09:49:21',NULL),(46,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','19:05:56[debug]: 입력내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'CPU',\n 'item_uid' => '1',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '10000',\n 'start_at' => '2025-06-18',\n 'status' => 'default',\n)\n19:05:56[debug]: [68/CPU] 입력 후 내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => '3',\n 'item_type' => 'CPU',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 10000,\n 'start_at' => '2025-06-18',\n 'status' => 'default',\n 'uid' => 68,\n)\n19:05:56[info]: [CPU]생성되었습니다.:\n19:05:56[debug]: 입력내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'CPU',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n)\n19:05:56[debug]: [69/CPU] 입력 후 내용\n19:05:56[debug]: array (\n 'serviceinfo_uid' => 3,\n 'ownerinfo_uid' => 4,\n 'item_type' => 'CPU',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-07-18',\n 'issue_at' => '2025-06-18',\n 'uid' => 69,\n)\n19:05:56[info]: [CPU]생성되었습니다.:','default',NULL,'2025-06-18 10:05:56',NULL),(47,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:15:52[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:15:52',NULL),(48,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:16:08[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:16:08',NULL),(49,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:17:23[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:17:23',NULL),(50,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:21:10[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:21:10',NULL),(51,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','14:21:57[debug]: Undefined array key 1','default',NULL,'2025-06-19 05:21:57',NULL),(52,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:38:33[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:38:33',NULL),(53,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:40:29[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:40:29',NULL),(54,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:41:26[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:41:26',NULL),(55,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:42:28[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:42:28',NULL),(56,1,'Customer/ServicePayment','getResultFail','Undefined array key 1','15:42:40[debug]: Undefined array key 1','default',NULL,'2025-06-19 06:42:40',NULL),(57,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:55:26[debug]: 입력내용\n08:55:26[debug]: array (\n 'id' => 'test1111222',\n 'passwd' => '1234',\n 'confirmpassword' => '1234',\n 'name' => 'test111122',\n 'email' => 'test112@co.kr',\n 'mobile' => 'asdfsfd',\n 'role' => 'manager',\n)\n08:55:26[debug]: [42/test111122] 입력 후 내용\n08:55:26[debug]: array (\n 'id' => 'test1111222',\n 'passwd' => '$2y$10$eS3FE/GgRZv8p02dYu4C4O1lze5lnHrD9BwzzMgs.0uP5zqSTWMvC',\n 'confirmpassword' => '$2y$10$qdy/FuAzx4LVvrVdREEvwOqGwpc5KHk5g/lxMuvSnPDKUx38phRNu',\n 'name' => 'test111122',\n 'email' => 'test112@co.kr',\n 'mobile' => 'asdfsfd',\n 'role' => 'manager',\n 'uid' => 42,\n)\n08:55:26[info]: [test111122]생성되었습니다.:','default',NULL,'2025-06-19 23:55:26',NULL),(58,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe confirmpassword field does not match the passwd field.','08:56:22[debug]: User 작업 데이터 검증 오류발생\nThe confirmpassword field does not match the passwd field.','default',NULL,'2025-06-19 23:56:22',NULL),(59,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:56:32[debug]: [41/test333334] 변경 전 내용\n08:56:32[debug]: array (\n 'id' => 'test33333433',\n 'passwd' => '12341234',\n 'confirmpassword' => '12341234',\n 'name' => 'test33333433',\n 'email' => 'test@test.co.kr233',\n 'mobile' => '111111222233',\n 'role' => 'manager,cloudflare,firewall',\n)\n08:56:32[debug]: array (\n 'uid' => '41',\n 'id' => 'test333334',\n 'passwd' => '$2y$10$eQXPQIvkuvnBc11hURs/K.mO44cHovtEdVpQ9QMLbu7H7bsspmJEO',\n 'name' => 'test333334',\n 'email' => 'test@test.co.kr2',\n 'mobile' => '1111112222',\n 'role' => 'manager,cloudflare',\n 'status' => 'pause',\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-06-20 08:55:55.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-06-11 16:36:53.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:56:33[debug]: [41/test33333433] 변경 후 내용\n08:56:33[debug]: array (\n 'uid' => '41',\n 'id' => 'test33333433',\n 'passwd' => '$2y$10$8qFLTLnJJbRvIDLzlfauSOJvD.B.aIH6l0yKo2K7xo6m02cdXNvg.',\n 'name' => 'test33333433',\n 'email' => 'test@test.co.kr233',\n 'mobile' => '111111222233',\n 'role' => 'manager,cloudflare,firewall',\n 'status' => 'pause',\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-06-20 08:56: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-06-11 16:36:53.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'confirmpassword' => '$2y$10$OgSt7eWGOTUdd3yFolpL2OXlJZXt9DXqLDqfTcckgBvOfk5Qd.1fq',\n)\n08:56:33[info]: [test33333433]수정되였습니다.:','default',NULL,'2025-06-19 23:56:33',NULL),(60,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:57:35[debug]: [4/Test444] 변경 전 내용\n08:57:35[debug]: array (\n 'coupon_balance' => 10,\n)\n08:57:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\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-06-09 16:38:48.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-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:57:35[debug]: [4/Test444] 변경 후 내용\n08:57:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 10,\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-06-20 08:57:35.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-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:57:35[info]: [Test444]수정되였습니다.:\n08:57:35[debug]: 입력내용\n08:57:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test111',\n 'amount' => '10',\n)\n08:57:35[debug]: [3/test111] 입력 후 내용\n08:57:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test111',\n 'amount' => '10',\n 'uid' => 3,\n)\n08:57:35[info]: [test111]생성되었습니다.:','default',NULL,'2025-06-19 23:57:35',NULL),(61,1,'Customer/Coupon','getResultFail','잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 45보다 작습니다.','08:57:57[debug]: 잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 45보다 작습니다.','default',NULL,'2025-06-19 23:57:57',NULL),(62,1,'Customer/Coupon','getResultFail','Undefined array key \"status\"','08:57:58[debug]: Undefined array key "status"','default',NULL,'2025-06-19 23:57:58',NULL),(63,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','08:58:04[debug]: [4/Test444] 변경 전 내용\n08:58:04[debug]: array (\n 'coupon_balance' => 343,\n)\n08:58:04[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 10,\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-06-20 08:57:35.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-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:58:04[debug]: [4/Test444] 변경 후 내용\n08:58:04[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 343,\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-06-20 08:58:04.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-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n08:58:04[info]: [Test444]수정되였습니다.:\n08:58:04[debug]: 입력내용\n08:58:04[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '343',\n)\n08:58:04[debug]: [4/test] 입력 후 내용\n08:58:04[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '343',\n 'uid' => 4,\n)\n08:58:04[info]: [test]생성되었습니다.:','default',NULL,'2025-06-19 23:58:04',NULL),(64,1,'Customer/Coupon','getResultFail','잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 2234보다 작습니다.','08:58:18[debug]: 잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 2234보다 작습니다.','default',NULL,'2025-06-19 23:58:18',NULL),(65,1,'Customer/Coupon','getResultFail','Undefined array key \"status\"','08:58:18[debug]: Undefined array key "status"','default',NULL,'2025-06-19 23:58:18',NULL),(66,1,'Customer/Coupon','getResultFail','잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 1234보다 작습니다.','08:58:36[debug]: 잔여액,잔여 쿠폰갯수:0 < 출금액 , 사용쿠폰갯수: 1234보다 작습니다.','default',NULL,'2025-06-19 23:58:36',NULL),(67,1,'Customer/Coupon','getResultFail','Undefined array key \"status\"','08:58:36[debug]: Undefined array key "status"','default',NULL,'2025-06-19 23:58:36',NULL),(68,1,'Customer/Coupon','getResultFail','Invalid file: \"admin/popup/modify_form.php\"','08:59:25[debug]: Invalid file: "admin/popup/modify_form.php"','default',NULL,'2025-06-19 23:59:25',NULL),(69,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:00:35[debug]: [4/Test444] 변경 전 내용\n09:00:35[debug]: array (\n 'coupon_balance' => 222,\n)\n09:00:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 343,\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-06-20 08:58:04.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-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:00:35[debug]: [4/Test444] 변경 후 내용\n09:00:35[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 222,\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-06-20 09:00:35.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-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:00:35[info]: [Test444]수정되였습니다.:\n09:00:35[debug]: 입력내용\n09:00:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '222',\n)\n09:00:35[debug]: [5/test] 입력 후 내용\n09:00:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test',\n 'amount' => '222',\n 'uid' => 5,\n)\n09:00:35[info]: [test]생성되었습니다.:','default',NULL,'2025-06-20 00:00:35',NULL),(70,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:28:07[debug]: [4/Test444] 변경 전 내용\n09:28:07[debug]: array (\n 'coupon_balance' => 1222,\n)\n09:28:07[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 222,\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-06-20 09:00:35.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-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:07[debug]: [4/Test444] 변경 후 내용\n09:28:07[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 1222,\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-06-20 09:28:07.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-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:07[info]: [Test444]수정되였습니다.:\n09:28:07[debug]: 입력내용\n09:28:07[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test222',\n 'amount' => '1000',\n)\n09:28:07[debug]: [6/test222] 입력 후 내용\n09:28:07[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test222',\n 'amount' => '1000',\n 'uid' => 6,\n)\n09:28:07[info]: [test222]생성되었습니다.:','default',NULL,'2025-06-20 00:28:07',NULL),(71,1,'Customer/Coupon','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:28:39[debug]: [4/Test444] 변경 전 내용\n09:28:39[debug]: array (\n 'coupon_balance' => 1223,\n)\n09:28:39[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 1222,\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-06-20 09:28:07.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-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[debug]: [4/Test444] 변경 후 내용\n09:28:39[debug]: array (\n 'uid' => '4',\n 'role' => 'user',\n 'name' => 'Test444',\n 'phone' => '4444',\n 'email' => 'test444@co.kr',\n 'account_balance' => 0,\n 'coupon_balance' => 1223,\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-06-20 09:28:39.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-29 15:08:17.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[info]: [Test444]수정되였습니다.:\n09:28:39[debug]: [3/test111] 변경 전 내용\n09:28:39[debug]: array (\n 'clientinfo_uid' => '4',\n 'status' => 'default',\n 'title' => 'test111',\n 'amount' => '1',\n)\n09:28:39[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'title' => 'test111',\n 'amount' => '10',\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-06-20 08:57:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[debug]: [3/test111] 변경 후 내용\n09:28:39[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'title' => 'test111',\n 'amount' => '1',\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-06-20 09:28:39.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-06-20 08:57:35.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:28:39[info]: [test111]수정되였습니다.:','default',NULL,'2025-06-20 00:28:39',NULL),(72,1,'Customer/Coupon','getResultFail','Undefined array key \"clientinfo_uid\"','09:28:54[debug]: Undefined array key "clientinfo_uid"','default',NULL,'2025-06-20 00:28:54',NULL),(73,1,'Customer/Coupon','getResultFail','Undefined array key \"clientinfo_uid\"','09:29:27[debug]: Undefined array key "clientinfo_uid"','default',NULL,'2025-06-20 00:29:27',NULL),(74,1,'Customer/Point','getResultFail','변경할 조건항목을 선택하셔야합니다.','09:36:08[debug]: 변경할 조건항목을 선택하셔야합니다.','default',NULL,'2025-06-20 00:36:08',NULL),(75,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:41:10[debug]: 입력내용\n09:41:10[debug]: array (\n 'name' => 'Test5555',\n 'email' => 'test555@test.co.kr',\n 'phone' => '234-234',\n 'role' => 'user,vip',\n)\n09:41:10[debug]: [5/Test5555] 입력 후 내용\n09:41:10[debug]: array (\n 'name' => 'Test5555',\n 'email' => 'test555@test.co.kr',\n 'phone' => '234-234',\n 'role' => 'user,vip',\n 'uid' => 5,\n)\n09:41:10[info]: [Test5555]생성되었습니다.:','default',NULL,'2025-06-20 00:41:10',NULL),(76,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:41:39[debug]: [5/Test5555] 변경 전 내용\n09:41:39[debug]: array (\n 'account_balance' => 10000,\n)\n09:41:39[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.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-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:39[debug]: [5/Test5555] 변경 후 내용\n09:41:39[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 10000,\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-06-20 09:41:39.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-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:39[info]: [Test5555]수정되였습니다.:\n09:41:39[debug]: 입력내용\n09:41:39[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test555',\n 'title' => 'test1',\n 'amount' => '10000',\n)\n09:41:39[debug]: [4/test1] 입력 후 내용\n09:41:39[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test555',\n 'title' => 'test1',\n 'amount' => '10000',\n 'uid' => 4,\n)\n09:41:39[info]: [test1]생성되었습니다.:','default',NULL,'2025-06-20 00:41:39',NULL),(77,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:41:56[debug]: [5/Test5555] 변경 전 내용\n09:41:56[debug]: array (\n 'account_balance' => 40000,\n)\n09:41:56[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 10000,\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-06-20 09:41:39.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-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:56[debug]: [5/Test5555] 변경 후 내용\n09:41:56[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 40000,\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-06-20 09:41:56.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-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:41:56[info]: [Test5555]수정되였습니다.:\n09:41:56[debug]: 입력내용\n09:41:56[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test2',\n 'amount' => '30000',\n)\n09:41:56[debug]: [5/test2] 입력 후 내용\n09:41:56[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test2',\n 'amount' => '30000',\n 'uid' => 5,\n)\n09:41:56[info]: [test2]생성되었습니다.:','default',NULL,'2025-06-20 00:41:56',NULL),(78,1,'Customer/Account','getResultFail','예치금[40000]이 출금액:200000보다 부족합니다.','09:42:14[debug]: 예치금[40000]이 출금액:200000보다 부족합니다.','default',NULL,'2025-06-20 00:42:14',NULL),(79,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:42:14[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:42:14',NULL),(80,1,'Customer/Account','getResultFail','예치금[40000]이 출금액:54555555보다 부족합니다.','09:43:59[debug]: 예치금[40000]이 출금액:54555555보다 부족합니다.','default',NULL,'2025-06-20 00:43:59',NULL),(81,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:43:59[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:43:59',NULL),(82,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:44:36[debug]: [5/Test5555] 변경 전 내용\n09:44:36[debug]: array (\n 'account_balance' => 484444,\n)\n09:44:36[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 40000,\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-06-20 09:41:56.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-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:44:36[debug]: [5/Test5555] 변경 후 내용\n09:44:36[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 484444,\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-06-20 09:44:36.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-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:44:36[info]: [Test5555]수정되였습니다.:\n09:44:36[debug]: 입력내용\n09:44:36[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test55555',\n 'title' => 'test3',\n 'amount' => '444444',\n)\n09:44:36[debug]: [6/test3] 입력 후 내용\n09:44:36[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test55555',\n 'title' => 'test3',\n 'amount' => '444444',\n 'uid' => 6,\n)\n09:44:36[info]: [test3]생성되었습니다.:','default',NULL,'2025-06-20 00:44:36',NULL),(83,1,'Customer/Account','getResultFail','예치금[484444]이 출금액:234234234보다 부족합니다.','09:44:54[debug]: 예치금[484444]이 출금액:234234234보다 부족합니다.','default',NULL,'2025-06-20 00:44:54',NULL),(84,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:44:54[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:44:54',NULL),(85,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:49:23[debug]: [5/Test5555] 변경 전 내용\n09:49:23[debug]: array (\n 'account_balance' => 2334718678,\n)\n09:49:23[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 484444,\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-06-20 09:44:36.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-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:49:23[debug]: [5/Test5555] 변경 후 내용\n09:49:23[debug]: array (\n 'uid' => '5',\n 'role' => 'user,vip',\n 'name' => 'Test5555',\n 'phone' => '234-234',\n 'email' => 'test555@test.co.kr',\n 'account_balance' => 2334718678,\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-06-20 09:49:23.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-06-20 09:41:10.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:49:23[info]: [Test5555]수정되였습니다.:\n09:49:23[debug]: 입력내용\n09:49:23[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test4',\n 'amount' => '2334234234',\n)\n09:49:23[debug]: [7/test4] 입력 후 내용\n09:49:23[debug]: array (\n 'clientinfo_uid' => '5',\n 'status' => 'default',\n 'alias' => 'test5555',\n 'title' => 'test4',\n 'amount' => '2334234234',\n 'uid' => 7,\n)\n09:49:23[info]: [test4]생성되었습니다.:','default',NULL,'2025-06-20 00:49:23',NULL),(86,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:51:01[debug]: 입력내용\n09:51:01[debug]: array (\n 'name' => 'Test666',\n 'email' => 'test666@test.co.kr',\n 'phone' => '234234',\n 'role' => 'user,reseller',\n)\n09:51:01[debug]: [6/Test666] 입력 후 내용\n09:51:01[debug]: array (\n 'name' => 'Test666',\n 'email' => 'test666@test.co.kr',\n 'phone' => '234234',\n 'role' => 'user,reseller',\n 'uid' => 6,\n)\n09:51:01[info]: [Test666]생성되었습니다.:','default',NULL,'2025-06-20 00:51:01',NULL),(87,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:51:46[debug]: [6/Test666] 변경 전 내용\n09:51:46[debug]: array (\n 'account_balance' => 10000,\n)\n09:51:46[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.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-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:46[debug]: [6/Test666] 변경 후 내용\n09:51:46[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10000,\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-06-20 09:51:46.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-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:46[info]: [Test666]수정되였습니다.:\n09:51:46[debug]: 입력내용\n09:51:46[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test1',\n 'amount' => '10000',\n)\n09:51:46[debug]: [8/test1] 입력 후 내용\n09:51:46[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test1',\n 'amount' => '10000',\n 'uid' => 8,\n)\n09:51:46[info]: [test1]생성되었습니다.:','default',NULL,'2025-06-20 00:51:46',NULL),(88,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','09:51:59[debug]: [6/Test666] 변경 전 내용\n09:51:59[debug]: array (\n 'account_balance' => 30000,\n)\n09:51:59[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10000,\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-06-20 09:51:46.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-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:59[debug]: [6/Test666] 변경 후 내용\n09:51:59[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 30000,\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-06-20 09:51: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-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n09:51:59[info]: [Test666]수정되였습니다.:\n09:51:59[debug]: 입력내용\n09:51:59[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test2',\n 'amount' => '20000',\n)\n09:51:59[debug]: [9/test2] 입력 후 내용\n09:51:59[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test666',\n 'title' => 'test2',\n 'amount' => '20000',\n 'uid' => 9,\n)\n09:51:59[info]: [test2]생성되었습니다.:','default',NULL,'2025-06-20 00:51:59',NULL),(89,1,'Customer/Account','getResultFail','예치금[30000]이 출금액:60000보다 부족합니다.','09:52:20[debug]: 예치금[30000]이 출금액:60000보다 부족합니다.','default',NULL,'2025-06-20 00:52:20',NULL),(90,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:52:20[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:52:20',NULL),(91,1,'Customer/Account','getResultFail','예치금[30000]이 출금액:100000000보다 부족합니다.','09:54:12[debug]: 예치금[30000]이 출금액:100000000보다 부족합니다.','default',NULL,'2025-06-20 00:54:12',NULL),(92,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:54:12[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:54:12',NULL),(93,1,'Customer/Account','getResultFail','예치금[30000]이 출금액:1000000보다 부족합니다.','09:55:20[debug]: 예치금[30000]이 출금액:1000000보다 부족합니다.','default',NULL,'2025-06-20 00:55:20',NULL),(94,1,'Customer/Account','getResultFail','Undefined array key \"status\"','09:55:20[debug]: Undefined array key "status"','default',NULL,'2025-06-20 00:55:20',NULL),(95,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:00:36[debug]: [6/Test666] 변경 전 내용\n10:00:36[debug]: array (\n 'account_balance' => 10030000,\n)\n10:00:36[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 30000,\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-06-20 09:51: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-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:00:36[debug]: [6/Test666] 변경 후 내용\n10:00:36[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10030000,\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-06-20 10:00:36.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-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:00:36[info]: [Test666]수정되였습니다.:\n10:00:36[debug]: 입력내용\n10:00:36[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test6666',\n 'title' => 'test3',\n 'amount' => '10000000',\n)\n10:00:36[debug]: [10/test3] 입력 후 내용\n10:00:36[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'default',\n 'alias' => 'Test6666',\n 'title' => 'test3',\n 'amount' => '10000000',\n 'uid' => 10,\n)\n10:00:36[info]: [test3]생성되었습니다.:','default',NULL,'2025-06-20 01:00:36',NULL),(96,1,'Customer/Account','getResultFail','예치금[10030000]이 출금액:100000000000000보다 부족합니다.','10:00:59[debug]: 예치금[10030000]이 출금액:100000000000000보다 부족합니다.','default',NULL,'2025-06-20 01:00:59',NULL),(97,1,'Customer/Account','getResultFail','Undefined array key \"status\"','10:00:59[debug]: Undefined array key "status"','default',NULL,'2025-06-20 01:00:59',NULL),(98,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:04[debug]: [JPN150/JPN150] 변경 전 내용\n10:03:04[debug]: array (\n 'status' => 'occupied',\n)\n10:03:04[debug]: array (\n 'code' => 'JPN150',\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-06-10 12:53:05.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:03:04[debug]: [JPN150/JPN150] 변경 후 내용\n10:03:04[debug]: array (\n 'code' => 'JPN150',\n 'status' => 'occupied',\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-06-20 10:03:04.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-06-10 12:53:05.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n 'clientinfo_uid' => '5',\n 'ownerinfo_uid' => '5',\n 'type' => 'alternative',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN150',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-21',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n)\n10:03:04[debug]: [4/S4] 입력 후 내용\n10:03:04[debug]: array (\n 'clientinfo_uid' => '5',\n 'ownerinfo_uid' => '5',\n 'type' => 'alternative',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN150',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-21',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n 'uid' => 4,\n)\n10:03:04[info]: [S4]생성되었습니다.:','default',NULL,'2025-06-20 01:03:04',NULL),(99,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:03:42[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:03:42',NULL),(100,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:03:42[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:03:42',NULL),(101,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:04:21[debug]: 입력내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => '19',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n)\n10:04:21[debug]: [69/IP] 입력 후 내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => 19,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n 'uid' => 69,\n)\n10:04:21[info]: [IP]생성되었습니다.:\n10:04:21[debug]: 입력내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 19,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n10:04:21[debug]: [70/IP] 입력 후 내용\n10:04:21[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 19,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 70,\n)\n10:04:21[info]: [IP]생성되었습니다.:','default',NULL,'2025-06-20 01:04:21',NULL),(102,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:07:25[debug]: 입력내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => '3',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n10:07:25[debug]: [70/IP] 입력 후 내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'IP',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 70,\n)\n10:07:25[info]: [IP]생성되었습니다.:\n10:07:25[debug]: 입력내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n10:07:25[debug]: [71/IP] 입력 후 내용\n10:07:25[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'IP',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 71,\n)\n10:07:25[info]: [IP]생성되었습니다.:','default',NULL,'2025-06-20 01:07:25',NULL),(103,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:10:03[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:10:03',NULL),(104,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:10:03[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:10:03',NULL),(105,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:10:34[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:10:34',NULL),(106,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:10:34[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:10:34',NULL),(107,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:10:51[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:10:51',NULL),(108,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:10:51[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:10:51',NULL),(109,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:11:10[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:11:10',NULL),(110,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:11:10[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:11:10',NULL),(111,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:11:35[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:11:35',NULL),(112,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:11:35[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:11:35',NULL),(113,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','10:12:23[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe item_uid field is required.','default',NULL,'2025-06-20 01:12:23',NULL),(114,1,'Customer/ServiceItem','getResultFail','Undefined array key \"billing_cycle\"','10:12:23[debug]: Undefined array key "billing_cycle"','default',NULL,'2025-06-20 01:12:23',NULL),(115,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:12:47[debug]: 입력내용\n10:12:47[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => '1',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n10:12:47[debug]: [71/STORAGE] 입력 후 내용\n10:12:47[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 71,\n)\n10:12:47[info]: [STORAGE]생성되었습니다.:\n10:12:47[debug]: 입력내용\n10:12:47[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n10:12:48[debug]: [72/STORAGE] 입력 후 내용\n10:12:48[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 72,\n)\n10:12:48[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-20 01:12:48',NULL),(116,1,'Customer/Account','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:21:03[debug]: [6/Test666] 변경 전 내용\n10:21:03[debug]: array (\n 'account_balance' => 9930000,\n)\n10:21:03[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 10030000,\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-06-20 10:01:54.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-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:21:03[debug]: [6/Test666] 변경 후 내용\n10:21:03[debug]: array (\n 'uid' => '6',\n 'role' => 'user,reseller',\n 'name' => 'Test666',\n 'phone' => '234234',\n 'email' => 'test666@test.co.kr',\n 'account_balance' => 9930000,\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-06-20 10:21:03.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-06-20 09:51:01.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:21:03[info]: [Test666]수정되였습니다.:\n10:21:03[debug]: 입력내용\n10:21:03[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'out',\n 'alias' => 'test6666',\n 'title' => 'test4',\n 'amount' => '100000',\n)\n10:21:03[debug]: [11/test4] 입력 후 내용\n10:21:03[debug]: array (\n 'clientinfo_uid' => '6',\n 'status' => 'out',\n 'alias' => 'test6666',\n 'title' => 'test4',\n 'amount' => '100000',\n 'uid' => 11,\n)\n10:21:03[info]: [test4]생성되었습니다.:','default',NULL,'2025-06-20 01:21:03',NULL),(117,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:9223372036854775807보다 부족합니다.','10:21:37[debug]: 예치금[9930000]이 출금액:9223372036854775807보다 부족합니다.','default',NULL,'2025-06-20 01:21:37',NULL),(118,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','10:22:31[debug]: 예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','default',NULL,'2025-06-20 01:22:31',NULL),(119,1,'Customer/Account','getResultFail','Undefined array key \"status\"','10:22:31[debug]: Undefined array key "status"','default',NULL,'2025-06-20 01:22:31',NULL),(120,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','11:02:00[debug]: 예치금[9930000]이 출금액:1000000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:02:00',NULL),(121,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:10000000000000보다 부족합니다.','11:02:51[debug]: 예치금[9930000]이 출금액:10000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:02:51',NULL),(122,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:10000000000000000보다 부족합니다.','11:04:40[debug]: 예치금[9930000]이 출금액:10000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:04:40',NULL),(123,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:100000000000보다 부족합니다.','11:05:22[debug]: 예치금[9930000]이 출금액:100000000000보다 부족합니다.','default',NULL,'2025-06-20 02:05:22',NULL),(124,1,'Customer/Account','getResultFail','Undefined array key \"status\"','11:05:22[debug]: Undefined array key "status"','default',NULL,'2025-06-20 02:05:22',NULL),(125,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:1000000000000000보다 부족합니다.','11:06:38[debug]: 예치금[9930000]이 출금액:1000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:06:38',NULL),(126,1,'Customer/Account','getResultFail','Undefined array key \"status\"','11:06:38[debug]: Undefined array key "status"','default',NULL,'2025-06-20 02:06:38',NULL),(127,1,'Customer/Client','getResultFail','Customer/Client 작업 데이터 검증 오류발생\nThe role field is required.','11:07:26[debug]: Customer/Client 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-06-20 02:07:26',NULL),(128,1,'Customer/Client','getResultFail','Undefined array key \"name\"','11:07:26[debug]: Undefined array key "name"','default',NULL,'2025-06-20 02:07:26',NULL),(129,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','11:12:21[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','default',NULL,'2025-06-20 02:12:21',NULL),(130,1,'User','getResultFail','Undefined array key \"id\"','11:12:21[debug]: Undefined array key "id"','default',NULL,'2025-06-20 02:12:21',NULL),(131,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','11:16:43[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','default',NULL,'2025-06-20 02:16:43',NULL),(132,1,'User','getResultFail','Undefined array key \"id\"','11:16:43[debug]: Undefined array key "id"','default',NULL,'2025-06-20 02:16:43',NULL),(133,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','11:30:13[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.','default',NULL,'2025-06-20 02:30:13',NULL),(134,1,'Customer/Account','getResultFail','예치금[9930000]이 출금액:100000000000000000보다 부족합니다.','11:31:15[debug]: 예치금[9930000]이 출금액:100000000000000000보다 부족합니다.','default',NULL,'2025-06-20 02:31:15',NULL),(135,1,'Customer/ServicePayment','getResultFail','Undefined array key \"STORAGE\"','11:34:54[debug]: Undefined array key "STORAGE"','default',NULL,'2025-06-20 02:34:54',NULL),(136,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:57:01[debug]: 입력내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n11:57:01[debug]: [72/STORAGE] 입력 후 내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 72,\n)\n11:57:01[info]: [STORAGE]생성되었습니다.:\n11:57:01[debug]: 입력내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n11:57:01[debug]: [73/STORAGE] 입력 후 내용\n11:57:01[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 73,\n)\n11:57:01[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-20 02:57:01',NULL),(137,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','12:11:36[debug]: 입력내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '10000',\n 'amount' => '5000',\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n)\n12:11:36[debug]: [73/RAM] 입력 후 내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 10000,\n 'amount' => 5000,\n 'start_at' => '2025-06-19',\n 'status' => 'default',\n 'uid' => 73,\n)\n12:11:36[info]: [RAM]생성되었습니다.:\n12:11:36[debug]: 입력내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 5000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n)\n12:11:36[debug]: [74/RAM] 입력 후 내용\n12:11:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 5000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-20',\n 'uid' => 74,\n)\n12:11:36[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-20 03:11:36',NULL),(138,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:45:04[debug]: [XP250/XP250] 변경 전 내용\n13:45:04[debug]: array (\n 'status' => 'occupied',\n)\n13:45:04[debug]: array (\n 'code' => 'XP250',\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-06-10 12:53:40.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n13:45:04[debug]: [XP250/XP250] 변경 후 내용\n13:45:04[debug]: array (\n 'code' => 'XP250',\n 'status' => 'occupied',\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-06-20 13:45:04.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-06-10 12:53:40.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n13:45:04[debug]: 입력내용\n13:45:04[debug]: array (\n 'clientinfo_uid' => '6',\n 'ownerinfo_uid' => '6',\n 'type' => 'test',\n 'location' => 'tokyo',\n 'switch' => 'R45P20',\n 'code' => 'XP250',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-06-25',\n 'start_at' => '2025-06-11',\n 'status' => 'default',\n)\n13:45:04[debug]: [5/S5] 입력 후 내용\n13:45:04[debug]: array (\n 'clientinfo_uid' => '6',\n 'ownerinfo_uid' => '6',\n 'type' => 'test',\n 'location' => 'tokyo',\n 'switch' => 'R45P20',\n 'code' => 'XP250',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-06-25',\n 'start_at' => '2025-06-11',\n 'status' => 'default',\n 'uid' => 5,\n)\n13:45:04[info]: [S5]생성되었습니다.:','default',NULL,'2025-06-20 04:45:04',NULL),(139,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:45:38[debug]: 입력내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'IP',\n 'item_uid' => '12',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '40000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:45:38[debug]: [74/IP] 입력 후 내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'IP',\n 'item_uid' => 12,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 40000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 74,\n)\n13:45:38[info]: [IP]생성되었습니다.:\n13:45:38[debug]: 입력내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'IP',\n 'item_uid' => 12,\n 'billing_cycle' => 'month',\n 'amount' => 40000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:45:38[debug]: [75/IP] 입력 후 내용\n13:45:38[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'IP',\n 'item_uid' => 12,\n 'billing_cycle' => 'month',\n 'amount' => 40000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 75,\n)\n13:45:38[info]: [IP]생성되었습니다.:','default',NULL,'2025-06-20 04:45:38',NULL),(140,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:46:07[debug]: 입력내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'LINE',\n 'item_uid' => '8',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '100000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:46:07[debug]: [75/LINE] 입력 후 내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 100000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 75,\n)\n13:46:07[info]: [LINE]생성되었습니다.:\n13:46:07[debug]: 입력내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:46:07[debug]: [76/LINE] 입력 후 내용\n13:46:07[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 76,\n)\n13:46:07[info]: [LINE]생성되었습니다.:','default',NULL,'2025-06-20 04:46:07',NULL),(141,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:46:35[debug]: 입력내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SERVER',\n 'item_uid' => '5',\n 'billing_cycle' => 'month',\n 'price' => '200000',\n 'amount' => '150000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:46:35[debug]: [76/SERVER] 입력 후 내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SERVER',\n 'item_uid' => 5,\n 'billing_cycle' => 'month',\n 'price' => 200000,\n 'amount' => 150000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 76,\n)\n13:46:35[info]: [SERVER]생성되었습니다.:\n13:46:35[debug]: 입력내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SERVER',\n 'item_uid' => 5,\n 'billing_cycle' => 'month',\n 'amount' => 150000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:46:35[debug]: [77/SERVER] 입력 후 내용\n13:46:35[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SERVER',\n 'item_uid' => 5,\n 'billing_cycle' => 'month',\n 'amount' => 150000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 77,\n)\n13:46:35[info]: [SERVER]생성되었습니다.:','default',NULL,'2025-06-20 04:46:35',NULL),(142,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:47:01[debug]: 입력내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:47:01[debug]: [77/CPU] 입력 후 내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 77,\n)\n13:47:01[info]: [CPU]생성되었습니다.:\n13:47:01[debug]: 입력내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:47:01[debug]: [78/CPU] 입력 후 내용\n13:47:01[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 78,\n)\n13:47:01[info]: [CPU]생성되었습니다.:','default',NULL,'2025-06-20 04:47:01',NULL),(143,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:47:20[debug]: 입력내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:47:20[debug]: [78/CPU] 입력 후 내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 78,\n)\n13:47:20[info]: [CPU]생성되었습니다.:\n13:47:20[debug]: 입력내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:47:20[debug]: [79/CPU] 입력 후 내용\n13:47:20[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'CPU',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 79,\n)\n13:47:20[info]: [CPU]생성되었습니다.:','default',NULL,'2025-06-20 04:47:20',NULL),(144,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:47:47[debug]: 입력내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:47:47[debug]: [79/RAM] 입력 후 내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 79,\n)\n13:47:47[info]: [RAM]생성되었습니다.:\n13:47:47[debug]: 입력내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:47:47[debug]: [80/RAM] 입력 후 내용\n13:47:47[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 80,\n)\n13:47:47[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-20 04:47:47',NULL),(145,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:48:09[debug]: 입력내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '50000',\n 'amount' => '50000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:48:09[debug]: [80/RAM] 입력 후 내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 50000,\n 'amount' => 50000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 80,\n)\n13:48:09[info]: [RAM]생성되었습니다.:\n13:48:09[debug]: 입력내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:48:09[debug]: [81/RAM] 입력 후 내용\n13:48:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 81,\n)\n13:48:09[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-20 04:48:09',NULL),(146,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:48:37[debug]: 입력내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => '1',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '100000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:48:37[debug]: [81/STORAGE] 입력 후 내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 100000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 81,\n)\n13:48:37[info]: [STORAGE]생성되었습니다.:\n13:48:37[debug]: 입력내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:48:37[debug]: [82/STORAGE] 입력 후 내용\n13:48:37[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 1,\n 'billing_cycle' => 'month',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 82,\n)\n13:48:37[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-20 04:48:37',NULL),(147,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:49:13[debug]: 입력내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SOFTWARE',\n 'item_uid' => '3',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '10000',\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n)\n13:49:13[debug]: [82/SOFTWARE] 입력 후 내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'SOFTWARE',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 10000,\n 'start_at' => '2025-06-09',\n 'status' => 'default',\n 'uid' => 82,\n)\n13:49:13[info]: [SOFTWARE]생성되었습니다.:\n13:49:13[debug]: 입력내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SOFTWARE',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n)\n13:49:13[debug]: [83/SOFTWARE] 입력 후 내용\n13:49:13[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'SOFTWARE',\n 'item_uid' => 3,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-20',\n 'uid' => 83,\n)\n13:49:13[info]: [SOFTWARE]생성되었습니다.:','default',NULL,'2025-06-20 04:49:13',NULL),(148,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:00:31[debug]: 입력내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'DEFENCE',\n 'item_uid' => '2',\n 'billing_cycle' => 'month',\n 'price' => '200000',\n 'amount' => '200000',\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n)\n11:00:31[debug]: [83/DEFENCE] 입력 후 내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'DEFENCE',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'price' => 200000,\n 'amount' => 200000,\n 'start_at' => '2025-06-20',\n 'status' => 'default',\n 'uid' => 83,\n)\n11:00:31[info]: [DEFENCE]생성되었습니다.:\n11:00:31[debug]: 입력내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'DEFENCE',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 200000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n)\n11:00:31[debug]: [84/DEFENCE] 입력 후 내용\n11:00:31[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'DEFENCE',\n 'item_uid' => 2,\n 'billing_cycle' => 'month',\n 'amount' => 200000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n 'uid' => 84,\n)\n11:00:31[info]: [DEFENCE]생성되었습니다.:','default',NULL,'2025-06-23 02:00:31',NULL),(149,1,'Customer/Service','getResultFail','Undefined variable $entity','12:20:13[debug]: Undefined variable $entity','default',NULL,'2025-06-23 03:20:13',NULL),(150,1,'Customer/Service','getResultFail','Undefined variable $cnt','12:40:57[debug]: Undefined variable $cnt','default',NULL,'2025-06-23 03:40:57',NULL),(151,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:28:36[debug]: 입력내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'LINE',\n 'item_uid' => '8',\n 'billing_cycle' => 'month',\n 'price' => '100000',\n 'amount' => '50000',\n 'start_at' => '2025-06-16',\n 'status' => 'default',\n)\n13:28:36[debug]: [84/LINE] 입력 후 내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => '4',\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'price' => 100000,\n 'amount' => 50000,\n 'start_at' => '2025-06-16',\n 'status' => 'default',\n 'uid' => 84,\n)\n13:28:36[info]: [LINE]생성되었습니다.:\n13:28:36[debug]: 입력내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-23',\n)\n13:28:36[debug]: [85/LINE] 입력 후 내용\n13:28:36[debug]: array (\n 'serviceinfo_uid' => 4,\n 'ownerinfo_uid' => 5,\n 'item_type' => 'LINE',\n 'item_uid' => 8,\n 'billing_cycle' => 'month',\n 'amount' => 50000,\n 'billing_at' => '2025-06-21',\n 'issue_at' => '2025-06-23',\n 'uid' => 85,\n)\n13:28:36[info]: [LINE]생성되었습니다.:','default',NULL,'2025-06-23 04:28:36',NULL),(152,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:31:18[debug]: 입력내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '100000',\n 'amount' => '100000',\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n)\n13:31:18[debug]: [85/STORAGE] 입력 후 내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 100000,\n 'amount' => 100000,\n 'start_at' => '2025-06-17',\n 'status' => 'default',\n 'uid' => 85,\n)\n13:31:18[info]: [STORAGE]생성되었습니다.:\n13:31:18[debug]: 입력내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n)\n13:31:18[debug]: [86/STORAGE] 입력 후 내용\n13:31:18[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'STORAGE',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 100000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-23',\n 'uid' => 86,\n)\n13:31:18[info]: [STORAGE]생성되었습니다.:','default',NULL,'2025-06-23 04:31:18',NULL),(153,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:42:00[debug]: 입력내용\n16:42:00[debug]: array (\n 'name' => 'Test777',\n 'email' => 'test777@test.co.kr',\n 'phone' => '234-234-342',\n 'role' => 'user,vip',\n)\n16:42:00[debug]: [7/Test777] 입력 후 내용\n16:42:00[debug]: array (\n 'name' => 'Test777',\n 'email' => 'test777@test.co.kr',\n 'phone' => '234-234-342',\n 'role' => 'user,vip',\n 'uid' => 7,\n)\n16:42:00[info]: [Test777]생성되었습니다.:','default',NULL,'2025-06-23 07:42:00',NULL),(154,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:09:38[debug]: [6/김은혁] 변경 전 내용\n10:09:38[debug]: array (\n 'id' => 'kim.eh',\n 'name' => '김은혁',\n 'email' => 'kim.eh@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:09:38[debug]: array (\n 'uid' => '6',\n 'id' => 'kim.eh',\n 'passwd' => '$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq',\n 'name' => '김은혁',\n 'email' => 'kim.eh@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\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' => '2023-03-24 11:23:52.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' => '2023-03-24 11:23:52.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:38[debug]: [6/김은혁] 변경 후 내용\n10:09:38[debug]: array (\n 'uid' => '6',\n 'id' => 'kim.eh',\n 'passwd' => '$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq',\n 'name' => '김은혁',\n 'email' => 'kim.eh@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\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-06-24 10:09:38.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' => '2023-03-24 11:23:52.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:38[info]: [김은혁]수정되였습니다.:','default',NULL,'2025-06-24 01:09:38',NULL),(155,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:09:47[debug]: [8/김명옥] 변경 전 내용\n10:09:47[debug]: array (\n 'id' => 'jinmingyu',\n 'name' => '김명옥',\n 'email' => 'jinmingyu@idcjp.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:09:47[debug]: array (\n 'uid' => '8',\n 'id' => 'jinmingyu',\n 'passwd' => '$2y$10$PI8WA6d/z4hDE6hxJoUhbuMH3vTTWH0Ry2Z6fTLUUpwQGaE/9bEZa',\n 'name' => '김명옥',\n 'email' => 'jinmingyu@idcjp.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\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' => '2023-07-21 15:48:39.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' => '2023-03-24 11:25:00.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:47[debug]: [8/김명옥] 변경 후 내용\n10:09:47[debug]: array (\n 'uid' => '8',\n 'id' => 'jinmingyu',\n 'passwd' => '$2y$10$PI8WA6d/z4hDE6hxJoUhbuMH3vTTWH0Ry2Z6fTLUUpwQGaE/9bEZa',\n 'name' => '김명옥',\n 'email' => 'jinmingyu@idcjp.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\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-06-24 10:09: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' => '2023-03-24 11:25:00.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:09:47[info]: [김명옥]수정되였습니다.:','default',NULL,'2025-06-24 01:09:47',NULL),(156,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:10:02[debug]: [24/고병남] 변경 전 내용\n10:10:02[debug]: array (\n 'id' => 'kobn',\n 'name' => '고병남',\n 'email' => 'ko@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:10:02[debug]: array (\n 'uid' => '24',\n 'id' => 'kobn',\n 'passwd' => '$2y$10$pWM/XFfSNeSng32sypbDX.WaR4UlM4EDkYKCQfFkYIOC7Ppg0nc5G',\n 'name' => '고병남',\n 'email' => 'ko@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\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' => '2024-10-29 15:30:19.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:02[debug]: [24/고병남] 변경 후 내용\n10:10:02[debug]: array (\n 'uid' => '24',\n 'id' => 'kobn',\n 'passwd' => '$2y$10$pWM/XFfSNeSng32sypbDX.WaR4UlM4EDkYKCQfFkYIOC7Ppg0nc5G',\n 'name' => '고병남',\n 'email' => 'ko@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\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-06-24 10:10:02.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' => '2024-10-29 15:30:19.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:02[info]: [고병남]수정되였습니다.:','default',NULL,'2025-06-24 01:10:02',NULL),(157,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:10:17[debug]: [4/김동윤] 변경 전 내용\n10:10:17[debug]: array (\n 'id' => 'kimdy',\n 'name' => '김동윤',\n 'email' => 'kimdy@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,cloudflare,security',\n)\n10:10:17[debug]: array (\n 'uid' => '4',\n 'id' => 'kimdy',\n 'passwd' => '$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC',\n 'name' => '김동윤',\n 'email' => 'kimdy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare',\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' => '2023-03-24 11:21:50.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' => '2023-03-24 11:21:50.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:17[debug]: [4/김동윤] 변경 후 내용\n10:10:17[debug]: array (\n 'uid' => '4',\n 'id' => 'kimdy',\n 'passwd' => '$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC',\n 'name' => '김동윤',\n 'email' => 'kimdy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,security',\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-06-24 10:10: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' => '2023-03-24 11:21:50.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:10:17[info]: [김동윤]수정되였습니다.:','default',NULL,'2025-06-24 01:10:17',NULL),(158,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:11:41[debug]: [5/김효영] 변경 전 내용\n10:11:41[debug]: array (\n 'id' => 'kimhy',\n 'name' => '김효영',\n 'email' => 'khy@prime-idc.jp',\n 'mobile' => '',\n 'role' => 'manager,security,director',\n)\n10:11:41[debug]: array (\n 'uid' => '5',\n 'id' => 'kimhy',\n 'passwd' => '$2y$10$.yEKVqY.F7HoSOZijl4uyeulUtfAQ4EDRiyR2JpgFYBuKw.mZoZvG',\n 'name' => '김효영',\n 'email' => 'khy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,cloudflare,director',\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' => '2023-03-24 11:23:18.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' => '2023-03-24 11:23:18.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:11:41[debug]: [5/김효영] 변경 후 내용\n10:11:41[debug]: array (\n 'uid' => '5',\n 'id' => 'kimhy',\n 'passwd' => '$2y$10$.yEKVqY.F7HoSOZijl4uyeulUtfAQ4EDRiyR2JpgFYBuKw.mZoZvG',\n 'name' => '김효영',\n 'email' => 'khy@prime-idc.jp',\n 'mobile' => NULL,\n 'role' => 'manager,security,director',\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-06-24 10:11:41.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' => '2023-03-24 11:23:18.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n)\n10:11:41[info]: [김효영]수정되였습니다.:','default',NULL,'2025-06-24 01:11:41',NULL),(159,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:20:09[debug]: 입력내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '0',\n 'amount' => '10000',\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n)\n13:20:09[debug]: [86/RAM] 입력 후 내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 0,\n 'amount' => 10000,\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n 'uid' => 86,\n)\n13:20:09[info]: [RAM]생성되었습니다.:\n13:20:09[debug]: 입력내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'default',\n)\n13:20:09[debug]: [87/RAM] 입력 후 내용\n13:20:09[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 10000,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'default',\n 'uid' => 87,\n)\n13:20:09[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-25 04:20:09',NULL),(160,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:22:33[debug]: 입력내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '0',\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n)\n13:22:33[debug]: [87/RAM] 입력 후 내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 0,\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n 'uid' => 87,\n)\n13:22:33[info]: [RAM]생성되었습니다.:\n13:22:33[debug]: 입력내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'paid',\n)\n13:22:33[debug]: [88/RAM] 입력 후 내용\n13:22:33[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'status' => 'paid',\n 'uid' => 88,\n)\n13:22:33[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-25 04:22:33',NULL),(161,1,'Customer/ServiceItem','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:30:04[debug]: 입력내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => '2',\n 'billing_cycle' => 'onetime',\n 'price' => '10000',\n 'amount' => '0',\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n)\n13:30:04[debug]: [88/RAM] 입력 후 내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => '5',\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'price' => 10000,\n 'amount' => 0,\n 'start_at' => '2025-06-24',\n 'status' => 'default',\n 'uid' => 88,\n)\n13:30:04[info]: [RAM]생성되었습니다.:\n13:30:04[debug]: 입력내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'user_uid' => '1',\n 'status' => 'paid',\n)\n13:30:04[debug]: [89/RAM] 입력 후 내용\n13:30:04[debug]: array (\n 'serviceinfo_uid' => 5,\n 'ownerinfo_uid' => 6,\n 'item_type' => 'RAM',\n 'item_uid' => 2,\n 'billing_cycle' => 'onetime',\n 'amount' => 0,\n 'billing_at' => '2025-06-25',\n 'issue_at' => '2025-06-25',\n 'user_uid' => 1,\n 'status' => 'paid',\n 'uid' => 89,\n)\n13:30:04[info]: [RAM]생성되었습니다.:','default',NULL,'2025-06-25 04:30:04',NULL),(162,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','18:40:18[debug]: 입력내용\n18:40:18[debug]: array (\n 'name' => 'Test8888',\n 'email' => 'test8888@co.kr',\n 'phone' => '00000-23423-3434',\n 'role' => 'user,vip,reseller',\n)\n18:40:18[debug]: [8/Test8888] 입력 후 내용\n18:40:18[debug]: array (\n 'name' => 'Test8888',\n 'email' => 'test8888@co.kr',\n 'phone' => '00000-23423-3434',\n 'role' => 'user,vip,reseller',\n 'uid' => 8,\n)\n18:40:18[info]: [Test8888]생성되었습니다.:','default',NULL,'2025-06-25 09:40:18',NULL),(163,1,'Customer/Service','getResultFail','\n------App\\Models\\CommonModel::save_process 오류-----\narray (\n \'user_uid\' => \'The user_uid field is required.\',\n)\n------------------------------\n','18:41:32[debug]: [MP350/MP350] 변경 전 내용\n18:41:32[debug]: array (\n 'status' => 'occupied',\n)\n18:41:32[debug]: array (\n 'code' => 'MP350',\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-06-10 19:11:53.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-06-10 12:53:54.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:41:32[debug]: [MP350/MP350] 변경 후 내용\n18:41:32[debug]: array (\n 'code' => 'MP350',\n 'status' => 'occupied',\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-06-25 18:41:32.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-06-10 12:53:54.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:41:32[debug]: 입력내용\n18:41:32[debug]: array (\n 'clientinfo_uid' => '8',\n 'ownerinfo_uid' => '8',\n 'type' => 'test',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'MP350',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-06-26',\n 'start_at' => '2025-06-25',\n 'status' => 'default',\n)\n18:41:32[error]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'user_uid' => 'The user_uid field is required.',\n)\n------------------------------\n\n18:41:32[debug]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'user_uid' => 'The user_uid field is required.',\n)\n------------------------------\n','default',NULL,'2025-06-25 09:41:32',NULL),(164,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','18:46:24[debug]: [JPN140/JPN140] 변경 전 내용\n18:46:24[debug]: array (\n 'status' => 'occupied',\n)\n18:46:24[debug]: array (\n 'code' => 'JPN140',\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-06-10 17:11:11.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-06-10 12:52:49.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:46:24[debug]: [JPN140/JPN140] 변경 후 내용\n18:46:24[debug]: array (\n 'code' => 'JPN140',\n 'status' => 'occupied',\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-06-25 18:46:24.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-06-10 12:52:49.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n 'clientinfo_uid' => '8',\n 'ownerinfo_uid' => '8',\n 'type' => 'test',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN140',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-26',\n 'start_at' => '2025-06-25',\n 'status' => 'default',\n 'user_uid' => '1',\n)\n18:46:24[debug]: [6/S6] 입력 후 내용\n18:46:24[debug]: array (\n 'clientinfo_uid' => '8',\n 'ownerinfo_uid' => '8',\n 'type' => 'test',\n 'location' => 'default',\n 'switch' => 'R45P20',\n 'code' => 'JPN140',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-06-26',\n 'start_at' => '2025-06-25',\n 'status' => 'default',\n 'user_uid' => 1,\n 'uid' => 6,\n)\n18:46:24[info]: [S6]생성되었습니다.:','default',NULL,'2025-06-25 09:46:24',NULL),(165,1,'Customer/Service','getResultFail','Undefined array key \"unPaids\"','18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Customer/Service',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '18:46:24[debug]: [JPN140/JPN140] 변경 전 내용\n18:46:24[debug]: array (\n \\'status\\' => \\'occupied\\',\n)\n18:46:24[debug]: array (\n \\'code\\' => \\'JPN140\\',\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-06-10 17:11:11.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-06-10 12:52:49.000000\\',\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'deleted_at\\' => NULL,\n)\n18:46:24[debug]: [JPN140/JPN140] 변경 후 내용\n18:46:24[debug]: array (\n \\'code\\' => \\'JPN140\\',\n \\'status\\' => \\'occupied\\',\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-06-25 18:46:24.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-06-10 12:52:49.000000\\',\n \\'timezone_type\\' => 3,\n \\'timezone\\' => \\'Asia/Seoul\\',\n )),\n \\'deleted_at\\' => NULL,\n)\n18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n \\'clientinfo_uid\\' => \\'8\\',\n \\'ownerinfo_uid\\' => \\'8\\',\n \\'type\\' => \\'test\\',\n \\'location\\' => \\'default\\',\n \\'switch\\' => \\'R45P20\\',\n \\'code\\' => \\'JPN140\\',\n \\'raid\\' => \\'RAID1\\',\n \\'billing_at\\' => \\'2025-06-26\\',\n \\'start_at\\' => \\'2025-06-25\\',\n \\'status\\' => \\'default\\',\n \\'user_uid\\' => \\'1\\',\n)\n18:46:24[debug]: [6/S6] 입력 후 내용\n18:46:24[debug]: array (\n \\'clientinfo_uid\\' => \\'8\\',\n \\'ownerinfo_uid\\' => \\'8\\',\n \\'type\\' => \\'test\\',\n \\'location\\' => \\'default\\',\n \\'switch\\' => \\'R45P20\\',\n \\'code\\' => \\'JPN140\\',\n \\'raid\\' => \\'RAID1\\',\n \\'billing_at\\' => \\'2025-06-26\\',\n \\'start_at\\' => \\'2025-06-25\\',\n \\'status\\' => \\'default\\',\n \\'user_uid\\' => 1,\n \\'uid\\' => 6,\n)\n18:46:24[info]: [S6]생성되었습니다.:',\n)\n18:46:24[debug]: [164/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n18:46:24[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Customer/Service',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '18:46:24[debug]: [JPN140/JPN140] 변경 전 내용\n18:46:24[debug]: array (\n &#039;status&#039; =&gt; &#039;occupied&#039;,\n)\n18:46:24[debug]: array (\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n &#039;updated_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-10 17:11:11.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;created_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-10 12:52:49.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;deleted_at&#039; =&gt; NULL,\n)\n18:46:24[debug]: [JPN140/JPN140] 변경 후 내용\n18:46:24[debug]: array (\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;status&#039; =&gt; &#039;occupied&#039;,\n &#039;updated_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-25 18:46:24.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;created_at&#039; =&gt; \n \\\\CodeIgniter\\\\I18n\\\\Time::__set_state(array(\n &#039;timezone&#039; =&gt; \n \\\\DateTimeZone::__set_state(array(\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;locale&#039; =&gt; &#039;en&#039;,\n &#039;toStringFormat&#039; =&gt; &#039;yyyy-MM-dd HH:mm:ss&#039;,\n &#039;date&#039; =&gt; &#039;2025-06-10 12:52:49.000000&#039;,\n &#039;timezone_type&#039; =&gt; 3,\n &#039;timezone&#039; =&gt; &#039;Asia/Seoul&#039;,\n )),\n &#039;deleted_at&#039; =&gt; NULL,\n)\n18:46:24[debug]: 입력내용\n18:46:24[debug]: array (\n &#039;clientinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;ownerinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;type&#039; =&gt; &#039;test&#039;,\n &#039;location&#039; =&gt; &#039;default&#039;,\n &#039;switch&#039; =&gt; &#039;R45P20&#039;,\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;raid&#039; =&gt; &#039;RAID1&#039;,\n &#039;billing_at&#039; =&gt; &#039;2025-06-26&#039;,\n &#039;start_at&#039; =&gt; &#039;2025-06-25&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n &#039;user_uid&#039; =&gt; &#039;1&#039;,\n)\n18:46:24[debug]: [6/S6] 입력 후 내용\n18:46:24[debug]: array (\n &#039;clientinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;ownerinfo_uid&#039; =&gt; &#039;8&#039;,\n &#039;type&#039; =&gt; &#039;test&#039;,\n &#039;location&#039; =&gt; &#039;default&#039;,\n &#039;switch&#039; =&gt; &#039;R45P20&#039;,\n &#039;code&#039; =&gt; &#039;JPN140&#039;,\n &#039;raid&#039; =&gt; &#039;RAID1&#039;,\n &#039;billing_at&#039; =&gt; &#039;2025-06-26&#039;,\n &#039;start_at&#039; =&gt; &#039;2025-06-25&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n &#039;user_uid&#039; =&gt; 1,\n &#039;uid&#039; =&gt; 6,\n)\n18:46:24[info]: [S6]생성되었습니다.:',\n 'uid' => 164,\n)\n18:46:24[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n18:46:24[debug]: Undefined array key "unPaids"','default',NULL,'2025-06-25 09:46:24',NULL),(166,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe code field is required.','18:47:21[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe code field is required.','default',NULL,'2025-06-25 09:47:21',NULL),(167,1,'Customer/Service','getResultFail','Undefined array key \"unPaids\"','18:47:53[debug]: Undefined array key "unPaids"','default',NULL,'2025-06-25 09:47:53',NULL),(168,1,'Auth/Local','getResultSuccess','작업이 성공적으로 완료되었습니다.','','default',NULL,'2025-06-26 00:31:48',NULL),(169,1,'Auth/Local','getResultSuccess','작업이 성공적으로 완료되었습니다.','','default',NULL,'2025-06-26 00:32:45',NULL),(170,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:03:04[debug]: [65a01dea-f50d-44c3-a516-a65b30e853f3/65a01dea-f50d-44c3-a516-a65b30e853f3] 입력 후 내용\n10:03:04[debug]: array (\n 'code' => '65a01dea-f50d-44c3-a516-a65b30e853f3',\n 'status' => 'default',\n)\n10:03:04[info]: [65a01dea-f50d-44c3-a516-a65b30e853f3]생성되었습니다.:','default',NULL,'2025-06-26 01:03:04',NULL),(171,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:03:04[debug]: [65a01dea-f50d-44c3-a516-a65b30e853f3/65a01dea-f50d-44c3-a516-a65b30e853f3] 입력 후 내용\n10:03:04[debug]: array (\n \\'code\\' => \\'65a01dea-f50d-44c3-a516-a65b30e853f3\\',\n \\'status\\' => \\'default\\',\n)\n10:03:04[info]: [65a01dea-f50d-44c3-a516-a65b30e853f3]생성되었습니다.:',\n)\n10:03:04[debug]: [170/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:03:04[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:04[debug]: 입력내용\n10:03:04[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:04[debug]: [65a01dea-f50d-44c3-a516-a65b30e853f3/65a01dea-f50d-44c3-a516-a65b30e853f3] 입력 후 내용\n10:03:04[debug]: array (\n &#039;code&#039; =&gt; &#039;65a01dea-f50d-44c3-a516-a65b30e853f3&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:04[info]: [65a01dea-f50d-44c3-a516-a65b30e853f3]생성되었습니다.:',\n 'uid' => 170,\n)\n10:03:04[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:03:04[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:03:04',NULL),(172,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:03:06[debug]: [a795d951-6cd5-4fa7-9704-1c7acf51e010/a795d951-6cd5-4fa7-9704-1c7acf51e010] 입력 후 내용\n10:03:06[debug]: array (\n 'code' => 'a795d951-6cd5-4fa7-9704-1c7acf51e010',\n 'status' => 'default',\n)\n10:03:06[info]: [a795d951-6cd5-4fa7-9704-1c7acf51e010]생성되었습니다.:','default',NULL,'2025-06-26 01:03:06',NULL),(173,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:03:06[debug]: [a795d951-6cd5-4fa7-9704-1c7acf51e010/a795d951-6cd5-4fa7-9704-1c7acf51e010] 입력 후 내용\n10:03:06[debug]: array (\n \\'code\\' => \\'a795d951-6cd5-4fa7-9704-1c7acf51e010\\',\n \\'status\\' => \\'default\\',\n)\n10:03:06[info]: [a795d951-6cd5-4fa7-9704-1c7acf51e010]생성되었습니다.:',\n)\n10:03:06[debug]: [172/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:03:06[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:06[debug]: 입력내용\n10:03:06[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:06[debug]: [a795d951-6cd5-4fa7-9704-1c7acf51e010/a795d951-6cd5-4fa7-9704-1c7acf51e010] 입력 후 내용\n10:03:06[debug]: array (\n &#039;code&#039; =&gt; &#039;a795d951-6cd5-4fa7-9704-1c7acf51e010&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:06[info]: [a795d951-6cd5-4fa7-9704-1c7acf51e010]생성되었습니다.:',\n 'uid' => 172,\n)\n10:03:06[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:03:06[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:03:06',NULL),(174,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:03:17[debug]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81/5311a375-0ad9-4807-89f7-ab69f0b2ac81] 입력 후 내용\n10:03:17[debug]: array (\n 'code' => '5311a375-0ad9-4807-89f7-ab69f0b2ac81',\n 'status' => 'default',\n)\n10:03:17[info]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81]생성되었습니다.:','default',NULL,'2025-06-26 01:03:17',NULL),(175,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:03:17[debug]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81/5311a375-0ad9-4807-89f7-ab69f0b2ac81] 입력 후 내용\n10:03:17[debug]: array (\n \\'code\\' => \\'5311a375-0ad9-4807-89f7-ab69f0b2ac81\\',\n \\'status\\' => \\'default\\',\n)\n10:03:17[info]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81]생성되었습니다.:',\n)\n10:03:17[debug]: [174/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:03:17[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:03:17[debug]: 입력내용\n10:03:17[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:17[debug]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81/5311a375-0ad9-4807-89f7-ab69f0b2ac81] 입력 후 내용\n10:03:17[debug]: array (\n &#039;code&#039; =&gt; &#039;5311a375-0ad9-4807-89f7-ab69f0b2ac81&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:03:17[info]: [5311a375-0ad9-4807-89f7-ab69f0b2ac81]생성되었습니다.:',\n 'uid' => 174,\n)\n10:03:17[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:03:17[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:03:17',NULL),(176,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n10:04:18[debug]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f/78425a9f-7744-4f6e-8ba5-4673ccbe8e4f] 입력 후 내용\n10:04:18[debug]: array (\n 'code' => '78425a9f-7744-4f6e-8ba5-4673ccbe8e4f',\n 'status' => 'default',\n)\n10:04:18[info]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f]생성되었습니다.:','default',NULL,'2025-06-26 01:04:18',NULL),(177,1,'Equipment/Switch','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n \\'code\\' => \\'R35P10\\',\n \\'status\\' => \\'default\\',\n)\n10:04:18[debug]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f/78425a9f-7744-4f6e-8ba5-4673ccbe8e4f] 입력 후 내용\n10:04:18[debug]: array (\n \\'code\\' => \\'78425a9f-7744-4f6e-8ba5-4673ccbe8e4f\\',\n \\'status\\' => \\'default\\',\n)\n10:04:18[info]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f]생성되었습니다.:',\n)\n10:04:18[debug]: [176/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:04:18[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Switch',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:04:18[debug]: 입력내용\n10:04:18[debug]: array (\n &#039;code&#039; =&gt; &#039;R35P10&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:04:18[debug]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f/78425a9f-7744-4f6e-8ba5-4673ccbe8e4f] 입력 후 내용\n10:04:18[debug]: array (\n &#039;code&#039; =&gt; &#039;78425a9f-7744-4f6e-8ba5-4673ccbe8e4f&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:04:18[info]: [78425a9f-7744-4f6e-8ba5-4673ccbe8e4f]생성되었습니다.:',\n 'uid' => 176,\n)\n10:04:18[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:04:18[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:04:18',NULL),(178,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n 'code' => 'ZEN100',\n 'status' => 'default',\n)\n10:05:43[debug]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80/b46f1bad-9c39-4c16-8344-ce3afe67fc80] 입력 후 내용\n10:05:43[debug]: array (\n 'code' => 'b46f1bad-9c39-4c16-8344-ce3afe67fc80',\n 'status' => 'default',\n)\n10:05:43[info]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80]생성되었습니다.:','default',NULL,'2025-06-26 01:05:43',NULL),(179,1,'Equipment/Code','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Code',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n \\'code\\' => \\'ZEN100\\',\n \\'status\\' => \\'default\\',\n)\n10:05:43[debug]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80/b46f1bad-9c39-4c16-8344-ce3afe67fc80] 입력 후 내용\n10:05:43[debug]: array (\n \\'code\\' => \\'b46f1bad-9c39-4c16-8344-ce3afe67fc80\\',\n \\'status\\' => \\'default\\',\n)\n10:05:43[info]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80]생성되었습니다.:',\n)\n10:05:43[debug]: [178/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n10:05:43[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'Equipment/Code',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '10:05:43[debug]: 입력내용\n10:05:43[debug]: array (\n &#039;code&#039; =&gt; &#039;ZEN100&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:05:43[debug]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80/b46f1bad-9c39-4c16-8344-ce3afe67fc80] 입력 후 내용\n10:05:43[debug]: array (\n &#039;code&#039; =&gt; &#039;b46f1bad-9c39-4c16-8344-ce3afe67fc80&#039;,\n &#039;status&#039; =&gt; &#039;default&#039;,\n)\n10:05:43[info]: [b46f1bad-9c39-4c16-8344-ce3afe67fc80]생성되었습니다.:',\n 'uid' => 178,\n)\n10:05:43[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n10:05:43[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-06-26 01:05:43',NULL),(180,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:03:46[debug]: 입력내용\n11:03:46[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n)\n11:03:46[debug]: [1/R35P10] 입력 후 내용\n11:03:46[debug]: array (\n 'code' => 'R35P10',\n 'status' => 'default',\n 'uid' => 1,\n)\n11:03:46[info]: [R35P10]생성되었습니다.:','default',NULL,'2025-06-26 02:03:46',NULL),(181,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:01[debug]: 입력내용\n11:04:01[debug]: array (\n 'code' => 'R45P10',\n 'status' => 'default',\n)\n11:04:01[debug]: [2/R45P10] 입력 후 내용\n11:04:01[debug]: array (\n 'code' => 'R45P10',\n 'status' => 'default',\n 'uid' => 2,\n)\n11:04:01[info]: [R45P10]생성되었습니다.:','default',NULL,'2025-06-26 02:04:01',NULL),(182,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:15[debug]: 입력내용\n11:04:15[debug]: array (\n 'code' => 'R45P20',\n 'status' => 'default',\n)\n11:04:15[debug]: [3/R45P20] 입력 후 내용\n11:04:15[debug]: array (\n 'code' => 'R45P20',\n 'status' => 'default',\n 'uid' => 3,\n)\n11:04:15[info]: [R45P20]생성되었습니다.:','default',NULL,'2025-06-26 02:04:15',NULL),(183,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:31[debug]: 입력내용\n11:04:31[debug]: array (\n 'code' => 'ZEN100',\n 'status' => 'default',\n)\n11:04:31[debug]: [1/ZEN100] 입력 후 내용\n11:04:31[debug]: array (\n 'code' => 'ZEN100',\n 'status' => 'default',\n 'uid' => 1,\n)\n11:04:31[info]: [ZEN100]생성되었습니다.:','default',NULL,'2025-06-26 02:04:31',NULL),(184,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:04:44[debug]: 입력내용\n11:04:44[debug]: array (\n 'code' => 'JPN-R420',\n 'status' => 'default',\n)\n11:04:44[debug]: [2/JPN-R420] 입력 후 내용\n11:04:44[debug]: array (\n 'code' => 'JPN-R420',\n 'status' => 'default',\n 'uid' => 2,\n)\n11:04:44[info]: [JPN-R420]생성되었습니다.:','default',NULL,'2025-06-26 02:04:44',NULL),(185,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:00[debug]: 입력내용\n11:05:00[debug]: array (\n 'code' => 'XEON-T249',\n 'status' => 'default',\n)\n11:05:00[debug]: [3/XEON-T249] 입력 후 내용\n11:05:00[debug]: array (\n 'code' => 'XEON-T249',\n 'status' => 'default',\n 'uid' => 3,\n)\n11:05:00[info]: [XEON-T249]생성되었습니다.:','default',NULL,'2025-06-26 02:05:00',NULL),(186,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:10[debug]: 입력내용\n11:05:10[debug]: array (\n 'code' => 'I3-T453',\n 'status' => 'default',\n)\n11:05:10[debug]: [4/I3-T453] 입력 후 내용\n11:05:10[debug]: array (\n 'code' => 'I3-T453',\n 'status' => 'default',\n 'uid' => 4,\n)\n11:05:10[info]: [I3-T453]생성되었습니다.:','default',NULL,'2025-06-26 02:05:10',NULL),(187,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:22[debug]: 입력내용\n11:05:22[debug]: array (\n 'code' => 'I5-Z343',\n 'status' => 'default',\n)\n11:05:22[debug]: [5/I5-Z343] 입력 후 내용\n11:05:22[debug]: array (\n 'code' => 'I5-Z343',\n 'status' => 'default',\n 'uid' => 5,\n)\n11:05:22[info]: [I5-Z343]생성되었습니다.:','default',NULL,'2025-06-26 02:05:22',NULL),(188,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:34[debug]: 입력내용\n11:05:34[debug]: array (\n 'code' => 'I7-TXR2',\n 'status' => 'default',\n)\n11:05:34[debug]: [6/I7-TXR2] 입력 후 내용\n11:05:34[debug]: array (\n 'code' => 'I7-TXR2',\n 'status' => 'default',\n 'uid' => 6,\n)\n11:05:34[info]: [I7-TXR2]생성되었습니다.:','default',NULL,'2025-06-26 02:05:34',NULL),(189,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:05:46[debug]: 입력내용\n11:05:46[debug]: array (\n 'code' => 'I9-XT432',\n 'status' => 'default',\n)\n11:05:46[debug]: [7/I9-XT432] 입력 후 내용\n11:05:46[debug]: array (\n 'code' => 'I9-XT432',\n 'status' => 'default',\n 'uid' => 7,\n)\n11:05:46[info]: [I9-XT432]생성되었습니다.:','default',NULL,'2025-06-26 02:05:46',NULL),(190,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:06:03[debug]: 입력내용\n11:06:03[debug]: array (\n 'code' => 'M3456',\n 'status' => 'default',\n)\n11:06:03[debug]: [8/M3456] 입력 후 내용\n11:06:03[debug]: array (\n 'code' => 'M3456',\n 'status' => 'default',\n 'uid' => 8,\n)\n11:06:03[info]: [M3456]생성되었습니다.:','default',NULL,'2025-06-26 02:06:03',NULL),(191,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe codeinfo_uid field is required.','11:33:36[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe codeinfo_uid field is required.','default',NULL,'2025-06-26 02:33:36',NULL),(192,1,'Customer/Service','getResultFail','Undefined variable $ntity','13:01:40[debug]: Undefined variable $ntity','default',NULL,'2025-06-26 04:01:40',NULL),(193,1,'Customer/Service','getResultFail','Undefined variable $ntity','13:01:46[debug]: Undefined variable $ntity','default',NULL,'2025-06-26 04:01:46',NULL),(194,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:12:42[debug]: 입력내용\n13:12:42[debug]: array (\n 'code' => 'R30P24',\n 'status' => 'default',\n)\n13:12:42[debug]: [4/R30P24] 입력 후 내용\n13:12:42[debug]: array (\n 'code' => 'R30P24',\n 'status' => 'default',\n 'uid' => 4,\n)\n13:12:42[info]: [R30P24]생성되었습니다.:','default',NULL,'2025-06-26 04:12:42',NULL),(195,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:12:53[debug]: 입력내용\n13:12:53[debug]: array (\n 'code' => 'R30P14',\n 'status' => 'default',\n)\n13:12:53[debug]: [5/R30P14] 입력 후 내용\n13:12:53[debug]: array (\n 'code' => 'R30P14',\n 'status' => 'default',\n 'uid' => 5,\n)\n13:12:53[info]: [R30P14]생성되었습니다.:','default',NULL,'2025-06-26 04:12:53',NULL),(196,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:02[debug]: 입력내용\n13:13:02[debug]: array (\n 'code' => 'R20P21',\n 'status' => 'default',\n)\n13:13:02[debug]: [6/R20P21] 입력 후 내용\n13:13:02[debug]: array (\n 'code' => 'R20P21',\n 'status' => 'default',\n 'uid' => 6,\n)\n13:13:02[info]: [R20P21]생성되었습니다.:','default',NULL,'2025-06-26 04:13:02',NULL),(197,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:16[debug]: 입력내용\n13:13:16[debug]: array (\n 'code' => 'R12P10',\n 'status' => 'default',\n)\n13:13:16[debug]: [7/R12P10] 입력 후 내용\n13:13:16[debug]: array (\n 'code' => 'R12P10',\n 'status' => 'default',\n 'uid' => 7,\n)\n13:13:16[info]: [R12P10]생성되었습니다.:','default',NULL,'2025-06-26 04:13:16',NULL),(198,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:26[debug]: 입력내용\n13:13:26[debug]: array (\n 'code' => 'R07P10',\n 'status' => 'default',\n)\n13:13:26[debug]: [8/R07P10] 입력 후 내용\n13:13:26[debug]: array (\n 'code' => 'R07P10',\n 'status' => 'default',\n 'uid' => 8,\n)\n13:13:26[info]: [R07P10]생성되었습니다.:','default',NULL,'2025-06-26 04:13:26',NULL),(199,1,'Equipment/Switch','getResultSuccess','작업이 성공적으로 완료되었습니다.','13:13:42[debug]: 입력내용\n13:13:42[debug]: array (\n 'code' => 'R44P10',\n 'status' => 'default',\n)\n13:13:42[debug]: [9/R44P10] 입력 후 내용\n13:13:42[debug]: array (\n 'code' => 'R44P10',\n 'status' => 'default',\n 'uid' => 9,\n)\n13:13:42[info]: [R44P10]생성되었습니다.:','default',NULL,'2025-06-26 04:13:42',NULL),(200,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:57:53[debug]: 입력내용\n14:57:53[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항1',\n 'description' => '',\n)\n14:57:53[debug]: [1/test777특이사항1] 입력 후 내용\n14:57:53[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항1',\n 'uid' => 1,\n)\n14:57:53[info]: [test777특이사항1]생성되었습니다.:','default',NULL,'2025-06-26 05:57:53',NULL),(201,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:58:04[debug]: 입력내용\n14:58:04[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항2',\n 'description' => '',\n)\n14:58:04[debug]: [2/test777특이사항2] 입력 후 내용\n14:58:04[debug]: array (\n 'clientinfo_uid' => '7',\n 'title' => 'test777특이사항2',\n 'uid' => 2,\n)\n14:58:04[info]: [test777특이사항2]생성되었습니다.:','default',NULL,'2025-06-26 05:58:04',NULL),(202,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:58:26[debug]: 입력내용\n14:58:26[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항1',\n 'description' => '',\n)\n14:58:26[debug]: [3/test444특이사항1] 입력 후 내용\n14:58:26[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항1',\n 'uid' => 3,\n)\n14:58:26[info]: [test444특이사항1]생성되었습니다.:','default',NULL,'2025-06-26 05:58:26',NULL),(203,1,'Customer/ClientHistory','getResultSuccess','작업이 성공적으로 완료되었습니다.','14:58:35[debug]: 입력내용\n14:58:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항2',\n 'description' => '',\n)\n14:58:35[debug]: [4/test444특이사항2] 입력 후 내용\n14:58:35[debug]: array (\n 'clientinfo_uid' => '4',\n 'title' => 'test444특이사항2',\n 'uid' => 4,\n)\n14:58:35[info]: [test444특이사항2]생성되었습니다.:','default',NULL,'2025-06-26 05:58:35',NULL),(204,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','11:27:18[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','default',NULL,'2025-06-30 02:27:18',NULL),(205,1,'Customer/Service','getResultFail','Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','11:27:56[debug]: Customer/Service 작업 데이터 검증 오류발생\nThe switchinfo_uid field is required.','default',NULL,'2025-06-30 02:27:56',NULL),(206,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:36:21[debug]: [3/S3] 변경 전 내용\n11:36:21[debug]: array (\n 'clientinfo_uid' => '4',\n 'ownerinfo_uid' => '4',\n 'type' => 'dedicated',\n 'location' => 'default',\n 'switchinfo_uid' => '6',\n 'codeinfo_uid' => '7',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-07-14',\n 'start_at' => '2025-06-04',\n 'status' => 'default',\n 'user_uid' => '1',\n)\n11:36:21[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'ownerinfo_uid' => '4',\n 'user_uid' => 1,\n 'switchinfo_uid' => '6',\n 'codeinfo_uid' => '7',\n 'location' => 'default',\n 'type' => 'dedicated',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-07-18',\n 'start_at' => '2025-06-04',\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-06-26 13:14:37.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-06-11 17:20:37.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:21[debug]: [3/S3] 변경 후 내용\n11:36:21[debug]: array (\n 'uid' => '3',\n 'clientinfo_uid' => '4',\n 'ownerinfo_uid' => '4',\n 'user_uid' => 1,\n 'switchinfo_uid' => '6',\n 'codeinfo_uid' => '7',\n 'location' => 'default',\n 'type' => 'dedicated',\n 'raid' => 'RAID5',\n 'billing_at' => '2025-07-14',\n 'start_at' => '2025-06-04',\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-06-30 11:36:21.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-06-11 17:20:37.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:21[info]: [S3]수정되였습니다.:','default',NULL,'2025-06-30 02:36:21',NULL),(207,1,'Customer/Service','getResultSuccess','작업이 성공적으로 완료되었습니다.','11:36:42[debug]: [1/S1] 변경 전 내용\n11:36:42[debug]: array (\n 'clientinfo_uid' => '1',\n 'ownerinfo_uid' => '1',\n 'type' => 'defence',\n 'location' => 'tokyo',\n 'switchinfo_uid' => '9',\n 'codeinfo_uid' => '8',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-07-22',\n 'start_at' => '2025-06-02',\n 'status' => 'default',\n 'user_uid' => '1',\n)\n11:36:42[debug]: array (\n 'uid' => '1',\n 'clientinfo_uid' => '1',\n 'ownerinfo_uid' => '1',\n 'user_uid' => 1,\n 'switchinfo_uid' => '9',\n 'codeinfo_uid' => '8',\n 'location' => 'tokyo',\n 'type' => 'defence',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-07-18',\n 'start_at' => '2025-06-02',\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-06-26 13:14:55.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-06-02 12:37:30.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:42[debug]: [1/S1] 변경 후 내용\n11:36:42[debug]: array (\n 'uid' => '1',\n 'clientinfo_uid' => '1',\n 'ownerinfo_uid' => '1',\n 'user_uid' => 1,\n 'switchinfo_uid' => '9',\n 'codeinfo_uid' => '8',\n 'location' => 'tokyo',\n 'type' => 'defence',\n 'raid' => 'RAID1',\n 'billing_at' => '2025-07-22',\n 'start_at' => '2025-06-02',\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-06-30 11:36:42.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-06-02 12:37:30.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n11:36:42[info]: [S1]수정되였습니다.:','default',NULL,'2025-06-30 02:36:42',NULL),(208,1,'Customer/Service','getResultFail','Undefined array key \"entity\"','10:10:14[debug]: Undefined array key "entity"','default',NULL,'2025-07-01 01:10:14',NULL),(209,1,'Customer/Service','getResultFail','Uninitialized string offset 8','10:16:16[debug]: Uninitialized string offset 8','default',NULL,'2025-07-01 01:16:16',NULL),(210,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n 'id' => 'test1234',\n 'passwd' => '1234',\n 'confirmpassword' => '1234',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare,firewall,security,director,master',\n)\n15:05:11[debug]: [43/test1234] 입력 후 내용\n15:05:11[debug]: array (\n 'id' => 'test1234',\n 'passwd' => '$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K',\n 'confirmpassword' => '$2y$10$gEzC/vDJ9s0rPMe0zl0HFu3N2R7PkDHBC1xlH6gPBj2CYZKe4RHDG',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare,firewall,security,director,master',\n 'uid' => 43,\n)\n15:05:11[info]: [test1234]생성되었습니다.:','default',NULL,'2025-07-01 06:05:11',NULL),(211,1,'User','getResultFail','Undefined array key \"mast\"','15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'User',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n \\'id\\' => \\'test1234\\',\n \\'passwd\\' => \\'1234\\',\n \\'confirmpassword\\' => \\'1234\\',\n \\'name\\' => \\'test1234\\',\n \\'email\\' => \\'test@gmail.com\\',\n \\'mobile\\' => \\'0434434327\\',\n \\'role\\' => \\'manager,cloudflare,firewall,security,director,master\\',\n)\n15:05:11[debug]: [43/test1234] 입력 후 내용\n15:05:11[debug]: array (\n \\'id\\' => \\'test1234\\',\n \\'passwd\\' => \\'$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K\\',\n \\'confirmpassword\\' => \\'$2y$10$gEzC/vDJ9s0rPMe0zl0HFu3N2R7PkDHBC1xlH6gPBj2CYZKe4RHDG\\',\n \\'name\\' => \\'test1234\\',\n \\'email\\' => \\'test@gmail.com\\',\n \\'mobile\\' => \\'0434434327\\',\n \\'role\\' => \\'manager,cloudflare,firewall,security,director,master\\',\n \\'uid\\' => 43,\n)\n15:05:11[info]: [test1234]생성되었습니다.:',\n)\n15:05:11[debug]: [210/작업이 성공적으로 완료되었습니다.] 입력 후 내용\n15:05:11[debug]: array (\n 'user_uid' => '1',\n 'class_name' => 'User',\n 'method_name' => 'getResultSuccess',\n 'title' => '작업이 성공적으로 완료되었습니다.',\n 'content' => '15:05:11[debug]: 입력내용\n15:05:11[debug]: array (\n &#039;id&#039; =&gt; &#039;test1234&#039;,\n &#039;passwd&#039; =&gt; &#039;1234&#039;,\n &#039;confirmpassword&#039; =&gt; &#039;1234&#039;,\n &#039;name&#039; =&gt; &#039;test1234&#039;,\n &#039;email&#039; =&gt; &#039;test@gmail.com&#039;,\n &#039;mobile&#039; =&gt; &#039;0434434327&#039;,\n &#039;role&#039; =&gt; &#039;manager,cloudflare,firewall,security,director,master&#039;,\n)\n15:05:11[debug]: [43/test1234] 입력 후 내용\n15:05:11[debug]: array (\n &#039;id&#039; =&gt; &#039;test1234&#039;,\n &#039;passwd&#039; =&gt; &#039;$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K&#039;,\n &#039;confirmpassword&#039; =&gt; &#039;$2y$10$gEzC/vDJ9s0rPMe0zl0HFu3N2R7PkDHBC1xlH6gPBj2CYZKe4RHDG&#039;,\n &#039;name&#039; =&gt; &#039;test1234&#039;,\n &#039;email&#039; =&gt; &#039;test@gmail.com&#039;,\n &#039;mobile&#039; =&gt; &#039;0434434327&#039;,\n &#039;role&#039; =&gt; &#039;manager,cloudflare,firewall,security,director,master&#039;,\n &#039;uid&#039; =&gt; 43,\n)\n15:05:11[info]: [test1234]생성되었습니다.:',\n 'uid' => 210,\n)\n15:05:11[info]: [작업이 성공적으로 완료되었습니다.]생성되었습니다.:\n15:05:11[debug]: Undefined array key "mast"','default',NULL,'2025-07-01 06:05:11',NULL),(212,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.\nThe email field must contain a unique value.','15:05:21[debug]: User 작업 데이터 검증 오류발생\nThe id field must contain a unique value.\nThe email field must contain a unique value.','default',NULL,'2025-07-01 06:05:21',NULL),(213,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','15:09:31[debug]: [43/test1234] 변경 전 내용\n15:09:31[debug]: array (\n 'id' => 'test1234',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare',\n)\n15:09:31[debug]: array (\n 'uid' => '43',\n 'id' => 'test1234',\n 'passwd' => '$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare,firewall,security,director,master',\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-07-01 15:05:11.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n15:09:31[debug]: [43/test1234] 변경 후 내용\n15:09:31[debug]: array (\n 'uid' => '43',\n 'id' => 'test1234',\n 'passwd' => '$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K',\n 'name' => 'test1234',\n 'email' => 'test@gmail.com',\n 'mobile' => '0434434327',\n 'role' => 'manager,cloudflare',\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-07-01 15:09:31.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-07-01 15:05:11.000000',\n 'timezone_type' => 3,\n 'timezone' => 'Asia/Seoul',\n )),\n 'deleted_at' => NULL,\n)\n15:09:31[info]: [test1234]수정되였습니다.:','default',NULL,'2025-07-01 06:09:31',NULL),(214,1,'User','getResultFail','Undefined array key \"filter_optons\"','15:47:00[debug]: Undefined array key "filter_optons"','default',NULL,'2025-07-01 06:47:00',NULL),(215,1,'User','getResultFail','Undefined array key \"filter_optons\"','15:48:31[debug]: Undefined array key "filter_optons"','default',NULL,'2025-07-01 06:48:31',NULL),(216,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','15:48:53[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-01 06:48:53',NULL),(217,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','08:59:02[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-01 23:59:02',NULL),(218,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','13:19:14[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 04:19:14',NULL),(219,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','13:20:53[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 04:20:53',NULL),(220,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:05:25[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:05:25',NULL),(221,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:20:59[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:20:59',NULL),(222,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:21:08[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:21:08',NULL),(223,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:23:25[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:23:25',NULL),(224,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:23:32[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:23:32',NULL),(225,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:26:24[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:26:24',NULL),(226,1,'User','getResultFail','User 작업 데이터 검증 오류발생\nThe role field is required.','16:26:34[debug]: User 작업 데이터 검증 오류발생\nThe role field is required.','default',NULL,'2025-07-02 07:26:34',NULL),(227,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:48:04[info]: [최준흠]수정되였습니다.:','default',NULL,'2025-07-02 07:48:04',NULL),(228,1,'User','getResultFail','\n------App\\Models\\CommonModel::save_process 오류-----\narray (\n \'CodeIgniter\\\\Database\\\\MySQLi\\\\Connection\' => \'Duplicate entry \\\'cho.jh\\\' for key \\\'UQ_id\\\'\',\n)\n------------------------------\n','16:51:06[debug]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'CodeIgniter\\\\Database\\\\MySQLi\\\\Connection' => 'Duplicate entry \\'cho.jh\\' for key \\'UQ_id\\'',\n)\n------------------------------\n\n16:51:06[debug]: \n------App\\Models\\CommonModel::save_process 오류-----\narray (\n 'CodeIgniter\\\\Database\\\\MySQLi\\\\Connection' => 'Duplicate entry \\'cho.jh\\' for key \\'UQ_id\\'',\n)\n------------------------------\n','default',NULL,'2025-07-02 07:51:06',NULL),(229,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:51:24[info]: [최준흠111]수정되였습니다.:','default',NULL,'2025-07-02 07:51:24',NULL),(230,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','16:53:46[info]: [최준흠]수정되였습니다.:','default',NULL,'2025-07-02 07:53:46',NULL),(231,1,'User','getResultFail','변경할 조건항목을 선택하셔야합니다.','16:58:24[debug]: 변경할 조건항목을 선택하셔야합니다.','default',NULL,'2025-07-02 07:58:24',NULL),(232,1,'User','getResultFail','action이 정의되지 않았습니다.','16:58:33[debug]: action이 정의되지 않았습니다.','default',NULL,'2025-07-02 07:58:33',NULL),(233,1,'User','getResultFail','action이 정의되지 않았습니다.','16:58:43[debug]: action이 정의되지 않았습니다.','default',NULL,'2025-07-02 07:58:43',NULL),(234,1,'Equipment/Part/Domain','getResultFail','Invalid file: \"templates/admin/form_content_top.php\"','17:31:11[debug]: Invalid file: "templates/admin/form_content_top.php"','default',NULL,'2025-07-03 08:31:11',NULL),(235,1,'Customer/ServiceItem','getResultFail','Invalid file: \"admin/popup/create_form.php\"','17:40:02[debug]: Invalid file: "admin/popup/create_form.php"','default',NULL,'2025-07-03 08:40:02',NULL),(236,1,'User','getResultFail','Invalid file: \"admin/profile_modify_form.php\"','17:51:07[debug]: Invalid file: "admin/profile_modify_form.php"','default',NULL,'2025-07-03 08:51:07',NULL),(237,1,'Equipment/Part/Domain','getResultFail','Equipment/Part/Domain 작업 데이터 검증 오류발생\n올바른 도메인 형식이 아닙니다.','13:20:45[debug]: Equipment/Part/Domain 작업 데이터 검증 오류발생\n올바른 도메인 형식이 아닙니다.','default',NULL,'2025-07-04 04:20:45',NULL),(238,1,'Equipment/Part/Domain','getResultFail','foreach() argument must be of type array|object, string given','16:59:49[debug]: foreach() argument must be of type array|object, string given','default',NULL,'2025-07-04 07:59:49',NULL),(239,1,'Equipment/Code','getResultSuccess','작업이 성공적으로 완료되었습니다.','17:14:09[info]: [P23-AC23]생성되었습니다.:','default',NULL,'2025-07-04 08:14:09',NULL),(240,1,'Equipment/Part/Domain','getResultSuccess','작업이 성공적으로 완료되었습니다.','18:29:39[info]: [test1.co.kr]생성되었습니다.:\n18:29:39[info]: [test2.co.kr]생성되었습니다.:','default',NULL,'2025-07-04 09:29:39',NULL),(241,1,'Equipment/Part/Domain','getResultFail','Invalid file: \"admin/domain/create.php\"','18:33:29[info]: [test1.co.kr]생성되었습니다.:\n18:33:29[info]: [test2.co.kr]생성되었습니다.:\n18:33:29[debug]: Invalid file: "admin/domain/create.php"','default',NULL,'2025-07-04 09:33:29',NULL),(242,1,'Equipment/Part/Domain','getResultFail','App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','09:47:32[debug]: App\\Services\\CommonService::getEntity에서 해당 정보가 존재하지 않습니다','default',NULL,'2025-07-07 00:47:32',NULL),(243,1,'Customer/ServiceItem','getResultFail','Customer/ServiceItem 작업 데이터 검증 오류발생\nThe serviceinfo_uid field is required.','10:15:25[debug]: Customer/ServiceItem 작업 데이터 검증 오류발생\nThe serviceinfo_uid field is required.','default',NULL,'2025-07-07 01:15:25',NULL),(244,1,'User','getResultSuccess','작업이 성공적으로 완료되었습니다.','19:09:55[info]: [최준흠]수정되였습니다.:','default',NULL,'2025-07-07 10:09:55',NULL),(245,1,'Customer/Client','getResultSuccess','작업이 성공적으로 완료되었습니다.','19:20:13[info]: [게임윙]수정되였습니다.:','default',NULL,'2025-07-07 10:20:13',NULL);
|
|
/*!40000 ALTER TABLE `logger` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `paymentinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `paymentinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `paymentinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`invoiceinfo_uid` int(11) NOT NULL,
|
|
`alias` varchar(50) NOT NULL COMMENT '결제자명',
|
|
`type` varchar(20) NOT NULL COMMENT '결제방식',
|
|
`amount` int(11) NOT NULL DEFAULT 0 COMMENT '결제금액',
|
|
`paid_at` date DEFAULT NULL COMMENT '결제일',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
PRIMARY KEY (`uid`),
|
|
KEY `FK_invoiceinfo_TO_paymentinfo` (`invoiceinfo_uid`),
|
|
CONSTRAINT `FK_invoiceinfo_TO_paymentinfo` FOREIGN KEY (`invoiceinfo_uid`) REFERENCES `invoiceinfo` (`uid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='결제정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `paymentinfo`
|
|
--
|
|
|
|
LOCK TABLES `paymentinfo` WRITE;
|
|
/*!40000 ALTER TABLE `paymentinfo` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `paymentinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `pointinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `pointinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `pointinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`clientinfo_uid` int(11) NOT NULL,
|
|
`title` varchar(255) NOT NULL,
|
|
`amount` 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(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
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 COMMENT='포인트정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `pointinfo`
|
|
--
|
|
|
|
LOCK TABLES `pointinfo` WRITE;
|
|
/*!40000 ALTER TABLE `pointinfo` DISABLE KEYS */;
|
|
INSERT INTO `pointinfo` VALUES (1,3,'5월포인트입금',100000,'default',NULL,'2025-05-29 06:10:41',NULL),(2,3,'5월포인트출금',50000,'out',NULL,'2025-05-29 06:10:55',NULL);
|
|
/*!40000 ALTER TABLE `pointinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `raminfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `raminfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `raminfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`model` varchar(50) NOT NULL,
|
|
`status` varchar(20) NOT NULL DEFAULT 'default',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_model` (`model`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='RAM 정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `raminfo`
|
|
--
|
|
|
|
LOCK TABLES `raminfo` WRITE;
|
|
/*!40000 ALTER TABLE `raminfo` DISABLE KEYS */;
|
|
INSERT INTO `raminfo` VALUES (1,'ECC 2G','default',NULL,'2025-06-02 07:53:26',NULL),(2,'ECC 4G','default',NULL,'2025-06-02 07:53:40',NULL),(3,'ECC 8G','default',NULL,'2025-06-02 07:54:04',NULL),(4,'ECC 16G','default',NULL,'2025-06-02 07:54:18',NULL),(5,'ECC 32G','default',NULL,'2025-06-02 07:54:36',NULL);
|
|
/*!40000 ALTER TABLE `raminfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `serverinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `serverinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `serverinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`model` varchar(50) NOT NULL,
|
|
`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(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_uid` (`uid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='서버정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `serverinfo`
|
|
--
|
|
|
|
LOCK TABLES `serverinfo` WRITE;
|
|
/*!40000 ALTER TABLE `serverinfo` DISABLE KEYS */;
|
|
INSERT INTO `serverinfo` VALUES (3,'HP DL360 Gen 6',NULL,'default',NULL,'2025-06-02 03:27:07',NULL),(4,'HP DL360 Gen 7',NULL,'default',NULL,'2025-06-02 03:28:06',NULL),(5,'HP DL360 Gen 8',NULL,'default',NULL,'2025-06-02 03:28:35',NULL),(6,'3,4,5세대 PC',NULL,'default',NULL,'2025-06-02 03:29:22',NULL),(7,'6,7,8세대 PC',NULL,'default',NULL,'2025-06-02 03:29:55',NULL),(8,'12,13,14세대 MiniPC',NULL,'default','2025-06-03 03:27:21','2025-06-02 03:30:31',NULL),(9,'HP DL360 Gen 9',NULL,'default','2025-06-03 03:27:07','2025-06-02 08:36:15',NULL);
|
|
/*!40000 ALTER TABLE `serverinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `serviceinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `serviceinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `serviceinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`clientinfo_uid` int(11) NOT NULL,
|
|
`ownerinfo_uid` int(11) NOT NULL,
|
|
`user_uid` int(11) NOT NULL COMMENT '관리자정보',
|
|
`switchinfo_uid` int(11) NOT NULL COMMENT 'switch코드',
|
|
`codeinfo_uid` int(11) NOT NULL COMMENT 'server코드',
|
|
`location` varchar(20) DEFAULT NULL,
|
|
`type` varchar(20) NOT NULL,
|
|
`raid` varchar(20) NOT NULL,
|
|
`billing_at` date NOT NULL COMMENT '청구일',
|
|
`start_at` date NOT NULL COMMENT '시작일',
|
|
`status` varchar(20) NOT NULL DEFAULT 'default' COMMENT '상태',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
KEY `FK_clientinfo_TO_serviceinfo` (`clientinfo_uid`),
|
|
KEY `FK_user_TO_serviceinfo` (`user_uid`),
|
|
CONSTRAINT `FK_clientinfo_TO_serviceinfo` FOREIGN KEY (`clientinfo_uid`) REFERENCES `clientinfo` (`uid`),
|
|
CONSTRAINT `FK_user_TO_serviceinfo` FOREIGN KEY (`user_uid`) REFERENCES `user` (`uid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='서비스정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `serviceinfo`
|
|
--
|
|
|
|
LOCK TABLES `serviceinfo` WRITE;
|
|
/*!40000 ALTER TABLE `serviceinfo` DISABLE KEYS */;
|
|
INSERT INTO `serviceinfo` VALUES (1,1,1,1,9,8,'tokyo','defence','RAID1','2025-07-22','2025-06-02','default','2025-06-30 02:36:42','2025-06-02 03:37:30',NULL),(2,2,3,1,8,6,'default','default','default','2025-07-18','2025-06-04','default','2025-06-26 04:15:32','2025-06-09 08:23:13',NULL),(3,4,4,1,6,7,'default','dedicated','RAID5','2025-07-14','2025-06-04','default','2025-06-30 02:36:21','2025-06-11 08:20:37',NULL),(4,5,7,1,5,4,'default','alternative','RAID1','2025-06-21','2025-06-19','default','2025-06-26 04:15:09','2025-06-20 01:03:04',NULL),(5,6,6,1,1,3,'tokyo','test','RAID5','2025-06-25','2025-06-20','default','2025-06-26 04:07:07','2025-06-20 04:45:04',NULL),(6,8,8,1,2,1,'default','test','RAID1','2025-07-26','2025-06-25','default','2025-06-26 04:06:56','2025-06-25 09:46:24',NULL);
|
|
/*!40000 ALTER TABLE `serviceinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `serviceinfo_history`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `serviceinfo_history`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `serviceinfo_history` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`serviceinfo_uid` int(11) NOT NULL,
|
|
`title` varchar(255) NOT NULL,
|
|
`description` text DEFAULT NULL,
|
|
`status` varchar(20) NOT NULL DEFAULT 'default' COMMENT '상태',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
KEY `FK_serviceinfo_TO_serviceinfo_history` (`serviceinfo_uid`),
|
|
CONSTRAINT `FK_serviceinfo_TO_serviceinfo_history` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='서비스정보_history';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `serviceinfo_history`
|
|
--
|
|
|
|
LOCK TABLES `serviceinfo_history` WRITE;
|
|
/*!40000 ALTER TABLE `serviceinfo_history` DISABLE KEYS */;
|
|
INSERT INTO `serviceinfo_history` VALUES (1,2,'히스토리1111','<p>히스토리1111<br>히스토리1111</p>','default',NULL,'2025-06-10 02:24:48',NULL),(2,2,'히스토리222','<p>히스토리222<br>히스토리222</p>','default',NULL,'2025-06-10 02:25:21',NULL),(3,1,'히스토리12222','<p>히스토리12222<br>히스토리12222</p>','default',NULL,'2025-06-10 02:25:57',NULL),(4,1,'히스토리22222222','<p>히스토리22222222<br>히스토리22222222</p>','default',NULL,'2025-06-10 02:26:18',NULL),(5,2,'sadfsf',NULL,'default',NULL,'2025-06-11 01:38:31',NULL);
|
|
/*!40000 ALTER TABLE `serviceinfo_history` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `serviceinfo_items`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `serviceinfo_items`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `serviceinfo_items` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`serviceinfo_uid` int(11) NOT NULL,
|
|
`item_type` varchar(20) NOT NULL,
|
|
`item_uid` int(11) NOT NULL,
|
|
`billing_cycle` varchar(20) NOT NULL,
|
|
`price` int(11) NOT NULL DEFAULT 0 COMMENT '소비자금액',
|
|
`amount` int(11) NOT NULL DEFAULT 0 COMMENT '청구금액',
|
|
`start_at` date 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(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
KEY `FK_serviceinfo_TO_serviceinfo_items` (`serviceinfo_uid`),
|
|
CONSTRAINT `FK_serviceinfo_TO_serviceinfo_items` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=utf8 COMMENT='서비스Item정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `serviceinfo_items`
|
|
--
|
|
|
|
LOCK TABLES `serviceinfo_items` WRITE;
|
|
/*!40000 ALTER TABLE `serviceinfo_items` DISABLE KEYS */;
|
|
INSERT INTO `serviceinfo_items` VALUES (1,1,'LINE',8,'month',1000000,500000,'2025-06-11','default','2025-06-03 06:04:25','2025-06-02 07:19:58',NULL),(2,1,'IP',12,'month',50000,40000,'2025-06-13','default',NULL,'2025-06-02 07:28:27',NULL),(3,1,'IP',11,'month',50000,40000,'2025-06-13','default',NULL,'2025-06-02 07:28:57',NULL),(4,1,'SERVER',3,'month',150000,100000,'2025-06-13','default','2025-06-09 06:06:43','2025-06-02 07:35:12',NULL),(5,1,'CPU',1,'month',50000,40000,'2025-06-13','default',NULL,'2025-06-02 07:36:08',NULL),(6,1,'CPU',1,'month',50000,40000,'2025-06-20','reservation','2025-06-04 00:40:06','2025-06-02 07:36:49',NULL),(7,1,'RAM',2,'onetime',2000,2000,'2025-06-13','default',NULL,'2025-06-02 07:42:56',NULL),(8,1,'RAM',2,'onetime',2000,2000,'2025-06-13','default',NULL,'2025-06-02 07:43:27',NULL),(9,1,'STORAGE',1,'month',100000,50000,'2025-06-13','default',NULL,'2025-06-02 08:11:10',NULL),(10,1,'STORAGE',1,'onetime',100000,100000,'2025-06-25','reservation',NULL,'2025-06-02 08:11:50',NULL),(11,1,'SOFTWARE',1,'onetime',10000,10000,'2025-06-13','default',NULL,'2025-06-02 08:12:55',NULL),(12,1,'SOFTWARE',4,'month',10000,10000,'2025-06-13','default',NULL,'2025-06-02 08:13:40',NULL),(13,1,'SOFTWARE',5,'month',5000,5000,'2025-06-25','reservation',NULL,'2025-06-02 08:14:12',NULL),(14,1,'DEFENCE',3,'month',50000,50000,'2025-06-13','default',NULL,'2025-06-02 08:14:43',NULL),(15,1,'RAM',4,'onetime',4000,2000,'2025-06-20','reservation',NULL,'2025-06-03 07:12:04',NULL),(17,2,'LINE',8,'month',200000,150000,'2025-06-11','default',NULL,'2025-06-09 08:28:10',NULL),(18,2,'IP',16,'month',50000,40000,'2025-06-11','default','2025-06-09 08:38:19','2025-06-09 08:38:01',NULL),(19,2,'SERVER',5,'month',250000,200000,'2025-06-11','default',NULL,'2025-06-09 08:39:51',NULL),(20,2,'CPU',2,'month',100000,100000,'2025-06-11','default',NULL,'2025-06-09 08:40:18',NULL),(21,2,'CPU',2,'month',100000,100000,'2025-06-11','default',NULL,'2025-06-09 08:40:39',NULL),(22,2,'RAM',3,'month',5000,5000,'2025-06-11','default',NULL,'2025-06-09 08:41:15',NULL),(23,2,'RAM',3,'onetime',5000,5000,'2025-06-11','default','2025-06-10 00:33:41','2025-06-09 08:41:37',NULL),(24,2,'STORAGE',3,'onetime',150000,100000,'2025-06-11','default','2025-06-09 08:42:59','2025-06-09 08:42:10',NULL),(25,2,'STORAGE',3,'onetime',150000,100000,'2025-06-11','default',NULL,'2025-06-09 08:42:37',NULL),(26,2,'SOFTWARE',1,'month',1000,1000,'2025-06-11','default',NULL,'2025-06-09 08:43:37',NULL),(27,2,'SOFTWARE',4,'month',200000,100000,'2025-06-11','default',NULL,'2025-06-09 08:44:07',NULL),(28,2,'DOMAIN',1,'onetime',50000,40000,'2025-06-11','default',NULL,'2025-06-09 08:44:41',NULL),(62,3,'RAM',2,'onetime',10000,5000,'2025-06-11','default',NULL,'2025-06-12 03:36:55',NULL),(64,3,'RAM',2,'month',15000,10000,'2025-06-12','default',NULL,'2025-06-13 00:36:43',NULL),(65,3,'STORAGE',1,'onetime',100000,50000,'2025-06-12','default',NULL,'2025-06-13 08:38:52',NULL),(66,3,'IP',82,'month',50000,40000,'2025-06-11','default',NULL,'2025-06-16 09:03:01',NULL),(67,3,'STORAGE',1,'onetime',100000,50000,'2025-06-17','default',NULL,'2025-06-18 04:22:57',NULL),(68,3,'CPU',1,'onetime',10000,10000,'2025-06-18','default',NULL,'2025-06-18 10:05:56',NULL),(70,4,'IP',3,'onetime',100000,50000,'2025-06-20','default',NULL,'2025-06-20 01:07:25',NULL),(71,4,'STORAGE',1,'month',100000,50000,'2025-06-20','default','2025-06-20 02:56:18','2025-06-20 01:12:47',NULL),(72,4,'STORAGE',2,'month',100000,50000,'2025-06-20','default','2025-06-20 02:57:42','2025-06-20 02:57:01',NULL),(73,4,'RAM',2,'month',10000,5000,'2025-06-19','default',NULL,'2025-06-20 03:11:36',NULL),(74,5,'IP',13,'month',50000,40000,'2025-06-09','default','2025-06-25 08:45:49','2025-06-20 04:45:38',NULL),(75,5,'LINE',8,'month',100000,100000,'2025-06-09','default',NULL,'2025-06-20 04:46:07',NULL),(76,5,'SERVER',5,'month',200000,150000,'2025-06-09','default',NULL,'2025-06-20 04:46:35',NULL),(77,5,'CPU',2,'month',50000,50000,'2025-06-09','default',NULL,'2025-06-20 04:47:01',NULL),(78,5,'CPU',2,'month',50000,50000,'2025-06-09','default',NULL,'2025-06-20 04:47:20',NULL),(79,5,'RAM',2,'month',50000,50000,'2025-06-09','default',NULL,'2025-06-20 04:47:47',NULL),(80,5,'RAM',2,'month',50000,50000,'2025-06-09','default',NULL,'2025-06-20 04:48:09',NULL),(81,5,'STORAGE',1,'month',100000,100000,'2025-06-09','default',NULL,'2025-06-20 04:48:37',NULL),(82,5,'SOFTWARE',3,'onetime',10000,10000,'2025-06-09','default',NULL,'2025-06-20 04:49:13',NULL),(83,5,'DEFENCE',2,'month',200000,200000,'2025-06-20','default',NULL,'2025-06-23 02:00:31',NULL),(84,4,'LINE',8,'month',100000,50000,'2025-06-16','default',NULL,'2025-06-23 04:28:36',NULL),(85,5,'STORAGE',2,'onetime',100000,100000,'2025-06-17','default',NULL,'2025-06-23 04:31:18',NULL),(86,5,'RAM',2,'onetime',0,10000,'2025-06-24','default',NULL,'2025-06-25 04:20:09',NULL),(87,5,'RAM',2,'onetime',10000,0,'2025-06-24','default',NULL,'2025-06-25 04:22:33',NULL),(88,5,'RAM',2,'onetime',10000,0,'2025-06-24','default',NULL,'2025-06-25 04:30:04',NULL);
|
|
/*!40000 ALTER TABLE `serviceinfo_items` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `serviceinfo_payment`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `serviceinfo_payment`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `serviceinfo_payment` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`serviceinfo_uid` int(11) NOT NULL COMMENT '서비스정보',
|
|
`ownerinfo_uid` int(11) NOT NULL COMMENT '관리자정보',
|
|
`user_uid` int(11) DEFAULT NULL COMMENT '결제자정보',
|
|
`item_type` varchar(20) NOT NULL,
|
|
`item_uid` int(11) NOT NULL,
|
|
`billing_cycle` varchar(20) NOT NULL COMMENT '청구방식',
|
|
`amount` int(11) NOT NULL DEFAULT 0 COMMENT '청구금액',
|
|
`billing_at` date DEFAULT NULL COMMENT '(청구)지급기한일',
|
|
`issue_at` date 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(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
KEY `FK_serviceinfo_TO_serviceinfo_payment` (`serviceinfo_uid`),
|
|
KEY `FK_clientinfo_TO_serviceinfo_payment` (`ownerinfo_uid`),
|
|
KEY `FK_clientinfo_TO_serviceinfo_payment1` (`user_uid`),
|
|
CONSTRAINT `FK_clientinfo_TO_serviceinfo_payment` FOREIGN KEY (`ownerinfo_uid`) REFERENCES `clientinfo` (`uid`),
|
|
CONSTRAINT `FK_clientinfo_TO_serviceinfo_payment1` FOREIGN KEY (`user_uid`) REFERENCES `clientinfo` (`uid`),
|
|
CONSTRAINT `FK_serviceinfo_TO_serviceinfo_payment` FOREIGN KEY (`serviceinfo_uid`) REFERENCES `serviceinfo` (`uid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=210 DEFAULT CHARSET=utf8 COMMENT='결제정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `serviceinfo_payment`
|
|
--
|
|
|
|
LOCK TABLES `serviceinfo_payment` WRITE;
|
|
/*!40000 ALTER TABLE `serviceinfo_payment` DISABLE KEYS */;
|
|
INSERT INTO `serviceinfo_payment` VALUES (7,3,4,NULL,'IP',82,'month',40000,'2025-06-25','2025-06-16','default',NULL,'2025-06-16 09:03:01',NULL),(58,2,3,NULL,'LINE',8,'month',150000,'2025-07-18','2025-06-18','default',NULL,'2025-06-18 04:18:55',NULL),(59,2,3,NULL,'IP',16,'month',40000,'2025-07-18','2025-06-18','default',NULL,'2025-06-18 04:18:55',NULL),(60,2,3,NULL,'SERVER',5,'month',200000,'2025-07-18','2025-06-18','default',NULL,'2025-06-18 04:18:55',NULL),(61,2,3,NULL,'CPU',2,'month',100000,'2025-07-18','2025-06-18','default',NULL,'2025-06-18 04:18:55',NULL),(62,2,3,NULL,'CPU',2,'month',100000,'2025-07-18','2025-06-18','default',NULL,'2025-06-18 04:18:55',NULL),(63,2,3,NULL,'RAM',3,'month',5000,'2025-07-18','2025-06-18','default',NULL,'2025-06-18 04:18:55',NULL),(64,2,3,NULL,'SOFTWARE',1,'month',1000,'2025-07-18','2025-06-18','default',NULL,'2025-06-18 04:18:55',NULL),(65,2,3,NULL,'SOFTWARE',4,'month',100000,'2025-07-18','2025-06-18','default',NULL,'2025-06-18 04:18:55',NULL),(71,4,5,1,'IP',3,'onetime',50000,'2025-06-21','2025-06-20','paid','2025-06-20 03:02:47','2025-06-20 01:07:25',NULL),(72,4,7,NULL,'STORAGE',1,'onetime',50000,'2025-06-21','2025-06-20','default','2025-06-23 07:42:38','2025-06-20 01:12:48',NULL),(74,4,7,NULL,'RAM',2,'month',5000,'2025-06-21','2025-06-20','default','2025-06-23 07:42:38','2025-06-20 03:11:36',NULL),(75,5,6,NULL,'IP',12,'month',40000,'2025-06-25','2025-06-20','default',NULL,'2025-06-20 04:45:38',NULL),(76,5,6,NULL,'LINE',8,'month',100000,'2025-06-25','2025-06-20','default',NULL,'2025-06-20 04:46:07',NULL),(77,5,6,NULL,'SERVER',5,'month',150000,'2025-06-25','2025-06-20','default',NULL,'2025-06-20 04:46:35',NULL),(78,5,6,NULL,'CPU',2,'month',50000,'2025-06-25','2025-06-20','default',NULL,'2025-06-20 04:47:01',NULL),(79,5,6,NULL,'CPU',2,'month',50000,'2025-06-25','2025-06-20','default',NULL,'2025-06-20 04:47:20',NULL),(80,5,6,NULL,'RAM',2,'month',50000,'2025-06-25','2025-06-20','default',NULL,'2025-06-20 04:47:47',NULL),(81,5,6,NULL,'RAM',2,'month',50000,'2025-06-25','2025-06-20','default',NULL,'2025-06-20 04:48:09',NULL),(82,5,6,NULL,'STORAGE',1,'month',100000,'2025-06-25','2025-06-20','default',NULL,'2025-06-20 04:48:37',NULL),(83,5,6,NULL,'SOFTWARE',3,'onetime',10000,'2025-06-25','2025-06-20','default',NULL,'2025-06-20 04:49:13',NULL),(84,5,6,NULL,'DEFENCE',2,'month',200000,'2025-06-25','2025-06-23','default',NULL,'2025-06-23 02:00:31',NULL),(85,4,7,NULL,'LINE',8,'month',50000,'2025-06-21','2025-06-23','default','2025-06-23 07:42:38','2025-06-23 04:28:36',NULL),(86,5,6,NULL,'STORAGE',2,'onetime',100000,'2025-06-25','2025-06-23','default',NULL,'2025-06-23 04:31:18',NULL),(87,5,6,NULL,'RAM',2,'onetime',10000,'2025-06-25','2025-06-25','default',NULL,'2025-06-25 04:20:09',NULL),(88,5,6,1,'RAM',2,'onetime',0,'2025-06-25','2025-06-25','paid','2025-06-25 04:30:56','2025-06-25 04:22:33',NULL),(89,5,6,1,'RAM',2,'onetime',0,'2025-06-25','2025-06-25','paid',NULL,'2025-06-25 04:30:04',NULL);
|
|
/*!40000 ALTER TABLE `serviceinfo_payment` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `softwareinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `softwareinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `softwareinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`type` varchar(20) NOT NULL,
|
|
`model` varchar(50) NOT NULL,
|
|
`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(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_model` (`model`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='소프트웨어 정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `softwareinfo`
|
|
--
|
|
|
|
LOCK TABLES `softwareinfo` WRITE;
|
|
/*!40000 ALTER TABLE `softwareinfo` DISABLE KEYS */;
|
|
INSERT INTO `softwareinfo` VALUES (1,'Windows','Windows 2008R2 Ent',NULL,'default',NULL,'2025-05-29 07:23:17',NULL),(2,'Windows','Windows 10',NULL,'default',NULL,'2025-05-29 07:23:36',NULL),(3,'Linux','CentOS 7.9',NULL,'default',NULL,'2025-05-29 07:23:53',NULL),(4,'Security','닷디펜더',NULL,'default',NULL,'2025-05-29 07:24:14',NULL),(5,'Virus','비트디펜더',NULL,'default',NULL,'2025-05-29 07:24:36',NULL);
|
|
/*!40000 ALTER TABLE `softwareinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `storageinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `storageinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `storageinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`model` varchar(50) NOT NULL,
|
|
`status` varchar(20) NOT NULL DEFAULT 'default',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_model` (`model`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='DISK 정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `storageinfo`
|
|
--
|
|
|
|
LOCK TABLES `storageinfo` WRITE;
|
|
/*!40000 ALTER TABLE `storageinfo` DISABLE KEYS */;
|
|
INSERT INTO `storageinfo` VALUES (1,'Samsung SSD 860 256G','default',NULL,'2025-06-02 07:55:16',NULL),(2,'Samsung SSD 870 EVO 500G','default',NULL,'2025-06-02 07:55:38',NULL),(3,'Samsung SSD 870 Pro 500G','default',NULL,'2025-06-02 07:55:49',NULL);
|
|
/*!40000 ALTER TABLE `storageinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `switchinfo`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `switchinfo`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `switchinfo` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`code` varchar(20) NOT NULL COMMENT 'switch코드',
|
|
`status` varchar(20) NOT NULL DEFAULT 'default',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_code` (`code`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='스위치코드표';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `switchinfo`
|
|
--
|
|
|
|
LOCK TABLES `switchinfo` WRITE;
|
|
/*!40000 ALTER TABLE `switchinfo` DISABLE KEYS */;
|
|
INSERT INTO `switchinfo` VALUES (1,'R35P10','default','2025-06-26 04:14:55','2025-06-26 02:03:46',NULL),(2,'R45P10','occupied','2025-06-26 04:07:44','2025-06-26 02:04:01',NULL),(3,'R45P20','default','2025-06-26 04:15:07','2025-06-26 02:04:15',NULL),(4,'R30P24','default','2025-06-26 04:14:37','2025-06-26 04:12:42',NULL),(5,'R30P14','occupied','2025-06-26 04:15:07','2025-06-26 04:12:53',NULL),(6,'R20P21','occupied','2025-06-26 04:14:37','2025-06-26 04:13:02',NULL),(7,'R12P10','default','2025-06-26 04:15:32','2025-06-26 04:13:16',NULL),(8,'R07P10','occupied','2025-06-26 04:15:32','2025-06-26 04:13:26',NULL),(9,'R44P10','occupied','2025-06-26 04:14:55','2025-06-26 04:13:42',NULL);
|
|
/*!40000 ALTER TABLE `switchinfo` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `user`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `user`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `user` (
|
|
`uid` int(11) NOT NULL AUTO_INCREMENT,
|
|
`id` varchar(20) NOT NULL,
|
|
`passwd` varchar(255) NOT NULL,
|
|
`name` varchar(20) NOT NULL,
|
|
`email` varchar(50) NOT NULL,
|
|
`mobile` varchar(20) DEFAULT NULL,
|
|
`role` varchar(255) DEFAULT NULL,
|
|
`status` varchar(20) DEFAULT 'default',
|
|
`updated_at` timestamp NULL DEFAULT NULL,
|
|
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
|
PRIMARY KEY (`uid`),
|
|
UNIQUE KEY `UQ_id` (`id`),
|
|
UNIQUE KEY `UQ_email` (`email`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8 COMMENT='관리자정보';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `user`
|
|
--
|
|
|
|
LOCK TABLES `user` WRITE;
|
|
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
|
|
INSERT INTO `user` VALUES (1,'choi.jh','$2y$10$.vl2FtwJsjMNFCJJm3ISDu7m3vBB85mZ5fRQxcfI0uK/2D1e8Xora','최준흠','choi.jh@prime-idc.jp','0434434327','manager,cloudflare,firewall,security,director,master','default','2025-07-07 10:09:55','2023-03-23 06:50:04',NULL),(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',NULL),(4,'kimdy','$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC','김동윤','kimdy@prime-idc.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:10:17','2023-03-24 02:21:50',NULL),(5,'kimhy','$2y$10$.yEKVqY.F7HoSOZijl4uyeulUtfAQ4EDRiyR2JpgFYBuKw.mZoZvG','김효영','khy@prime-idc.jp',NULL,'manager,security,director','default','2025-06-24 01:11:41','2023-03-24 02:23:18',NULL),(6,'kim.eh','$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq','김은혁','kim.eh@prime-idc.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:09:38','2023-03-24 02:23:52',NULL),(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',NULL),(8,'jinmingyu','$2y$10$PI8WA6d/z4hDE6hxJoUhbuMH3vTTWH0Ry2Z6fTLUUpwQGaE/9bEZa','김명옥','jinmingyu@idcjp.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:09:47','2023-03-24 02:25:00',NULL),(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',NULL),(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',NULL),(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',NULL),(12,'yunmuj','$2y$10$zkgwGVj2JSOVIsxLe8fePe1gvWWaCemfZMktzBlrN8oLb3CKydkZC','윤무정','yunmuj@idcjp.jp',NULL,'manager,cloudflare','default','2024-06-12 00:21:07','2023-03-24 02:27:59',NULL),(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',NULL),(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',NULL),(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',NULL),(24,'kobn','$2y$10$pWM/XFfSNeSng32sypbDX.WaR4UlM4EDkYKCQfFkYIOC7Ppg0nc5G','고병남','ko@prime-idc.jp',NULL,'manager,cloudflare,security','default','2025-06-24 01:10:02','2024-10-29 06:30:19',NULL),(25,'jeong.sg','$2y$10$OzH6140JztiUEs4s/VHbPOxfxubFooqwqVhGpdFG8OJCGAFXNu546','정상구','jeong.sg@prime-idc.jp',NULL,'manager,cloudflare','default','2025-07-02 08:03:14','2025-01-23 00:29:46',NULL),(43,'test1234','$2y$10$21wlqjmdfDlIr0vAjDzs6ubIchc1DwOG61GGkZUwY7gb9GMTxA96K','test1234','test@gmail.com','0434434327','manager,cloudflare','default','2025-07-02 08:03:20','2025-07-01 06:05:11',NULL);
|
|
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|
|
-- Dump completed on 2025-07-07 19:20:28
|