vhost/app/Database/vhost_20240517.sql
2024-05-17 19:11:53 +09:00

248 lines
65 KiB
SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- MariaDB dump 10.19 Distrib 10.4.32-MariaDB, for Win64 (AMD64)
--
-- Host: localhost Database: vhost
-- ------------------------------------------------------
-- Server version 10.4.32-MariaDB
/*!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 utf8mb4 */;
/*!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 `tw_board`
--
DROP TABLE IF EXISTS `tw_board`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tw_board` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`grpno` int(10) unsigned NOT NULL DEFAULT 1 COMMENT 'Group번호: 상위가없을시 기본 uid와 같음,항상 숫자여야함',
`grporder` int(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Group순서: 상위가없을시 1부터시작',
`grpdepth` int(3) unsigned NOT NULL DEFAULT 1 COMMENT 'Group깊이: 상위가없을시 1부터시작 , 상위 grpdepth+1씩 추가필요',
`parent` int(10) unsigned DEFAULT NULL COMMENT '부모UID',
`category` varchar(20) DEFAULT NULL,
`user_uid` varchar(36) DEFAULT NULL COMMENT '작성자 정보',
`title` varchar(255) NOT NULL COMMENT '제목',
`content` text NOT NULL COMMENT '내용',
`passwd` varchar(20) DEFAULT NULL COMMENT '작성자 암호',
`board_file` varchar(255) DEFAULT NULL COMMENT '파일명',
`view_cnt` int(5) NOT NULL DEFAULT 0 COMMENT '조회수',
`status` varchar(10) NOT NULL DEFAULT 'use' COMMENT 'use: 사용, unuse: 사용않함 등등',
`updated_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `user_uid` (`user_uid`),
CONSTRAINT `tw_board_ibfk_2` FOREIGN KEY (`user_uid`) REFERENCES `tw_user` (`uid`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='게시물 정보';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tw_board`
--
LOCK TABLES `tw_board` WRITE;
/*!40000 ALTER TABLE `tw_board` DISABLE KEYS */;
INSERT INTO `tw_board` VALUES (1,1,1,1,NULL,'information','6339dc71-2551-11ee-ac52-46435bab1631','공지사항11111','<p>공지사항11111</p>\r\n<p>공지사항11111</p>\r\n<p>공지사항11111</p>\r\n<p>공지사항11111</p>\r\n<p>공지사항11111</p>',NULL,NULL,6,'use','2024-05-08 08:52:55','2024-05-06 21:56:45',NULL),(2,2,1,1,NULL,'information','6339dc71-2551-11ee-ac52-46435bab1631','공지사항1222','<p>공지사항1222</p>\r\n<p>공지사항1222</p>\r\n<p>공지사항1222</p>\r\n<p>공지사항1222</p>',NULL,'가상서버리스트.PNG||1715152363_dea5644af2a49773c896.png',7,'use','2024-05-08 09:01:59','2024-05-08 07:12:43',NULL);
/*!40000 ALTER TABLE `tw_board` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tw_category`
--
DROP TABLE IF EXISTS `tw_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tw_category` (
`uid` varchar(50) NOT NULL,
`grpno` int(10) unsigned NOT NULL DEFAULT 1 COMMENT 'Group번호: 상위가없을시 기본 uid와 같음,항상 숫자여야함',
`grporder` int(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Group순서: 상위가없을시 1부터시작',
`grpdepth` int(3) unsigned NOT NULL DEFAULT 1 COMMENT 'Group깊이: 상위가없을시 1부터시작 , 상위 grpdepth+1씩 추가필요',
`parent` varchar(50) DEFAULT NULL COMMENT '부모UID',
`name` varchar(255) NOT NULL COMMENT '범주명',
`linkurl` varchar(255) NOT NULL DEFAULT '/front/board',
`isaccess` varchar(30) NOT NULL DEFAULT 'guest' COMMENT '접근권한',
`isread` varchar(30) NOT NULL DEFAULT 'guest' COMMENT '읽기권한',
`iswrite` varchar(30) NOT NULL DEFAULT 'guest' COMMENT '쓰기권한',
`isreply` varchar(30) NOT NULL DEFAULT 'guest' COMMENT '답글권한',
`isupload` varchar(30) NOT NULL DEFAULT 'guest' COMMENT 'Upload권한',
`isdownload` varchar(30) NOT NULL DEFAULT 'guest' COMMENT 'Download권한',
`head` text DEFAULT NULL COMMENT '위 내용',
`tail` text DEFAULT NULL COMMENT '아래 내용',
`status` varchar(10) NOT NULL DEFAULT 'use' COMMENT 'use: 표시,unuse: 표시않함',
`updated_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='범주';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tw_category`
--
LOCK TABLES `tw_category` WRITE;
/*!40000 ALTER TABLE `tw_category` DISABLE KEYS */;
INSERT INTO `tw_category` VALUES ('aboutus',5,1,1,NULL,'AboutUS','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 05:58:25','2023-08-07 20:13:01',NULL),('beremetal',6,2,2,'hosting','단독서버','/front/product','guest','guest','manager','manager','manager','manager','','','use','2024-05-17 01:55:38','2023-08-09 14:59:13',NULL),('billing',4,4,2,'member','청구서','/front/billing','user','guest','guest','guest','guest','guest','','','use','2024-05-06 23:46:31','2023-08-15 18:57:16',NULL),('companyinfo',5,3,2,'aboutus','회사소개','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-07 12:31:33','2023-08-07 20:14:02',NULL),('dell',3,3,2,'serverdevice','dell','/front/product','guest','guest','manager','manager','manager','manager','','','use','2023-08-21 07:45:56','2023-08-03 15:23:10',NULL),('greeting',5,2,2,'aboutus','인사말','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-07 12:31:47','2023-08-07 20:13:45',NULL),('hosting',6,1,1,NULL,'Hosting','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 14:57:52','2023-08-09 14:57:52',NULL),('hp',3,2,2,'serverdevice','hp','/front/product','guest','guest','manager','manager','manager','manager','','','use','2023-08-15 09:27:55','2023-08-03 15:22:27',NULL),('information',1,2,2,'support','공지사항','/front/board','guest','guest','manager','manager','manager','user','','','use','2024-05-08 08:51:06','2023-08-03 15:18:30',NULL),('l2',2,3,2,'networkdevice','L2','/front/product','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 08:20:47','2023-08-03 15:20:20',NULL),('l3',2,2,2,'networkdevice','L3','/front/product','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 08:20:58','2023-08-03 15:19:51',NULL),('line',7,2,2,'service','회선','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 15:00:56','2023-08-09 15:00:56',NULL),('member',4,1,1,NULL,'회원','/front/sitepage','guest','guest','guest','guest','guest','guest',NULL,NULL,'use','2023-08-09 07:56:27','2023-08-07 19:14:22',NULL),('networkdevice',2,1,1,NULL,'네트워크구매','/front/product','guest','guest','manager','manager','manager','manager','<p>??Ȱ*?ǰ? ??</p>','<p>??Ȱ*?ǰ? ?Ʒ?</p>','use','2023-08-14 08:51:53','2023-08-03 15:16:53',NULL),('orderinfo',4,3,2,'member','주문정보','/front/order','guest','guest','guest','guest','guest','guest','','','use','2023-08-09 08:22:46','2023-08-07 19:15:00',NULL),('reference',1,3,2,'support','자료실','/front/board','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 07:30:24','2023-08-03 15:18:52',NULL),('serverdevice',3,1,1,NULL,'서버구매','/front/product','guest','guest','manager','manager','manager','manager','<p>??ǻ??*???? ??</p>','<p>??ǻ??*???? ?Ʒ?</p>','use','2023-08-14 08:50:43','2023-08-03 15:21:35',NULL),('service',7,1,1,NULL,'Service','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 07:31:56','2023-08-09 15:00:20',NULL),('support',1,1,1,NULL,'Support','/front/board','guest','guest','manager','manager','manager','manager','<p>?Խ??? ???з?</p>','<p>?Խ??? ???з?</p>','use','2023-08-07 09:29:32','2023-08-03 15:14:33',NULL),('userinfo',4,2,2,'member','사용자정보','/front/user','user','guest','guest','guest','guest','guest','','','use','2024-05-06 23:46:02','2023-08-10 01:25:05',NULL),('vpc',6,3,2,'hosting','가상서버','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 14:59:28','2023-08-09 14:59:28',NULL),('vpn',7,3,2,'service','기타서비스','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2024-05-08 01:03:46','2023-08-09 15:00:41',NULL);
/*!40000 ALTER TABLE `tw_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tw_device`
--
DROP TABLE IF EXISTS `tw_device`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tw_device` (
`uid` varchar(36) NOT NULL,
`category` varchar(20) NOT NULL COMMENT ' :server(HP,KVM,Container),cpu,memory,disk(ssd,nvme),os(linux,windows), ip ',
`name` varchar(255) NOT NULL,
`cost` int(10) unsigned NOT NULL DEFAULT 0 COMMENT '원가',
`price` int(10) unsigned NOT NULL DEFAULT 0 COMMENT '판매가',
`status` varchar(10) NOT NULL DEFAULT 'use' COMMENT 'use: 판매중 unuse: 판매중지, soldout:매진, outofstock:재고부족 등등',
`updated_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='장비 정보';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tw_device`
--
LOCK TABLES `tw_device` WRITE;
/*!40000 ALTER TABLE `tw_device` DISABLE KEYS */;
INSERT INTO `tw_device` VALUES ('0550216d-e839-003a-2458-0c7c0b3c953f','disk','NVME 2TB',300000,350000,'use','2024-05-17 00:29:24','2024-05-15 06:42:54',NULL),('0cff4819-af78-0985-0000-ac08e6cc3dc4','disk','SSD 1TB',160000,180000,'use','2024-05-17 04:27:34','2024-05-15 06:40:44',NULL),('22711cc4-09b1-0000-0005-09f2c0853f3f','os','Windows10 ent',10000,20000,'use','2024-05-16 00:03:56','2024-05-15 06:47:17',NULL),('24df1020-0412-0000-0006-954b13bcf039','cpu','Intel XEON E5530/E5540 4Core 2.4Ghz * 2개',120000,170000,'use','2024-05-17 04:27:08','2024-05-15 06:31:01',NULL),('28fc7f71-15aa-0000-0007-4250c825aa1b','disk','NVME 1TB',220000,250000,'use','2024-05-17 00:25:45','2024-05-15 06:41:24',NULL),('39cf5b5c-06a2-0000-0007-37e489605643','memory','ECC Memory 32G',180000,190000,'use','2024-05-17 00:21:32','2024-05-16 08:23:37',NULL),('4064778c-8f70-087a-0005-356a2d54061e','os','RedHat 6.x,7.x,8.x,9.x',10000,20000,'use','2024-05-16 00:03:43','2024-05-15 06:49:21',NULL),('435a66a7-ddda-1631-0000-5bfd8a2a51c5','cpu','Intel XEON E5503 4Core 2.0Ghz * 2개',100000,150000,'use','2024-05-17 02:19:34','2024-05-15 06:29:57',NULL),('486c45b7-34c0-1194-0005-aa9329a498fb','os','Ubuntu 21.x,22.x,23.x,24.x',20000,20000,'use','2024-05-16 00:03:37','2024-05-15 06:50:25',NULL),('6844f01a-991e-0000-0000-25a75c303b7d','nic','10G Intel Lancard',100000,150000,'use','2024-05-17 00:33:29','2024-05-15 06:44:00',NULL),('71d5879c-63ad-0000-0000-b11ade64996d','cpu','Intel XEON X5650 12Core 2.6Ghz * 2개',180000,200000,'use','2024-05-17 04:26:53','2024-05-17 02:22:34',NULL),('9304b342-1bf6-0000-0000-6e7261756a08','disk','SSD 256GB',100000,150000,'use','2024-05-17 00:24:48','2024-05-15 06:38:10',NULL),('9691576b-2562-000c-0a65-56c157a10271','memory','ECC Memory 16G',130000,150000,'use','2024-05-17 00:19:38','2024-05-15 06:36:46',NULL),('9d9a88ee-02c6-0000-0000-a5961d09e12d','memory','ECC Memory 4G',30000,50000,'use','2024-05-17 00:20:42','2024-05-15 06:34:31',NULL),('aff34dde-206e-0008-0000-34d48c1f95fc','cpu','Intel XEON X5560 8Core 2.8Ghz * 2개',200000,300000,'use','2024-05-17 02:21:37','2024-05-15 06:33:05',NULL),('b24509e6-a734-0000-142e-a4f1695b7ecb','publicip','공인IP 1개당',50000,80000,'use','2024-05-15 06:46:31','2024-05-15 06:46:31',NULL),('b928ac85-ea8e-0c00-0000-6cfff8996442','server','HP DL360 G8',400000,500000,'use','2024-05-17 04:31:23','2024-05-15 06:27:09',NULL),('b9a2e8bd-3a9b-0000-0000-b08f33de2a78','server','HP DL360 G6',300000,400000,'use','2024-05-17 04:31:09','2024-05-15 06:17:56',NULL),('c863dafe-f4a3-012a-0062-1413545430ad','os','Windows2008 R2',20000,40000,'use','2024-05-16 00:03:51','2024-05-15 06:48:01',NULL),('ca471228-a0a6-000f-03af-c1d6b29b0440','memory','ECC Memory 8G',60000,80000,'use','2024-05-17 00:20:29','2024-05-15 06:35:08',NULL),('cc2adbbc-3f09-0a83-0150-b6e89d01f0fc','cpu','Intel XEON E5-2690v2 20Core 3.0Ghz * 2개',300000,350000,'use','2024-05-17 04:26:22','2024-05-17 04:24:38',NULL),('d618d16b-dc01-02bb-04d0-5ce0a1fbbe61','disk','SSD 512GB',150000,170000,'use','2024-05-17 00:24:56','2024-05-15 06:39:58',NULL),('f22b3079-744a-0076-0000-92522d2a60be','server','HP DL360 G7',350000,450000,'use','2024-05-17 04:31:17','2024-05-15 06:24:42',NULL),('fbc1889b-7b35-0001-0000-c989924f9005','server','HP DL360 G9',500000,600000,'use','2024-05-17 04:31:29','2024-05-15 06:28:08',NULL);
/*!40000 ALTER TABLE `tw_device` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tw_product`
--
DROP TABLE IF EXISTS `tw_product`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tw_product` (
`uid` varchar(36) NOT NULL,
`category` varchar(20) NOT NULL COMMENT '범주_UID',
`user_uid` varchar(36) DEFAULT NULL COMMENT '생산자 정보',
`type` varchar(10) NOT NULL DEFAULT 'rental' COMMENT 'rental: 월임대, onetime:판매,일회성',
`name` varchar(255) NOT NULL COMMENT '상품명',
`photo` varchar(255) DEFAULT NULL COMMENT '상품이미지',
`cost` int(10) unsigned NOT NULL DEFAULT 0 COMMENT '원가',
`price` int(10) unsigned NOT NULL DEFAULT 0 COMMENT '판매가',
`sale` int(10) unsigned NOT NULL DEFAULT 0 COMMENT '할인가',
`stock` int(5) unsigned NOT NULL DEFAULT 1 COMMENT '재고수량',
`view_cnt` int(4) unsigned NOT NULL DEFAULT 1 COMMENT '조회수',
`content` text NOT NULL COMMENT '상품내용',
`status` varchar(10) NOT NULL DEFAULT 'use' COMMENT 'use: 판매, unuse: 판매중지, soldout:매진, outofstock:재고부족 등등',
`updated_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `user_uid` (`user_uid`),
CONSTRAINT `tw_product_ibfk_1` FOREIGN KEY (`user_uid`) REFERENCES `tw_user` (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='상품 정보';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tw_product`
--
LOCK TABLES `tw_product` WRITE;
/*!40000 ALTER TABLE `tw_product` DISABLE KEYS */;
INSERT INTO `tw_product` VALUES ('1c537597-2ef5-0425-045d-8f26ee1be61c','beremetal','6339dc71-2551-11ee-ac52-46435bab1631','rental','HP DL360 G7 보급형 ','product_img2.jpg||1715920446_a395357eca0ed080d201.jpg',850000,150000,700000,9999,1,'<p>HP DL360 G7 보급형 </p>','use','2024-05-17 04:34:06','2024-05-17 04:34:06',NULL);
/*!40000 ALTER TABLE `tw_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tw_sitepage`
--
DROP TABLE IF EXISTS `tw_sitepage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tw_sitepage` (
`uid` int(10) NOT NULL AUTO_INCREMENT,
`category` varchar(20) DEFAULT NULL,
`user_uid` varchar(36) DEFAULT NULL COMMENT '작성자 정보',
`title` varchar(255) NOT NULL COMMENT '제목',
`content` text NOT NULL COMMENT '내용',
`status` varchar(10) NOT NULL DEFAULT 'use' COMMENT 'use: 사용,\n unuse: 사용않함 등등',
`updated_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `user_uid` (`user_uid`),
CONSTRAINT `tw_sitepage_ibfk_2` FOREIGN KEY (`user_uid`) REFERENCES `tw_user` (`uid`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='사이트페이지';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tw_sitepage`
--
LOCK TABLES `tw_sitepage` WRITE;
/*!40000 ALTER TABLE `tw_sitepage` DISABLE KEYS */;
INSERT INTO `tw_sitepage` VALUES (1,'greeting','6339dc71-2551-11ee-ac52-46435bab1631','인사말','<div> </div>\r\n<p class="mgb30"><img src="../../../images/sub/sub1_1.jpg" alt="IT Solution 홈페이지를 방문하여 주신 고객 여러분께 진심으로 감사의 말씀을 드립니다." width="900" height="278"></p>\r\n<div class="greeting">\r\n<div class="col">저희 IT Solution은 고객의 원활한 서비스를 위해 끊임없는 노력과 혁신을 통해 보다 안정적인 네트워크망과 시스템구성을 만들어가고 있습니다. 정보통신 기술이 하루게 다르게 성장하고 있는 현재 저희는 각 분야별 전문 엔지니어들이 고객들의 불편사항을 365일 24시간 처리해드리고 있으며,</div>\r\n<div class="col">전 직원들은 단결하여 최고의 서비스를 제공해드리기 위해 노력하고 있습니다. 믿음과 신뢰를 바탕으로 고객들의 요구를 겸허하게 받아 들이고 항상 노력하는 자세로 고객들에게 다가갈것입니다. 고객들의 최고의 동반자가 되고자 최선의 노력을 다 할 것을 약속드립니다. 감사합니다.</div>\r\n</div>\r\n<div> </div>','use','2024-05-13 02:07:10','2024-05-06 22:53:49',NULL),(2,'companyinfo','6339dc71-2551-11ee-ac52-46435bab1631','회사소개','<p style="text-align: center;">저희 IT Solution은 고객의 원활한 서비스를 위해 <strong>끊임없는 노력과 혁신을 통해<br>보다 안정적인 네트워크망과 시스템구성</strong>을 만들어가고 있습니다.</p>\r\n<p><img style="display: block; margin-left: auto; margin-right: auto;" src="../../../images/sub/com_icon4.png" width="1045" height="286"></p>','use','2024-05-13 02:06:47','2024-05-06 23:15:23',NULL),(3,'beremetal','6339dc71-2551-11ee-ac52-46435bab1631','단독서버','<div> </div>\r\n<div class="product-cnt">\r\n<p><img src="../../../images/sub/product_img1.jpg" alt="저가형 - 보급형 HP DL360 G6" width="900" height="220"></p>\r\n<div class="col">\r\n<div class="pro-title type1">저가형</div>\r\n<div class="table01">\r\n<table><caption>저가형</caption><colgroup> <col width="120px"> <col> </colgroup>\r\n<tbody>\r\n<tr>\r\n<th>CPU</th>\r\n<td>E5503</td>\r\n</tr>\r\n<tr>\r\n<th>Core</th>\r\n<td>4core / 2.0Ghz</td>\r\n</tr>\r\n<tr>\r\n<th>RAM</th>\r\n<td>8G</td>\r\n</tr>\r\n<tr>\r\n<th>HDD</th>\r\n<td>SAS / SSD / SATA 혼합구성 가능</td>\r\n</tr>\r\n<tr>\r\n<th class="none">임대료</th>\r\n<td class="none"><strong class="text-blue"><span class="line-through">25만원</span> > 15만원</strong><span class="text-gray">(회선비 별도)</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class="col">\r\n<div class="pro-title type1">보급형</div>\r\n<div class="table01">\r\n<table><caption>보급형</caption><colgroup> <col width="120px"> <col> </colgroup>\r\n<tbody>\r\n<tr>\r\n<th>CPU</th>\r\n<td>E5530 / E5540</td>\r\n</tr>\r\n<tr>\r\n<th>Core</th>\r\n<td>4core / 2.4Ghz</td>\r\n</tr>\r\n<tr>\r\n<th>RAM</th>\r\n<td>8G</td>\r\n</tr>\r\n<tr>\r\n<th>HDD</th>\r\n<td>SAS / SSD / SATA 혼합구성 가능</td>\r\n</tr>\r\n<tr>\r\n<th class="none">임대료</th>\r\n<td class="none"><strong class="text-blue"><span class="line-through">35만원</span> > 25만원</strong><span class="text-gray">(회선비 별도)</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n<div class="product-cnt">\r\n<p><img src="../../../images/sub/product_img2.jpg" alt="고급형 HP DL360 G7" width="900" height="220"></p>\r\n<div class="col">\r\n<div class="pro-title type2">고급형 1</div>\r\n<div class="table01">\r\n<table><caption>고급형 1</caption><colgroup> <col width="120px"> <col> </colgroup>\r\n<tbody>\r\n<tr>\r\n<th>CPU</th>\r\n<td>X5560*2</td>\r\n</tr>\r\n<tr>\r\n<th>Core</th>\r\n<td>8core / 2.8Ghz</td>\r\n</tr>\r\n<tr>\r\n<th>RAM</th>\r\n<td>16G</td>\r\n</tr>\r\n<tr>\r\n<th>HDD</th>\r\n<td>SAS / SSD / SATA 혼합구성 가능</td>\r\n</tr>\r\n<tr>\r\n<th class="none">임대료</th>\r\n<td class="none"><strong class="text-blue"><span class="line-through">45만원</span> > 35만원</strong><span class="text-gray">(회선비 별도)</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class="col">\r\n<div class="pro-title type2">고급형 2</div>\r\n<div class="table01">\r\n<table><caption>고급형 2</caption><colgroup> <col width="120px"> <col> </colgroup>\r\n<tbody>\r\n<tr>\r\n<th>CPU</th>\r\n<td>X5650*2</td>\r\n</tr>\r\n<tr>\r\n<th>Core</th>\r\n<td>12core / 2.6Ghz</td>\r\n</tr>\r\n<tr>\r\n<th>RAM</th>\r\n<td>16G</td>\r\n</tr>\r\n<tr>\r\n<th>HDD</th>\r\n<td>SAS / SSD / SATA 혼합구성 가능</td>\r\n</tr>\r\n<tr>\r\n<th class="none">임대료</th>\r\n<td class="none"><strong class="text-blue"><span class="line-through">55만원</span> > 45만원</strong><span class="text-gray">(회선비 별도)</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n<div class="product-cnt">\r\n<p><img src="../../../images/sub/product_img3.jpg" alt="하이엔드 HP DL360P GEN8" width="900" height="220"></p>\r\n<div class="col">\r\n<div class="pro-title type3">하이엔드</div>\r\n<div class="table01">\r\n<table><caption>하이엔드</caption><colgroup> <col width="120px"> <col> </colgroup>\r\n<tbody>\r\n<tr>\r\n<th>CPU</th>\r\n<td>E5-2690v2*2</td>\r\n</tr>\r\n<tr>\r\n<th>Core</th>\r\n<td>20core / 3.0Ghz</td>\r\n</tr>\r\n<tr>\r\n<th>RAM</th>\r\n<td>32G</td>\r\n</tr>\r\n<tr>\r\n<th>HDD</th>\r\n<td>SAS / SSD / SATA 혼합구성 가능</td>\r\n</tr>\r\n<tr>\r\n<th class="none">임대료</th>\r\n<td class="none"><strong class="text-blue"><span class="line-through">65만원</span> > 55만원</strong><span class="text-gray">(회선비 별도)</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n<div> </div>\r\n<div> </div>\r\n<p class="mgb75"><img src="../../images/sub/sub2_1.jpg" alt=""></p>\r\n<div class="app-cnt">\r\n<div class="col inquiry">\r\n<div class="box">\r\n<div class="icon"> </div>\r\n<div class="info">언제든 문의주시면 친절하게 <br>답변해 드리겠습니다.</div>\r\n</div>\r\n</div>\r\n<div class="col type2">\r\n<div class="box">\r\n<div class="info">\r\n<dl>\r\n<dt>스카이프 <img src="../../../images/sub/sub2_1_skype.gif" alt="스카이프" width="42" height="19"></dt>\r\n<dd>webmaster@daemonidc.com</dd>\r\n</dl>\r\n</div>\r\n</div>\r\n</div>\r\n<div class="col type2">\r\n<div class="box">\r\n<div class="info">\r\n<dl>\r\n<dt>대표전화</dt>\r\n<dd>1661-0577 (365일 24시간)</dd>\r\n</dl>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div> </div>','use','2024-05-15 03:47:39','2024-05-06 23:22:32',NULL),(4,'line','6339dc71-2551-11ee-ac52-46435bab1631','회선','<div> </div>\r\n<div class="box-cnt">\r\n<h3 class="title">일반회선</h3>\r\n<div class="cnt">일반회선 서비스는 트래픽 10M 부터 최대 1G 까지 필요하신 만큼 사용하시는 서비스로 IT Solution에서 제공하는 <br>회선입니다.</div>\r\n</div>\r\n<div class="box-cnt">\r\n<h3 class="title">전용회선</h3>\r\n<div class="cnt">\r\n<p class="mgb30">고객 단독 회선 서비스로 최소 5대 이상의 서버를 이용중이신 고객을 위한 서비스로 서버외에고객이 보유하고 계신 장비를 <br>이용해 맞춤형 서비스를 제공하고 있습니다.</p>\r\n<dl>\r\n<dt>전용회선 서비스가 필요한 고객</dt>\r\n<dd>- 서버를 5대이상 사용하시는 고객</dd>\r\n<dd>- 해킹 & 보안에 신경을 쓰시는 고객</dd>\r\n<dd>- 단독 네트워크망이 필요하신 고객</dd>\r\n</dl>\r\n</div>\r\n</div>\r\n<div class="box-cnt">\r\n<h3 class="title">코로케이션</h3>\r\n<div class="cnt">\r\n<p class="mgb30">센터내부의백본망에 고객의 서버 및 네트워크 장비를 직접 연결하여 사용하시는 서비스로 고객의 서버가 입주할 로케이션을 <br>제공하는 상면서비스와 회선제공을 하는 네트워크 임대 서비스를같이 진행해드리고 있습니다.</p>\r\n<dl class="mgb30">\r\n<dt>상면서비스</dt>\r\n<dd>- 서버 & 네트워크 장비 종류 불문</dd>\r\n<dd>- 1/4 , half Rack , Full Rack 의 Location 제공</dd>\r\n</dl>\r\n<dl>\r\n<dt>네트워크 서비스</dt>\r\n<dd>- 다른 고객과 회선을 공유하는 Shared 서비스는 기본적으로 많은 트래픽을 사용하시는 고객님의경우에는 Dedicated <br>서비스 이용을 권장해드립니다.</dd>\r\n<dd>- 하나의 회선을 단독으로 사용하는 Dedicated 서비스는 다른 고객의 트래픽 영향을 받지 않기 때문에더욱 안정된 서비스를 <br>제공합니다.</dd>\r\n</dl>\r\n</div>\r\n</div>\r\n<div class="box-cnt">\r\n<h3 class="title mgb30">회선 구성도</h3>\r\n<p class="space-center"><img src="../../images/sub/sub3_1.jpg" alt=""></p>\r\n</div>\r\n<div> </div>','use','2024-05-06 23:30:16','2024-05-06 23:30:16',NULL),(5,'vpn','6339dc71-2551-11ee-ac52-46435bab1631','기타서비스','<div> </div>\r\n<div class="box-cnt">\r\n<h3 class="title">방화벽 서비스</h3>\r\n<div class="cnt">센터내 방화벽 운용으로 고객서버내 방화벽 설정이 어려우실때 센터 방화벽을 이용하여 원하시는 룰셋 조정이 가능합니다.</div>\r\n</div>\r\n<div class="box-cnt">\r\n<h3 class="title">웹방화벽 서비스</h3>\r\n<div class="cnt">웹방화벽 프로그램인 "딥파인더 (Deep Finder)" 업체와의 협약으로 보다 저렴한 가격으로 웹방화벽 이용이 가능하시며 이에 따른 해킹 사고 확률을 낮춰드리고 있습니다.</div>\r\n</div>\r\n<div class="box-cnt">\r\n<h3 class="title">우회망 서비스</h3>\r\n<div class="cnt">DDOS 공격에 의한 대량의 트래픽을 별도의 Zone으로 우회하여 서버 마비상태를 최소화 합니다. 갑작스런 DDOS 공격으로 정상적인 서비스가 어려울시 단기간에 복구가능하도록 대응해드리는 서비스입니다.</div>\r\n</div>\r\n<div class="box-cnt">\r\n<h3 class="title">도메인 구매대행</h3>\r\n<div class="cnt">고객들의 도메인 구매를 안전하고 신속하게 대행해드리고 있습니다.</div>\r\n</div>\r\n<div> </div>','use','2024-05-06 23:36:28','2024-05-06 23:36:28',NULL);
/*!40000 ALTER TABLE `tw_sitepage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tw_user`
--
DROP TABLE IF EXISTS `tw_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tw_user` (
`uid` varchar(36) NOT NULL,
`id` varchar(30) NOT NULL,
`passwd` varchar(100) NOT NULL,
`name` varchar(20) NOT NULL,
`email` varchar(50) NOT NULL,
`phone` varchar(20) DEFAULT NULL,
`mobile` varchar(20) DEFAULT NULL,
`role` varchar(255) NOT NULL DEFAULT 'user',
`status` varchar(10) NOT NULL DEFAULT 'use' COMMENT 'use: ',
`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 `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tw_user`
--
LOCK TABLES `tw_user` WRITE;
/*!40000 ALTER TABLE `tw_user` DISABLE KEYS */;
INSERT INTO `tw_user` VALUES ('5344dc5a-e478-eb94-4386-94bcb7e75f25','1234','$2y$10$Gh48iNwCHZ0gfKvLtxl2IeN53AUfmk6ckznxOUgeKn1MgPwwrdMTW','2342342','c\nhoi.jh@blessjp.com','010-9682-2313','010-9672-2344','guest,user','use','2023-08-22 14:43:59','2023-08-08 22:08:46','2023-08-22 14:43:59'),('6339dc71-2551-11ee-ac52-46435bab1631','choi.jh','$2y$10$C65GVGkyYXdLn/DzPtyaw.AuiliuwAtI36ikz0uO4dmQKmtuS37Vm','최준흠','choi.jh@prime-idc.jp','1234','1234342434','guest,user,vip,manager,cloudflare,director,master','use','2023-08-22 05:44:22','2023-07-17 15:56:38',NULL),('6339df2f-2551-11ee-ac52-46435bab163b','c\nho.jh','$2y$10$ot/aUXR/W1n4Q3dZA2dZCOxQrpVb2Bq31Y7xFQS3G6D1gtImmyBjm','조준희','cho.jh@prime-idc.jp',NULL,NULL,'cloudflare','use',NULL,'2023-07-17 15:05:00',NULL),('6339e019-2551-11ee-ac52-46435bab163b','kimdy','$2y$10$18uyn94xdprzAnt.oYZ5weAvb8rRLhkz/SdQrjEK7yuGhCr9PlUCC','김동윤','kimdy@prime-idc.jp\n',NULL,NULL,'cloudflare','use',NULL,'2023-07-17 15:56:38',NULL),('6339e0c9-2551-11ee-ac52-46435bab163b','kimhy','$2y$10$THwR6qsxg/FbekTDEJizvux7pZtMNdW\nchGDqWOETWv1uGJO33f81.','김효영','khy@prime-idc.jp','','','guest,user,vip,manager,cloudflare,director,master','use','2023-08-22 04:34:55','2023-07-17 06:00:00',NULL),('6339e175-2551-11ee-ac52-46435bab163b','kim.eh','$2y$10$YmwicI.Br4XNyGamfRADMOu.qlkwKd2fmnNkL7YIkNHGndvqYPnCq','김은혁','kim.eh@prime-i\ndc.jp',NULL,NULL,'cloudflare','use',NULL,'2023-07-17 15:56:38',NULL),('6339e1dd-2551-11ee-ac52-46435bab163b','leeph','$2y$10$lR739WzJsW6rDLgchYs7buek4B\nYeTlKHTQY60RDqRms9Io7RSY3AC','이풍호','leeph@prime-idc.jp',NULL,NULL,'cloudflare','unuse','2023-08-02 08:03:37','2023-07-17 15:56:38',NULL),('6339e237-\n2551-11ee-ac52-46435bab163','jinmingyu','$2y$10$d2oZCHaDoWPZ1Tvg4KWRR.HyfCmtO1jDsl4NYN2yzdx22Q9YqBxG2','김명옥','jinmingyu@idcjp.jp',NULL,NULL,'cloudf\nlare','use',NULL,'2023-07-17 15:56:38',NULL),('6339e290-2551-11ee-ac52-46435bab163b','kangdh','$2y$10$Drm49/bmvT0FKaj1YfNoO.m3zrJGNwBVwlcunTOA2Y7diZho3\nv9Ka','강동헌','kang.dh@idcjp.jp',NULL,NULL,'manager','use',NULL,'2023-07-17 15:56:38',NULL),('6339e314-2551-11ee-ac52-46435bab163b','yoohs','$2y$10$TG\nASk98FuZ6Ux6FDquu1aO3rztA01MCle/Vs1.3iaEMQzakAbCzJy','유혜성','yoo.hs@idcjp.jp',NULL,NULL,'cloudflare','use',NULL,'2023-07-17 15:56:38',NULL),('6339e3d\n3-2551-11ee-ac52-46435bab163','kim.yh','$2y$10$iu4/G764rldRdpT45vB3ruPmqNANmfBmafD00wcUrb942e322hZZu','김영환','kim.yh@idcjp.jp',NULL,NULL,'cloudflare\n','use',NULL,'2023-07-17 15:56:38',NULL),('6339e444-2551-11ee-ac52-46435bab163b','yunmj','$2y$10$2layK31VGSd6CbPX3yZOgejXf6.bgpDXxBcYcTWcAXwydAcP/bVP2','','yunmj@idcjp.jp',NULL,NULL,'manager','use',NULL,'2023-07-17 15:56:38',NULL),('6339e49c-2551-11ee-ac52-46435bab163b','kim.mt','$2y$10$3dfkA0oq\n4LqiJOmjbBGKe.p0Dhj/MDqjoTdw11BOPF/H2qJqnEuHO','김문태','kim.mt@idcjp.jp',NULL,NULL,'cloudflare','use',NULL,'2023-07-17 15:56:38',NULL),('6339e4f3-2551\n-11ee-ac52-46435bab163','shin.ms','$2y$10$svBZmhxeHIxeE9lv1n4fae5n4Mv0fViUQp4HciW1FIvC0oXDhaSFK','신민수','shin.ms@idcjp.jp',NULL,NULL,'cloudflare','u\nse',NULL,'2023-07-17 15:56:38',NULL),('6339e547-2551-11ee-ac52-46435bab163b','park.sm','$2y$10$H9hLWvbAjCpbUN.mv3IzgOU6Vedy5yYIOmJRGkgKsWSSJ6.jsf4d6','박선미','park.sm@idcjp.jp',NULL,NULL,'manager','use','2023-07-27 08:45:08','2023-07-17 15:56:38',NULL);
/*!40000 ALTER TABLE `tw_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 2024-05-17 19:11:00