222 lines
55 KiB
SQL
222 lines
55 KiB
SQL
-- 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_uid` varchar(50) NOT NULL COMMENT '범주_UID',
|
||
`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 `category_uid` (`category_uid`),
|
||
KEY `user_uid` (`user_uid`),
|
||
CONSTRAINT `tw_board_ibfk_1` FOREIGN KEY (`category_uid`) REFERENCES `tw_category` (`uid`),
|
||
CONSTRAINT `tw_board_ibfk_2` FOREIGN KEY (`user_uid`) REFERENCES `tw_user` (`uid`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 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,4,'use','2024-05-07 07:47:43','2024-05-07 06:56:45',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(100) NOT NULL DEFAULT '/front/board' COMMENT 'Front Link URL',
|
||
`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 14:58:25','2023-08-08 05:13:01',NULL),('beremetal',6,2,2,'hosting','단독서버','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 23:59:13','2023-08-09 23:59:13',NULL),('billing',4,4,2,'member','청구서','/front/billing','user','guest','guest','guest','guest','guest','','','use','2024-05-07 08:46:31','2023-08-16 03:57:16',NULL),('companyinfo',5,3,2,'aboutus','회사소개','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-07 21:31:33','2023-08-08 05:14:02',NULL),('dell',3,3,2,'serverdevice','dell','/front/product','guest','guest','manager','manager','manager','manager','','','use','2023-08-21 16:45:56','2023-08-04 00:23:10',NULL),('greeting',5,2,2,'aboutus','인사말','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-07 21:31:47','2023-08-08 05:13:45',NULL),('hosting',6,1,1,NULL,'Hosting','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 23:57:52','2023-08-09 23:57:52',NULL),('hp',3,2,2,'serverdevice','hp','/front/product','guest','guest','manager','manager','manager','manager','','','use','2023-08-15 18:27:55','2023-08-04 00:22:27',NULL),('information',1,2,2,'support','공지사항','/front/board','guest','guest','manager','manager','manager','user','','','use','2023-08-09 16:30:07','2023-08-04 00:18:30',NULL),('l2',2,3,2,'networkdevice','L2','/front/product','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 17:20:47','2023-08-04 00:20:20',NULL),('l3',2,2,2,'networkdevice','L3','/front/product','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 17:20:58','2023-08-04 00:19:51',NULL),('line',7,2,2,'service','회선','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-10 00:00:56','2023-08-10 00:00:56',NULL),('member',4,1,1,NULL,'회원','/front/user','guest','guest','guest','guest','guest','guest',NULL,NULL,'use','2023-08-09 16:56:27','2023-08-08 04:14:22',NULL),('networkdevice',2,1,1,NULL,'네트워크구매','/front/product','guest','guest','manager','manager','manager','manager','<p>??Ȱ*?ǰ? ??</p>','<p>??Ȱ*?ǰ? ?Ʒ?</p>','use','2023-08-14 17:51:53','2023-08-04 00:16:53',NULL),('orderinfo',4,3,2,'member','주문정보','/front/order','guest','guest','guest','guest','guest','guest','','','use','2023-08-09 17:22:46','2023-08-08 04:15:00',NULL),('reference',1,3,2,'support','자료실','/front/board','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 16:30:24','2023-08-04 00:18:52',NULL),('serverdevice',3,1,1,NULL,'서버구매','/front/product','guest','guest','manager','manager','manager','manager','<p>??ǻ??*???? ??</p>','<p>??ǻ??*???? ?Ʒ?</p>','use','2023-08-14 17:50:43','2023-08-04 00:21:35',NULL),('service',7,1,1,NULL,'Service','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 16:31:56','2023-08-10 00: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 18:29:32','2023-08-04 00:14:33',NULL),('userinfo',4,2,2,'member','사용자정보','/front/user','user','guest','guest','guest','guest','guest','','','use','2024-05-07 08:46:02','2023-08-10 10:25:05',NULL),('vpc',6,3,2,'hosting','가상서버','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 23:59:28','2023-08-09 23:59:28',NULL),('vpn',7,3,2,'service','VPN','/front/sitepage','guest','guest','manager','manager','manager','manager','','','use','2023-08-09 15:01:07','2023-08-10 00:00:41',NULL);
|
||
/*!40000 ALTER TABLE `tw_category` 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_uid` varchar(50) 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 COMMENT '원가',
|
||
`price` int(10) unsigned NOT NULL COMMENT '판매가',
|
||
`sale` int(10) unsigned NOT NULL DEFAULT 0 COMMENT '할인가',
|
||
`stock` int(5) unsigned DEFAULT 1 COMMENT '재고수량',
|
||
`view_cnt` int(4) unsigned NOT NULL DEFAULT 0 COMMENT '조회수',
|
||
`content` text NOT NULL COMMENT '상품정보',
|
||
`status` varchar(10) NOT NULL DEFAULT 'use' COMMENT 'use: 판매, unuse: 판매않함, standby: 판매준비, hold: 판매중지 soldout: 상품부족 등등',
|
||
`updated_at` timestamp NULL DEFAULT NULL,
|
||
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
||
`deleted_at` timestamp NULL DEFAULT NULL,
|
||
PRIMARY KEY (`uid`),
|
||
KEY `category_uid` (`category_uid`),
|
||
KEY `user_uid` (`user_uid`),
|
||
CONSTRAINT `tw_product_ibfk_1` FOREIGN KEY (`category_uid`) REFERENCES `tw_category` (`uid`),
|
||
CONSTRAINT `tw_product_ibfk_2` 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 */;
|
||
/*!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_uid` varchar(50) NOT NULL COMMENT '범주_UID',
|
||
`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 `category_uid` (`category_uid`),
|
||
KEY `user_uid` (`user_uid`),
|
||
CONSTRAINT `tw_sitepage_ibfk_1` FOREIGN KEY (`category_uid`) REFERENCES `tw_category` (`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>&nbsp;</div>\r\n<p class="mgb30"><img src="../../images/sub/sub1_1.jpg" alt="IT Solution 홈페이지를 방문하여 주신 고객 여러분께 진심으로 감사의 말씀을 드립니다."></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>&nbsp;</div>','use','2024-05-07 07:53:49','2024-05-07 07:53:49',NULL),(2,'companyinfo','6339dc71-2551-11ee-ac52-46435bab1631','회사소개','<p style="text-align: center;">저희 IT Solution은 고객의 원활한 서비스를 위해&nbsp;<strong>끊임없는 노력과 혁신을 통해<br>보다 안정적인 네트워크망과 시스템구성</strong>을 만들어가고 있습니다.</p>\r\n<p><img style="display: block; margin-left: auto; margin-right: auto;" src="../../images/sub/com_icon4.png"></p>','use','2024-05-07 08:15:23','2024-05-07 08:15:23',NULL),(3,'beremetal','6339dc71-2551-11ee-ac52-46435bab1631','단독서버','<div>&nbsp;</div>\r\n<div class="product-cnt">\r\n<p><img src="../../images/sub/product_img1.jpg" alt="저가형 - 보급형 HP DL360 G6"></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> &gt; 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> &gt; 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"></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> &gt; 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> &gt; 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"></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> &gt; 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>&nbsp;</div>\r\n<div>&nbsp;</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">&nbsp;</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="스카이프"></dt>\r\n<dd>itsolution-idc@outlook.kr</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>&nbsp;</div>','use','2024-05-07 08:33:31','2024-05-07 08:22:32',NULL),(4,'line','6339dc71-2551-11ee-ac52-46435bab1631','회선','<div>&nbsp;</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>- 해킹 &amp; 보안에 신경을 쓰시는 고객</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>- 서버 &amp; 네트워크 장비 종류 불문</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>&nbsp;</div>','use','2024-05-07 08:30:16','2024-05-07 08:30:16',NULL),(5,'vpn','6339dc71-2551-11ee-ac52-46435bab1631','기타서비스','<div>&nbsp;</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>&nbsp;</div>','use','2024-05-07 08:36:28','2024-05-07 08: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 23:43:59','2023-08-09 07:08:46','2023-08-22 23: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 14:44:22','2023-07-18 00: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-18 00: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-18 00: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 13:34:55','2023-07-17 15: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-18 00:56:38',NULL),('6339e1dd-2551-11ee-ac52-46435bab163b','leeph','$2y$10$lR739WzJsW6rDLgchYs7buek4B\nYeTlKHTQY60RDqRms9Io7RSY3AC','이풍호','leeph@prime-idc.jp',NULL,NULL,'cloudflare','unuse','2023-08-02 17:03:37','2023-07-18 00:56:38',NULL),('6339e237-\n2551-11ee-ac52-46435bab163','jinmingyu','$2y$10$d2oZCHaDoWPZ1Tvg4KWRR.HyfCmtO1jDsl4NYN2yzdx22Q9YqBxG2','김명옥','jinmingyu@idcjp.jp',NULL,NULL,'cloudf\nlare','use',NULL,'2023-07-18 00: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-18 00: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-18 00: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-18 00:56:38',NULL),('6339e444-2551-11ee-ac52-46435bab163b','yunmj','$2y$10$2layK31VGSd6CbPX3yZOgejXf6.bgpDXxBcYcTWcAXwydAcP/bVP2','윤','yunmj@idcjp.jp',NULL,NULL,'manager','use',NULL,'2023-07-18 00: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-18 00: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-18 00: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 17:45:08','2023-07-18 00: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-07 18:02:32
|