リビジョン 461
一人親方バージョン:最新版へアップデート
Dllを含む
trunk/ddl/InitData.SQL | ||
---|---|---|
1 |
-- |
|
2 |
-- Table structure for table `budgetsumcode` |
|
3 |
-- |
|
4 |
|
|
5 |
DROP TABLE IF EXISTS `budgetsumcode`; |
|
6 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
7 |
/*!40101 SET character_set_client = utf8 */; |
|
8 |
CREATE TABLE `budgetsumcode` ( |
|
9 |
`BlockCode` decimal(2,0) unsigned NOT NULL COMMENT '?u???b?N???', |
|
10 |
`GroupCode` decimal(2,0) unsigned NOT NULL COMMENT '?O???[?v???', |
|
11 |
`ComponentCode` decimal(5,0) unsigned NOT NULL COMMENT '?\???L?[', |
|
12 |
`ItemCode` decimal(5,0) unsigned NOT NULL COMMENT '?H??L?[', |
|
13 |
`ElementsName` varchar(100) NOT NULL COMMENT '?v?f????', |
|
14 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
15 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
16 |
PRIMARY KEY (`BlockCode`,`GroupCode`,`ComponentCode`,`ItemCode`) |
|
17 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='?\?Z???W?v?R?[?h?}?X?^'; |
|
18 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
19 |
|
|
20 |
-- |
|
21 |
-- Dumping data for table `budgetsumcode` |
|
22 |
-- |
|
23 |
|
|
24 |
LOCK TABLES `budgetsumcode` WRITE; |
|
25 |
/*!40000 ALTER TABLE `budgetsumcode` DISABLE KEYS */; |
|
26 |
INSERT INTO `budgetsumcode` VALUES (1,0,1,0,'???????H????i????????j?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,2,0,'???H????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,3,0,'???z?H????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,4,0,'?d?C????H????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,5,0,'?@?B????H????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,6,0,'????????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,7,0,'???????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,18,0,'???????????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(2,1,18,0,'???????????@?????????D?H???p','2018-05-24 09:41:36','2018-05-24 09:41:36'),(3,2,7,0,'???????@?????????D?H???p','2018-09-29 10:12:43','2018-09-29 10:12:43'),(3,2,8,0,'???o??@?????????E???H???p','2018-09-29 10:12:43','2018-09-29 10:12:43'),(3,2,21,0,'???????@?????????E???H???p','2018-09-29 10:12:43','2018-09-29 10:12:43'),(4,3,6,0,'????????@?????????D?H???p','2018-05-24 09:42:01','2018-05-24 09:42:01'),(4,3,20,0,'????????@?????????E???H???p','2018-05-24 09:42:01','2018-05-24 09:42:01'),(5,4,1,0,'???????H????i????????j?????????D?H???p','2018-05-24 09:42:21','2018-05-24 09:42:21'),(5,4,1,10,'????????????@???????H??','2018-05-24 09:42:33','2018-05-24 09:42:33'),(6,5,2,0,'???H????@?????????D?H???p','2018-05-24 09:42:46','2018-05-24 09:42:46'),(6,6,3,0,'???z?H????@?????????D?H???p','2018-05-24 09:42:55','2018-05-24 09:42:55'),(6,7,4,0,'?d?C????H????@?????????D?H???p','2018-05-24 09:43:04','2018-05-24 09:43:04'),(6,8,5,0,'?@?B????H????@?????????D?H???p','2018-05-24 09:43:12','2018-05-24 09:43:12'); |
|
27 |
/*!40000 ALTER TABLE `budgetsumcode` ENABLE KEYS */; |
|
28 |
UNLOCK TABLES; |
|
29 |
|
|
30 |
-- |
|
31 |
-- Table structure for table `businesstypemaster` |
|
32 |
-- |
|
33 |
|
|
34 |
DROP TABLE IF EXISTS `businesstypemaster`; |
|
35 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
36 |
/*!40101 SET character_set_client = utf8 */; |
|
37 |
CREATE TABLE `businesstypemaster` ( |
|
38 |
`BusinessTypeCode` decimal(5,0) unsigned NOT NULL COMMENT '?@?l?i?R?[?h', |
|
39 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
40 |
`BusinessTypeName` varchar(100) NOT NULL DEFAULT '' COMMENT '???', |
|
41 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
42 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
43 |
PRIMARY KEY (`BusinessTypeCode`), |
|
44 |
KEY `BusinessTypeMaster_Index1` (`DisplayOrder`) |
|
45 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='?@?l?i?}?X?^'; |
|
46 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
47 |
|
|
48 |
-- |
|
49 |
-- Dumping data for table `businesstypemaster` |
|
50 |
-- |
|
51 |
|
|
52 |
LOCK TABLES `businesstypemaster` WRITE; |
|
53 |
/*!40000 ALTER TABLE `businesstypemaster` DISABLE KEYS */; |
|
54 |
INSERT INTO `businesstypemaster` VALUES (1,1,'???????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(2,2,'?L?????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(3,3,'???????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(4,4,'???????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(5,5,'???????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(6,6,'???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(7,7,'???@?l??c','2015-11-04 00:00:00','2015-11-04 00:00:00'),(8,8,'???@?l???c','2015-11-04 00:00:00','2015-11-04 00:00:00'),(9,9,'?????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(10,10,'???c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(11,11,'?????c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(12,12,'???v???c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(13,13,'??c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(14,14,'????c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(15,15,'???v??c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(16,16,'?@???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(17,17,'?w?Z?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(18,18,'??????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(19,19,'?X?????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(20,20,'??????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(21,21,'?????c???????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(22,22,'????s???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(23,23,'?n??????s???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(24,24,'???m?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(25,25,'?L????C????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(26,26,'??????C????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(27,27,'?s?????m?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(28,28,'?i?@???m?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(29,29,'????m?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(30,30,'??????w?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(31,31,'??????w?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(32,32,'?_???g???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(33,33,'????g???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(34,34,'??????J???m?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'); |
|
55 |
/*!40000 ALTER TABLE `businesstypemaster` ENABLE KEYS */; |
|
56 |
UNLOCK TABLES; |
|
57 |
|
|
58 |
-- |
|
59 |
-- Table structure for table `componentlinkmaster` |
|
60 |
-- |
|
61 |
|
|
62 |
DROP TABLE IF EXISTS `componentlinkmaster`; |
|
63 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
64 |
/*!40101 SET character_set_client = utf8 */; |
|
65 |
CREATE TABLE `componentlinkmaster` ( |
|
66 |
`ComponentCode` decimal(5,0) unsigned NOT NULL COMMENT '?\???L?[', |
|
67 |
`ItemCode` decimal(5,0) unsigned NOT NULL COMMENT '?H??L?[', |
|
68 |
`DisplayOrder` decimal(5,0) unsigned DEFAULT NULL COMMENT '?\????', |
|
69 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
70 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
71 |
PRIMARY KEY (`ComponentCode`,`ItemCode`), |
|
72 |
KEY `ComponentLinkMaster_Index1` (`ComponentCode`), |
|
73 |
KEY `ComponentLinkMaster_Index2` (`ItemCode`) |
|
74 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='?\???H???A?}?X?^'; |
|
75 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
76 |
|
|
77 |
-- |
|
78 |
-- Dumping data for table `componentlinkmaster` |
|
79 |
-- |
|
80 |
|
|
81 |
LOCK TABLES `componentlinkmaster` WRITE; |
|
82 |
/*!40000 ALTER TABLE `componentlinkmaster` DISABLE KEYS */; |
|
83 |
INSERT INTO `componentlinkmaster` VALUES (1,1,2,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,2,3,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,3,4,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,4,5,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,5,6,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,6,7,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,7,8,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,8,9,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,10,10,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,11,1,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(2,15,2,'2016-02-15 15:13:10','2016-02-15 15:13:10'),(2,16,3,'2016-02-15 15:13:10','2016-02-15 15:13:10'),(2,17,4,'2016-02-15 15:13:10','2016-02-15 15:13:10'),(2,18,5,'2016-02-15 15:13:10','2016-02-15 15:13:10'),(2,19,6,'2016-02-15 15:13:10','2016-02-15 15:13:10'),(2,20,1,'2016-02-15 15:13:10','2016-02-15 15:13:10'),(2,21,7,'2016-02-15 15:13:10','2016-02-15 15:13:10'),(3,20,2,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,22,1,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,23,3,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,24,4,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,25,5,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,26,6,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,27,7,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,28,8,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,29,9,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,30,10,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,31,11,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,32,12,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,33,13,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,34,14,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,35,15,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,36,16,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,37,17,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,38,18,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,39,19,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,40,20,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,41,21,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,42,22,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,43,23,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,44,24,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,45,25,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,46,26,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,47,28,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,48,29,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,49,30,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,50,31,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,51,27,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,52,35,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(3,53,36,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(3,54,34,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(3,55,37,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(3,56,38,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(3,57,39,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(3,58,40,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(3,59,32,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,60,41,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(3,110,33,'2018-10-29 21:40:55','2018-10-29 21:40:55'),(3,111,42,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(3,112,43,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(3,140,45,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(3,166,44,'2018-10-29 21:40:56','2018-10-29 21:40:56'),(4,58,7,'2016-02-15 15:13:14','2016-02-15 15:13:14'),(4,61,1,'2016-02-15 15:13:13','2016-02-15 15:13:13'),(4,62,2,'2016-02-15 15:13:13','2016-02-15 15:13:13'),(4,63,3,'2016-02-15 15:13:13','2016-02-15 15:13:13'),(4,64,4,'2016-02-15 15:13:14','2016-02-15 15:13:14'),(4,65,5,'2016-02-15 15:13:14','2016-02-15 15:13:14'),(4,66,6,'2016-02-15 15:13:14','2016-02-15 15:13:14'),(5,58,10,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,67,2,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,68,3,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,69,4,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,70,5,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,71,6,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,72,7,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,73,8,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,74,9,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,131,1,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(14,106,1,'2016-02-15 15:13:18','2016-02-15 15:13:18'),(14,107,2,'2016-02-15 15:13:18','2016-02-15 15:13:18'),(15,108,1,'2016-02-15 15:13:18','2016-02-15 15:13:18'),(15,109,2,'2016-02-15 15:13:18','2016-02-15 15:13:18'),(17,15,2,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,16,4,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,17,5,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,18,7,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,19,6,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,20,1,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,22,8,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,23,9,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,24,10,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,25,13,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,26,11,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,27,14,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,28,16,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,29,15,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,30,17,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,31,24,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,32,22,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,33,20,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,34,19,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,35,23,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,36,30,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,37,21,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,38,70,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,39,28,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,40,26,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,41,27,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,42,29,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,43,25,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,44,31,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,45,32,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,46,33,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,47,35,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,48,37,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,49,39,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,50,34,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,51,36,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,52,47,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,53,48,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,54,46,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,55,50,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,56,49,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,57,40,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,59,45,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,60,3,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,61,51,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,62,52,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,63,53,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,64,54,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,65,55,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,67,56,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,68,57,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,69,58,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,70,59,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,71,60,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,72,61,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,73,62,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,74,63,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,86,41,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,110,44,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,111,42,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,112,68,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,113,64,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,114,65,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,115,66,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,116,43,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,117,12,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,119,72,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,120,71,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,121,69,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,122,67,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,123,74,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,125,38,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(17,126,73,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,138,75,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,139,76,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,144,77,'2018-04-26 10:17:19','2018-04-26 10:17:19'),(17,165,18,'2018-04-26 10:17:18','2018-04-26 10:17:18'),(19,14,1,'2016-03-08 17:44:29','2016-03-08 17:44:29'),(22,67,1,'2016-12-23 10:06:54','2016-12-23 10:06:54'),(22,68,2,'2016-12-23 10:06:54','2016-12-23 10:06:54'),(22,69,3,'2016-12-23 10:06:54','2016-12-23 10:06:54'),(22,70,4,'2016-12-23 10:06:54','2016-12-23 10:06:54'),(22,71,5,'2016-12-23 10:06:54','2016-12-23 10:06:54'),(22,72,6,'2016-12-23 10:06:54','2016-12-23 10:06:54'),(22,73,7,'2016-12-23 10:06:54','2016-12-23 10:06:54'),(22,124,8,'2016-12-23 10:06:54','2016-12-23 10:06:54'),(23,61,1,'2016-12-23 10:00:57','2016-12-23 10:00:57'),(23,62,2,'2016-12-23 10:00:57','2016-12-23 10:00:57'),(23,63,3,'2016-12-23 10:00:58','2016-12-23 10:00:58'),(23,64,4,'2016-12-23 10:00:58','2016-12-23 10:00:58'),(23,65,5,'2016-12-23 10:00:58','2016-12-23 10:00:58'),(23,71,6,'2016-12-23 10:00:58','2016-12-23 10:00:58'),(23,72,7,'2016-12-23 10:00:58','2016-12-23 10:00:58'),(23,73,8,'2016-12-23 10:00:58','2016-12-23 10:00:58'),(24,67,1,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,68,2,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,69,3,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,70,7,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,71,4,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,72,5,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,73,6,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,123,8,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,124,9,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,131,14,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,132,10,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,133,11,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,134,12,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,135,13,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(24,136,15,'2017-02-13 18:47:45','2017-02-13 18:47:45'),(25,61,1,'2017-01-17 08:07:46','2017-01-17 08:07:46'),(25,62,2,'2017-01-17 08:07:46','2017-01-17 08:07:46'),(25,63,3,'2017-01-17 08:07:46','2017-01-17 08:07:46'),(25,64,4,'2017-01-17 08:07:46','2017-01-17 08:07:46'),(25,65,5,'2017-01-17 08:07:46','2017-01-17 08:07:46'),(25,71,6,'2017-01-17 08:07:46','2017-01-17 08:07:46'),(25,72,7,'2017-01-17 08:07:46','2017-01-17 08:07:46'),(25,127,8,'2017-01-17 08:07:46','2017-01-17 08:07:46'),(25,128,9,'2017-01-17 08:07:47','2017-01-17 08:07:47'),(25,129,10,'2017-01-17 08:07:47','2017-01-17 08:07:47'),(25,130,12,'2017-01-17 08:07:47','2017-01-17 08:07:47'),(25,131,13,'2017-01-17 08:07:47','2017-01-17 08:07:47'),(25,137,11,'2017-01-17 08:07:47','2017-01-17 08:07:47'),(26,160,1,'2018-04-05 18:42:54','2018-04-05 18:42:54'),(26,161,2,'2018-04-05 18:42:54','2018-04-05 18:42:54'),(26,162,5,'2018-04-05 18:42:54','2018-04-05 18:42:54'),(26,163,3,'2018-04-05 18:42:54','2018-04-05 18:42:54'),(26,164,4,'2018-04-05 18:42:54','2018-04-05 18:42:54'),(29,148,1,'2018-01-31 10:24:45','2018-01-31 10:24:45'),(29,149,2,'2018-01-31 10:24:45','2018-01-31 10:24:45'),(29,150,3,'2018-01-31 10:24:45','2018-01-31 10:24:45'),(30,151,1,'2018-01-31 10:25:14','2018-01-31 10:25:14'),(30,152,2,'2018-01-31 10:25:14','2018-01-31 10:25:14'),(30,153,3,'2018-01-31 10:25:14','2018-01-31 10:25:14'),(30,154,4,'2018-01-31 10:25:14','2018-01-31 10:25:14'),(31,63,4,'2018-02-01 08:05:16','2018-02-01 08:05:16'),(31,73,2,'2018-02-01 08:05:16','2018-02-01 08:05:16'),(31,155,1,'2018-02-01 08:05:16','2018-02-01 08:05:16'),(31,156,3,'2018-02-01 08:05:16','2018-02-01 08:05:16'),(31,157,5,'2018-02-01 08:05:16','2018-02-01 08:05:16'),(31,158,6,'2018-02-01 08:05:16','2018-02-01 08:05:16'),(31,159,7,'2018-02-01 08:05:16','2018-02-01 08:05:16'),(32,61,1,'2018-02-01 08:06:10','2018-02-01 08:06:10'),(32,67,2,'2018-02-01 08:06:10','2018-02-01 08:06:10'),(32,74,3,'2018-02-01 08:06:10','2018-02-01 08:06:10'); |
|
84 |
/*!40000 ALTER TABLE `componentlinkmaster` ENABLE KEYS */; |
|
85 |
UNLOCK TABLES; |
|
86 |
|
|
87 |
-- |
|
88 |
-- Table structure for table `componentmaster` |
|
89 |
-- |
|
90 |
|
|
91 |
DROP TABLE IF EXISTS `componentmaster`; |
|
92 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
93 |
/*!40101 SET character_set_client = utf8 */; |
|
94 |
CREATE TABLE `componentmaster` ( |
|
95 |
`ComponentCode` decimal(5,0) unsigned NOT NULL COMMENT '?\???L?[', |
|
96 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
97 |
`ComponentName` varchar(120) NOT NULL DEFAULT '' COMMENT '?\??????', |
|
98 |
`SubItemsFlg` decimal(1,0) DEFAULT NULL COMMENT '???????t???O', |
|
99 |
`DirectInputFlg` decimal(1,0) DEFAULT NULL COMMENT '???????t???O', |
|
100 |
`MyExpensesFlg` decimal(1,0) DEFAULT NULL COMMENT '????o??t???O', |
|
101 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
102 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
103 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
104 |
PRIMARY KEY (`ComponentCode`), |
|
105 |
KEY `ComponentMaster_Index1` (`DisplayOrder`) |
|
106 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='?\???}?X?^'; |
|
107 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
108 |
|
|
109 |
-- |
|
110 |
-- Dumping data for table `componentmaster` |
|
111 |
-- |
|
112 |
|
|
113 |
LOCK TABLES `componentmaster` WRITE; |
|
114 |
/*!40000 ALTER TABLE `componentmaster` DISABLE KEYS */; |
|
115 |
INSERT INTO `componentmaster` VALUES (1,13,'???????H????i????????j?????????D?H???p',1,0,0,0,'2015-09-02 00:00:00','2018-04-05 19:19:45'),(2,14,'???H????@?????????D?H???p',1,0,0,0,'2015-09-02 00:00:00','2018-04-05 19:19:45'),(3,15,'???z?H????@?????????D?H???p',1,0,0,0,'2015-09-02 00:00:00','2018-04-05 19:19:45'),(4,17,'?d?C????H????@?????????D?H???p',1,0,0,0,'2015-09-02 00:00:00','2018-04-05 19:19:45'),(5,16,'?@?B????H????@?????????D?H???p',1,0,0,0,'2015-09-02 00:00:00','2018-04-05 19:19:45'),(6,19,'????????@?????????D?H???p',0,1,1,0,'2015-09-02 00:00:00','2018-04-05 19:19:45'),(7,20,'???????@?????????D?H???p',0,1,1,0,'2015-09-02 00:00:00','2018-04-05 19:19:45'),(8,9,'???o??@?????????E???H???p',0,1,0,0,'2015-09-02 00:00:00','2018-04-05 19:19:45'),(17,2,'?H????@?????????E???H???p',1,0,0,0,'2016-02-16 11:29:45','2018-04-05 19:19:45'),(18,18,'???????????@?????????D?H???p',0,1,0,0,'2016-03-08 16:41:32','2018-04-05 19:19:45'),(19,1,'????H????@?????????E???H???p',1,0,0,0,'2016-03-08 17:03:35','2018-04-05 19:19:45'),(20,7,'????????@?????????E???H???p',0,1,1,0,'2016-03-08 17:23:00','2018-04-05 19:19:45'),(21,8,'???????@?????????E???H???p',0,1,1,0,'2016-03-08 17:24:06','2018-04-05 19:19:45'),(22,3,'?????H????@?????????E???H???p',1,0,0,0,'2016-03-08 17:24:56','2018-04-05 19:19:45'),(23,4,'?d?C?H????@?????????E???H???p',1,0,0,0,'2016-03-08 17:25:37','2018-04-05 19:19:45'),(24,5,'?@?B????H????@?????????E???H???p',1,0,0,0,'2016-03-24 07:43:42','2018-04-05 19:19:45'),(25,6,'?d?C????H????@?????????E???H???p',1,0,0,0,'2016-03-24 07:44:15','2018-04-05 19:19:45'),(26,21,'??v??p',1,0,1,0,'2016-10-15 12:27:37','2018-04-05 19:19:45'),(27,22,'?@??????',0,1,1,0,'2017-03-30 16:44:21','2018-04-05 19:19:45'),(28,23,'???H????????V?z?p',1,0,0,1,'2018-01-31 08:14:46','2018-10-23 07:52:54'),(29,24,'?O???H????????V?z?p',1,0,0,1,'2018-01-31 08:15:48','2018-10-23 07:52:59'),(30,25,'?????H????????V?z?p',1,0,0,1,'2018-01-31 08:16:16','2018-10-23 07:53:03'),(31,26,'?????????H????????V?z?p',1,0,0,1,'2018-01-31 08:17:33','2018-10-23 07:53:06'),(32,27,'??r?H????????V?z?p',1,0,0,1,'2018-01-31 08:18:25','2018-10-23 07:53:09'),(33,28,'????p??????V?z',1,0,1,1,'2018-01-31 10:29:30','2018-10-23 07:53:12'); |
|
116 |
/*!40000 ALTER TABLE `componentmaster` ENABLE KEYS */; |
|
117 |
UNLOCK TABLES; |
|
118 |
|
|
119 |
-- |
|
120 |
-- Table structure for table `constructionitemmaster` |
|
121 |
-- |
|
122 |
|
|
123 |
DROP TABLE IF EXISTS `constructionitemmaster`; |
|
124 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
125 |
/*!40101 SET character_set_client = utf8 */; |
|
126 |
CREATE TABLE `constructionitemmaster` ( |
|
127 |
`ItemCode` decimal(5,0) unsigned NOT NULL COMMENT '?H??L?[', |
|
128 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
129 |
`ItemName` varchar(120) NOT NULL DEFAULT '' COMMENT '?H????', |
|
130 |
`SubItemsFlg` decimal(1,0) DEFAULT NULL COMMENT '???????t???O', |
|
131 |
`MyExpensesFlg` decimal(1,0) NOT NULL COMMENT '????o??t???O', |
|
132 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
133 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
134 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
135 |
PRIMARY KEY (`ItemCode`) |
|
136 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?H??}?X?^'; |
|
137 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
138 |
|
|
139 |
-- |
|
140 |
-- Dumping data for table `constructionitemmaster` |
|
141 |
-- |
|
142 |
|
|
143 |
LOCK TABLES `constructionitemmaster` WRITE; |
|
144 |
/*!40000 ALTER TABLE `constructionitemmaster` DISABLE KEYS */; |
|
145 |
INSERT INTO `constructionitemmaster` VALUES (10,2,'????????????',1,0,0,'2016-02-15 15:13:10','2018-10-03 13:53:10'),(11,1,'???????H???@???W???Z?????',0,0,0,'2016-02-15 15:13:10','2018-10-03 13:53:09'),(20,4,'???????H????',1,0,0,'2016-02-15 15:13:10','2018-10-03 13:53:09'),(22,13,'?y?H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(23,14,'?n??H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(24,16,'?S??H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(25,17,'?R???N???[?g?H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(26,18,'?^?g?H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(27,19,'?S???H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(28,20,'?????H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(29,21,'?`?k?b?p?l???H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(30,22,'???o???`?Z?????g??H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(31,24,'?h???H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(32,25,'??E?^?C???H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(33,26,'??H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(35,29,'?????E????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(36,30,'?????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(37,31,'?????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(39,33,'???????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(40,34,'??????????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(41,35,'?V???b?^?[?H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(42,36,'?K???X?H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(43,38,'?h???H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(44,39,'?????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(45,41,'?y?S?H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(46,42,'?????d???H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(47,44,'???j?b?g?H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(50,50,'??????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(51,43,'???H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(86,48,'?A??H??',1,0,0,'2016-02-15 15:13:16','2018-10-03 13:53:09'),(112,23,'?????R???N???[?g?H??',1,0,0,'2016-04-21 08:26:28','2018-10-03 13:53:09'),(116,40,'?O???H??',1,0,0,'2016-09-21 16:58:22','2018-10-03 13:53:09'),(117,15,'??b?H??',1,0,0,'2016-10-12 15:22:56','2018-10-03 13:53:09'),(119,47,'???O?H??',1,0,0,'2016-10-27 13:10:39','2018-10-03 13:53:09'),(120,37,'????E?K???X?H??',1,0,0,'2016-10-27 13:13:18','2018-10-03 13:53:09'),(126,49,'?T?C???H??',1,0,0,'2017-01-14 10:20:06','2018-10-03 13:53:09'); |
|
146 |
/*!40000 ALTER TABLE `constructionitemmaster` ENABLE KEYS */; |
|
147 |
UNLOCK TABLES; |
|
148 |
-- |
|
149 |
-- Table structure for table `constructiontypemaster` |
|
150 |
-- |
|
151 |
|
|
152 |
DROP TABLE IF EXISTS `constructiontypemaster`; |
|
153 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
154 |
/*!40101 SET character_set_client = utf8 */; |
|
155 |
CREATE TABLE `constructiontypemaster` ( |
|
156 |
`TypeCode` decimal(5,0) unsigned NOT NULL COMMENT '?H?????R?[?h', |
|
157 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
158 |
`NameString` varchar(100) NOT NULL COMMENT '????', |
|
159 |
`PublicFlg` decimal(1,0) NOT NULL COMMENT '?????t???O', |
|
160 |
`RepairFlg` decimal(1,0) NOT NULL COMMENT '?V?z?E???C?t???O', |
|
161 |
`SecRank` decimal(1,0) NOT NULL COMMENT '?????????N', |
|
162 |
`ExpensesLink` decimal(1,0) NOT NULL COMMENT '?o??g?p??', |
|
163 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
164 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
165 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
166 |
PRIMARY KEY (`TypeCode`) |
|
167 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='?H?????}?X?^'; |
|
168 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
169 |
|
|
170 |
-- |
|
171 |
-- Dumping data for table `constructiontypemaster` |
|
172 |
-- |
|
173 |
|
|
174 |
LOCK TABLES `constructiontypemaster` WRITE; |
|
175 |
/*!40000 ALTER TABLE `constructiontypemaster` DISABLE KEYS */; |
|
176 |
INSERT INTO `constructiontypemaster` VALUES (1,5,'????H???@???C?i?????j',2,0,4,0,0,'2015-11-16 15:19:01','2018-05-24 09:40:41'),(2,7,'????H???@???C?i?????j',2,0,4,0,0,'2015-11-16 15:19:01','2018-05-24 09:40:41'),(3,11,'??l?q???t?H?[???H???i?????j',2,0,4,0,0,'2015-11-16 15:19:01','2018-05-24 09:40:41'),(4,1,'?????H???@???C?i?????j',1,2,4,0,0,'2015-11-17 08:16:00','2018-05-24 09:40:41'),(5,3,'?????H???@???C?i?????j',1,2,4,0,0,'2015-11-17 08:16:00','2018-05-24 09:40:41'),(9,2,'?????H???@?V?z?i?????j',1,1,4,0,0,'2016-01-30 10:35:47','2018-05-24 09:40:41'),(10,4,'?????H???@?V?z?i?????j',1,1,4,0,0,'2016-01-30 10:42:20','2018-05-24 09:40:41'),(11,6,'????H???@?V?z?i?????j',2,0,4,0,0,'2016-01-30 10:43:14','2018-05-24 09:40:41'),(12,8,'????H???@?V?z?i?????j',2,0,4,0,0,'2016-01-30 10:43:47','2018-05-24 09:40:41'); |
|
177 |
/*!40000 ALTER TABLE `constructiontypemaster` ENABLE KEYS */; |
|
178 |
UNLOCK TABLES; |
|
179 |
|
|
180 |
-- |
|
181 |
-- Table structure for table `daymaster` |
|
182 |
-- |
|
183 |
|
|
184 |
DROP TABLE IF EXISTS `daymaster`; |
|
185 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
186 |
/*!40101 SET character_set_client = utf8 */; |
|
187 |
CREATE TABLE `daymaster` ( |
|
188 |
`days` smallint(6) NOT NULL COMMENT '??', |
|
189 |
PRIMARY KEY (`days`) |
|
190 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='???}?X?^'; |
|
191 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
192 |
|
|
193 |
-- |
|
194 |
-- Dumping data for table `daymaster` |
|
195 |
-- |
|
196 |
|
|
197 |
LOCK TABLES `daymaster` WRITE; |
|
198 |
/*!40000 ALTER TABLE `daymaster` DISABLE KEYS */; |
|
199 |
INSERT INTO `daymaster` VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(26),(27),(28),(29),(30),(31); |
|
200 |
/*!40000 ALTER TABLE `daymaster` ENABLE KEYS */; |
|
201 |
UNLOCK TABLES; |
|
202 |
-- |
|
203 |
-- Table structure for table `departmentexpensesmaster` |
|
204 |
-- |
|
205 |
|
|
206 |
DROP TABLE IF EXISTS `departmentexpensesmaster`; |
|
207 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
208 |
/*!40101 SET character_set_client = utf8 */; |
|
209 |
CREATE TABLE `departmentexpensesmaster` ( |
|
210 |
`DepartmentCode` decimal(5,0) unsigned NOT NULL COMMENT '?????R?[?h', |
|
211 |
`ExpensesPeriod` smallint(6) NOT NULL COMMENT '?????', |
|
212 |
`NameCode` decimal(5,0) unsigned NOT NULL COMMENT '?o??R?[?h', |
|
213 |
`NameString` varchar(100) NOT NULL COMMENT '????', |
|
214 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
215 |
`ExpensesRaito` decimal(4,2) NOT NULL COMMENT '?o??', |
|
216 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
217 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
218 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
219 |
PRIMARY KEY (`DepartmentCode`,`ExpensesPeriod`,`NameCode`) |
|
220 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='?????o???}?X?^'; |
|
221 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
222 |
|
|
223 |
-- |
|
224 |
-- Dumping data for table `departmentexpensesmaster` |
|
225 |
-- |
|
226 |
|
|
227 |
LOCK TABLES `departmentexpensesmaster` WRITE; |
|
228 |
/*!40000 ALTER TABLE `departmentexpensesmaster` DISABLE KEYS */; |
|
229 |
INSERT INTO `departmentexpensesmaster` VALUES (0,15,1,'?c??o??',1,8.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,15,2,'?e?????o??',2,5.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,15,3,'???o??',3,7.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,16,1,'?c??o??',1,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,16,2,'?e?????o??',2,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,16,3,'???o??',3,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,17,1,'?c??o??',1,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,17,2,'?e?????o??',2,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,17,3,'???o??',3,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(1,15,1,'?c??o??',2,8.00,0,'2016-04-27 17:09:02','2016-04-27 17:09:02'),(1,15,2,'?e?????o??',3,5.00,0,'2016-04-27 17:09:02','2016-04-27 17:09:02'),(1,15,3,'???o??',1,7.00,0,'2016-04-27 17:09:02','2016-04-27 17:09:02'),(1,16,1,'?c??o??',2,2.00,0,'2016-12-16 10:09:55','2016-12-16 10:09:55'),(1,16,2,'?e?????o??',3,7.00,0,'2016-12-16 10:09:55','2016-12-16 10:09:55'),(1,16,3,'???o??',1,8.50,0,'2016-12-16 10:09:55','2016-12-16 10:09:55'),(1,17,1,'?c??o??',2,2.00,0,'2017-05-09 09:33:45','2017-05-09 09:33:45'),(1,17,2,'?e?????o??',3,6.50,0,'2017-05-09 09:33:45','2017-05-09 09:33:45'),(1,17,3,'???o??',1,8.50,0,'2017-05-09 09:33:45','2017-05-09 09:33:45'),(1,18,1,'?c??o??',3,1.50,0,'2018-11-14 11:02:45','2018-11-14 11:02:45'),(1,18,2,'?e?????o??',2,7.50,0,'2018-11-14 11:02:45','2018-11-14 11:02:45'),(1,18,3,'???o??',1,9.50,0,'2018-11-14 11:02:45','2018-11-14 11:02:45'),(1,18,4,'?S???C??',4,0.00,0,'2018-11-14 11:02:45','2018-11-14 11:02:45'),(1,19,1,'?c??o??',3,1.50,0,'2019-09-02 08:10:06','2019-09-02 08:10:06'),(1,19,2,'?e?????o??',2,7.50,0,'2019-09-02 08:10:06','2019-09-02 08:10:06'),(1,19,3,'???o??',1,9.50,0,'2019-09-02 08:10:06','2019-09-02 08:10:06'),(1,19,4,'?S???C??',4,0.20,0,'2019-09-02 08:10:06','2019-09-02 08:10:06'),(1,20,1,'?c??o??',3,1.50,0,'2019-10-03 08:49:06','2019-10-03 08:49:06'),(1,20,2,'?e?????o??',2,6.80,0,'2019-10-03 08:49:06','2019-10-03 08:49:06'),(1,20,3,'???o??',1,9.80,0,'2019-10-03 08:49:06','2019-10-03 08:49:06'),(1,20,4,'?S???C??',4,0.20,0,'2019-10-03 08:49:06','2019-10-03 08:49:06'),(1,21,1,'?c??o??',3,1.50,0,'2019-10-03 08:49:07','2019-10-03 08:49:07'),(1,21,2,'?e?????o??',2,6.80,0,'2019-10-03 08:49:07','2019-10-03 08:49:07'),(1,21,3,'???o??',1,9.80,0,'2019-10-03 08:49:07','2019-10-03 08:49:07'),(1,21,4,'?S???C??',4,0.20,0,'2019-10-03 08:49:07','2019-10-03 08:49:07'),(2,15,1,'?c??o??',2,8.00,0,'2016-04-27 17:06:52','2016-04-27 17:06:52'),(2,15,2,'?e?????o??',3,5.00,0,'2016-04-27 17:06:52','2016-04-27 17:06:52'),(2,15,3,'???o??',1,7.00,0,'2016-04-27 17:06:52','2016-04-27 17:06:52'),(2,16,1,'?c??o??',2,2.00,0,'2016-04-27 17:06:52','2016-04-27 17:06:52'),(2,16,2,'?e?????o??',3,8.00,0,'2016-04-27 17:06:52','2016-04-27 17:06:52'),(2,16,3,'???o??',1,8.50,0,'2016-04-27 17:06:52','2016-04-27 17:06:52'),(2,17,1,'?c??o??',2,2.00,0,'2017-11-24 15:05:17','2017-11-24 15:05:17'),(2,17,2,'?e?????o??',3,7.00,0,'2017-11-24 15:05:17','2017-11-24 15:05:17'),(2,17,3,'???o??',1,8.50,0,'2017-11-24 15:05:17','2017-11-24 15:05:17'),(2,18,1,'?c??o??',3,1.50,0,'2018-12-06 15:44:59','2018-12-06 15:44:59'),(2,18,2,'?e?????o??',2,6.00,0,'2018-12-06 15:44:59','2018-12-06 15:44:59'),(2,18,3,'???o??',1,9.50,0,'2018-12-06 15:44:59','2018-12-06 15:44:59'),(2,18,4,'?S???C??',4,0.00,0,'2018-12-06 15:44:59','2018-12-06 15:44:59'),(2,19,1,'?c??o??',3,1.50,0,'2019-09-02 08:13:48','2019-09-02 08:13:48'),(2,19,2,'?e?????o??',2,7.00,0,'2019-09-02 08:13:48','2019-09-02 08:13:48'),(2,19,3,'???o??',1,9.50,0,'2019-09-02 08:13:48','2019-09-02 08:13:48'),(2,19,4,'?S???C??',4,0.20,0,'2019-09-02 08:13:48','2019-09-02 08:13:48'),(2,20,1,'?c??o??',3,1.50,0,'2018-10-13 10:50:57','2018-10-13 10:50:57'),(2,20,2,'?e?????o??',2,5.70,0,'2018-10-13 10:50:57','2018-10-13 10:50:57'),(2,20,3,'???o??',1,9.80,0,'2018-10-13 10:50:57','2018-10-13 10:50:57'),(3,15,1,'?c??o??',2,8.00,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,15,2,'?e?????o??',3,5.00,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,15,3,'???o??',1,7.00,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,16,1,'?c??o??',2,2.00,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,16,2,'?e?????o??',3,9.00,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,16,3,'???o??',1,8.50,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,17,1,'?c??o??',2,2.00,1,'2017-11-01 16:14:57','2017-11-01 16:14:57'),(3,17,2,'?e?????o??',3,7.50,1,'2017-11-01 16:14:57','2017-11-01 16:14:57'),(3,17,3,'???o??',1,8.50,1,'2017-11-01 16:14:57','2017-11-01 16:14:57'),(3,18,1,'?c??o??',2,1.50,1,'2018-02-10 20:40:52','2018-02-10 20:40:52'),(3,18,2,'?e?????o??',3,7.50,1,'2018-02-10 20:40:52','2018-02-10 20:40:52'),(3,18,3,'???o??',1,9.50,1,'2018-02-10 20:40:52','2018-02-10 20:40:52'),(3,19,1,'?c??o??',2,2.00,1,'2017-11-24 14:59:01','2017-11-24 14:59:01'),(3,19,2,'?e?????o??',3,10.00,1,'2017-11-24 14:59:01','2017-11-24 14:59:01'),(3,19,3,'???o??',1,8.50,1,'2017-11-24 14:59:01','2017-11-24 14:59:01'),(4,15,1,'?c??o??',2,8.00,0,'2016-04-26 14:35:35','2016-04-26 14:35:35'),(4,15,2,'?e?????o??',3,5.00,0,'2016-04-26 14:35:35','2016-04-26 14:35:35'),(4,15,3,'???o??',1,7.00,0,'2016-04-26 14:35:35','2016-04-26 14:35:35'),(4,16,1,'?c??o??',2,0.00,0,'2016-04-26 14:35:35','2016-04-26 14:35:35'),(4,16,2,'?e?????o??',3,0.00,0,'2016-04-26 14:35:35','2016-04-26 14:35:35'),(4,16,3,'???o??',1,0.00,0,'2016-04-26 14:35:35','2016-04-26 14:35:35'),(4,17,1,'?c??o??',2,0.00,0,'2016-04-26 14:35:35','2016-04-26 14:35:35'),(4,17,2,'?e?????o??',3,0.00,0,'2016-04-26 14:35:35','2016-04-26 14:35:35'),(4,17,3,'???o??',1,0.00,0,'2016-04-26 14:35:35','2016-04-26 14:35:35'),(5,15,1,'?c??o??',2,8.00,0,'2016-04-27 17:11:45','2016-04-27 17:11:45'),(5,15,2,'?e?????o??',3,5.00,0,'2016-04-27 17:11:45','2016-04-27 17:11:45'),(5,15,3,'???o??',1,7.00,0,'2016-04-27 17:11:45','2016-04-27 17:11:45'),(5,16,1,'?c??o??',2,10.00,0,'2016-04-27 17:11:45','2016-04-27 17:11:45'),(5,16,2,'?e?????o??',3,20.00,0,'2016-04-27 17:11:45','2016-04-27 17:11:45'),(5,16,3,'???o??',1,20.50,0,'2016-04-27 17:11:45','2016-04-27 17:11:45'),(5,17,1,'?c??o??',2,10.00,0,'2017-05-09 09:47:21','2017-05-09 09:47:21'),(5,17,2,'?e?????o??',3,20.00,0,'2017-05-09 09:47:21','2017-05-09 09:47:21'),(5,17,3,'???o??',1,10.00,0,'2017-05-09 09:47:21','2017-05-09 09:47:21'),(5,18,1,'?c??o??',3,10.00,0,'2018-10-13 10:52:41','2018-10-13 10:52:41'),(5,18,2,'?e?????o??',2,20.00,0,'2018-10-13 10:52:41','2018-10-13 10:52:41'),(5,18,3,'???o??',1,10.00,0,'2018-10-13 10:52:41','2018-10-13 10:52:41'),(5,19,1,'?c??o??',3,10.00,0,'2019-08-23 17:12:59','2019-08-23 17:12:59'),(5,19,2,'?e?????o??',2,20.00,0,'2019-08-23 17:12:59','2019-08-23 17:12:59'),(5,19,3,'???o??',1,10.00,0,'2019-08-23 17:12:59','2019-08-23 17:12:59'),(5,19,4,'?S???C??',4,0.00,0,'2019-08-23 17:12:59','2019-08-23 17:12:59'),(5,20,1,'?c??o??',3,10.00,0,'2019-08-23 17:12:59','2019-08-23 17:12:59'),(5,20,2,'?e?????o??',2,20.00,0,'2019-08-23 17:12:59','2019-08-23 17:12:59'),(5,20,3,'???o??',1,10.00,0,'2019-08-23 17:12:59','2019-08-23 17:12:59'),(5,20,4,'?S???C??',4,0.00,0,'2019-08-23 17:12:59','2019-08-23 17:12:59'),(7,15,1,'?c??o??',2,8.00,0,'2016-08-02 10:07:24','2016-08-02 10:07:24'),(7,15,2,'?e?????o??',3,5.00,0,'2016-08-02 10:07:24','2016-08-02 10:07:24'),(7,15,3,'???o??',1,7.00,0,'2016-08-02 10:07:24','2016-08-02 10:07:24'),(7,16,1,'?c??o??',2,2.00,0,'2016-12-16 10:10:10','2016-12-16 10:10:10'),(7,16,2,'?e?????o??',3,7.00,0,'2016-12-16 10:10:10','2016-12-16 10:10:10'),(7,16,3,'???o??',1,8.50,0,'2016-12-16 10:10:10','2016-12-16 10:10:10'),(7,17,1,'?c??o??',2,2.00,0,'2016-08-02 10:07:24','2016-08-02 10:07:24'),(7,17,2,'?e?????o??',3,7.00,0,'2016-08-02 10:07:24','2016-08-02 10:07:24'),(7,17,3,'???o??',1,8.50,0,'2016-08-02 10:07:24','2016-08-02 10:07:24'),(7,18,1,'?c??o??',2,1.50,0,'2018-02-10 20:41:24','2018-02-10 20:41:24'),(7,18,2,'?e?????o??',3,7.50,0,'2018-02-10 20:41:24','2018-02-10 20:41:24'),(7,18,3,'???o??',1,9.50,0,'2018-02-10 20:41:24','2018-02-10 20:41:24'),(7,19,1,'?c??o??',3,1.50,0,'2018-12-06 15:50:31','2018-12-06 15:50:31'),(7,19,2,'?e?????o??',2,8.00,0,'2018-12-06 15:50:31','2018-12-06 15:50:31'),(7,19,3,'???o??',1,9.50,0,'2018-12-06 15:50:31','2018-12-06 15:50:31'),(7,19,4,'?S???C??',4,0.02,0,'2018-12-06 15:50:31','2018-12-06 15:50:31'),(7,20,1,'?c??o??',3,1.50,0,'2018-10-13 10:52:04','2018-10-13 10:52:04'),(7,20,2,'?e?????o??',2,7.50,0,'2018-10-13 10:52:04','2018-10-13 10:52:04'),(7,20,3,'???o??',1,9.80,0,'2018-10-13 10:52:04','2018-10-13 10:52:04'),(8,15,1,'?c??o??',2,8.00,1,'2016-09-27 18:46:03','2019-05-07 08:15:22'),(8,15,2,'?e?????o??',3,5.00,1,'2016-09-27 18:46:03','2019-05-07 08:15:22'),(8,15,3,'???o??',1,7.00,1,'2016-09-27 18:46:03','2019-05-07 08:15:22'),(8,16,1,'?c??o??',2,2.00,1,'2016-09-27 18:46:03','2019-05-07 08:15:22'),(8,16,2,'?e?????o??',3,7.00,1,'2016-09-27 18:46:03','2019-05-07 08:15:22'),(8,16,3,'???o??',1,8.50,1,'2016-09-27 18:46:03','2019-05-07 08:15:22'),(8,17,1,'?c??o??',2,2.00,1,'2017-05-09 09:50:16','2019-05-07 08:15:22'),(8,17,2,'?e?????o??',3,10.00,1,'2017-05-09 09:50:16','2019-05-07 08:15:22'),(8,17,3,'???o??',1,8.50,1,'2017-05-09 09:50:16','2019-05-07 08:15:22'),(8,18,1,'?c??o??',2,1.50,1,'2018-02-10 20:39:49','2019-05-07 08:15:22'),(8,18,2,'?e?????o??',3,7.50,1,'2018-02-10 20:39:49','2019-05-07 08:15:22'),(8,18,3,'???o??',1,9.50,1,'2018-02-10 20:39:49','2019-05-07 08:15:22'),(8,19,1,'?c??o??',3,1.50,1,'2019-01-29 19:09:40','2019-05-07 08:15:22'),(8,19,2,'?e?????o??',2,7.70,1,'2019-01-29 19:09:40','2019-05-07 08:15:22'),(8,19,3,'???o??',1,9.50,1,'2019-01-29 19:09:40','2019-05-07 08:15:22'),(8,19,4,'?S???C??',4,0.20,1,'2019-01-29 19:09:40','2019-05-07 08:15:22'),(8,20,1,'?c??o??',3,1.50,1,'2018-10-13 10:49:59','2019-05-07 08:15:22'),(8,20,2,'?e?????o??',2,6.80,1,'2018-10-13 10:49:59','2019-05-07 08:15:22'),(8,20,3,'???o??',1,9.80,1,'2018-10-13 10:49:59','2019-05-07 08:15:22'),(9,15,1,'?c??o??',2,8.00,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,15,2,'?e?????o??',3,5.00,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,15,3,'???o??',1,7.00,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,16,1,'?c??o??',2,2.00,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,16,2,'?e?????o??',3,8.00,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,16,3,'???o??',1,15.50,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,17,1,'?c??o??',2,1.50,1,'2018-02-10 20:41:06','2018-02-10 20:41:06'),(9,17,2,'?e?????o??',3,7.50,1,'2018-02-10 20:41:06','2018-02-10 20:41:06'),(9,17,3,'???o??',1,9.50,1,'2018-02-10 20:41:06','2018-02-10 20:41:06'),(9,18,1,'?c??o??',2,2.00,1,'2017-11-24 15:02:32','2017-11-24 15:02:32'),(9,18,2,'?e?????o??',3,9.00,1,'2017-11-24 15:02:32','2017-11-24 15:02:32'),(9,18,3,'???o??',1,8.50,1,'2017-11-24 15:02:32','2017-11-24 15:02:32'),(9,19,1,'?c??o??',2,2.00,1,'2017-11-24 15:00:21','2017-11-24 15:00:21'),(9,19,2,'?e?????o??',3,10.00,1,'2017-11-24 15:00:21','2017-11-24 15:00:21'),(9,19,3,'???o??',1,8.50,1,'2017-11-24 15:00:21','2017-11-24 15:00:21'),(10,17,1,'?c??o??',2,0.00,1,'2018-03-29 17:28:32','2019-09-02 08:28:01'),(10,17,2,'?e?????o??',3,0.00,1,'2018-03-29 17:28:32','2019-09-02 08:28:01'),(10,17,3,'???o??',1,0.00,1,'2018-03-29 17:28:32','2019-09-02 08:28:01'),(10,18,1,'?c??o??',3,1.50,1,'2018-11-14 11:02:13','2019-09-02 08:28:01'),(10,18,2,'?e?????o??',2,7.50,1,'2018-11-14 11:02:13','2019-09-02 08:28:01'),(10,18,3,'???o??',1,9.50,1,'2018-11-14 11:02:13','2019-09-02 08:28:01'),(10,18,4,'?S???C??',4,0.00,1,'2018-11-14 11:02:13','2019-09-02 08:28:01'),(10,19,1,'?c??o??',3,1.50,1,'2019-08-23 17:12:51','2019-09-02 08:28:01'),(10,19,2,'?e?????o??',2,7.90,1,'2019-08-23 17:12:51','2019-09-02 08:28:01'),(10,19,3,'???o??',1,9.50,1,'2019-08-23 17:12:51','2019-09-02 08:28:01'),(10,19,4,'?S???C??',4,0.20,1,'2019-08-23 17:12:51','2019-09-02 08:28:01'),(10,20,1,'?c??o??',3,1.50,1,'2018-10-13 10:51:36','2019-09-02 08:28:01'),(10,20,2,'?e?????o??',2,9.20,1,'2018-10-13 10:51:36','2019-09-02 08:28:01'),(10,20,3,'???o??',1,9.80,1,'2018-10-13 10:51:36','2019-09-02 08:28:01'),(11,18,1,'?c??o??',3,1.50,1,'2018-12-06 15:46:16','2019-09-02 08:28:34'),(11,18,2,'?e?????o??',2,18.50,1,'2018-12-06 15:46:16','2019-09-02 08:28:34'),(11,18,3,'???o??',1,5.00,1,'2018-12-06 15:46:16','2019-09-02 08:28:34'),(11,18,4,'?S???C??',4,0.02,1,'2018-12-06 15:46:16','2019-09-02 08:28:34'),(11,19,1,'?c??o??',3,1.50,1,'2019-08-23 17:12:11','2019-09-02 08:28:34'),(11,19,2,'?e?????o??',2,16.30,1,'2019-08-23 17:12:11','2019-09-02 08:28:34'),(11,19,3,'???o??',1,0.00,1,'2019-08-23 17:12:11','2019-09-02 08:28:34'),(11,19,4,'?S???C??',4,0.00,1,'2019-08-23 17:12:11','2019-09-02 08:28:34'),(11,20,1,'?c??o??',3,1.50,1,'2019-01-29 19:11:10','2019-09-02 08:28:34'),(11,20,2,'?e?????o??',2,16.30,1,'2019-01-29 19:11:10','2019-09-02 08:28:34'),(11,20,3,'???o??',1,0.00,1,'2019-01-29 19:11:10','2019-09-02 08:28:34'),(11,20,4,'?S???C??',4,0.00,1,'2019-01-29 19:11:10','2019-09-02 08:28:34'),(12,18,1,'?c??o??',3,1.50,0,'2019-01-25 17:54:39','2019-01-25 17:54:39'),(12,18,2,'?e?????o??',2,18.50,0,'2019-01-25 17:54:39','2019-01-25 17:54:39'),(12,18,3,'???o??',1,5.00,0,'2019-01-25 17:54:39','2019-01-25 17:54:39'),(12,18,4,'?S???C??',4,0.02,0,'2019-01-25 17:54:39','2019-01-25 17:54:39'),(12,19,1,'?c??o??',3,1.50,0,'2019-01-29 19:11:33','2019-01-29 19:11:33'),(12,19,2,'?e?????o??',2,19.20,0,'2019-01-29 19:11:33','2019-01-29 19:11:33'),(12,19,3,'???o??',1,5.00,0,'2019-01-29 19:11:33','2019-01-29 19:11:33'),(12,19,4,'?S???C??',4,0.20,0,'2019-01-29 19:11:33','2019-01-29 19:11:33'),(12,20,1,'?c??o??',3,1.50,0,'2019-01-29 19:11:33','2019-01-29 19:11:33'),(12,20,2,'?e?????o??',2,19.20,0,'2019-01-29 19:11:33','2019-01-29 19:11:33'),(12,20,3,'???o??',1,5.00,0,'2019-01-29 19:11:33','2019-01-29 19:11:33'),(12,20,4,'?S???C??',4,0.20,0,'2019-01-29 19:11:33','2019-01-29 19:11:33'),(13,19,1,'?c??o??',3,1.50,0,'2019-08-24 09:23:34','2019-08-24 09:23:34'),(13,19,2,'?e?????o??',2,7.50,0,'2019-08-24 09:23:34','2019-08-24 09:23:34'),(13,19,3,'???o??',1,9.50,0,'2019-08-24 09:23:34','2019-08-24 09:23:34'),(13,19,4,'?S???C??',4,0.20,0,'2019-08-24 09:23:34','2019-08-24 09:23:34'),(13,20,1,'?c??o??',3,0.00,0,'2019-08-23 17:10:42','2019-08-23 17:10:42'),(13,20,2,'?e?????o??',2,0.00,0,'2019-08-23 17:10:42','2019-08-23 17:10:42'),(13,20,3,'???o??',1,0.00,0,'2019-08-23 17:10:42','2019-08-23 17:10:42'),(13,20,4,'?S???C??',4,0.00,0,'2019-08-23 17:10:42','2019-08-23 17:10:42'),(14,19,1,'?c??o??',3,1.50,0,'2019-08-24 09:24:01','2019-08-24 09:24:01'),(14,19,2,'?e?????o??',2,7.50,0,'2019-08-24 09:24:01','2019-08-24 09:24:01'),(14,19,3,'???o??',1,9.50,0,'2019-08-24 09:24:01','2019-08-24 09:24:01'),(14,19,4,'?S???C??',4,0.20,0,'2019-08-24 09:24:01','2019-08-24 09:24:01'),(14,20,1,'?c??o??',3,0.00,0,'2019-08-23 17:11:52','2019-08-23 17:11:52'),(14,20,2,'?e?????o??',2,0.00,0,'2019-08-23 17:11:52','2019-08-23 17:11:52'),(14,20,3,'???o??',1,0.00,0,'2019-08-23 17:11:52','2019-08-23 17:11:52'),(14,20,4,'?S???C??',4,0.00,0,'2019-08-23 17:11:52','2019-08-23 17:11:52'),(14,21,1,'?c??o??',3,0.00,0,'2019-08-23 17:11:52','2019-08-23 17:11:52'),(14,21,2,'?e?????o??',2,0.00,0,'2019-08-23 17:11:52','2019-08-23 17:11:52'),(14,21,3,'???o??',1,0.00,0,'2019-08-23 17:11:52','2019-08-23 17:11:52'),(14,21,4,'?S???C??',4,0.00,0,'2019-08-23 17:11:52','2019-08-23 17:11:52'); |
|
230 |
/*!40000 ALTER TABLE `departmentexpensesmaster` ENABLE KEYS */; |
|
231 |
UNLOCK TABLES; |
|
232 |
|
|
233 |
-- |
|
234 |
-- Table structure for table `departmentmaster` |
|
235 |
-- |
|
236 |
|
|
237 |
DROP TABLE IF EXISTS `departmentmaster`; |
|
238 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
239 |
/*!40101 SET character_set_client = utf8 */; |
|
240 |
CREATE TABLE `departmentmaster` ( |
|
241 |
`DepartmentCode` decimal(5,0) unsigned NOT NULL COMMENT '?????R?[?h', |
|
242 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
243 |
`DepartmentString` varchar(100) NOT NULL COMMENT '??????', |
|
244 |
`ActionScheduleFlg` decimal(1,0) NOT NULL COMMENT '?s???\??\???t???O', |
|
245 |
`StaffAssignFlg` decimal(1,0) NOT NULL COMMENT '?l???z?u?\???t???O', |
|
246 |
`StartDate` datetime NOT NULL COMMENT '?J?n???t', |
|
247 |
`CompDate` datetime NOT NULL COMMENT '?I?????t', |
|
248 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
249 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
250 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
251 |
PRIMARY KEY (`DepartmentCode`), |
|
252 |
KEY `DepartmentMaster_index1` (`DisplayOrder`) |
|
253 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?????}?X?^'; |
|
254 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
255 |
|
|
256 |
-- |
|
257 |
-- Dumping data for table `departmentmaster` |
|
258 |
-- |
|
259 |
|
|
260 |
LOCK TABLES `departmentmaster` WRITE; |
|
261 |
/*!40000 ALTER TABLE `departmentmaster` DISABLE KEYS */; |
|
262 |
INSERT INTO `departmentmaster` VALUES (1,1,'?H????',0,0,'2018-10-01 00:00:00','0001-01-01 00:00:00',0,'0000-00-00 00:00:00','0000-00-00 00:00:00'); |
|
263 |
/*!40000 ALTER TABLE `departmentmaster` ENABLE KEYS */; |
|
264 |
UNLOCK TABLES; |
|
265 |
|
|
266 |
-- |
|
267 |
-- Table structure for table `divisionmaster` |
|
268 |
-- |
|
269 |
|
|
270 |
DROP TABLE IF EXISTS `divisionmaster`; |
|
271 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
272 |
/*!40101 SET character_set_client = utf8 */; |
|
273 |
CREATE TABLE `divisionmaster` ( |
|
274 |
`DivisionCode` decimal(5,0) unsigned NOT NULL COMMENT '???R?[?h', |
|
275 |
`NameCode` decimal(5,0) unsigned NOT NULL COMMENT '????R?[?h', |
|
276 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
277 |
`NameString` varchar(100) NOT NULL DEFAULT '' COMMENT '????', |
|
278 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
279 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
280 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
281 |
PRIMARY KEY (`DivisionCode`,`NameCode`) |
|
282 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='???}?X?^'; |
|
283 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
284 |
|
|
285 |
-- |
|
286 |
-- Dumping data for table `divisionmaster` |
|
287 |
-- |
|
288 |
|
|
289 |
LOCK TABLES `divisionmaster` WRITE; |
|
290 |
/*!40000 ALTER TABLE `divisionmaster` DISABLE KEYS */; |
|
291 |
INSERT INTO `divisionmaster` VALUES (1,1,1,'?@?l?i??????j',0,'2015-11-09 14:23:45','2018-10-03 14:18:22'),(1,2,2,'?@?l?i??????j',0,'2015-11-09 14:25:45','2018-10-03 14:18:22'),(1,3,3,'?@?l?i?a?@?E?????{????j',0,'2018-02-24 19:31:29','2018-10-03 14:18:22'),(1,4,4,'?@?l?i?w?Z?@?l?j',0,'2015-11-09 14:31:08','2018-10-03 14:18:22'),(1,5,5,'?????c??i?e????j',0,'2015-11-09 14:23:45','2018-10-03 14:18:22'),(1,6,6,'???z?m???????E??????m???????',0,'2015-11-13 13:47:24','2018-10-03 14:18:22'),(1,7,7,'??l?i???j',0,'2015-11-09 14:23:45','2018-10-03 14:18:22'),(1,8,8,'????g???E??????',0,'2017-04-19 07:36:33','2018-10-03 14:18:22'),(1,9,9,'?X???',0,'2018-02-24 19:25:37','2018-10-03 14:18:22'),(1,10,10,'?????',0,'2017-04-19 07:36:44','2018-10-03 14:18:22'),(3,3,1,'???o??',0,'2015-11-16 15:19:23','2018-04-27 08:33:01'); |
|
292 |
/*!40000 ALTER TABLE `divisionmaster` ENABLE KEYS */; |
|
293 |
UNLOCK TABLES; |
|
294 |
|
|
295 |
-- |
|
296 |
-- Table structure for table `monthmaster` |
|
297 |
-- |
|
298 |
|
|
299 |
DROP TABLE IF EXISTS `monthmaster`; |
|
300 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
301 |
/*!40101 SET character_set_client = utf8 */; |
|
302 |
CREATE TABLE `monthmaster` ( |
|
303 |
`month` smallint(6) NOT NULL COMMENT '??', |
|
304 |
PRIMARY KEY (`month`) |
|
305 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='???}?X?^'; |
|
306 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
307 |
|
|
308 |
-- |
|
309 |
-- Dumping data for table `monthmaster` |
|
310 |
-- |
|
311 |
|
|
312 |
LOCK TABLES `monthmaster` WRITE; |
|
313 |
/*!40000 ALTER TABLE `monthmaster` DISABLE KEYS */; |
|
314 |
INSERT INTO `monthmaster` VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12); |
|
315 |
/*!40000 ALTER TABLE `monthmaster` ENABLE KEYS */; |
|
316 |
UNLOCK TABLES; |
|
317 |
|
|
318 |
-- |
|
319 |
-- Table structure for table `personinchargemaster` |
|
320 |
-- |
|
321 |
|
|
322 |
DROP TABLE IF EXISTS `personinchargemaster`; |
|
323 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
324 |
/*!40101 SET character_set_client = utf8 */; |
|
325 |
CREATE TABLE `personinchargemaster` ( |
|
326 |
`PersonCode` decimal(8,0) unsigned NOT NULL COMMENT '?S????R?[?h', |
|
327 |
`DisplayOrder` decimal(8,0) unsigned NOT NULL COMMENT '?\????', |
|
328 |
`PersonName` varchar(60) NOT NULL COMMENT '?S?????', |
|
329 |
`PersonNameKana` varchar(60) DEFAULT NULL COMMENT '?t???K?i', |
|
330 |
`Sex` decimal(1,0) DEFAULT '0' COMMENT '????', |
|
331 |
`BloodType` varchar(6) DEFAULT NULL COMMENT '???t?^', |
|
332 |
`Birthday` date NOT NULL COMMENT '???N????', |
|
333 |
`ZipCode` varchar(8) DEFAULT NULL COMMENT '?X????', |
|
334 |
`Address1` varchar(60) DEFAULT NULL COMMENT '???Z??1', |
|
335 |
`Address2` varchar(60) DEFAULT NULL COMMENT '???Z??2', |
|
336 |
`Address3` varchar(60) DEFAULT NULL COMMENT '???Z??3', |
|
337 |
`PhoneNumber` varchar(13) DEFAULT NULL COMMENT '?A????d?b???', |
|
338 |
`EmgPhoneNumber` varchar(13) DEFAULT NULL COMMENT '??}?A????d?b???', |
|
339 |
`EmgContact` varchar(60) DEFAULT NULL COMMENT '??}?A????', |
|
340 |
`StartDate` date NOT NULL COMMENT '????N????', |
|
341 |
`EndDate` date DEFAULT NULL COMMENT '???N????', |
|
342 |
`PassWord` varchar(16) DEFAULT NULL COMMENT '?p?X???[?h', |
|
343 |
`SecurityManagement` decimal(1,0) NOT NULL COMMENT '?@????', |
|
344 |
`SecCode` decimal(2,0) unsigned NOT NULL COMMENT '???????', |
|
345 |
`MsgBackColor` varchar(8) DEFAULT NULL COMMENT '???b?Z?[?W?w?i?F', |
|
346 |
`DisplayString` varchar(20) DEFAULT NULL COMMENT '??E????', |
|
347 |
`DepartmentCode` decimal(5,0) unsigned DEFAULT NULL COMMENT '?????R?[?h', |
|
348 |
`MonthlySalary` decimal(11,0) NOT NULL COMMENT '???????z', |
|
349 |
`YearSalary` decimal(12,0) NOT NULL COMMENT '?N????z', |
|
350 |
`Qualification` varchar(120) DEFAULT NULL COMMENT '???i?????', |
|
351 |
`SealPrintName` varchar(5) DEFAULT NULL COMMENT '???\????', |
|
352 |
`EmployeeClassFlg` decimal(1,0) NOT NULL COMMENT '?????', |
|
353 |
`LedgerFlg` decimal(1,0) NOT NULL COMMENT '???v?Z???t???O', |
|
354 |
`CommutingDistance` decimal(5,2) NOT NULL COMMENT '??????', |
|
355 |
`CommuteCosts` decimal(5,0) NOT NULL COMMENT '??????', |
|
356 |
`PaidVacationDays` decimal(4,1) NOT NULL COMMENT '???N?x?L???x?????', |
|
357 |
`PaidVacationDaysPrev` decimal(4,1) NOT NULL COMMENT '?O?N?x?L???x?????', |
|
358 |
`WorkingCode` decimal(3,0) unsigned NOT NULL COMMENT '?A??R?[?h', |
|
359 |
`PaidDayOffFlg` decimal(1,0) unsigned NOT NULL COMMENT '?L?????t???O', |
|
360 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
361 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
362 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
363 |
PRIMARY KEY (`PersonCode`), |
|
364 |
KEY `PersonInChargeMaster_Index1` (`StartDate`), |
|
365 |
KEY `PersonInChargeMaster_Index2` (`DepartmentCode`) |
|
366 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='?S????}?X?^'; |
|
367 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
368 |
|
|
369 |
-- |
|
370 |
-- Dumping data for table `personinchargemaster` |
|
371 |
-- |
|
372 |
|
|
373 |
LOCK TABLES `personinchargemaster` WRITE; |
|
374 |
/*!40000 ALTER TABLE `personinchargemaster` DISABLE KEYS */; |
|
375 |
INSERT INTO `personinchargemaster` VALUES (20181001,1,'?H???????','?R?E?W?J?????V??',0,'A','9999-12-31','','','','','','','','2018-10-01','9999-12-31','20181001',4,1,'','',1,0,0,'','???F??',1,1,0.00,0.0,0.0,0,0,0,0,'2018-10-03 14:23:19','2018-10-03 14:23:19'); |
|
376 |
/*!40000 ALTER TABLE `personinchargemaster` ENABLE KEYS */; |
|
377 |
UNLOCK TABLES; |
|
378 |
|
|
379 |
-- |
|
380 |
-- Table structure for table `processexcutemaster` |
|
381 |
-- |
|
382 |
|
|
383 |
DROP TABLE IF EXISTS `processexcutemaster`; |
|
384 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
385 |
/*!40101 SET character_set_client = utf8 */; |
|
386 |
CREATE TABLE `processexcutemaster` ( |
|
387 |
`SecCode` decimal(2,0) unsigned NOT NULL COMMENT '???????', |
|
388 |
`ExecCode` decimal(4,0) unsigned NOT NULL COMMENT '?N?????????', |
|
389 |
`EditFlg` decimal(1,0) NOT NULL COMMENT '??W?t???O', |
|
390 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
391 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
392 |
PRIMARY KEY (`SecCode`,`ExecCode`), |
|
393 |
KEY `ProcessExcuteMaster_Index1` (`SecCode`), |
|
394 |
KEY `ProcessExcuteMaster_Index2` (`ExecCode`) |
|
395 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?N?????}?X?^'; |
|
396 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
397 |
|
|
398 |
-- |
|
399 |
-- Dumping data for table `processexcutemaster` |
|
400 |
-- |
|
401 |
|
|
402 |
LOCK TABLES `processexcutemaster` WRITE; |
|
403 |
/*!40000 ALTER TABLE `processexcutemaster` DISABLE KEYS */; |
|
404 |
INSERT INTO `processexcutemaster` VALUES (1,1,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,7,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,10,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,11,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,12,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,15,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,20,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,21,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,37,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,40,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,41,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,42,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,45,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,101,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,102,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,103,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,104,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,105,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,106,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,107,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,108,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,111,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,112,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,115,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,116,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,117,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,118,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,120,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,124,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,125,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,126,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,127,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,129,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,130,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,131,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,132,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,20,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,21,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(2,103,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,104,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,105,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,106,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,107,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,108,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,125,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,127,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,20,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,21,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(3,103,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,104,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,105,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,106,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,107,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,108,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,125,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,127,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(4,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(5,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,20,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,21,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(5,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(6,109,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,128,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,4,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,5,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,6,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,9,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,10,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,13,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,14,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,40,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,41,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,42,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(7,103,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,116,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,130,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,4,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,5,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,6,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,9,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,10,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,13,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,14,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,18,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,40,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,41,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,42,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(8,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,116,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,130,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,12,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,15,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(9,127,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,2,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,3,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,5,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,6,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,8,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,13,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,14,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,16,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,17,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,19,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,29,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,30,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,31,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,32,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,34,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,36,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,39,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,40,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,41,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,42,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(10,102,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,103,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,109,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,110,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,111,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,114,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,116,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,118,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,121,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,122,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,123,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,125,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,126,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,130,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,40,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,41,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,42,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(11,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,116,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,130,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(12,128,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(13,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(13,8,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(13,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'); |
|
405 |
/*!40000 ALTER TABLE `processexcutemaster` ENABLE KEYS */; |
|
406 |
UNLOCK TABLES; |
|
407 |
|
|
408 |
-- |
|
409 |
-- Table structure for table `systemexecute` |
|
410 |
-- |
|
411 |
|
|
412 |
DROP TABLE IF EXISTS `systemexecute`; |
|
413 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
414 |
/*!40101 SET character_set_client = utf8 */; |
|
415 |
CREATE TABLE `systemexecute` ( |
|
416 |
`PrimaryCode` tinyint(4) NOT NULL COMMENT '?L?[????', |
|
417 |
`TargetDate` date NOT NULL COMMENT '?N?????t', |
|
418 |
`SystemVersion` int(11) NOT NULL COMMENT '?{??E????o?[?W????', |
|
419 |
`UpDateCopyVersion` int(11) NOT NULL COMMENT '?R?s?[?o?[?W????', |
|
420 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
421 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
422 |
PRIMARY KEY (`PrimaryCode`) |
|
423 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?V?X?e???N???m?F?f?[?^'; |
|
424 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
425 |
|
|
426 |
-- |
|
427 |
-- Dumping data for table `systemexecute` |
|
428 |
-- |
|
429 |
|
|
430 |
LOCK TABLES `systemexecute` WRITE; |
|
431 |
/*!40000 ALTER TABLE `systemexecute` DISABLE KEYS */; |
|
432 |
INSERT INTO `systemexecute` VALUES (1,'2018-10-03',0,0,'2015-12-21 17:24:12','2018-10-03 13:27:49'),(2,'2017-02-27',228,2,'2017-02-27 15:04:23','2017-05-13 13:15:23'); |
|
433 |
/*!40000 ALTER TABLE `systemexecute` ENABLE KEYS */; |
|
434 |
UNLOCK TABLES; |
|
435 |
-- |
|
436 |
-- Table structure for table `systemmaster` |
|
437 |
-- |
|
438 |
|
|
439 |
DROP TABLE IF EXISTS `systemmaster`; |
|
440 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
441 |
/*!40101 SET character_set_client = utf8 */; |
|
442 |
CREATE TABLE `systemmaster` ( |
|
443 |
`SystemCode` decimal(3,0) unsigned NOT NULL COMMENT '???R?[?h', |
|
444 |
`CompanyName1` varchar(60) NOT NULL COMMENT '?????P', |
|
445 |
`CompanyName2` varchar(60) DEFAULT NULL COMMENT '?????Q', |
|
446 |
`CEOName` varchar(60) NOT NULL COMMENT '??\?????', |
|
447 |
`CEOPositionName` varchar(60) DEFAULT NULL COMMENT '??\???E??', |
|
448 |
`ZipCode` varchar(8) NOT NULL COMMENT '?X????', |
|
449 |
`Address1` varchar(60) NOT NULL COMMENT '?Z???P', |
|
450 |
`Address2` varchar(60) DEFAULT NULL COMMENT '?Z??2', |
|
451 |
`Address3` varchar(60) DEFAULT NULL COMMENT '?Z??3', |
|
452 |
`PhoneNumber` varchar(13) NOT NULL COMMENT '?d?b???', |
|
453 |
`FaxNumber` varchar(13) DEFAULT NULL COMMENT 'FAX???', |
|
454 |
`HomePageURL` varchar(120) DEFAULT NULL COMMENT '?z?[???y?[?WURL', |
|
455 |
`ConsumptionTax` decimal(4,2) NOT NULL COMMENT '?????', |
|
456 |
`CooperationRate` decimal(4,2) NOT NULL COMMENT '???????', |
|
457 |
`StatutoryWelfareRate` decimal(4,2) NOT NULL COMMENT '?@???????', |
|
458 |
`FuelPrice` decimal(5,2) NOT NULL COMMENT '?R???L???P??', |
|
459 |
`AreaDistance` decimal(5,2) NOT NULL COMMENT '????u????????', |
|
460 |
`ExcelSavePath` varchar(120) DEFAULT NULL COMMENT 'Excel????p?X', |
|
461 |
`BusinessPeriod` smallint(6) NOT NULL COMMENT '????c?????', |
|
462 |
`ConstrYear` smallint(6) NOT NULL COMMENT '????H???N?x', |
|
463 |
`BusinessBeginDate` datetime NOT NULL COMMENT '?c????????', |
|
464 |
`ConstrBeginDate` datetime NOT NULL COMMENT '?H???N?x?????', |
|
465 |
`BusinessCompDate` datetime NOT NULL COMMENT '?c?????????', |
|
466 |
`ConstrCompDate` datetime NOT NULL COMMENT '?H???N?x??????', |
|
467 |
`ConstructionNoBase` decimal(1,0) NOT NULL COMMENT '?H????????l', |
|
468 |
`SloganString1` varchar(100) DEFAULT NULL COMMENT '?W??1', |
|
469 |
`SloganString2` varchar(100) DEFAULT NULL COMMENT '?W??2', |
|
470 |
`SloganString3` varchar(100) DEFAULT NULL COMMENT '?W??3', |
|
471 |
`OperationFlg` decimal(2,0) unsigned NOT NULL COMMENT '???F?^?p?t???O', |
|
472 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
473 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
474 |
PRIMARY KEY (`SystemCode`) |
|
475 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='????}?X?^'; |
|
476 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
477 |
|
|
478 |
-- |
|
479 |
-- Dumping data for table `systemmaster` |
|
480 |
-- |
|
481 |
|
|
482 |
LOCK TABLES `systemmaster` WRITE; |
|
483 |
/*!40000 ALTER TABLE `systemmaster` DISABLE KEYS */; |
|
484 |
INSERT INTO `systemmaster` VALUES (1,'???????@???z???','','??\?@???N','??\?????','650-0001','?????','?_??s??????','???[??','078-000-0000','078-000-0001','',10.00,0.50,8.00,20.00,3.00,'C:\\Temp\\?G?N?Z???f?[?^',0,0,'2010-01-01 00:00:00','2010-01-01 00:00:00','9999-12-31 00:00:00','9999-12-31 00:00:00',-1,'','','',0,'2015-09-05 00:00:00','2018-09-28 15:25:49'); |
|
485 |
/*!40000 ALTER TABLE `systemmaster` ENABLE KEYS */; |
|
486 |
UNLOCK TABLES; |
|
487 |
|
|
488 |
-- |
|
489 |
-- Table structure for table `unitmaster` |
|
490 |
-- |
|
491 |
|
|
492 |
DROP TABLE IF EXISTS `unitmaster`; |
|
493 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
494 |
/*!40101 SET character_set_client = utf8 */; |
|
495 |
CREATE TABLE `unitmaster` ( |
|
496 |
`UnitKey` decimal(5,0) unsigned NOT NULL COMMENT '?P??L?[', |
|
497 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
498 |
`UnitName` varchar(30) NOT NULL COMMENT '?P?????', |
|
499 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
500 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
501 |
PRIMARY KEY (`UnitKey`), |
|
502 |
KEY `UnitMaster_Index1` (`DisplayOrder`) |
|
503 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?P??}?X?^'; |
|
504 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
505 |
|
|
506 |
-- |
|
507 |
-- Dumping data for table `unitmaster` |
|
508 |
-- |
|
509 |
|
|
510 |
LOCK TABLES `unitmaster` WRITE; |
|
511 |
/*!40000 ALTER TABLE `unitmaster` DISABLE KEYS */; |
|
512 |
INSERT INTO `unitmaster` VALUES (1,2,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(2,28,'???j?b?g','2015-08-31 00:00:00','2018-09-14 11:02:46'),(3,26,'?p?b?N','2015-08-31 00:00:00','2018-09-14 11:02:46'),(4,27,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(5,21,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(6,29,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(7,30,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(8,18,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(9,31,'?n??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(10,7,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(11,32,'?X?p??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(12,33,'?p??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(13,15,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(14,1,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(15,34,'?A','2015-08-31 00:00:00','2018-09-14 11:02:46'),(16,16,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(17,35,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(18,36,'???E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(19,9,'?????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(20,37,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(21,38,'???E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(22,3,'???Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(23,14,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(24,39,'???Q?E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(25,40,'?????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(26,23,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(27,41,'?X?p????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(28,8,'?????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(29,13,'?g','2015-08-31 00:00:00','2018-09-14 11:02:46'),(30,42,'???X?p??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(31,10,'?????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(32,19,'?{','2015-08-31 00:00:00','2018-09-14 11:02:46'),(33,43,'??E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(34,44,'???????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(35,45,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(36,46,'???E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(37,47,'???k','2015-08-31 00:00:00','2018-09-14 11:02:46'),(38,48,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(39,49,'?{?E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(40,50,'?k','2015-08-31 00:00:00','2018-09-14 11:02:46'),(41,20,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(42,51,'?g?E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(43,4,'???R','2015-08-31 00:00:00','2018-09-14 11:02:46'),(44,52,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(45,53,'??E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(46,5,'??R','2015-08-31 00:00:00','2018-09-14 11:02:46'),(47,54,'?Z?b?g','2015-08-31 00:00:00','2018-09-14 11:02:46'),(48,55,'???E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(49,56,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(50,57,'?L?b?g','2015-08-31 00:00:00','2018-09-14 11:02:46'),(51,58,'?Z?b?g??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(52,59,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(53,22,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(54,60,'???Q?E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(55,61,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(56,62,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(57,63,'??E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(58,64,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(59,6,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(60,65,'??E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(61,66,'?E','2015-08-31 00:00:00','2018-09-14 11:02:46'),(62,67,'???','2015-08-31 00:00:00','2018-09-14 11:02:46'),(63,11,'????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(64,24,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(65,68,'?????O','2015-08-31 00:00:00','2018-09-14 11:02:46'),(66,12,'????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(67,69,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(68,70,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(69,71,'???Q?E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(70,72,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(71,73,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(72,74,'?S????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(73,75,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(74,25,'?P?[?X','2015-08-31 00:00:00','2018-09-14 11:02:46'),(75,76,'???X?p??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(76,77,'?o','2015-08-31 00:00:00','2018-09-14 11:02:46'),(77,78,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(78,79,'?|?C???g','2015-08-31 00:00:00','2018-09-14 11:02:46'),(79,80,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(80,17,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(81,81,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(82,82,'???','2015-08-31 00:00:00','2018-09-14 11:02:46'); |
|
513 |
/*!40000 ALTER TABLE `unitmaster` ENABLE KEYS */; |
|
514 |
UNLOCK TABLES; |
|
515 |
|
|
516 |
-- |
|
517 |
-- Table structure for table `yearmaster` |
|
518 |
-- |
|
519 |
|
|
520 |
DROP TABLE IF EXISTS `yearmaster`; |
|
521 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
522 |
/*!40101 SET character_set_client = utf8 */; |
|
523 |
CREATE TABLE `yearmaster` ( |
|
524 |
`years` smallint(6) NOT NULL COMMENT '?N', |
|
525 |
PRIMARY KEY (`years`) |
|
526 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?N?}?X?^'; |
|
527 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
528 |
|
|
529 |
-- |
|
530 |
-- Dumping data for table `yearmaster` |
|
531 |
-- |
|
532 |
|
|
533 |
LOCK TABLES `yearmaster` WRITE; |
|
534 |
/*!40000 ALTER TABLE `yearmaster` DISABLE KEYS */; |
|
535 |
INSERT INTO `yearmaster` VALUES (2010),(2011),(2012),(2013),(2014),(2015),(2016),(2017),(2018),(2019),(2020),(2021),(2022),(2023),(2024),(2025),(2026),(2027),(2028),(2029),(2030),(2031),(2032),(2033),(2034),(2035),(2036),(2037),(2038),(2039),(2040),(2041),(2042),(2043),(2044),(2045),(2046),(2047),(2048),(2049),(2050),(2051),(2052),(2053),(2054),(2055),(2056),(2057),(2058),(2059),(2060),(2061),(2062),(2063),(2064),(2065),(2066),(2067),(2068),(2069),(2070),(2071),(2072),(2073),(2074),(2075),(2076),(2077),(2078),(2079),(2080),(2081),(2082),(2083),(2084),(2085),(2086),(2087),(2088),(2089),(2090),(2091),(2092),(2093),(2094),(2095),(2096),(2097),(2098),(2099),(2100),(2101),(2102),(2103),(2104),(2105),(2106),(2107),(2108),(2109),(2110),(2111),(2112),(2113),(2114); |
|
536 |
/*!40000 ALTER TABLE `yearmaster` ENABLE KEYS */; |
|
537 |
UNLOCK TABLES; |
|
538 |
|
trunk/ddl/InitData_OLD.SQL | ||
---|---|---|
1 |
-- |
|
2 |
-- Table structure for table `budgetsumcode` |
|
3 |
-- |
|
4 |
|
|
5 |
DROP TABLE IF EXISTS `budgetsumcode`; |
|
6 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
7 |
/*!40101 SET character_set_client = utf8 */; |
|
8 |
CREATE TABLE `budgetsumcode` ( |
|
9 |
`BlockCode` decimal(2,0) unsigned NOT NULL COMMENT '?u???b?N???', |
|
10 |
`GroupCode` decimal(2,0) unsigned NOT NULL COMMENT '?O???[?v???', |
|
11 |
`ComponentCode` decimal(5,0) unsigned NOT NULL COMMENT '?\???L?[', |
|
12 |
`ItemCode` decimal(5,0) unsigned NOT NULL COMMENT '?H??L?[', |
|
13 |
`ElementsName` varchar(100) NOT NULL COMMENT '?v?f????', |
|
14 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
15 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
16 |
PRIMARY KEY (`BlockCode`,`GroupCode`,`ComponentCode`,`ItemCode`) |
|
17 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?\?Z???W?v?R?[?h?}?X?^'; |
|
18 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
19 |
|
|
20 |
-- |
|
21 |
-- Dumping data for table `budgetsumcode` |
|
22 |
-- |
|
23 |
|
|
24 |
LOCK TABLES `budgetsumcode` WRITE; |
|
25 |
/*!40000 ALTER TABLE `budgetsumcode` DISABLE KEYS */; |
|
26 |
INSERT INTO `budgetsumcode` VALUES (1,0,1,0,'???????H????i????????j?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,2,0,'???H????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,3,0,'???z?H????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,4,0,'?d?C????H????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,5,0,'?@?B????H????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,6,0,'????????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,7,0,'???????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(1,0,18,0,'???????????@?????????D?H???p','2018-05-24 09:41:24','2018-05-24 09:41:24'),(2,1,18,0,'???????????@?????????D?H???p','2018-05-24 09:41:36','2018-05-24 09:41:36'),(3,2,7,0,'???????@?????????D?H???p','2018-05-24 09:41:50','2018-05-24 09:41:50'),(3,2,21,0,'???????@?????????E???H???p','2018-05-24 09:41:50','2018-05-24 09:41:50'),(4,3,6,0,'????????@?????????D?H???p','2018-05-24 09:42:01','2018-05-24 09:42:01'),(4,3,20,0,'????????@?????????E???H???p','2018-05-24 09:42:01','2018-05-24 09:42:01'),(5,4,1,0,'???????H????i????????j?????????D?H???p','2018-05-24 09:42:21','2018-05-24 09:42:21'),(5,4,1,10,'????????????@???????H??','2018-05-24 09:42:33','2018-05-24 09:42:33'),(6,5,2,0,'???H????@?????????D?H???p','2018-05-24 09:42:46','2018-05-24 09:42:46'),(6,6,3,0,'???z?H????@?????????D?H???p','2018-05-24 09:42:55','2018-05-24 09:42:55'),(6,7,4,0,'?d?C????H????@?????????D?H???p','2018-05-24 09:43:04','2018-05-24 09:43:04'),(6,8,5,0,'?@?B????H????@?????????D?H???p','2018-05-24 09:43:12','2018-05-24 09:43:12'); |
|
27 |
/*!40000 ALTER TABLE `budgetsumcode` ENABLE KEYS */; |
|
28 |
UNLOCK TABLES; |
|
29 |
|
|
30 |
DROP TABLE IF EXISTS `businesstypemaster`; |
|
31 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
32 |
/*!40101 SET character_set_client = utf8 */; |
|
33 |
CREATE TABLE `businesstypemaster` ( |
|
34 |
`BusinessTypeCode` decimal(5,0) unsigned NOT NULL COMMENT '?@?l?i?R?[?h', |
|
35 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
36 |
`BusinessTypeName` varchar(100) NOT NULL DEFAULT '' COMMENT '???', |
|
37 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
38 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
39 |
PRIMARY KEY (`BusinessTypeCode`), |
|
40 |
KEY `BusinessTypeMaster_Index1` (`DisplayOrder`) |
|
41 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?@?l?i?}?X?^'; |
|
42 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
43 |
|
|
44 |
-- |
|
45 |
-- Dumping data for table `businesstypemaster` |
|
46 |
-- |
|
47 |
|
|
48 |
LOCK TABLES `businesstypemaster` WRITE; |
|
49 |
/*!40000 ALTER TABLE `businesstypemaster` DISABLE KEYS */; |
|
50 |
INSERT INTO `businesstypemaster` VALUES (1,1,'???????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(2,2,'?L?????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(3,3,'???????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(4,4,'???????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(5,5,'???????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(6,6,'???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(7,7,'???@?l??c','2015-11-04 00:00:00','2015-11-04 00:00:00'),(8,8,'???@?l???c','2015-11-04 00:00:00','2015-11-04 00:00:00'),(9,9,'?????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(10,10,'???c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(11,11,'?????c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(12,12,'???v???c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(13,13,'??c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(14,14,'????c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(15,15,'???v??c?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(16,16,'?@???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(17,17,'?w?Z?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(18,18,'??????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(19,19,'?X?????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(20,20,'??????','2015-11-04 00:00:00','2015-11-04 00:00:00'),(21,21,'?????c???????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(22,22,'????s???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(23,23,'?n??????s???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(24,24,'???m?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(25,25,'?L????C????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(26,26,'??????C????@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(27,27,'?s?????m?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(28,28,'?i?@???m?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(29,29,'????m?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(30,30,'??????w?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(31,31,'??????w?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(32,32,'?_???g???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(33,33,'????g???@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'),(34,34,'??????J???m?@?l','2015-11-04 00:00:00','2015-11-04 00:00:00'); |
|
51 |
/*!40000 ALTER TABLE `businesstypemaster` ENABLE KEYS */; |
|
52 |
UNLOCK TABLES; |
|
53 |
|
|
54 |
-- |
|
55 |
-- Table structure for table `componentlinkmaster` |
|
56 |
-- |
|
57 |
|
|
58 |
DROP TABLE IF EXISTS `componentlinkmaster`; |
|
59 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
60 |
/*!40101 SET character_set_client = utf8 */; |
|
61 |
CREATE TABLE `componentlinkmaster` ( |
|
62 |
`ComponentCode` decimal(5,0) unsigned NOT NULL COMMENT '?\???L?[', |
|
63 |
`ItemCode` decimal(5,0) unsigned NOT NULL COMMENT '?H??L?[', |
|
64 |
`DisplayOrder` decimal(5,0) unsigned DEFAULT NULL COMMENT '?\????', |
|
65 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
66 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
67 |
PRIMARY KEY (`ComponentCode`,`ItemCode`), |
|
68 |
KEY `ComponentLinkMaster_Index1` (`ComponentCode`), |
|
69 |
KEY `ComponentLinkMaster_Index2` (`ItemCode`) |
|
70 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?\???H???A?}?X?^'; |
|
71 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
72 |
|
|
73 |
-- |
|
74 |
-- Dumping data for table `componentlinkmaster` |
|
75 |
-- |
|
76 |
|
|
77 |
LOCK TABLES `componentlinkmaster` WRITE; |
|
78 |
/*!40000 ALTER TABLE `componentlinkmaster` DISABLE KEYS */; |
|
79 |
INSERT INTO `componentlinkmaster` VALUES (1,1,2,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,2,3,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,3,4,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,4,5,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,5,6,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,6,7,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,7,8,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,8,9,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,10,10,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(1,11,1,'2016-03-08 17:40:19','2016-03-08 17:40:19'),(3,20,2,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,22,1,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,23,3,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,24,4,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,25,5,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,26,6,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,27,7,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,28,8,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,29,9,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,30,10,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,31,11,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,32,12,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,33,13,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,34,14,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,35,15,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,36,16,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,37,17,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,38,18,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,39,19,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,40,20,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,41,21,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,42,22,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,43,23,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,44,24,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,45,25,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,46,26,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,47,28,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,48,29,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,49,30,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,50,31,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(3,51,27,'2018-10-03 13:39:07','2018-10-03 13:39:07'),(5,58,10,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,67,2,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,68,3,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,69,4,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,70,5,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,71,6,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,72,7,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,73,8,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,74,9,'2017-02-13 18:45:45','2017-02-13 18:45:45'),(5,131,1,'2017-02-13 18:45:45','2017-02-13 18:45:45'); |
|
80 |
/*!40000 ALTER TABLE `componentlinkmaster` ENABLE KEYS */; |
|
81 |
UNLOCK TABLES; |
|
82 |
|
|
83 |
-- |
|
84 |
-- Table structure for table `componentmaster` |
|
85 |
-- |
|
86 |
|
|
87 |
DROP TABLE IF EXISTS `componentmaster`; |
|
88 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
89 |
/*!40101 SET character_set_client = utf8 */; |
|
90 |
CREATE TABLE `componentmaster` ( |
|
91 |
`ComponentCode` decimal(5,0) unsigned NOT NULL COMMENT '?\???L?[', |
|
92 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
93 |
`ComponentName` varchar(120) NOT NULL DEFAULT '' COMMENT '?\??????', |
|
94 |
`SubItemsFlg` decimal(1,0) DEFAULT NULL COMMENT '???????t???O', |
|
95 |
`DirectInputFlg` decimal(1,0) DEFAULT NULL COMMENT '???????t???O', |
|
96 |
`MyExpensesFlg` decimal(1,0) DEFAULT NULL COMMENT '????o??t???O', |
|
97 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
98 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
99 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
100 |
PRIMARY KEY (`ComponentCode`), |
|
101 |
KEY `ComponentMaster_Index1` (`DisplayOrder`) |
|
102 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?\???}?X?^'; |
|
103 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
104 |
|
|
105 |
-- |
|
106 |
-- Dumping data for table `componentmaster` |
|
107 |
-- |
|
108 |
|
|
109 |
LOCK TABLES `componentmaster` WRITE; |
|
110 |
/*!40000 ALTER TABLE `componentmaster` DISABLE KEYS */; |
|
111 |
INSERT INTO `componentmaster` VALUES (1,1,'???????H????i????????j',1,0,0,0,'2015-09-02 00:00:00','2018-10-03 13:49:54'),(2,2,'???H????',1,0,0,0,'2015-09-02 00:00:00','2018-10-03 13:49:54'),(3,3,'???z?H????',1,0,0,0,'2015-09-02 00:00:00','2018-10-03 13:49:54'),(4,5,'?d?C????H????',1,0,0,0,'2015-09-02 00:00:00','2018-10-03 13:49:54'),(5,4,'?@?B????H????',1,0,0,0,'2015-09-02 00:00:00','2018-10-03 13:49:54'),(6,7,'????????',0,1,1,0,'2015-09-02 00:00:00','2018-10-03 13:49:54'),(7,8,'???????',0,1,1,0,'2015-09-02 00:00:00','2018-10-03 13:49:54'),(18,6,'???????????',0,1,0,0,'2016-03-08 16:41:32','2018-10-03 13:49:54'); |
|
112 |
/*!40000 ALTER TABLE `componentmaster` ENABLE KEYS */; |
|
113 |
UNLOCK TABLES; |
|
114 |
|
|
115 |
-- |
|
116 |
-- Table structure for table `componenttotypemaster` |
|
117 |
-- |
|
118 |
|
|
119 |
DROP TABLE IF EXISTS `componenttotypemaster`; |
|
120 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
121 |
/*!40101 SET character_set_client = utf8 */; |
|
122 |
CREATE TABLE `componenttotypemaster` ( |
|
123 |
`TypeCode` decimal(5,0) unsigned NOT NULL COMMENT '?H?????R?[?h', |
|
124 |
`ComponentCode` decimal(5,0) unsigned NOT NULL COMMENT '?\???L?[', |
|
125 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
126 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
127 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
128 |
PRIMARY KEY (`TypeCode`,`ComponentCode`), |
|
129 |
KEY `ComponentToTypeMaster_Index1` (`TypeCode`), |
|
130 |
KEY `ComponentToTypeMaster_Index2` (`ComponentCode`) |
|
131 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?H?????E?\???????N?}?X?^'; |
|
132 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
133 |
|
|
134 |
-- |
|
135 |
-- Dumping data for table `componenttotypemaster` |
|
136 |
-- |
|
137 |
|
|
138 |
LOCK TABLES `componenttotypemaster` WRITE; |
|
139 |
/*!40000 ALTER TABLE `componenttotypemaster` DISABLE KEYS */; |
|
140 |
INSERT INTO `componenttotypemaster` VALUES (1,1,1,'2018-10-03 14:00:55','2018-10-03 14:00:55'),(1,2,2,'2018-10-03 14:00:55','2018-10-03 14:00:55'),(1,3,3,'2018-10-03 14:00:55','2018-10-03 14:00:55'),(1,4,5,'2018-10-03 14:00:55','2018-10-03 14:00:55'),(1,5,4,'2018-10-03 14:00:55','2018-10-03 14:00:55'),(1,6,7,'2018-10-03 14:00:55','2018-10-03 14:00:55'),(1,7,8,'2018-10-03 14:00:55','2018-10-03 14:00:55'),(1,18,6,'2018-10-03 14:00:55','2018-10-03 14:00:55'),(2,1,1,'2018-10-03 14:00:26','2018-10-03 14:00:26'),(2,2,2,'2018-10-03 14:00:26','2018-10-03 14:00:26'),(2,3,3,'2018-10-03 14:00:26','2018-10-03 14:00:26'),(2,4,5,'2018-10-03 14:00:26','2018-10-03 14:00:26'),(2,5,4,'2018-10-03 14:00:26','2018-10-03 14:00:26'),(2,6,7,'2018-10-03 14:00:26','2018-10-03 14:00:26'),(2,7,8,'2018-10-03 14:00:26','2018-10-03 14:00:26'),(2,18,6,'2018-10-03 14:00:26','2018-10-03 14:00:26'); |
|
141 |
/*!40000 ALTER TABLE `componenttotypemaster` ENABLE KEYS */; |
|
142 |
UNLOCK TABLES; |
|
143 |
|
|
144 |
-- |
|
145 |
-- Table structure for table `constructionitemmaster` |
|
146 |
-- |
|
147 |
|
|
148 |
DROP TABLE IF EXISTS `constructionitemmaster`; |
|
149 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
150 |
/*!40101 SET character_set_client = utf8 */; |
|
151 |
CREATE TABLE `constructionitemmaster` ( |
|
152 |
`ItemCode` decimal(5,0) unsigned NOT NULL COMMENT '?H??L?[', |
|
153 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
154 |
`ItemName` varchar(120) NOT NULL DEFAULT '' COMMENT '?H????', |
|
155 |
`SubItemsFlg` decimal(1,0) DEFAULT NULL COMMENT '???????t???O', |
|
156 |
`MyExpensesFlg` decimal(1,0) NOT NULL COMMENT '????o??t???O', |
|
157 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
158 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
159 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
160 |
PRIMARY KEY (`ItemCode`) |
|
161 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?H??}?X?^'; |
|
162 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
163 |
|
|
164 |
-- |
|
165 |
-- Dumping data for table `constructionitemmaster` |
|
166 |
-- |
|
167 |
|
|
168 |
LOCK TABLES `constructionitemmaster` WRITE; |
|
169 |
/*!40000 ALTER TABLE `constructionitemmaster` DISABLE KEYS */; |
|
170 |
INSERT INTO `constructionitemmaster` VALUES (10,2,'????????????',1,0,0,'2016-02-15 15:13:10','2018-10-03 13:53:10'),(11,1,'???????H???@???W???Z?????',0,0,0,'2016-02-15 15:13:10','2018-10-03 13:53:09'),(20,4,'???????H????',1,0,0,'2016-02-15 15:13:10','2018-10-03 13:53:09'),(22,13,'?y?H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(23,14,'?n??H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(24,16,'?S??H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(25,17,'?R???N???[?g?H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(26,18,'?^?g?H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(27,19,'?S???H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(28,20,'?????H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(29,21,'?`?k?b?p?l???H??',1,0,0,'2016-02-15 15:13:11','2018-10-03 13:53:09'),(30,22,'???o???`?Z?????g??H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(31,24,'?h???H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(32,25,'??E?^?C???H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(33,26,'??H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(35,29,'?????E????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(36,30,'?????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(37,31,'?????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(39,33,'???????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(40,34,'??????????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(41,35,'?V???b?^?[?H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(42,36,'?K???X?H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(43,38,'?h???H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(44,39,'?????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(45,41,'?y?S?H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(46,42,'?????d???H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(47,44,'???j?b?g?H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(50,50,'??????H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(51,43,'???H??',1,0,0,'2016-02-15 15:13:12','2018-10-03 13:53:09'),(86,48,'?A??H??',1,0,0,'2016-02-15 15:13:16','2018-10-03 13:53:09'),(112,23,'?????R???N???[?g?H??',1,0,0,'2016-04-21 08:26:28','2018-10-03 13:53:09'),(116,40,'?O???H??',1,0,0,'2016-09-21 16:58:22','2018-10-03 13:53:09'),(117,15,'??b?H??',1,0,0,'2016-10-12 15:22:56','2018-10-03 13:53:09'),(119,47,'???O?H??',1,0,0,'2016-10-27 13:10:39','2018-10-03 13:53:09'),(120,37,'????E?K???X?H??',1,0,0,'2016-10-27 13:13:18','2018-10-03 13:53:09'),(126,49,'?T?C???H??',1,0,0,'2017-01-14 10:20:06','2018-10-03 13:53:09'); |
|
171 |
/*!40000 ALTER TABLE `constructionitemmaster` ENABLE KEYS */; |
|
172 |
UNLOCK TABLES; |
|
173 |
|
|
174 |
-- |
|
175 |
-- Table structure for table `constructiontypemaster` |
|
176 |
-- |
|
177 |
|
|
178 |
DROP TABLE IF EXISTS `constructiontypemaster`; |
|
179 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
180 |
/*!40101 SET character_set_client = utf8 */; |
|
181 |
CREATE TABLE `constructiontypemaster` ( |
|
182 |
`TypeCode` decimal(5,0) unsigned NOT NULL COMMENT '?H?????R?[?h', |
|
183 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
184 |
`NameString` varchar(100) NOT NULL COMMENT '????', |
|
185 |
`PublicFlg` decimal(1,0) NOT NULL COMMENT '?????t???O', |
|
186 |
`RepairFlg` decimal(1,0) NOT NULL COMMENT '?V?z?E???C?t???O', |
|
187 |
`SecRank` decimal(1,0) NOT NULL COMMENT '?????????N', |
|
188 |
`ExpensesLink` decimal(1,0) NOT NULL COMMENT '?o??g?p??', |
|
189 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
190 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
191 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
192 |
PRIMARY KEY (`TypeCode`) |
|
193 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?H?????}?X?^'; |
|
194 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
195 |
|
|
196 |
-- |
|
197 |
-- Table structure for table `daymaster` |
|
198 |
-- |
|
199 |
|
|
200 |
DROP TABLE IF EXISTS `daymaster`; |
|
201 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
202 |
/*!40101 SET character_set_client = utf8 */; |
|
203 |
CREATE TABLE `daymaster` ( |
|
204 |
`days` smallint(6) NOT NULL COMMENT '??', |
|
205 |
PRIMARY KEY (`days`) |
|
206 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='???}?X?^'; |
|
207 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
208 |
|
|
209 |
-- |
|
210 |
-- Dumping data for table `daymaster` |
|
211 |
-- |
|
212 |
|
|
213 |
LOCK TABLES `daymaster` WRITE; |
|
214 |
/*!40000 ALTER TABLE `daymaster` DISABLE KEYS */; |
|
215 |
INSERT INTO `daymaster` VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(26),(27),(28),(29),(30),(31); |
|
216 |
/*!40000 ALTER TABLE `daymaster` ENABLE KEYS */; |
|
217 |
UNLOCK TABLES; |
|
218 |
|
|
219 |
|
|
220 |
-- |
|
221 |
-- Dumping data for table `constructiontypemaster` |
|
222 |
-- |
|
223 |
|
|
224 |
LOCK TABLES `constructiontypemaster` WRITE; |
|
225 |
/*!40000 ALTER TABLE `constructiontypemaster` DISABLE KEYS */; |
|
226 |
INSERT INTO `constructiontypemaster` VALUES (1,1,'????H??',2,0,4,0,0,'2015-11-16 15:19:01','2018-10-03 14:07:00'),(2,2,'?????H??',1,0,4,0,0,'2015-11-17 08:18:18','2018-10-03 14:07:00'),(3,3,'???C?E?C?U?H??',2,1,4,0,0,'2016-01-30 10:35:47','2018-10-03 14:07:00'),(4,4,'???t?H?[???H??',0,0,4,0,0,'2016-01-30 10:43:14','2018-10-03 14:07:00'); |
|
227 |
/*!40000 ALTER TABLE `constructiontypemaster` ENABLE KEYS */; |
|
228 |
UNLOCK TABLES; |
|
229 |
|
|
230 |
DROP TABLE IF EXISTS `departmentexpensesmaster`; |
|
231 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
232 |
/*!40101 SET character_set_client = utf8 */; |
|
233 |
CREATE TABLE `departmentexpensesmaster` ( |
|
234 |
`DepartmentCode` decimal(5,0) unsigned NOT NULL COMMENT '?????R?[?h', |
|
235 |
`ExpensesPeriod` smallint(6) NOT NULL COMMENT '?????', |
|
236 |
`NameCode` decimal(5,0) unsigned NOT NULL COMMENT '?o??R?[?h', |
|
237 |
`NameString` varchar(100) NOT NULL COMMENT '????', |
|
238 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
239 |
`ExpensesRaito` decimal(4,2) NOT NULL COMMENT '?o??', |
|
240 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
241 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
242 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
243 |
PRIMARY KEY (`DepartmentCode`,`ExpensesPeriod`,`NameCode`) |
|
244 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?????o???}?X?^'; |
|
245 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
246 |
|
|
247 |
-- |
|
248 |
-- Dumping data for table `departmentexpensesmaster` |
|
249 |
-- |
|
250 |
|
|
251 |
LOCK TABLES `departmentexpensesmaster` WRITE; |
|
252 |
/*!40000 ALTER TABLE `departmentexpensesmaster` DISABLE KEYS */; |
|
253 |
INSERT INTO `departmentexpensesmaster` VALUES (0,15,1,'?c??o??',1,8.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,15,2,'?e?????o??',2,5.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,15,3,'???o??',3,7.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,16,1,'?c??o??',1,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,16,2,'?e?????o??',2,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,16,3,'???o??',3,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,17,1,'?c??o??',1,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,17,2,'?e?????o??',2,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(0,17,3,'???o??',3,0.00,0,'2015-12-04 21:57:39','2015-12-04 21:57:39'),(1,15,1,'?c??o??',2,8.00,0,'2016-04-27 17:09:02','2016-04-27 17:09:02'),(1,15,2,'?e?????o??',3,5.00,0,'2016-04-27 17:09:02','2016-04-27 17:09:02'),(1,15,3,'???o??',1,7.00,0,'2016-04-27 17:09:02','2016-04-27 17:09:02'),(1,16,1,'?c??o??',2,2.00,0,'2016-12-16 10:09:55','2016-12-16 10:09:55'),(1,16,2,'?e?????o??',3,7.00,0,'2016-12-16 10:09:55','2016-12-16 10:09:55'),(1,16,3,'???o??',1,8.50,0,'2016-12-16 10:09:55','2016-12-16 10:09:55'),(1,17,1,'?c??o??',2,2.00,0,'2017-05-09 09:33:45','2017-05-09 09:33:45'),(1,17,2,'?e?????o??',3,6.50,0,'2017-05-09 09:33:45','2017-05-09 09:33:45'),(1,17,3,'???o??',1,8.50,0,'2017-05-09 09:33:45','2017-05-09 09:33:45'),(1,18,3,'???o??',1,7.00,0,'2018-10-03 14:16:56','2018-10-03 14:16:56'),(1,19,1,'?c??o??',2,2.00,0,'2017-11-24 15:04:26','2017-11-24 15:04:26'),(1,19,2,'?e?????o??',3,6.00,0,'2017-11-24 15:04:26','2017-11-24 15:04:26'),(1,19,3,'???o??',1,8.50,0,'2017-11-24 15:04:26','2017-11-24 15:04:26'),(2,15,1,'?c??o??',2,8.00,1,'2016-04-27 17:06:52','2018-10-03 14:23:19'),(2,15,2,'?e?????o??',3,5.00,1,'2016-04-27 17:06:52','2018-10-03 14:23:19'),(2,15,3,'???o??',1,7.00,1,'2016-04-27 17:06:52','2018-10-03 14:23:19'),(2,16,1,'?c??o??',2,2.00,1,'2016-04-27 17:06:52','2018-10-03 14:23:19'),(2,16,2,'?e?????o??',3,8.00,1,'2016-04-27 17:06:52','2018-10-03 14:23:19'),(2,16,3,'???o??',1,8.50,1,'2016-04-27 17:06:52','2018-10-03 14:23:19'),(2,17,1,'?c??o??',2,2.00,1,'2017-11-24 15:05:17','2018-10-03 14:23:19'),(2,17,2,'?e?????o??',3,7.00,1,'2017-11-24 15:05:17','2018-10-03 14:23:19'),(2,17,3,'???o??',1,8.50,1,'2017-11-24 15:05:17','2018-10-03 14:23:19'),(2,18,1,'?c??o??',2,1.50,1,'2018-02-10 20:40:34','2018-10-03 14:23:19'),(2,18,2,'?e?????o??',3,7.50,1,'2018-02-10 20:40:34','2018-10-03 14:23:19'),(2,18,3,'???o??',1,9.50,1,'2018-02-10 20:40:34','2018-10-03 14:23:19'),(2,19,1,'?c??o??',2,2.00,1,'2017-11-24 14:59:38','2018-10-03 14:23:19'),(2,19,2,'?e?????o??',3,7.00,1,'2017-11-24 14:59:38','2018-10-03 14:23:19'),(2,19,3,'???o??',1,8.50,1,'2017-11-24 14:59:38','2018-10-03 14:23:19'),(3,15,1,'?c??o??',2,8.00,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,15,2,'?e?????o??',3,5.00,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,15,3,'???o??',1,7.00,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,16,1,'?c??o??',2,2.00,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,16,2,'?e?????o??',3,9.00,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,16,3,'???o??',1,8.50,1,'2016-06-04 16:50:08','2016-06-04 16:50:08'),(3,17,1,'?c??o??',2,2.00,1,'2017-11-01 16:14:57','2017-11-01 16:14:57'),(3,17,2,'?e?????o??',3,7.50,1,'2017-11-01 16:14:57','2017-11-01 16:14:57'),(3,17,3,'???o??',1,8.50,1,'2017-11-01 16:14:57','2017-11-01 16:14:57'),(3,18,1,'?c??o??',2,1.50,1,'2018-02-10 20:40:52','2018-02-10 20:40:52'),(3,18,2,'?e?????o??',3,7.50,1,'2018-02-10 20:40:52','2018-02-10 20:40:52'),(3,18,3,'???o??',1,9.50,1,'2018-02-10 20:40:52','2018-02-10 20:40:52'),(3,19,1,'?c??o??',2,2.00,1,'2017-11-24 14:59:01','2017-11-24 14:59:01'),(3,19,2,'?e?????o??',3,10.00,1,'2017-11-24 14:59:01','2017-11-24 14:59:01'),(3,19,3,'???o??',1,8.50,1,'2017-11-24 14:59:01','2017-11-24 14:59:01'),(4,15,1,'?c??o??',2,8.00,1,'2016-04-26 14:35:35','2018-10-03 14:23:34'),(4,15,2,'?e?????o??',3,5.00,1,'2016-04-26 14:35:35','2018-10-03 14:23:34'),(4,15,3,'???o??',1,7.00,1,'2016-04-26 14:35:35','2018-10-03 14:23:34'),(4,16,1,'?c??o??',2,0.00,1,'2016-04-26 14:35:35','2018-10-03 14:23:34'),(4,16,2,'?e?????o??',3,0.00,1,'2016-04-26 14:35:35','2018-10-03 14:23:34'),(4,16,3,'???o??',1,0.00,1,'2016-04-26 14:35:35','2018-10-03 14:23:34'),(4,17,1,'?c??o??',2,0.00,1,'2016-04-26 14:35:35','2018-10-03 14:23:34'),(4,17,2,'?e?????o??',3,0.00,1,'2016-04-26 14:35:35','2018-10-03 14:23:34'),(4,17,3,'???o??',1,0.00,1,'2016-04-26 14:35:35','2018-10-03 14:23:34'),(5,15,1,'?c??o??',2,8.00,1,'2016-04-27 17:11:45','2018-10-03 14:23:26'),(5,15,2,'?e?????o??',3,5.00,1,'2016-04-27 17:11:45','2018-10-03 14:23:26'),(5,15,3,'???o??',1,7.00,1,'2016-04-27 17:11:45','2018-10-03 14:23:26'),(5,16,1,'?c??o??',2,10.00,1,'2016-04-27 17:11:45','2018-10-03 14:23:26'),(5,16,2,'?e?????o??',3,20.00,1,'2016-04-27 17:11:45','2018-10-03 14:23:26'),(5,16,3,'???o??',1,20.50,1,'2016-04-27 17:11:45','2018-10-03 14:23:26'),(5,17,1,'?c??o??',2,10.00,1,'2017-05-09 09:47:21','2018-10-03 14:23:26'),(5,17,2,'?e?????o??',3,20.00,1,'2017-05-09 09:47:21','2018-10-03 14:23:26'),(5,17,3,'???o??',1,10.00,1,'2017-05-09 09:47:21','2018-10-03 14:23:26'),(5,18,1,'?c??o??',2,10.00,1,'2018-02-10 20:41:36','2018-10-03 14:23:26'),(5,18,2,'?e?????o??',3,20.00,1,'2018-02-10 20:41:36','2018-10-03 14:23:26'),(5,18,3,'???o??',1,10.00,1,'2018-02-10 20:41:36','2018-10-03 14:23:26'),(5,19,1,'?c??o??',2,10.00,1,'2018-02-10 20:41:36','2018-10-03 14:23:26'),(5,19,2,'?e?????o??',3,20.00,1,'2018-02-10 20:41:36','2018-10-03 14:23:26'),(5,19,3,'???o??',1,10.00,1,'2018-02-10 20:41:36','2018-10-03 14:23:26'),(7,15,1,'?c??o??',2,8.00,1,'2016-08-02 10:07:24','2018-10-03 14:23:39'),(7,15,2,'?e?????o??',3,5.00,1,'2016-08-02 10:07:24','2018-10-03 14:23:39'),(7,15,3,'???o??',1,7.00,1,'2016-08-02 10:07:24','2018-10-03 14:23:39'),(7,16,1,'?c??o??',2,2.00,1,'2016-12-16 10:10:10','2018-10-03 14:23:39'),(7,16,2,'?e?????o??',3,7.00,1,'2016-12-16 10:10:10','2018-10-03 14:23:39'),(7,16,3,'???o??',1,8.50,1,'2016-12-16 10:10:10','2018-10-03 14:23:39'),(7,17,1,'?c??o??',2,2.00,1,'2016-08-02 10:07:24','2018-10-03 14:23:39'),(7,17,2,'?e?????o??',3,7.00,1,'2016-08-02 10:07:24','2018-10-03 14:23:39'),(7,17,3,'???o??',1,8.50,1,'2016-08-02 10:07:24','2018-10-03 14:23:39'),(7,18,1,'?c??o??',3,1.50,1,'2018-09-14 09:16:08','2018-10-03 14:23:39'),(7,18,2,'?e?????o??',2,7.50,1,'2018-09-14 09:16:08','2018-10-03 14:23:39'),(7,18,3,'???o??',1,9.50,1,'2018-09-14 09:16:08','2018-10-03 14:23:39'),(7,19,1,'?c??o??',2,1.50,1,'2018-02-10 20:41:24','2018-10-03 14:23:39'),(7,19,2,'?e?????o??',3,7.50,1,'2018-02-10 20:41:24','2018-10-03 14:23:39'),(7,19,3,'???o??',1,9.50,1,'2018-02-10 20:41:24','2018-10-03 14:23:39'),(8,15,1,'?c??o??',2,8.00,1,'2016-09-27 18:46:03','2018-10-03 14:23:14'),(8,15,2,'?e?????o??',3,5.00,1,'2016-09-27 18:46:03','2018-10-03 14:23:14'),(8,15,3,'???o??',1,7.00,1,'2016-09-27 18:46:03','2018-10-03 14:23:14'),(8,16,1,'?c??o??',2,2.00,1,'2016-09-27 18:46:03','2018-10-03 14:23:14'),(8,16,2,'?e?????o??',3,7.00,1,'2016-09-27 18:46:03','2018-10-03 14:23:14'),(8,16,3,'???o??',1,8.50,1,'2016-09-27 18:46:03','2018-10-03 14:23:14'),(8,17,1,'?c??o??',2,2.00,1,'2017-05-09 09:50:16','2018-10-03 14:23:14'),(8,17,2,'?e?????o??',3,10.00,1,'2017-05-09 09:50:16','2018-10-03 14:23:14'),(8,17,3,'???o??',1,8.50,1,'2017-05-09 09:50:16','2018-10-03 14:23:14'),(8,18,1,'?c??o??',2,1.50,1,'2018-02-10 20:39:49','2018-10-03 14:23:14'),(8,18,2,'?e?????o??',3,7.50,1,'2018-02-10 20:39:49','2018-10-03 14:23:14'),(8,18,3,'???o??',1,9.50,1,'2018-02-10 20:39:49','2018-10-03 14:23:14'),(8,19,1,'?c??o??',2,2.00,1,'2017-11-24 15:03:58','2018-10-03 14:23:14'),(8,19,2,'?e?????o??',3,11.00,1,'2017-11-24 15:03:58','2018-10-03 14:23:14'),(8,19,3,'???o??',1,8.50,1,'2017-11-24 15:03:58','2018-10-03 14:23:14'),(9,15,1,'?c??o??',2,8.00,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,15,2,'?e?????o??',3,5.00,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,15,3,'???o??',1,7.00,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,16,1,'?c??o??',2,2.00,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,16,2,'?e?????o??',3,8.00,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,16,3,'???o??',1,15.50,1,'2016-06-09 18:29:25','2016-06-09 18:29:25'),(9,17,1,'?c??o??',2,1.50,1,'2018-02-10 20:41:06','2018-02-10 20:41:06'),(9,17,2,'?e?????o??',3,7.50,1,'2018-02-10 20:41:06','2018-02-10 20:41:06'),(9,17,3,'???o??',1,9.50,1,'2018-02-10 20:41:06','2018-02-10 20:41:06'),(9,18,1,'?c??o??',2,2.00,1,'2017-11-24 15:02:32','2017-11-24 15:02:32'),(9,18,2,'?e?????o??',3,9.00,1,'2017-11-24 15:02:32','2017-11-24 15:02:32'),(9,18,3,'???o??',1,8.50,1,'2017-11-24 15:02:32','2017-11-24 15:02:32'),(9,19,1,'?c??o??',2,2.00,1,'2017-11-24 15:00:21','2017-11-24 15:00:21'),(9,19,2,'?e?????o??',3,10.00,1,'2017-11-24 15:00:21','2017-11-24 15:00:21'),(9,19,3,'???o??',1,8.50,1,'2017-11-24 15:00:21','2017-11-24 15:00:21'),(10,17,1,'?c??o??',2,0.00,1,'2018-03-29 17:28:32','2018-10-03 14:23:23'),(10,17,2,'?e?????o??',3,0.00,1,'2018-03-29 17:28:32','2018-10-03 14:23:23'),(10,17,3,'???o??',1,0.00,1,'2018-03-29 17:28:32','2018-10-03 14:23:23'),(10,18,1,'?c??o??',3,1.50,1,'2018-09-14 09:16:24','2018-10-03 14:23:23'),(10,18,2,'?e?????o??',2,7.50,1,'2018-09-14 09:16:24','2018-10-03 14:23:23'),(10,18,3,'???o??',1,9.50,1,'2018-09-14 09:16:24','2018-10-03 14:23:23'),(10,19,1,'?c??o??',2,1.50,1,'2018-03-28 16:32:28','2018-10-03 14:23:23'),(10,19,2,'?e?????o??',3,7.50,1,'2018-03-28 16:32:28','2018-10-03 14:23:23'),(10,19,3,'???o??',1,9.50,1,'2018-03-28 16:32:28','2018-10-03 14:23:23'),(11,18,1,'?c??o??',3,0.00,1,'2018-09-13 09:22:04','2018-09-13 09:29:06'),(11,18,2,'?e?????o??',2,0.00,1,'2018-09-13 09:22:04','2018-09-13 09:29:06'),(11,18,3,'???o??',1,0.00,1,'2018-09-13 09:22:04','2018-09-13 09:29:06'),(11,19,1,'?c??o??',3,0.00,1,'2018-09-13 09:22:04','2018-09-13 09:29:06'),(11,19,2,'?e?????o??',2,0.00,1,'2018-09-13 09:22:04','2018-09-13 09:29:06'),(11,19,3,'???o??',1,0.00,1,'2018-09-13 09:22:04','2018-09-13 09:29:06'); |
|
254 |
/*!40000 ALTER TABLE `departmentexpensesmaster` ENABLE KEYS */; |
|
255 |
UNLOCK TABLES; |
|
256 |
-- |
|
257 |
-- Table structure for table `departmentmaster` |
|
258 |
-- |
|
259 |
|
|
260 |
DROP TABLE IF EXISTS `departmentmaster`; |
|
261 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
262 |
/*!40101 SET character_set_client = utf8 */; |
|
263 |
CREATE TABLE `departmentmaster` ( |
|
264 |
`DepartmentCode` decimal(5,0) unsigned NOT NULL COMMENT '?????R?[?h', |
|
265 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
266 |
`DepartmentString` varchar(100) NOT NULL COMMENT '??????', |
|
267 |
`ActionScheduleFlg` decimal(1,0) NOT NULL COMMENT '?s???\??\???t???O', |
|
268 |
`StaffAssignFlg` decimal(1,0) NOT NULL COMMENT '?l???z?u?\???t???O', |
|
269 |
`StartDate` datetime NOT NULL COMMENT '?J?n???t', |
|
270 |
`CompDate` datetime NOT NULL COMMENT '?I?????t', |
|
271 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
272 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
273 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
274 |
PRIMARY KEY (`DepartmentCode`), |
|
275 |
KEY `DepartmentMaster_index1` (`DisplayOrder`) |
|
276 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?????}?X?^'; |
|
277 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
278 |
|
|
279 |
-- |
|
280 |
-- Dumping data for table `departmentmaster` |
|
281 |
-- |
|
282 |
|
|
283 |
LOCK TABLES `departmentmaster` WRITE; |
|
284 |
/*!40000 ALTER TABLE `departmentmaster` DISABLE KEYS */; |
|
285 |
INSERT INTO `departmentmaster` VALUES (1,1,'?H????',0,0,'2018-10-01 00:00:00','0001-01-01 00:00:00',0,'0000-00-00 00:00:00','0000-00-00 00:00:00'); |
|
286 |
/*!40000 ALTER TABLE `departmentmaster` ENABLE KEYS */; |
|
287 |
UNLOCK TABLES; |
|
288 |
|
|
289 |
-- |
|
290 |
-- Table structure for table `divisionmaster` |
|
291 |
-- |
|
292 |
|
|
293 |
DROP TABLE IF EXISTS `divisionmaster`; |
|
294 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
295 |
/*!40101 SET character_set_client = utf8 */; |
|
296 |
CREATE TABLE `divisionmaster` ( |
|
297 |
`DivisionCode` decimal(5,0) unsigned NOT NULL COMMENT '???R?[?h', |
|
298 |
`NameCode` decimal(5,0) unsigned NOT NULL COMMENT '????R?[?h', |
|
299 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
300 |
`NameString` varchar(100) NOT NULL DEFAULT '' COMMENT '????', |
|
301 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
302 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
303 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
304 |
PRIMARY KEY (`DivisionCode`,`NameCode`) |
|
305 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='???}?X?^'; |
|
306 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
307 |
|
|
308 |
-- |
|
309 |
-- Dumping data for table `divisionmaster` |
|
310 |
-- |
|
311 |
|
|
312 |
LOCK TABLES `divisionmaster` WRITE; |
|
313 |
/*!40000 ALTER TABLE `divisionmaster` DISABLE KEYS */; |
|
314 |
INSERT INTO `divisionmaster` VALUES (1,1,1,'?@?l?i??????j',0,'2015-11-09 14:23:45','2018-10-03 14:18:22'),(1,2,2,'?@?l?i??????j',0,'2015-11-09 14:25:45','2018-10-03 14:18:22'),(1,3,3,'?@?l?i?a?@?E?????{????j',0,'2018-02-24 19:31:29','2018-10-03 14:18:22'),(1,4,4,'?@?l?i?w?Z?@?l?j',0,'2015-11-09 14:31:08','2018-10-03 14:18:22'),(1,5,5,'?????c??i?e????j',0,'2015-11-09 14:23:45','2018-10-03 14:18:22'),(1,6,6,'???z?m???????E??????m???????',0,'2015-11-13 13:47:24','2018-10-03 14:18:22'),(1,7,7,'??l?i???j',0,'2015-11-09 14:23:45','2018-10-03 14:18:22'),(1,8,8,'????g???E??????',0,'2017-04-19 07:36:33','2018-10-03 14:18:22'),(1,9,9,'?X???',0,'2018-02-24 19:25:37','2018-10-03 14:18:22'),(1,10,10,'?????',0,'2017-04-19 07:36:44','2018-10-03 14:18:22'),(3,3,1,'???o??',0,'2015-11-16 15:19:23','2018-04-27 08:33:01'); |
|
315 |
/*!40000 ALTER TABLE `divisionmaster` ENABLE KEYS */; |
|
316 |
UNLOCK TABLES; |
|
317 |
|
|
318 |
-- |
|
319 |
-- Table structure for table `monthmaster` |
|
320 |
-- |
|
321 |
|
|
322 |
DROP TABLE IF EXISTS `monthmaster`; |
|
323 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
324 |
/*!40101 SET character_set_client = utf8 */; |
|
325 |
CREATE TABLE `monthmaster` ( |
|
326 |
`month` smallint(6) NOT NULL COMMENT '??', |
|
327 |
PRIMARY KEY (`month`) |
|
328 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='???}?X?^'; |
|
329 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
330 |
|
|
331 |
-- |
|
332 |
-- Dumping data for table `monthmaster` |
|
333 |
-- |
|
334 |
|
|
335 |
LOCK TABLES `monthmaster` WRITE; |
|
336 |
/*!40000 ALTER TABLE `monthmaster` DISABLE KEYS */; |
|
337 |
INSERT INTO `monthmaster` VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12); |
|
338 |
/*!40000 ALTER TABLE `monthmaster` ENABLE KEYS */; |
|
339 |
UNLOCK TABLES; |
|
340 |
|
|
341 |
-- |
|
342 |
-- Table structure for table `personinchargemaster` |
|
343 |
-- |
|
344 |
|
|
345 |
DROP TABLE IF EXISTS `personinchargemaster`; |
|
346 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
347 |
/*!40101 SET character_set_client = utf8 */; |
|
348 |
CREATE TABLE `personinchargemaster` ( |
|
349 |
`PersonCode` decimal(8,0) unsigned NOT NULL COMMENT '?S????R?[?h', |
|
350 |
`DisplayOrder` decimal(8,0) unsigned NOT NULL COMMENT '?\????', |
|
351 |
`PersonName` varchar(60) NOT NULL COMMENT '?S?????', |
|
352 |
`StartDate` date NOT NULL COMMENT '?g?p?J?n?N????', |
|
353 |
`EndDate` date DEFAULT NULL COMMENT '?g?p?I???N????', |
|
354 |
`PassWord` varchar(16) DEFAULT NULL COMMENT '?p?X???[?h', |
|
355 |
`SecurityManagement` decimal(1,0) NOT NULL COMMENT '?@????', |
|
356 |
`SecCode` decimal(2,0) unsigned NOT NULL COMMENT '???????', |
|
357 |
`MsgBackColor` varchar(8) DEFAULT NULL COMMENT '???b?Z?[?W?w?i?F', |
|
358 |
`DisplayString` varchar(20) DEFAULT NULL COMMENT '?\???E???????', |
|
359 |
`DepartmentCode` decimal(5,0) unsigned DEFAULT NULL COMMENT '?????R?[?h', |
|
360 |
`MonthlySalary` decimal(11,0) NOT NULL COMMENT '???????z', |
|
361 |
`YearSalary` decimal(12,0) NOT NULL COMMENT '?N????z', |
|
362 |
`Qualification` varchar(120) DEFAULT NULL COMMENT '???i?????', |
|
363 |
`SealPrintName` varchar(5) DEFAULT NULL COMMENT '???\????', |
|
364 |
`EmployeeClassFlg` decimal(1,0) NOT NULL COMMENT '?????', |
|
365 |
`LedgerFlg` decimal(1,0) NOT NULL COMMENT '???v?Z???t???O', |
|
366 |
`CommutingDistance` decimal(5,2) NOT NULL COMMENT '??????', |
|
367 |
`CommuteCosts` decimal(5,0) NOT NULL COMMENT '??????', |
|
368 |
`DeleteFlg` decimal(1,0) NOT NULL COMMENT '???t???O', |
|
369 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
370 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
371 |
PRIMARY KEY (`PersonCode`), |
|
372 |
KEY `PersonInChargeMaster_Index1` (`StartDate`), |
|
373 |
KEY `PersonInChargeMaster_Index2` (`DepartmentCode`) |
|
374 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?S????}?X?^'; |
|
375 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
376 |
|
|
377 |
-- |
|
378 |
-- Dumping data for table `personinchargemaster` |
|
379 |
-- |
|
380 |
|
|
381 |
LOCK TABLES `personinchargemaster` WRITE; |
|
382 |
/*!40000 ALTER TABLE `personinchargemaster` DISABLE KEYS */; |
|
383 |
INSERT INTO `personinchargemaster` VALUES (20181001,1,'?????','2018-10-01','0001-01-01','20181001',4,1,'','',1,0,0,'','',1,1,0.00,0,0,'2018-10-03 14:23:19','2018-10-03 14:23:19'); |
|
384 |
/*!40000 ALTER TABLE `personinchargemaster` ENABLE KEYS */; |
|
385 |
UNLOCK TABLES; |
|
386 |
|
|
387 |
-- |
|
388 |
-- Table structure for table `processexcutemaster` |
|
389 |
-- |
|
390 |
|
|
391 |
DROP TABLE IF EXISTS `processexcutemaster`; |
|
392 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
393 |
/*!40101 SET character_set_client = utf8 */; |
|
394 |
CREATE TABLE `processexcutemaster` ( |
|
395 |
`SecCode` decimal(2,0) unsigned NOT NULL COMMENT '???????', |
|
396 |
`ExecCode` decimal(4,0) unsigned NOT NULL COMMENT '?N?????????', |
|
397 |
`EditFlg` decimal(1,0) NOT NULL COMMENT '??W?t???O', |
|
398 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
399 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
400 |
PRIMARY KEY (`SecCode`,`ExecCode`), |
|
401 |
KEY `ProcessExcuteMaster_Index1` (`SecCode`), |
|
402 |
KEY `ProcessExcuteMaster_Index2` (`ExecCode`) |
|
403 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?N?????}?X?^'; |
|
404 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
405 |
|
|
406 |
-- |
|
407 |
-- Dumping data for table `processexcutemaster` |
|
408 |
-- |
|
409 |
|
|
410 |
LOCK TABLES `processexcutemaster` WRITE; |
|
411 |
/*!40000 ALTER TABLE `processexcutemaster` DISABLE KEYS */; |
|
412 |
INSERT INTO `processexcutemaster` VALUES (1,1,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,7,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,10,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,11,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,12,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,15,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,20,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,21,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,37,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,40,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,41,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,42,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,45,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,101,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,102,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,103,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,104,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,105,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,106,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,107,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,108,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,111,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,112,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,115,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,116,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,117,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,118,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,120,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,124,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,125,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,126,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,127,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,129,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,130,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,131,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(1,132,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,20,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,21,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(2,103,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,104,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,105,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,106,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,107,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,108,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,125,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,127,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(2,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,20,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,21,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(3,103,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,104,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,105,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,106,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,107,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,108,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,125,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,127,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(3,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(4,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(5,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,20,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,21,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(5,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(5,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(6,109,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,128,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(6,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,4,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,5,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,6,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,9,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,10,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,13,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,14,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,40,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,41,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,42,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(7,103,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,116,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(7,130,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,4,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,5,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,6,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,9,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,10,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,13,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,14,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,18,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,40,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,41,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,42,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(8,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,116,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(8,130,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,12,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,15,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(9,127,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(9,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,2,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,3,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,5,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,6,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,8,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,13,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,14,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,16,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,17,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,19,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,29,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,30,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,31,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,32,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,34,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,36,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,39,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,40,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,41,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,42,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(10,102,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,103,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,109,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,110,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,111,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,114,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,116,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,118,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,121,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,122,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,123,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,125,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,126,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(10,130,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,11,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,37,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,40,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,41,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,42,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(11,109,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,110,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,114,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,116,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,121,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,122,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,123,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,128,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(11,130,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,2,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,3,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,4,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,5,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,6,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,7,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,8,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,9,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,12,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,13,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,14,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,15,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,16,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,17,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,18,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,19,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,29,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,30,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,31,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,32,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,34,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,36,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,39,1,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'),(12,128,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(12,129,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(13,1,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(13,8,0,'2018-08-28 14:44:30','2018-08-28 14:44:30'),(13,47,1,'2018-08-29 15:14:07','2018-08-29 15:14:07'); |
|
413 |
/*!40000 ALTER TABLE `processexcutemaster` ENABLE KEYS */; |
|
414 |
UNLOCK TABLES; |
|
415 |
|
|
416 |
-- |
|
417 |
-- Table structure for table `systemexecute` |
|
418 |
-- |
|
419 |
|
|
420 |
DROP TABLE IF EXISTS `systemexecute`; |
|
421 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
422 |
/*!40101 SET character_set_client = utf8 */; |
|
423 |
CREATE TABLE `systemexecute` ( |
|
424 |
`PrimaryCode` tinyint(4) NOT NULL COMMENT '?L?[????', |
|
425 |
`TargetDate` date NOT NULL COMMENT '?N?????t', |
|
426 |
`SystemVersion` int(11) NOT NULL COMMENT '?{??E????o?[?W????', |
|
427 |
`UpDateCopyVersion` int(11) NOT NULL COMMENT '?R?s?[?o?[?W????', |
|
428 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
429 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
430 |
PRIMARY KEY (`PrimaryCode`) |
|
431 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?V?X?e???N???m?F?f?[?^'; |
|
432 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
433 |
|
|
434 |
-- |
|
435 |
-- Dumping data for table `systemexecute` |
|
436 |
-- |
|
437 |
|
|
438 |
LOCK TABLES `systemexecute` WRITE; |
|
439 |
/*!40000 ALTER TABLE `systemexecute` DISABLE KEYS */; |
|
440 |
INSERT INTO `systemexecute` VALUES (1,'2018-10-03',0,0,'2015-12-21 17:24:12','2018-10-03 13:27:49'),(2,'2017-02-27',228,2,'2017-02-27 15:04:23','2017-05-13 13:15:23'); |
|
441 |
/*!40000 ALTER TABLE `systemexecute` ENABLE KEYS */; |
|
442 |
UNLOCK TABLES; |
|
443 |
-- |
|
444 |
-- Table structure for table `systemmaster` |
|
445 |
-- |
|
446 |
|
|
447 |
DROP TABLE IF EXISTS `systemmaster`; |
|
448 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
449 |
/*!40101 SET character_set_client = utf8 */; |
|
450 |
CREATE TABLE `systemmaster` ( |
|
451 |
`SystemCode` decimal(3,0) unsigned NOT NULL COMMENT '???R?[?h', |
|
452 |
`CompanyName1` varchar(60) NOT NULL COMMENT '?????P', |
|
453 |
`CompanyName2` varchar(60) DEFAULT NULL COMMENT '?????Q', |
|
454 |
`CEOName` varchar(60) NOT NULL COMMENT '??\?????', |
|
455 |
`CEOPositionName` varchar(60) DEFAULT NULL COMMENT '??\???E??', |
|
456 |
`ZipCode` varchar(8) NOT NULL COMMENT '?X????', |
|
457 |
`Address1` varchar(60) NOT NULL COMMENT '?Z???P', |
|
458 |
`Address2` varchar(60) DEFAULT NULL COMMENT '?Z??2', |
|
459 |
`Address3` varchar(60) DEFAULT NULL COMMENT '?Z??3', |
|
460 |
`PhoneNumber` varchar(13) NOT NULL COMMENT '?d?b???', |
|
461 |
`FaxNumber` varchar(13) DEFAULT NULL COMMENT 'FAX???', |
|
462 |
`HomePageURL` varchar(120) DEFAULT NULL COMMENT '?z?[???y?[?WURL', |
|
463 |
`ConsumptionTax` decimal(4,2) NOT NULL COMMENT '?????', |
|
464 |
`CooperationRate` decimal(4,2) NOT NULL COMMENT '???????', |
|
465 |
`StatutoryWelfareRate` decimal(4,2) NOT NULL COMMENT '?@???????', |
|
466 |
`FuelPrice` decimal(5,2) NOT NULL COMMENT '?R???L???P??', |
|
467 |
`AreaDistance` decimal(5,2) NOT NULL COMMENT '????u????????', |
|
468 |
`ExcelSavePath` varchar(120) DEFAULT NULL COMMENT 'Excel????p?X', |
|
469 |
`BusinessPeriod` smallint(6) NOT NULL COMMENT '????c?????', |
|
470 |
`ConstrYear` smallint(6) NOT NULL COMMENT '????H???N?x', |
|
471 |
`BusinessBeginDate` datetime NOT NULL COMMENT '?c????????', |
|
472 |
`ConstrBeginDate` datetime NOT NULL COMMENT '?H???N?x?????', |
|
473 |
`BusinessCompDate` datetime NOT NULL COMMENT '?c?????????', |
|
474 |
`ConstrCompDate` datetime NOT NULL COMMENT '?H???N?x??????', |
|
475 |
`ConstructionNoBase` decimal(1,0) NOT NULL COMMENT '?H????????l', |
|
476 |
`SloganString1` varchar(100) DEFAULT NULL COMMENT '?W??1', |
|
477 |
`SloganString2` varchar(100) DEFAULT NULL COMMENT '?W??2', |
|
478 |
`SloganString3` varchar(100) DEFAULT NULL COMMENT '?W??3', |
|
479 |
`OperationFlg` decimal(2,0) unsigned NOT NULL COMMENT '???F?^?p?t???O', |
|
480 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
481 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
482 |
PRIMARY KEY (`SystemCode`) |
|
483 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='????}?X?^'; |
|
484 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
485 |
|
|
486 |
-- |
|
487 |
-- Dumping data for table `systemmaster` |
|
488 |
-- |
|
489 |
|
|
490 |
LOCK TABLES `systemmaster` WRITE; |
|
491 |
/*!40000 ALTER TABLE `systemmaster` DISABLE KEYS */; |
|
492 |
INSERT INTO `systemmaster` VALUES (1,'???????@?q???E?H???X','','?Z?@?T??Y','??\??????@????CEO','651-1312','?????','?_??s?k??','?L???L??813-2','078-984-5210','078-984-5220','http://www.hyou.co.jp',8.00,0.50,8.00,20.00,3.00,'Z:?@?S??????????L???????????G?N?Z???f?[?^',0,0,'2018-10-01 00:00:00','2018-10-01 00:00:00','9999-12-31 00:00:00','9999-12-31 00:00:00',0,'','','',0,'2015-09-05 00:00:00','2018-09-28 15:25:49'); |
|
493 |
/*!40000 ALTER TABLE `systemmaster` ENABLE KEYS */; |
|
494 |
UNLOCK TABLES; |
|
495 |
|
|
496 |
-- |
|
497 |
-- Table structure for table `unitmaster` |
|
498 |
-- |
|
499 |
|
|
500 |
DROP TABLE IF EXISTS `unitmaster`; |
|
501 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
502 |
/*!40101 SET character_set_client = utf8 */; |
|
503 |
CREATE TABLE `unitmaster` ( |
|
504 |
`UnitKey` decimal(5,0) unsigned NOT NULL COMMENT '?P??L?[', |
|
505 |
`DisplayOrder` decimal(5,0) unsigned NOT NULL COMMENT '?\????', |
|
506 |
`UnitName` varchar(30) NOT NULL COMMENT '?P?????', |
|
507 |
`EntryDate` datetime NOT NULL COMMENT '?o?^???t', |
|
508 |
`UpdateDate` datetime NOT NULL COMMENT '?X?V???t', |
|
509 |
PRIMARY KEY (`UnitKey`), |
|
510 |
KEY `UnitMaster_Index1` (`DisplayOrder`) |
|
511 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?P??}?X?^'; |
|
512 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
513 |
|
|
514 |
-- |
|
515 |
-- Dumping data for table `unitmaster` |
|
516 |
-- |
|
517 |
|
|
518 |
LOCK TABLES `unitmaster` WRITE; |
|
519 |
/*!40000 ALTER TABLE `unitmaster` DISABLE KEYS */; |
|
520 |
INSERT INTO `unitmaster` VALUES (1,2,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(2,28,'???j?b?g','2015-08-31 00:00:00','2018-09-14 11:02:46'),(3,26,'?p?b?N','2015-08-31 00:00:00','2018-09-14 11:02:46'),(4,27,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(5,21,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(6,29,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(7,30,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(8,18,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(9,31,'?n??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(10,7,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(11,32,'?X?p??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(12,33,'?p??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(13,15,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(14,1,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(15,34,'?A','2015-08-31 00:00:00','2018-09-14 11:02:46'),(16,16,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(17,35,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(18,36,'???E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(19,9,'?????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(20,37,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(21,38,'???E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(22,3,'???Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(23,14,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(24,39,'???Q?E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(25,40,'?????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(26,23,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(27,41,'?X?p????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(28,8,'?????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(29,13,'?g','2015-08-31 00:00:00','2018-09-14 11:02:46'),(30,42,'???X?p??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(31,10,'?????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(32,19,'?{','2015-08-31 00:00:00','2018-09-14 11:02:46'),(33,43,'??E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(34,44,'???????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(35,45,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(36,46,'???E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(37,47,'???k','2015-08-31 00:00:00','2018-09-14 11:02:46'),(38,48,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(39,49,'?{?E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(40,50,'?k','2015-08-31 00:00:00','2018-09-14 11:02:46'),(41,20,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(42,51,'?g?E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(43,4,'???R','2015-08-31 00:00:00','2018-09-14 11:02:46'),(44,52,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(45,53,'??E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(46,5,'??R','2015-08-31 00:00:00','2018-09-14 11:02:46'),(47,54,'?Z?b?g','2015-08-31 00:00:00','2018-09-14 11:02:46'),(48,55,'???E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(49,56,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(50,57,'?L?b?g','2015-08-31 00:00:00','2018-09-14 11:02:46'),(51,58,'?Z?b?g??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(52,59,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(53,22,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(54,60,'???Q?E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(55,61,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(56,62,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(57,63,'??E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(58,64,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(59,6,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(60,65,'??E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(61,66,'?E','2015-08-31 00:00:00','2018-09-14 11:02:46'),(62,67,'???','2015-08-31 00:00:00','2018-09-14 11:02:46'),(63,11,'????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(64,24,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(65,68,'?????O','2015-08-31 00:00:00','2018-09-14 11:02:46'),(66,12,'????Q','2015-08-31 00:00:00','2018-09-14 11:02:46'),(67,69,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(68,70,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(69,71,'???Q?E??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(70,72,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(71,73,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(72,74,'?S????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(73,75,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(74,25,'?P?[?X','2015-08-31 00:00:00','2018-09-14 11:02:46'),(75,76,'???X?p??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(76,77,'?o','2015-08-31 00:00:00','2018-09-14 11:02:46'),(77,78,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(78,79,'?|?C???g','2015-08-31 00:00:00','2018-09-14 11:02:46'),(79,80,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(80,17,'????','2015-08-31 00:00:00','2018-09-14 11:02:46'),(81,81,'??','2015-08-31 00:00:00','2018-09-14 11:02:46'),(82,82,'???','2015-08-31 00:00:00','2018-09-14 11:02:46'); |
|
521 |
/*!40000 ALTER TABLE `unitmaster` ENABLE KEYS */; |
|
522 |
UNLOCK TABLES; |
|
523 |
|
|
524 |
-- |
|
525 |
-- Table structure for table `yearmaster` |
|
526 |
-- |
|
527 |
|
|
528 |
DROP TABLE IF EXISTS `yearmaster`; |
|
529 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
530 |
/*!40101 SET character_set_client = utf8 */; |
|
531 |
CREATE TABLE `yearmaster` ( |
|
532 |
`years` smallint(6) NOT NULL COMMENT '?N', |
|
533 |
PRIMARY KEY (`years`) |
|
534 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='?N?}?X?^'; |
|
535 |
/*!40101 SET character_set_client = @saved_cs_client */; |
|
536 |
|
|
537 |
-- |
|
538 |
-- Dumping data for table `yearmaster` |
|
539 |
-- |
|
540 |
|
|
541 |
LOCK TABLES `yearmaster` WRITE; |
|
542 |
/*!40000 ALTER TABLE `yearmaster` DISABLE KEYS */; |
|
543 |
INSERT INTO `yearmaster` VALUES (2015),(2016),(2017),(2018),(2019),(2020),(2021),(2022),(2023),(2024),(2025),(2026),(2027),(2028),(2029),(2030),(2031),(2032),(2033),(2034),(2035),(2036),(2037),(2038),(2039),(2040),(2041),(2042),(2043),(2044),(2045),(2046),(2047),(2048),(2049),(2050),(2051),(2052),(2053),(2054),(2055),(2056),(2057),(2058),(2059),(2060),(2061),(2062),(2063),(2064),(2065),(2066),(2067),(2068),(2069),(2070),(2071),(2072),(2073),(2074),(2075),(2076),(2077),(2078),(2079),(2080),(2081),(2082),(2083),(2084),(2085),(2086),(2087),(2088),(2089),(2090),(2091),(2092),(2093),(2094),(2095),(2096),(2097),(2098),(2099),(2100),(2101),(2102),(2103),(2104),(2105),(2106),(2107),(2108),(2109),(2110),(2111),(2112),(2113),(2114); |
|
544 |
/*!40000 ALTER TABLE `yearmaster` ENABLE KEYS */; |
|
545 |
UNLOCK TABLES; |
|
546 |
|
trunk/ddl/ProcessManagement.sql | ||
---|---|---|
1 | 1 |
-- Project Name : noname |
2 |
-- Date/Time : 2018/10/23 8:09:34
|
|
2 |
-- Date/Time : 2019/11/21 17:23:43
|
|
3 | 3 |
-- Author : Horiuchi |
4 | 4 |
-- RDBMS Type : MySQL |
5 | 5 |
-- Application : A5:SQL Mk-2 |
... | ... | |
11 | 11 |
*/ |
12 | 12 |
|
13 | 13 |
-- ?S????s???\??f?[?^ |
14 |
--* BackupToTempTable
|
|
14 |
-- BackupToTempTable |
|
15 | 15 |
drop table if exists actionscheduledata cascade; |
16 | 16 |
|
17 |
--* RestoreFromTempTable
|
|
17 |
-- RestoreFromTempTable |
|
18 | 18 |
create table actionscheduledata ( |
19 | 19 |
TargetDate date not null comment '????' |
20 | 20 |
, PersonCode decimal(8,0) not null comment '?S????R?[?h' |
... | ... | |
37 | 37 |
on actionscheduledata(TargetDay); |
38 | 38 |
|
39 | 39 |
-- ???F?o?H?}?X?^ |
40 |
--* BackupToTempTable
|
|
40 |
-- BackupToTempTable |
|
41 | 41 |
drop table if exists approvalmaster cascade; |
42 | 42 |
|
43 |
--* RestoreFromTempTable
|
|
43 |
-- RestoreFromTempTable |
|
44 | 44 |
create table approvalmaster ( |
45 | 45 |
ApprovalCode decimal(3,0) unsigned not null comment '???F?@?\???' |
46 | 46 |
, DepartmentCode decimal(5,0) unsigned not null comment '?????R?[?h' |
... | ... | |
54 | 54 |
) comment '???F?o?H?}?X?^' ; |
55 | 55 |
|
56 | 56 |
-- ?o?????f?[?^ |
57 |
--* BackupToTempTable
|
|
57 |
-- BackupToTempTable |
|
58 | 58 |
drop table if exists attendancedailydata cascade; |
59 | 59 |
|
60 |
--* RestoreFromTempTable
|
|
60 |
-- RestoreFromTempTable |
|
61 | 61 |
create table attendancedailydata ( |
62 | 62 |
PersonCode decimal(8,0) unsigned not null comment '????R?[?h' |
63 | 63 |
, AttendanceDate date not null comment '???????' |
64 | 64 |
, SeqNo decimal(3,0) unsigned not null comment '????s???' |
65 |
, ConstructionCode decimal(10,0) unsigned not null comment '?H???R?[?h'
|
|
66 |
, ActionResult varchar(30) not null comment '?s??????'
|
|
65 |
, ConstructionCode decimal(10,0) not null comment '?H???R?[?h' |
|
66 |
, ActionResult varchar(100) not null comment '?s??????'
|
|
67 | 67 |
, StartTime datetime comment '?J?n????' |
68 | 68 |
, CompTime datetime comment '?I??????' |
69 |
, DayTimes decimal(4,1) not null comment '????????v????' |
|
69 |
, DayTimes decimal(5,2) not null comment '???????' |
|
70 |
, Overtime decimal(5,2) not null comment '????O?A??' |
|
71 |
, OvertimeWA decimal(5,2) not null comment '?c??F?????' |
|
70 | 72 |
, WorkingComment varchar(120) comment '?R?????g' |
71 |
, WorkKindFlg decimal(1,0) not null comment '?????t???O'
|
|
73 |
, WorkKindFlg decimal(2,0) not null comment '?????t???O'
|
|
72 | 74 |
, EntryDate datetime not null comment '?o?^???t' |
73 | 75 |
, UpdateDate datetime not null comment '?X?V???t' |
74 | 76 |
, constraint attendancedailydata_PKC primary key (PersonCode,AttendanceDate,SeqNo) |
... | ... | |
81 | 83 |
on attendancedailydata(AttendanceDate); |
82 | 84 |
|
83 | 85 |
-- ?o?????f?[?^ |
84 |
--* BackupToTempTable
|
|
86 |
-- BackupToTempTable |
|
85 | 87 |
drop table if exists attendancedata cascade; |
86 | 88 |
|
87 |
--* RestoreFromTempTable
|
|
89 |
-- RestoreFromTempTable |
|
88 | 90 |
create table attendancedata ( |
89 | 91 |
PersonCode decimal(8,0) unsigned not null comment '????R?[?h' |
90 |
, AttendanceMonth date not null comment '?o?????N??'
|
|
92 |
, AttendanceMonth decimal(6,0) unsigned not null comment '?o?????N??'
|
|
91 | 93 |
, LastDays decimal(2,0) unsigned not null comment '??????I??' |
92 | 94 |
, AttendDayCount decimal(2,0) unsigned not null comment '?o?????' |
93 |
, TotalOverTimes decimal(4,1) not null comment '?c??????' |
|
94 |
, OrderDate date not null comment '?\????' |
|
95 |
, NormalTimes decimal(5,2) not null comment '??????????' |
|
96 |
, OutEarlyTimes decimal(5,2) not null comment '???o?????' |
|
97 |
, OverTimes decimal(5,2) not null comment '?c??????' |
|
98 |
, HolidayWorkTimes decimal(5,2) not null comment '?x???o??????' |
|
99 |
, TransferHolidayTimes decimal(5,2) not null comment '?U??x????' |
|
100 |
, CompensatoryHolidayTimes decimal(5,2) not null comment '??x??' |
|
101 |
, PaidHolidaysTimes decimal(5,2) not null comment '?L???x???' |
|
102 |
, AbsenceTimes decimal(5,2) not null comment '????????' |
|
103 |
, LateTimes decimal(5,2) not null comment '?x???????' |
|
104 |
, LeaveEarlyTimes decimal(5,2) not null comment '????????' |
|
105 |
, GoOutTimes decimal(5,2) not null comment '?O?o?????' |
|
106 |
, OrderDate decimal(6,0) unsigned not null comment '?\????' |
|
95 | 107 |
, OrderNo decimal(2,0) unsigned not null comment '?\????t???' |
96 | 108 |
, EntryDate datetime not null comment '?o?^???t' |
97 | 109 |
, UpdateDate datetime not null comment '?X?V???t' |
98 | 110 |
, constraint attendancedata_PKC primary key (PersonCode,AttendanceMonth) |
99 | 111 |
) comment '?o?????f?[?^' ; |
100 | 112 |
|
113 |
-- ????o?f?[?^ |
|
114 |
-- BackupToTempTable |
|
115 |
drop table if exists attendancenotice cascade; |
|
116 |
|
|
117 |
-- RestoreFromTempTable |
|
118 |
create table attendancenotice ( |
|
119 |
PersonCode decimal(8,0) unsigned not null comment '????R?[?h' |
|
120 |
, AttendanceNo decimal(2,0) unsigned not null comment '????' |
|
121 |
, AttendanceMonth decimal(6,0) unsigned not null comment '?o?????N??' |
|
122 |
, OrderNo decimal(3,0) unsigned not null comment '????' |
|
123 |
, DepartmentCode decimal(5,0) unsigned not null comment '?????R?[?h' |
|
124 |
, HolidayReason decimal(1,0) unsigned not null comment '?x???' |
|
125 |
, FromDate datetime not null comment '?J?n????' |
|
126 |
, ToDate datetime not null comment '?I??????' |
|
127 |
, NoticePeriod decimal(5,2) unsigned not null comment '???????' |
|
128 |
, TransferDay datetime not null comment '?U???' |
|
129 |
, Reason varchar(300) comment '???R' |
|
130 |
, Note varchar(300) comment '???l' |
|
131 |
, ApprovalDate decimal(6,0) unsigned not null comment '???F??' |
|
132 |
, ApprovalNo decimal(2,0) unsigned not null comment '???F??t???' |
|
133 |
, DeleteFlg decimal(1,0) unsigned not null comment '???t???O' |
|
134 |
, EntryDate datetime not null comment '?o?^???t' |
|
135 |
, UpdateDate datetime not null comment '?X?V???t' |
|
136 |
, constraint attendancenotice_PKC primary key (PersonCode,AttendanceNo,AttendanceMonth,OrderNo) |
|
137 |
) comment '????o?f?[?^' ; |
|
138 |
|
|
139 |
-- ????o?R?t???f?[?^ |
|
140 |
-- BackupToTempTable |
|
141 |
drop table if exists attendancenoticelink cascade; |
|
142 |
|
|
143 |
-- RestoreFromTempTable |
|
144 |
create table attendancenoticelink ( |
|
145 |
PersonCode decimal(8,0) unsigned not null comment '????R?[?h' |
|
146 |
, AttendanceNo decimal(2,0) unsigned not null comment '????' |
|
147 |
, AttendanceMonth decimal(6,0) unsigned not null comment '?o?????N??' |
|
148 |
, OrderNo decimal(3,0) unsigned not null comment '????' |
|
149 |
, DailyDate date not null comment '???????' |
|
150 |
, SeqNo decimal(3,0) unsigned not null comment '?????s???' |
|
151 |
, EntryDate datetime not null comment '?o?^???t' |
|
152 |
, UpdateDate datetime not null comment '?X?V???t' |
|
153 |
, constraint attendancenoticelink_PKC primary key (PersonCode,AttendanceNo,AttendanceMonth,OrderNo,DailyDate,SeqNo) |
|
154 |
) comment '????o?R?t???f?[?^' ; |
|
155 |
|
|
156 |
create index AttendanceNoticeLink_Index1 |
|
157 |
on attendancenoticelink(PersonCode); |
|
158 |
|
|
159 |
create index AttendanceNoticeLink_Index2 |
|
160 |
on attendancenoticelink(AttendanceNo); |
|
161 |
|
|
162 |
create index AttendanceNoticeLink_Index3 |
|
163 |
on attendancenoticelink(AttendanceMonth); |
|
164 |
|
|
165 |
create index AttendanceNoticeLink_Index4 |
|
166 |
on attendancenoticelink(OrderNo); |
|
167 |
|
|
168 |
create index AttendanceNoticeLink_Index5 |
|
169 |
on attendancenoticelink(DailyDate); |
|
170 |
|
|
171 |
create index AttendanceNoticeLink_Index6 |
|
172 |
on attendancenoticelink(SeqNo); |
|
173 |
|
|
174 |
-- ????o?H???f?[?^ |
|
175 |
-- BackupToTempTable |
|
176 |
drop table if exists attnoticeconstrction cascade; |
|
177 |
|
|
178 |
-- RestoreFromTempTable |
|
179 |
create table attnoticeconstrction ( |
|
180 |
PersonCode decimal(8,0) unsigned not null comment '????R?[?h' |
|
181 |
, AttendanceNo decimal(2,0) unsigned not null comment '????' |
|
182 |
, AttendanceMonth decimal(6,0) unsigned not null comment '?o?????N??' |
|
183 |
, OrderNo decimal(3,0) unsigned not null comment '????' |
|
184 |
, ConstructionCode decimal(10,0) unsigned not null comment '?H???R?[?h' |
|
185 |
, ConstructionName varchar(300) comment '?H??????' |
|
186 |
, EntryDate datetime not null comment '?o?^???t' |
|
187 |
, UpdateDate datetime not null comment '?X?V???t' |
|
188 |
, constraint attnoticeconstrction_PKC primary key (PersonCode,AttendanceNo,AttendanceMonth,OrderNo) |
|
189 |
) comment '????o?H???f?[?^' ; |
|
190 |
|
|
191 |
-- ?L???x??????R?t?f?[?^ |
|
192 |
-- BackupToTempTable |
|
193 |
drop table if exists attnpaidholidyalink cascade; |
|
194 |
|
|
195 |
-- RestoreFromTempTable |
|
196 |
create table attnpaidholidyalink ( |
|
197 |
PersonCode decimal(8,0) unsigned not null comment '????R?[?h' |
|
198 |
, AttendanceNo decimal(2,0) unsigned not null comment '????' |
|
199 |
, AttendanceMonth decimal(6,0) unsigned not null comment '?o?????N??' |
|
200 |
, OrderNo decimal(3,0) unsigned not null comment '????' |
|
201 |
, PreviousYear decimal(3,1) not null comment '?O?N?x?L??????' |
|
202 |
, CurrentYear decimal(3,1) not null comment '???N?x?L??????' |
|
203 |
, Completed decimal(1,0) unsigned not null comment '?????????t???O' |
|
204 |
, EntryDate datetime not null comment '?o?^???t' |
|
205 |
, UpdateDate datetime not null comment '?X?V???t' |
|
206 |
, constraint attnpaidholidyalink_PKC primary key (PersonCode,AttendanceNo,AttendanceMonth,OrderNo) |
|
207 |
) comment '?L???x??????R?t?f?[?^' ; |
|
208 |
|
|
101 | 209 |
-- ??s?c????}?X?^ |
102 |
--* BackupToTempTable
|
|
210 |
-- BackupToTempTable |
|
103 | 211 |
drop table if exists bankbusinessdaymaster cascade; |
104 | 212 |
|
105 |
--* RestoreFromTempTable
|
|
213 |
-- RestoreFromTempTable |
|
106 | 214 |
create table bankbusinessdaymaster ( |
107 | 215 |
YEARMONTH decimal(6,0) default '0' not null comment '?N??' |
108 | 216 |
, BANKBUSINESSDAY decimal(2,0) default '0' not null comment '??s?c???' |
... | ... | |
114 | 222 |
) comment '??s?c????}?X?^' ; |
115 | 223 |
|
116 | 224 |
-- ???????f?[?^ |
117 |
--* BackupToTempTable
|
|
225 |
-- BackupToTempTable |
|
118 | 226 |
drop table if exists billingdata cascade; |
119 | 227 |
|
120 |
--* RestoreFromTempTable
|
|
228 |
-- RestoreFromTempTable |
|
121 | 229 |
create table billingdata ( |
122 | 230 |
COMPANYCODE decimal(8,0) default '0' not null comment '??????R?[?h' |
123 | 231 |
, TARGETDATE decimal(6,0) default '0' not null comment '???N??' |
... | ... | |
129 | 237 |
) comment '???????f?[?^' ; |
130 | 238 |
|
131 | 239 |
-- ??????????f?[?^ |
132 |
--* BackupToTempTable
|
|
240 |
-- BackupToTempTable |
|
133 | 241 |
drop table if exists billingdatadetail cascade; |
134 | 242 |
|
135 |
--* RestoreFromTempTable
|
|
243 |
-- RestoreFromTempTable |
|
136 | 244 |
create table billingdatadetail ( |
137 | 245 |
COMPANYCODE decimal(8,0) default '0' not null comment '??????R?[?h' |
138 | 246 |
, TARGETDATE decimal(6,0) default '0' not null comment '???N??' |
139 | 247 |
, SEQNO decimal(3,0) default '0' not null comment '?A??' |
140 | 248 |
, LINECOUNT decimal(3,0) default '0' not null comment '?s???' |
249 |
, LABOURKIND decimal(1,0) not null comment '?x???????E????' |
|
141 | 250 |
, CONSTRUCTIONCODE decimal(10,0) comment '?H?????' |
142 |
, CONSTRUCTIONROWCNT decimal(3,0) default '0' not null comment '?s???' |
|
143 |
, CONSTRUCTIONCOLCNT decimal(3,0) default '0' not null comment '????' |
|
251 |
, CONSTRUCTIONROWCNT decimal(3,0) default '0' not null comment '????????' |
|
252 |
, CONSTRUCTIONCOLCNT decimal(3,0) default '0' not null comment '??????' |
|
253 |
, LinkDataType decimal(1,0) not null comment '??A?t???f?[?^?^?C?v' |
|
144 | 254 |
, FIELDNAME varchar(120) comment '????' |
145 | 255 |
, BILLPRICE decimal(10,0) comment '???????z' |
146 | 256 |
, HIGHWPRICE decimal(10,0) comment '??????' |
147 | 257 |
, HARDWPRICE decimal(10,0) comment '??????' |
148 | 258 |
, INDSWASTETAX decimal(10,0) comment '?Y?p??' |
259 |
, OverFlg decimal(1,0) comment '?x??????t???O' |
|
149 | 260 |
, NOTE varchar(120) comment '???l' |
261 |
, DELETEFLG decimal(1,0) comment '???t???O' |
|
150 | 262 |
, ENTRYDATE datetime comment '?o?^?N????' |
151 | 263 |
, UPDATEDATE datetime comment '?X?V?N????' |
152 |
, constraint billingdatadetail_PKC primary key (COMPANYCODE,TARGETDATE,SEQNO,LINECOUNT) |
|
264 |
, constraint billingdatadetail_PKC primary key (COMPANYCODE,TARGETDATE,SEQNO,LINECOUNT,LABOURKIND)
|
|
153 | 265 |
) comment '??????????f?[?^' ; |
154 | 266 |
|
267 |
create index billingdatadetail_Index1 |
|
268 |
on billingdatadetail(COMPANYCODE); |
|
269 |
|
|
270 |
create index billingdatadetail_Index2 |
|
271 |
on billingdatadetail(TARGETDATE); |
|
272 |
|
|
273 |
create index billingdatadetail_Index3 |
|
274 |
on billingdatadetail(SEQNO); |
|
275 |
|
|
276 |
create index billingdatadetail_Index4 |
|
277 |
on billingdatadetail(LINECOUNT); |
|
278 |
|
|
279 |
create index billingdatadetail_Index5 |
|
280 |
on billingdatadetail(LABOURKIND); |
|
281 |
|
|
282 |
create index billingdatadetail_Index6 |
|
283 |
on billingdatadetail(CONSTRUCTIONCODE); |
|
284 |
|
|
285 |
create index billingdatadetail_Index7 |
|
286 |
on billingdatadetail(CONSTRUCTIONROWCNT); |
|
287 |
|
|
288 |
create index billingdatadetail_Index8 |
|
289 |
on billingdatadetail(CONSTRUCTIONCOLCNT); |
|
290 |
|
|
155 | 291 |
-- ???????x???T?}???[?f?[?^ |
156 |
--* BackupToTempTable
|
|
292 |
-- BackupToTempTable |
|
157 | 293 |
drop table if exists billingpaymentsummary cascade; |
158 | 294 |
|
159 |
--* RestoreFromTempTable
|
|
295 |
-- RestoreFromTempTable |
|
160 | 296 |
create table billingpaymentsummary ( |
161 | 297 |
COMPANYCODE decimal(8,0) default '0' not null comment '??????R?[?h' |
162 | 298 |
, TARGETDATE decimal(6,0) default '0' not null comment '???N??' |
... | ... | |
177 | 313 |
) comment '???????x???T?}???[?f?[?^' ; |
178 | 314 |
|
179 | 315 |
-- ?^?c????????? |
180 |
--* BackupToTempTable
|
|
316 |
-- BackupToTempTable |
|
181 | 317 |
drop table if exists bizperiodhistory cascade; |
182 | 318 |
|
183 |
--* RestoreFromTempTable
|
|
319 |
-- RestoreFromTempTable |
|
184 | 320 |
create table bizperiodhistory ( |
185 | 321 |
PeriodYear smallint(6) not null comment '?c??????E?H???N?x' |
186 | 322 |
, PeriodFlag smallint(1) not null comment '?c??????E?H???N?x?t???O' |
... | ... | |
192 | 328 |
) comment '?^?c?????????' ; |
193 | 329 |
|
194 | 330 |
-- ?H???????f?[?^?y???p?z |
195 |
--* BackupToTempTable
|
|
331 |
-- BackupToTempTable |
|
196 | 332 |
drop table if exists bk_constructionledger cascade; |
197 | 333 |
|
198 |
--* RestoreFromTempTable
|
|
334 |
-- RestoreFromTempTable |
|
199 | 335 |
create table bk_constructionledger ( |
200 | 336 |
ConstructionCode decimal(10,0) unsigned not null comment '?H???R?[?h' |
201 | 337 |
, ConstructionPeriod decimal(4,0) unsigned not null comment '?????' |
... | ... | |
221 | 357 |
) comment '?H???????f?[?^?y???p?z' ; |
222 | 358 |
|
223 | 359 |
-- ?H??????????f?[?^?y???p?z |
224 |
--* BackupToTempTable
|
|
360 |
-- BackupToTempTable |
|
225 | 361 |
drop table if exists bk_constructionledgerdetail cascade; |
226 | 362 |
|
227 |
--* RestoreFromTempTable
|
|
363 |
-- RestoreFromTempTable |
|
228 | 364 |
create table bk_constructionledgerdetail ( |
229 | 365 |
ConstructionCode decimal(10,0) unsigned not null comment '?H???R?[?h' |
230 | 366 |
, GroupCount decimal(2,0) unsigned not null comment '?O???[?v???' |
231 |
, LineCount decimal(5,0) unsigned not null comment '?s???'
|
|
367 |
, LineCount decimal(4,0) unsigned not null comment '?s???'
|
|
232 | 368 |
, ComponentCode decimal(5,0) unsigned not null comment '?\???L?[' |
233 | 369 |
, ItemCode decimal(5,0) unsigned not null comment '?H??L?[' |
234 | 370 |
, FirstString varchar(120) comment '???????' |
... | ... | |
250 | 386 |
, JoinTitleFlg decimal(1,0) not null comment '?H??????^?C?g??' |
251 | 387 |
, SalaryOnRegist decimal(12,0) not null comment '?o?^?????z???^' |
252 | 388 |
, PurchaseOrderFlg decimal(2,0) not null comment '?????????s?t???O' |
389 |
, DetailCount decimal(4,0) unsigned not null comment '??????' |
|
390 |
, InvalidLine decimal(1,0) not null comment '?????s' |
|
253 | 391 |
, EntryDate datetime not null comment '?o?^???t' |
254 | 392 |
, UpdateDate datetime not null comment '?X?V???t' |
255 | 393 |
, constraint bk_constructionledgerdetail_PKC primary key (ConstructionCode,GroupCount,LineCount) |
256 | 394 |
) comment '?H??????????f?[?^?y???p?z' ; |
257 | 395 |
|
258 | 396 |
-- ?H?????????s?f?[?^?y???p?z |
259 |
--* BackupToTempTable
|
|
397 |
-- BackupToTempTable |
|
260 | 398 |
drop table if exists bk_constructionledgerexcute cascade; |
261 | 399 |
|
262 |
--* RestoreFromTempTable
|
|
400 |
-- RestoreFromTempTable |
|
263 | 401 |
create table bk_constructionledgerexcute ( |
264 | 402 |
ConstructionCode decimal(10,0) unsigned not null comment '?H???R?[?h' |
265 | 403 |
, GroupCount decimal(2,0) unsigned not null comment '?O???[?v???' |
... | ... | |
273 | 411 |
) comment '?H?????????s?f?[?^?y???p?z' ; |
274 | 412 |
|
275 | 413 |
-- ??Z????f?[?^?y???p?z |
276 |
--* BackupToTempTable
|
|
414 |
-- BackupToTempTable |
|
277 | 415 |
drop table if exists bk_estimatedata cascade; |
278 | 416 |
|
279 |
--* RestoreFromTempTable
|
|
417 |
-- RestoreFromTempTable |
|
280 | 418 |
create table bk_estimatedata ( |
281 | 419 |
SaveDate datetime not null comment '?????t' |
282 | 420 |
, ConstructionCode decimal(10,0) unsigned not null comment '?H???R?[?h' |
... | ... | |
295 | 433 |
) comment '??Z????f?[?^?y???p?z' ; |
296 | 434 |
|
297 | 435 |
-- ??Z????y?[?W?f?[?^?y???p?z |
298 |
--* BackupToTempTable
|
|
436 |
-- BackupToTempTable |
|
299 | 437 |
drop table if exists bk_estimatedatabody cascade; |
300 | 438 |
|
301 |
--* RestoreFromTempTable
|
|
439 |
-- RestoreFromTempTable |
|
302 | 440 |
create table bk_estimatedatabody ( |
303 | 441 |
SaveDate datetime not null comment '?????t' |
304 | 442 |
, ConstructionCode decimal(10,0) unsigned not null comment '?H???R?[?h' |
... | ... | |
316 | 454 |
) comment '??Z????y?[?W?f?[?^?y???p?z' ; |
317 | 455 |
|
318 | 456 |
-- ??Z????f?[?^????y???p?z |
319 |
--* BackupToTempTable
|
|
457 |
-- BackupToTempTable |
|
320 | 458 |
drop table if exists bk_estimatedatadetail cascade; |
321 | 459 |
|
322 |
--* RestoreFromTempTable
|
|
460 |
-- RestoreFromTempTable |
|
323 | 461 |
create table bk_estimatedatadetail ( |
324 | 462 |
SaveDate datetime not null comment '?????t' |
325 | 463 |
, ConstructionCode decimal(10,0) unsigned not null comment '?H???R?[?h' |
... | ... | |
345 | 483 |
) comment '??Z????f?[?^????y???p?z' ; |
346 | 484 |
|
347 | 485 |
-- ?\?Z???W?v?R?[?h?}?X?^ |
348 |
--* BackupToTempTable
|
|
486 |
-- BackupToTempTable |
|
349 | 487 |
drop table if exists budgetsumcode cascade; |
350 | 488 |
|
351 |
--* RestoreFromTempTable |
他の形式にエクスポート: Unified diff