archives_mgr.sql 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. /*
  2. Navicat MariaDB Data Transfer
  3. Source Server : archives
  4. Source Server Version : 100032
  5. Source Host : 192.168.1.124:3307
  6. Source Database : archives_mgr
  7. Target Server Type : MariaDB
  8. Target Server Version : 100032
  9. File Encoding : 65001
  10. Date: 2018-04-03 16:08:04
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for mgr_archives_classification
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `mgr_archives_classification`;
  17. CREATE TABLE `mgr_archives_classification` (
  18. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '分类表ID',
  19. `classification_code` varchar(50) DEFAULT NULL COMMENT '分类代码',
  20. `name` varchar(50) DEFAULT NULL COMMENT '分类名称',
  21. `parent_id` bigint(20) DEFAULT NULL COMMENT '父ID',
  22. `connection_code` varchar(10) DEFAULT NULL COMMENT '连接符',
  23. `classification_model` varchar(255) DEFAULT NULL COMMENT '分类模式',
  24. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  25. `remark` varchar(1024) DEFAULT NULL,
  26. `create_time` datetime DEFAULT NULL,
  27. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  28. `update_time` datetime DEFAULT NULL,
  29. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  30. PRIMARY KEY (`id`)
  31. ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='分类表';
  32. -- ----------------------------
  33. -- Records of mgr_archives_classification
  34. -- ----------------------------
  35. INSERT INTO `mgr_archives_classification` VALUES ('2', '1234948491', '测试测试分类', null, '+', '32', '0', '测试测试', '2018-03-19 07:38:14', 'admin', null, null);
  36. INSERT INTO `mgr_archives_classification` VALUES ('3', '1564', '测试测试添加', null, '-', '3,3', '1', '测试', '2018-03-19 07:43:52', 'admin', null, null);
  37. INSERT INTO `mgr_archives_classification` VALUES ('4', '2009', '2009', null, '#', '3,3', '1', '2009', '2018-03-19 09:07:04', 'admin', '2018-03-19 10:21:45', 'admin');
  38. INSERT INTO `mgr_archives_classification` VALUES ('5', '2001', '2001', null, '|', '2,2,3', '1', '2001', '2018-03-19 09:08:07', 'admin', null, null);
  39. INSERT INTO `mgr_archives_classification` VALUES ('6', '2003', '2003', null, '-', '1,2,3', '1', '2003', '2018-03-19 09:09:27', 'admin', null, null);
  40. -- ----------------------------
  41. -- Table structure for mgr_archives_complicationdetail
  42. -- ----------------------------
  43. DROP TABLE IF EXISTS `mgr_archives_complicationdetail`;
  44. CREATE TABLE `mgr_archives_complicationdetail` (
  45. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '编研详细信息ID',
  46. `fonds_no` varchar(50) DEFAULT NULL COMMENT '全宗号',
  47. `parent_id` bigint(20) DEFAULT NULL COMMENT '父ID',
  48. `year` varchar(20) DEFAULT NULL COMMENT '年度',
  49. `unit_name` varchar(50) DEFAULT NULL COMMENT '部门名称',
  50. `part_no` varchar(10) DEFAULT NULL COMMENT '件号',
  51. `title` varchar(20) DEFAULT NULL COMMENT '题名',
  52. `archives_no` varchar(50) DEFAULT NULL COMMENT '档号',
  53. `author` varchar(20) DEFAULT NULL COMMENT '作者',
  54. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  55. `remark` varchar(1024) DEFAULT NULL,
  56. `create_time` datetime DEFAULT NULL,
  57. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  58. `update_time` datetime DEFAULT NULL,
  59. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  60. PRIMARY KEY (`id`)
  61. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='编研详细信息';
  62. -- ----------------------------
  63. -- Records of mgr_archives_complicationdetail
  64. -- ----------------------------
  65. -- ----------------------------
  66. -- Table structure for mgr_archives_complicationfilehang
  67. -- ----------------------------
  68. DROP TABLE IF EXISTS `mgr_archives_complicationfilehang`;
  69. CREATE TABLE `mgr_archives_complicationfilehang` (
  70. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '编研挂接ID',
  71. `url` varchar(50) DEFAULT NULL COMMENT '文件保存地址',
  72. `parent_id` bigint(20) DEFAULT NULL COMMENT '父ID',
  73. `title` varchar(20) DEFAULT NULL COMMENT '标题',
  74. `page_no` varchar(20) DEFAULT NULL COMMENT '页数',
  75. `sort_no` int(11) DEFAULT NULL COMMENT '序号',
  76. `author` varchar(20) DEFAULT NULL COMMENT '作者',
  77. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  78. `remark` varchar(1024) DEFAULT NULL,
  79. `create_time` datetime DEFAULT NULL,
  80. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  81. `update_time` datetime DEFAULT NULL,
  82. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  83. PRIMARY KEY (`id`)
  84. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='编研文件挂接信息';
  85. -- ----------------------------
  86. -- Records of mgr_archives_complicationfilehang
  87. -- ----------------------------
  88. -- ----------------------------
  89. -- Table structure for mgr_archives_complicationmanage
  90. -- ----------------------------
  91. DROP TABLE IF EXISTS `mgr_archives_complicationmanage`;
  92. CREATE TABLE `mgr_archives_complicationmanage` (
  93. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '编研库ID',
  94. `warehouse_name` varchar(50) DEFAULT NULL COMMENT '编研库名',
  95. `parent_id` bigint(20) DEFAULT NULL COMMENT '父ID',
  96. `type` varchar(20) DEFAULT NULL COMMENT '编研类型',
  97. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  98. `remark` varchar(1024) DEFAULT NULL,
  99. `create_time` datetime DEFAULT NULL,
  100. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  101. `update_time` datetime DEFAULT NULL,
  102. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  103. PRIMARY KEY (`id`)
  104. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='编研库信息';
  105. -- ----------------------------
  106. -- Records of mgr_archives_complicationmanage
  107. -- ----------------------------
  108. -- ----------------------------
  109. -- Table structure for mgr_archives_constants
  110. -- ----------------------------
  111. DROP TABLE IF EXISTS `mgr_archives_constants`;
  112. CREATE TABLE `mgr_archives_constants` (
  113. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '综合信息库ID',
  114. `repertory_name` varchar(50) DEFAULT NULL COMMENT '库名',
  115. `parent_id` bigint(20) DEFAULT NULL COMMENT '父ID',
  116. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  117. `remark` varchar(1024) DEFAULT NULL,
  118. `create_time` datetime DEFAULT NULL,
  119. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  120. `update_time` datetime DEFAULT NULL,
  121. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  122. PRIMARY KEY (`id`)
  123. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='综合信息管理库';
  124. -- ----------------------------
  125. -- Records of mgr_archives_constants
  126. -- ----------------------------
  127. -- ----------------------------
  128. -- Table structure for mgr_archives_datamanage
  129. -- ----------------------------
  130. DROP TABLE IF EXISTS `mgr_archives_datamanage`;
  131. CREATE TABLE `mgr_archives_datamanage` (
  132. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '资料ID',
  133. `title` varchar(50) DEFAULT NULL COMMENT '标题',
  134. `parent_id` bigint(20) DEFAULT NULL COMMENT '父ID',
  135. `author` varchar(20) DEFAULT NULL COMMENT '作者',
  136. `press` varchar(50) DEFAULT NULL COMMENT '出版社',
  137. `press_time` varchar(20) DEFAULT NULL COMMENT '出版日期',
  138. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  139. `remark` varchar(1024) DEFAULT NULL,
  140. `create_time` datetime DEFAULT NULL,
  141. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  142. `update_time` datetime DEFAULT NULL,
  143. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  144. PRIMARY KEY (`id`)
  145. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='资料管理';
  146. -- ----------------------------
  147. -- Records of mgr_archives_datamanage
  148. -- ----------------------------
  149. -- ----------------------------
  150. -- Table structure for mgr_archives_devicemanage
  151. -- ----------------------------
  152. DROP TABLE IF EXISTS `mgr_archives_devicemanage`;
  153. CREATE TABLE `mgr_archives_devicemanage` (
  154. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '设备ID',
  155. `device_name` varchar(50) DEFAULT NULL COMMENT '设备名称',
  156. `parent_id` bigint(20) DEFAULT NULL COMMENT '父ID',
  157. `device_number` int(10) DEFAULT NULL COMMENT '设备数量',
  158. `device_status` varchar(10) DEFAULT NULL COMMENT '设备状态',
  159. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  160. `remark` varchar(1024) DEFAULT NULL,
  161. `create_time` datetime DEFAULT NULL,
  162. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  163. `update_time` datetime DEFAULT NULL,
  164. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  165. PRIMARY KEY (`id`)
  166. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='设备管理';
  167. -- ----------------------------
  168. -- Records of mgr_archives_devicemanage
  169. -- ----------------------------
  170. -- ----------------------------
  171. -- Table structure for mgr_archives_document
  172. -- ----------------------------
  173. DROP TABLE IF EXISTS `mgr_archives_document`;
  174. CREATE TABLE `mgr_archives_document` (
  175. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
  176. `file_id` bigint(20) DEFAULT NULL COMMENT '案卷id',
  177. `enable` bit(1) DEFAULT NULL COMMENT '可用性',
  178. `remark` varchar(1024) DEFAULT NULL COMMENT '备注/附注',
  179. `create_by` varchar(20) DEFAULT NULL COMMENT '登记人',
  180. `create_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '登记日期',
  181. `update_by` varchar(20) DEFAULT NULL COMMENT '修改人',
  182. `update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
  183. `filing_by` varchar(20) DEFAULT NULL COMMENT '归档人',
  184. `filing_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '归档日期',
  185. `fonds_no` varchar(20) DEFAULT NULL COMMENT '全宗号',
  186. `catalogue_code` int(11) DEFAULT NULL COMMENT '案卷目录号',
  187. `file_code` varchar(20) DEFAULT NULL COMMENT '案卷号',
  188. `archival_code` varchar(20) DEFAULT NULL COMMENT '档号',
  189. `page_code` varchar(20) DEFAULT NULL COMMENT '页号',
  190. `part_no` varchar(20) DEFAULT NULL COMMENT '件号',
  191. `responsible_person` varchar(50) DEFAULT NULL COMMENT '责任者',
  192. `document_code` varchar(10) DEFAULT NULL COMMENT '文件编号',
  193. `document_title` varchar(255) DEFAULT NULL COMMENT '文件题名',
  194. `pages_count` int(11) DEFAULT NULL COMMENT '页数',
  195. `written_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '成文时间',
  196. `year` varchar(10) DEFAULT NULL COMMENT '年度',
  197. `box_code` varchar(20) DEFAULT NULL COMMENT '盒号',
  198. `security_classification` int(11) DEFAULT NULL COMMENT '密级。(0无密;1秘密;2机密;3绝密;)',
  199. `archives_type_code` int(11) DEFAULT NULL COMMENT '分类号',
  200. `electronic_record_title` varchar(50) DEFAULT NULL COMMENT '电子档案名称',
  201. `descriptor` varchar(100) DEFAULT NULL COMMENT '主题词',
  202. `organization_problem` varchar(100) DEFAULT NULL COMMENT '机构(问题)',
  203. `personage` varchar(20) DEFAULT NULL COMMENT '人物',
  204. `archives_name` varchar(100) DEFAULT NULL COMMENT '档案馆名称',
  205. `attachment_title` varchar(100) DEFAULT NULL COMMENT '附件题名',
  206. `control_sign` varchar(10) DEFAULT NULL COMMENT '控制标识',
  207. `archives_code` varchar(10) DEFAULT NULL COMMENT '档案馆代码',
  208. `produce_way` varchar(20) DEFAULT NULL COMMENT '电子档案生成方式',
  209. `secrecy_period` int(11) DEFAULT NULL COMMENT '保密期限',
  210. `retention_period` int(11) DEFAULT NULL COMMENT '保管期限',
  211. `filing_status` int(1) DEFAULT '0' COMMENT '档案归档状态(0未归档;1归档)',
  212. `del_flag` int(1) DEFAULT '0' COMMENT '删除标识(0未删除;1删除)',
  213. `digitization_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '数字化时间',
  214. `digitization_obj_describe` varchar(100) DEFAULT NULL COMMENT '数字化对象描述',
  215. `digitization_authorize_describe` varchar(100) DEFAULT NULL COMMENT '数字化授权描述',
  216. `format_name` varchar(20) DEFAULT NULL COMMENT '格式名称',
  217. `format_version` varchar(20) DEFAULT NULL COMMENT '格式版本',
  218. `color_space` varchar(20) DEFAULT '' COMMENT '色彩空间',
  219. `compress_scheme` varchar(20) DEFAULT '' COMMENT '压缩方案',
  220. `compression_ratio` varchar(10) DEFAULT '' COMMENT '压缩率',
  221. `horizontal_resolution` varchar(10) DEFAULT '' COMMENT '水平分辨率',
  222. `vertical_resolution` varchar(10) DEFAULT '' COMMENT '垂直分辨率',
  223. `image_width` varchar(10) DEFAULT NULL COMMENT '图像宽度',
  224. `image_height` varchar(10) DEFAULT NULL COMMENT '图像高度',
  225. `equipment_type` varchar(20) DEFAULT '' COMMENT '设备类型',
  226. `equipment_manufacturer` varchar(50) DEFAULT '' COMMENT '设备制造商',
  227. `equipment_model` varchar(20) DEFAULT '' COMMENT '设备型号',
  228. `equipment_series_number` varchar(50) DEFAULT '' COMMENT '设备系列号',
  229. `equipment_photoreceptor` varchar(20) DEFAULT '' COMMENT '设备感光器',
  230. `digital_software_name` varchar(50) DEFAULT NULL COMMENT '数字化软件名称',
  231. `digital_software_version` varchar(20) DEFAULT NULL COMMENT '数字化软件版本',
  232. `digital_software_manufacturer` varchar(50) DEFAULT NULL COMMENT '数字化软件生产商',
  233. PRIMARY KEY (`id`)
  234. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='文书档案文件';
  235. -- ----------------------------
  236. -- Records of mgr_archives_document
  237. -- ----------------------------
  238. INSERT INTO `mgr_archives_document` VALUES ('1', '1', '', null, null, '2018-04-02 11:51:50', null, '2018-04-02 11:51:50', 'admin', '2018-04-02 11:51:50', null, null, 'ffddfdfd', 'fdfd', 'fdfdfd', 'fdfdf', 'ffdd', null, 'E:\\\\test\\\\in\\\\a\\\\b\\\\新建 Microsoft Word 文档.docx', null, '2018-04-02 11:51:50', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, '0', '0', '2018-04-02 11:51:50', null, null, null, null, '', '', '', '', '', null, null, '', '', '', '', '', null, null, null);
  239. INSERT INTO `mgr_archives_document` VALUES ('2', '1', '', null, null, '2018-04-02 15:06:05', null, '2018-04-02 15:06:05', 'admin', '2018-04-02 15:06:05', null, null, 'dssv', 'svssd', 'dsvs', 'dsa', 'da', null, 'E:\\\\test\\\\in\\\\a\\\\c\\\\新建 Microsoft PowerPoint 演示文稿.pptx', null, '2018-04-02 15:06:05', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, '0', '0', '2018-04-02 15:06:05', null, null, null, null, '', '', '', '', '', null, null, '', '', '', '', '', null, null, null);
  240. INSERT INTO `mgr_archives_document` VALUES ('3', '2', '', null, null, '2018-04-02 12:01:56', null, '2018-04-02 12:01:56', 'admin', '2018-04-02 12:01:56', null, null, 'ds', 'dsddsd', 'ssd', 'dad', 'a', null, 'E:\\\\test\\\\in\\\\a\\\\d\\\\新建文本文档.txt', null, '2018-04-02 12:01:56', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, '0', '0', '2018-04-02 12:01:56', null, null, null, null, '', '', '', '', '', null, null, '', '', '', '', '', null, null, null);
  241. INSERT INTO `mgr_archives_document` VALUES ('4', '2', '', null, null, '2018-04-02 12:01:58', null, '2018-04-02 12:01:58', 'admin', '2018-04-02 12:01:58', null, null, 'asdad', 'sada', 'ada', 'd', 'adad', null, 'E:\\\\test\\\\in\\\\a\\\\e\\\\新建 Microsoft Visio 绘图.vsdx', null, '2018-04-02 12:01:58', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, '0', '0', '2018-04-02 12:01:58', null, null, null, null, '', '', '', '', '', null, null, '', '', '', '', '', null, null, null);
  242. -- ----------------------------
  243. -- Table structure for mgr_archives_electronic_record
  244. -- ----------------------------
  245. DROP TABLE IF EXISTS `mgr_archives_electronic_record`;
  246. CREATE TABLE `mgr_archives_electronic_record` (
  247. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
  248. `enable` bit(1) DEFAULT b'1' COMMENT '可用性(1可用;0不可用)',
  249. `remark` varchar(1024) DEFAULT NULL COMMENT '备注',
  250. `create_by` varchar(20) DEFAULT NULL COMMENT '创建人',
  251. `create_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '创建日期',
  252. `update_by` varchar(20) DEFAULT NULL COMMENT '修改人',
  253. `update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '修改日期',
  254. `document_id` bigint(20) DEFAULT NULL COMMENT '文件id(mgr_archives_document表的id)',
  255. `electronic_record_title` varchar(50) DEFAULT NULL COMMENT '电子文件标题',
  256. `connect_configure_name` varchar(20) DEFAULT NULL COMMENT '挂接配置名',
  257. PRIMARY KEY (`id`)
  258. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='电子档案文件';
  259. -- ----------------------------
  260. -- Records of mgr_archives_electronic_record
  261. -- ----------------------------
  262. -- ----------------------------
  263. -- Table structure for mgr_archives_file
  264. -- ----------------------------
  265. DROP TABLE IF EXISTS `mgr_archives_file`;
  266. CREATE TABLE `mgr_archives_file` (
  267. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
  268. `enable` bit(1) DEFAULT b'1' COMMENT '可用性(1可用;0不可用)',
  269. `remark` varchar(1024) DEFAULT NULL COMMENT '备注/附注',
  270. `create_by` varchar(20) DEFAULT NULL COMMENT '创建人',
  271. `create_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
  272. `update_by` varchar(20) DEFAULT NULL COMMENT '修改人',
  273. `update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
  274. `filing_by` varchar(20) DEFAULT NULL COMMENT '归档人',
  275. `filing_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '归档日期',
  276. `archival_code` varchar(20) DEFAULT NULL COMMENT '案卷级档号',
  277. `fonds_no` varchar(20) DEFAULT NULL COMMENT '全宗号',
  278. `fonds_name` varchar(50) DEFAULT NULL,
  279. `catalogue_code` int(11) DEFAULT NULL COMMENT '目录号',
  280. `file_code` int(11) DEFAULT NULL COMMENT '案卷号',
  281. `year` varchar(10) DEFAULT NULL COMMENT '年度',
  282. `retention_period` int(11) DEFAULT NULL COMMENT '保管期限',
  283. `retention_period_code` varchar(10) DEFAULT NULL COMMENT '保管期限代码',
  284. `file_title` varchar(500) DEFAULT NULL COMMENT '案卷题名',
  285. `start_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '起时间',
  286. `end_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '止时间',
  287. `responsible_person` varchar(50) DEFAULT NULL COMMENT '责任者',
  288. `written_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '成文时间',
  289. `pages_count` int(11) DEFAULT NULL COMMENT '页数',
  290. `document_count` int(11) DEFAULT NULL COMMENT '文件件数',
  291. `personage` varchar(20) DEFAULT NULL COMMENT '人物',
  292. `box_code` varchar(20) DEFAULT NULL COMMENT '盒号',
  293. `secrecy_period` int(11) DEFAULT NULL COMMENT '保密期限',
  294. `security_classification` int(11) DEFAULT '0' COMMENT '密级(0无密;1秘密;2机密;3绝密;)',
  295. `archives_name` varchar(100) DEFAULT NULL COMMENT '档案馆名称',
  296. `descriptor` varchar(100) DEFAULT NULL COMMENT '主题词',
  297. `archives_code` varchar(10) DEFAULT NULL COMMENT '档案馆代码',
  298. `attachment_title` varchar(100) DEFAULT NULL COMMENT '附件题名',
  299. `RFID` varchar(20) DEFAULT NULL COMMENT 'RFID',
  300. `filing_status` int(1) DEFAULT '0' COMMENT '归档状态(0:未归档,1归档)',
  301. PRIMARY KEY (`id`)
  302. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='文书档案案卷';
  303. -- ----------------------------
  304. -- Records of mgr_archives_file
  305. -- ----------------------------
  306. INSERT INTO `mgr_archives_file` VALUES ('1', '', null, 'admin', '2018-03-30 09:59:59', null, '2018-03-30 09:59:59', 's', '2018-03-30 09:59:59', 'ds', 'ds', 'dsd', null, null, 'sds', null, null, null, '2018-03-30 09:59:59', '2018-03-30 09:59:59', null, '2018-03-30 09:59:59', null, null, null, null, null, '0', null, null, null, null, null, '1');
  307. INSERT INTO `mgr_archives_file` VALUES ('2', '', null, 'admi', '2018-03-30 10:00:01', null, '2018-03-30 10:00:01', 'sdsd', '2018-03-30 10:00:01', 'sdcx', 'vc', 'xvcxvxv', null, null, 'vcxv', null, null, null, '2018-03-30 10:00:01', '2018-03-30 10:00:01', null, '2018-03-30 10:00:01', null, null, null, null, null, '0', null, null, null, null, null, '1');
  308. -- ----------------------------
  309. -- Table structure for mgr_archives_file_note
  310. -- ----------------------------
  311. DROP TABLE IF EXISTS `mgr_archives_file_note`;
  312. CREATE TABLE `mgr_archives_file_note` (
  313. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
  314. `enable` bit(1) DEFAULT b'1' COMMENT '可用性(0不可用;1可用)',
  315. `remark` varchar(1024) DEFAULT NULL COMMENT '备注/附注',
  316. `create_by` varchar(20) DEFAULT NULL COMMENT '创建人',
  317. `create_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
  318. `update_by` varchar(20) DEFAULT NULL COMMENT '修改人',
  319. `update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
  320. `fonds_name` varchar(50) DEFAULT NULL COMMENT '全宗名称',
  321. `fonds_no` varchar(20) DEFAULT NULL COMMENT '全宗号',
  322. `detail` varchar(500) DEFAULT NULL COMMENT '档案说明',
  323. `collator` varchar(20) DEFAULT NULL COMMENT '整理人',
  324. `inspector` varchar(20) DEFAULT NULL COMMENT '检查人',
  325. PRIMARY KEY (`id`)
  326. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='文书档案备考表';
  327. -- ----------------------------
  328. -- Records of mgr_archives_file_note
  329. -- ----------------------------
  330. -- ----------------------------
  331. -- Table structure for mgr_archives_filestorageset
  332. -- ----------------------------
  333. DROP TABLE IF EXISTS `mgr_archives_filestorageset`;
  334. CREATE TABLE `mgr_archives_filestorageset` (
  335. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '文件存储ID',
  336. `config_name` varchar(50) DEFAULT NULL COMMENT '配置名',
  337. `parent_id` bigint(20) DEFAULT NULL COMMENT '父ID',
  338. `config_type` varchar(10) DEFAULT NULL COMMENT '配置方式',
  339. `file_url` varchar(30) DEFAULT NULL COMMENT '文件存储路径',
  340. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  341. `remark` varchar(1024) DEFAULT NULL,
  342. `create_time` datetime DEFAULT NULL,
  343. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  344. `update_time` datetime DEFAULT NULL,
  345. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  346. PRIMARY KEY (`id`)
  347. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='文件存储设置表';
  348. -- ----------------------------
  349. -- Records of mgr_archives_filestorageset
  350. -- ----------------------------
  351. -- ----------------------------
  352. -- Table structure for mgr_archives_fonds
  353. -- ----------------------------
  354. DROP TABLE IF EXISTS `mgr_archives_fonds`;
  355. CREATE TABLE `mgr_archives_fonds` (
  356. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '全宗ID',
  357. `fonds_no` varchar(32) DEFAULT NULL COMMENT '全宗号',
  358. `fonds_name` varchar(50) DEFAULT NULL COMMENT '全宗名',
  359. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  360. `remark` varchar(1024) DEFAULT NULL,
  361. `create_time` datetime DEFAULT NULL,
  362. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  363. `update_time` datetime DEFAULT NULL,
  364. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  365. PRIMARY KEY (`id`)
  366. ) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8 COMMENT='全宗表';
  367. -- ----------------------------
  368. -- Records of mgr_archives_fonds
  369. -- ----------------------------
  370. INSERT INTO `mgr_archives_fonds` VALUES ('41', '001', '1七星关区委办', '1', '1七星关区委办', '2018-03-31 02:13:18', 'admin', null, null);
  371. INSERT INTO `mgr_archives_fonds` VALUES ('42', '002', '2七星关区宣传部', '1', '2七星关区宣传部', '2018-03-31 02:15:23', 'admin', null, null);
  372. INSERT INTO `mgr_archives_fonds` VALUES ('43', '003', '3七星关区妇联', '1', '3七星关区妇联', '2018-03-31 02:15:36', 'admin', null, null);
  373. INSERT INTO `mgr_archives_fonds` VALUES ('44', '004', '4七星关区纪委', '1', '4七星关区纪委', '2018-03-31 02:15:49', 'admin', null, null);
  374. INSERT INTO `mgr_archives_fonds` VALUES ('45', '005', '5七星关区政府办', '1', '5七星关区政府办', '2018-03-31 02:16:07', 'admin', null, null);
  375. INSERT INTO `mgr_archives_fonds` VALUES ('46', '006', '6七星关区教育局', '1', '七星关区教育局', '2018-03-31 02:16:23', 'admin', null, null);
  376. INSERT INTO `mgr_archives_fonds` VALUES ('47', '007', '7七星关区档案局', '1', '7七星关区档案局', '2018-03-31 02:16:37', 'admin', null, null);
  377. INSERT INTO `mgr_archives_fonds` VALUES ('48', '008', '8七星关区住建局', '1', '8七星关区住建局', '2018-03-31 02:16:49', 'admin', null, null);
  378. INSERT INTO `mgr_archives_fonds` VALUES ('49', '009', '9七星关区人社局', '1', '七星关区人社局', '2018-03-31 02:17:08', 'admin', null, null);
  379. INSERT INTO `mgr_archives_fonds` VALUES ('50', '0011', '11七星关区毕节县商会', '1', '七星关区毕节县商会', '2018-03-31 02:17:43', 'admin', null, null);
  380. INSERT INTO `mgr_archives_fonds` VALUES ('51', '0012', '12计生局', '1', '12计生局', '2018-03-31 02:18:03', 'admin', null, null);
  381. INSERT INTO `mgr_archives_fonds` VALUES ('52', '0013', '13七星关区党校', '1', '七星关区党校', '2018-03-31 02:18:22', 'admin', null, null);
  382. INSERT INTO `mgr_archives_fonds` VALUES ('53', '0014', '14七星关区城管', '1', '七星关区城管', '2018-03-31 02:18:40', 'admin', null, null);
  383. INSERT INTO `mgr_archives_fonds` VALUES ('54', '0015', '15七星关区信访办', '1', '信访办', '2018-03-31 02:19:23', 'admin', null, null);
  384. INSERT INTO `mgr_archives_fonds` VALUES ('55', '0016', '16海子街镇', '1', '海子街镇', '2018-03-31 02:19:47', 'admin', null, null);
  385. INSERT INTO `mgr_archives_fonds` VALUES ('56', '0017', '17杨家湾镇', '1', '杨家湾镇', '2018-03-31 02:20:23', 'admin', null, null);
  386. INSERT INTO `mgr_archives_fonds` VALUES ('57', '0018', '18林口镇', '1', '林口镇', '2018-03-31 02:20:41', 'admin', null, null);
  387. INSERT INTO `mgr_archives_fonds` VALUES ('58', '0019', '19普宜镇', '1', '普宜镇', '2018-03-31 02:21:14', 'admin', null, null);
  388. INSERT INTO `mgr_archives_fonds` VALUES ('59', '0021', '21生机镇', '1', '生机镇', '2018-03-31 02:21:35', 'admin', null, null);
  389. INSERT INTO `mgr_archives_fonds` VALUES ('60', '0020', '20田坝桥镇', '1', '田坝桥镇', '2018-03-31 02:22:15', 'admin', null, null);
  390. INSERT INTO `mgr_archives_fonds` VALUES ('61', '0022', '22七星关区红十字会', '1', '七星关区红十字会', '2018-03-31 02:22:41', 'admin', null, null);
  391. INSERT INTO `mgr_archives_fonds` VALUES ('62', '0023', '23地区海事局', '1', '地区海事局', '2018-03-31 02:23:08', 'admin', null, null);
  392. INSERT INTO `mgr_archives_fonds` VALUES ('63', '0024', '涉外', '1', '涉外', '2018-03-31 02:44:14', 'admin', null, null);
  393. INSERT INTO `mgr_archives_fonds` VALUES ('64', '0025', '结婚', '1', '结婚', '2018-03-31 02:44:25', 'admin', null, null);
  394. INSERT INTO `mgr_archives_fonds` VALUES ('65', '0026', '离婚', '1', '离婚', '2018-03-31 02:44:35', 'admin', null, null);
  395. INSERT INTO `mgr_archives_fonds` VALUES ('66', '0027', '七星关区质监站', '1', '七星关区质监站', '2018-03-31 02:44:59', 'admin', null, null);
  396. INSERT INTO `mgr_archives_fonds` VALUES ('67', '0028', '0028会计核算中心', '1', '会计核算中心', '2018-03-31 02:45:27', 'admin', null, null);
  397. INSERT INTO `mgr_archives_fonds` VALUES ('68', '0029', '独生子女档案', '1', '独生子女档案', '2018-03-31 02:48:51', 'admin', null, null);
  398. -- ----------------------------
  399. -- Table structure for mgr_archives_relation
  400. -- ----------------------------
  401. DROP TABLE IF EXISTS `mgr_archives_relation`;
  402. CREATE TABLE `mgr_archives_relation` (
  403. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '目录树关系表ID',
  404. `node_id` bigint(20) DEFAULT NULL COMMENT '节点ID(0:其他类型;只保存档案类型和全宗的ID)',
  405. `node_name` varchar(50) DEFAULT NULL COMMENT '节点名称',
  406. `pnode_id` bigint(20) DEFAULT NULL COMMENT '父节点ID',
  407. `node_type` int(10) unsigned NOT NULL COMMENT '节点类型(1:根节点;2:档案类型;3:全宗;4:分类)',
  408. `node_code` varchar(255) DEFAULT NULL COMMENT '节点代码,节点标识',
  409. `archival_id` bigint(20) DEFAULT NULL COMMENT '档案类型ID',
  410. `archival_catalog` varchar(100) DEFAULT NULL COMMENT '档案类型管理模式(档案目录是否包含案卷,项目等)',
  411. `fonds_id` bigint(20) DEFAULT NULL COMMENT '分类节点下的全宗ID',
  412. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  413. `remark` varchar(1024) DEFAULT NULL,
  414. `create_time` datetime DEFAULT NULL,
  415. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  416. `update_time` datetime DEFAULT NULL,
  417. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  418. PRIMARY KEY (`id`)
  419. ) ENGINE=InnoDB AUTO_INCREMENT=238 DEFAULT CHARSET=utf8 COMMENT='目录树关系表';
  420. -- ----------------------------
  421. -- Records of mgr_archives_relation
  422. -- ----------------------------
  423. INSERT INTO `mgr_archives_relation` VALUES ('111', '1', '七星关区档案局', null, '1', '123456789', null, null, null, '1', '七星关区档案局', '2018-03-27 10:11:53', 'admin', null, null);
  424. INSERT INTO `mgr_archives_relation` VALUES ('169', '0', '文书档案', '111', '2', '0000001111', null, null, null, '1', '文书档案分类', '2018-03-31 02:46:17', 'admin', null, null);
  425. INSERT INTO `mgr_archives_relation` VALUES ('170', '23', '文书档案(新)', '169', '2', '0000001111', null, '2,0', null, '1', '文书档案分类', '2018-03-31 02:46:17', 'admin', null, null);
  426. INSERT INTO `mgr_archives_relation` VALUES ('171', '24', '文书档案(旧)', '169', '2', '0000001111', null, '1,2,0', null, '1', '文书档案分类', '2018-03-31 02:46:17', 'admin', null, null);
  427. INSERT INTO `mgr_archives_relation` VALUES ('172', '41', '1七星关区委办', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  428. INSERT INTO `mgr_archives_relation` VALUES ('173', '42', '2七星关区宣传部', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  429. INSERT INTO `mgr_archives_relation` VALUES ('174', '43', '3七星关区妇联', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  430. INSERT INTO `mgr_archives_relation` VALUES ('175', '44', '4七星关区纪委', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  431. INSERT INTO `mgr_archives_relation` VALUES ('176', '45', '5七星关区政府办', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  432. INSERT INTO `mgr_archives_relation` VALUES ('177', '46', '6七星关区教育局', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  433. INSERT INTO `mgr_archives_relation` VALUES ('178', '47', '7七星关区档案局', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  434. INSERT INTO `mgr_archives_relation` VALUES ('179', '48', '8七星关区住建局', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  435. INSERT INTO `mgr_archives_relation` VALUES ('180', '49', '9七星关区人社局', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  436. INSERT INTO `mgr_archives_relation` VALUES ('181', '50', '11七星关区毕节县商会', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  437. INSERT INTO `mgr_archives_relation` VALUES ('182', '51', '12计生局', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  438. INSERT INTO `mgr_archives_relation` VALUES ('183', '52', '13七星关区党校', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  439. INSERT INTO `mgr_archives_relation` VALUES ('184', '53', '14七星关区城管', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  440. INSERT INTO `mgr_archives_relation` VALUES ('185', '54', '15七星关区信访办', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  441. INSERT INTO `mgr_archives_relation` VALUES ('186', '55', '16海子街镇', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:51', 'admin', null, null);
  442. INSERT INTO `mgr_archives_relation` VALUES ('187', '56', '17杨家湾镇', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:52', 'admin', null, null);
  443. INSERT INTO `mgr_archives_relation` VALUES ('188', '57', '18林口镇', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:52', 'admin', null, null);
  444. INSERT INTO `mgr_archives_relation` VALUES ('189', '58', '19普宜镇', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:52', 'admin', null, null);
  445. INSERT INTO `mgr_archives_relation` VALUES ('190', '59', '21生机镇', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:52', 'admin', null, null);
  446. INSERT INTO `mgr_archives_relation` VALUES ('191', '60', '20田坝桥镇', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:52', 'admin', null, null);
  447. INSERT INTO `mgr_archives_relation` VALUES ('192', '61', '22七星关区红十字会', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:52', 'admin', null, null);
  448. INSERT INTO `mgr_archives_relation` VALUES ('193', '62', '23地区海事局', '170', '3', '', '23', '2,0', null, '1', '', '2018-03-31 02:46:52', 'admin', null, null);
  449. INSERT INTO `mgr_archives_relation` VALUES ('194', '41', '1七星关区委办', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:18', 'admin', null, null);
  450. INSERT INTO `mgr_archives_relation` VALUES ('195', '42', '2七星关区宣传部', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:18', 'admin', null, null);
  451. INSERT INTO `mgr_archives_relation` VALUES ('196', '43', '3七星关区妇联', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  452. INSERT INTO `mgr_archives_relation` VALUES ('197', '44', '4七星关区纪委', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  453. INSERT INTO `mgr_archives_relation` VALUES ('198', '45', '5七星关区政府办', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  454. INSERT INTO `mgr_archives_relation` VALUES ('199', '46', '6七星关区教育局', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  455. INSERT INTO `mgr_archives_relation` VALUES ('200', '47', '7七星关区档案局', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  456. INSERT INTO `mgr_archives_relation` VALUES ('201', '48', '8七星关区住建局', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  457. INSERT INTO `mgr_archives_relation` VALUES ('202', '49', '9七星关区人社局', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  458. INSERT INTO `mgr_archives_relation` VALUES ('203', '50', '11七星关区毕节县商会', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  459. INSERT INTO `mgr_archives_relation` VALUES ('204', '51', '12计生局', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  460. INSERT INTO `mgr_archives_relation` VALUES ('205', '52', '13七星关区党校', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  461. INSERT INTO `mgr_archives_relation` VALUES ('206', '53', '14七星关区城管', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  462. INSERT INTO `mgr_archives_relation` VALUES ('207', '54', '15七星关区信访办', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  463. INSERT INTO `mgr_archives_relation` VALUES ('208', '55', '16海子街镇', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  464. INSERT INTO `mgr_archives_relation` VALUES ('209', '56', '17杨家湾镇', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:19', 'admin', null, null);
  465. INSERT INTO `mgr_archives_relation` VALUES ('210', '57', '18林口镇', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:20', 'admin', null, null);
  466. INSERT INTO `mgr_archives_relation` VALUES ('211', '58', '19普宜镇', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:20', 'admin', null, null);
  467. INSERT INTO `mgr_archives_relation` VALUES ('212', '59', '21生机镇', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:20', 'admin', null, null);
  468. INSERT INTO `mgr_archives_relation` VALUES ('213', '60', '20田坝桥镇', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:20', 'admin', null, null);
  469. INSERT INTO `mgr_archives_relation` VALUES ('214', '61', '22七星关区红十字会', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:20', 'admin', null, null);
  470. INSERT INTO `mgr_archives_relation` VALUES ('215', '62', '23地区海事局', '171', '3', '', '24', '1,2,0', null, '1', '', '2018-03-31 02:47:20', 'admin', null, null);
  471. INSERT INTO `mgr_archives_relation` VALUES ('216', '0', '专门档案', '111', '2', '00000222222', '24', null, null, '1', '专门档案', '2018-03-31 02:48:19', 'admin', null, null);
  472. INSERT INTO `mgr_archives_relation` VALUES ('217', '25', '婚姻档案', '216', '2', '00000222222', '24', '0', null, '1', '专门档案', '2018-03-31 02:48:19', 'admin', null, null);
  473. INSERT INTO `mgr_archives_relation` VALUES ('218', '32', '危改档案', '216', '2', '00000222222', '24', '0', null, '1', '专门档案', '2018-03-31 02:48:19', 'admin', null, null);
  474. INSERT INTO `mgr_archives_relation` VALUES ('219', '33', '独生子女档案', '216', '2', '', '0', '0,1', null, '1', '', '2018-03-31 02:49:53', 'admin', null, null);
  475. INSERT INTO `mgr_archives_relation` VALUES ('220', '0', '科技档案', '111', '4', '000003333333', '0', '', null, '0', '科技档案分类', '2018-03-31 02:50:48', 'admin', null, null);
  476. INSERT INTO `mgr_archives_relation` VALUES ('221', '43', '3七星关区妇联', '220', '3', '000003333333', '0', '', null, '0', '科技档案分类', '2018-03-31 02:51:16', 'admin', null, null);
  477. INSERT INTO `mgr_archives_relation` VALUES ('222', '66', '七星关区质监站', '220', '3', '000003333333', '0', '', null, '0', '科技档案分类', '2018-03-31 02:51:16', 'admin', null, null);
  478. INSERT INTO `mgr_archives_relation` VALUES ('223', '27', '科技档案', '111', '2', '000003333333', '0', '0', null, '1', '科技档案分类', '2018-03-31 02:52:16', 'admin', null, null);
  479. INSERT INTO `mgr_archives_relation` VALUES ('224', '43', '3七星关区妇联', '223', '3', '000003333333', '27', '0', null, '1', '科技档案分类', '2018-03-31 02:52:30', 'admin', null, null);
  480. INSERT INTO `mgr_archives_relation` VALUES ('225', '66', '七星关区质监站', '223', '3', '000003333333', '27', '0', null, '1', '科技档案分类', '2018-03-31 02:52:30', 'admin', null, null);
  481. INSERT INTO `mgr_archives_relation` VALUES ('226', '26', '会计档案', '111', '2', '000003333333', '27', '0', null, '1', '科技档案分类', '2018-03-31 02:53:05', 'admin', null, null);
  482. INSERT INTO `mgr_archives_relation` VALUES ('227', '67', '0028会计核算中心', '226', '3', '000003333333', '26', '0', null, '1', '科技档案分类', '2018-03-31 02:53:27', 'admin', null, null);
  483. INSERT INTO `mgr_archives_relation` VALUES ('228', '64', '结婚', '217', '3', '000003333333', '25', '0', null, '1', '科技档案分类', '2018-03-31 02:53:52', 'admin', null, null);
  484. INSERT INTO `mgr_archives_relation` VALUES ('229', '65', '离婚', '217', '3', '000003333333', '25', '0', null, '1', '科技档案分类', '2018-03-31 02:53:52', 'admin', null, null);
  485. INSERT INTO `mgr_archives_relation` VALUES ('230', '63', '涉外', '217', '3', '000003333333', '25', '0', null, '1', '科技档案分类', '2018-03-31 02:53:52', 'admin', null, null);
  486. INSERT INTO `mgr_archives_relation` VALUES ('231', '0', '并发症', '182', '4', '00000333444', '23', '2,0', '51', '1', '并发症', '2018-03-31 02:55:17', 'admin', null, null);
  487. INSERT INTO `mgr_archives_relation` VALUES ('232', '0', '两户认定', '111', '4', '0000033555', '23', '2,0', null, '0', '两户认定', '2018-03-31 02:55:45', 'admin', null, null);
  488. INSERT INTO `mgr_archives_relation` VALUES ('233', '0', '两户认定', '182', '4', '0000033555', '23', '2,0', '51', '1', '两户认定', '2018-03-31 02:56:38', 'admin', null, null);
  489. INSERT INTO `mgr_archives_relation` VALUES ('234', '0', '节育奖励', '182', '4', '00000336666', '23', '2,0', '51', '1', '节育奖励', '2018-03-31 02:57:09', 'admin', null, null);
  490. INSERT INTO `mgr_archives_relation` VALUES ('235', '0', '少生快富', '182', '4', '00000337777', '23', '2,0', '51', '1', '少生快富', '2018-03-31 02:57:41', 'admin', null, null);
  491. INSERT INTO `mgr_archives_relation` VALUES ('236', '0', '独生子女', '182', '4', '000003388888', '23', '2,0', '51', '1', '独生子女', '2018-03-31 02:58:15', 'admin', null, null);
  492. INSERT INTO `mgr_archives_relation` VALUES ('237', '0', '生育计划', '182', '4', '1231564', '23', '2,0', '51', '1', '生育计划', '2018-04-02 02:09:37', 'admin', null, null);
  493. -- ----------------------------
  494. -- Table structure for mgr_archives_relation_copy
  495. -- ----------------------------
  496. DROP TABLE IF EXISTS `mgr_archives_relation_copy`;
  497. CREATE TABLE `mgr_archives_relation_copy` (
  498. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '目录树关系表ID',
  499. `node_id` bigint(20) DEFAULT NULL COMMENT '节点ID',
  500. `node_name` varchar(50) DEFAULT NULL COMMENT '节点名称',
  501. `pnode_id` bigint(20) DEFAULT NULL COMMENT '父节点ID',
  502. `node_type` int(10) unsigned NOT NULL COMMENT '节点类型',
  503. `node_code` varchar(255) DEFAULT NULL COMMENT '节点代码',
  504. `archival_id` bigint(20) DEFAULT NULL COMMENT '档案类型ID',
  505. `archival_catalog` varchar(100) DEFAULT NULL COMMENT '档案类型管理模式(档案目录)',
  506. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  507. `remark` varchar(1024) DEFAULT NULL,
  508. `create_time` datetime DEFAULT NULL,
  509. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  510. `update_time` datetime DEFAULT NULL,
  511. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  512. PRIMARY KEY (`id`)
  513. ) ENGINE=InnoDB AUTO_INCREMENT=73 DEFAULT CHARSET=utf8 COMMENT='目录树关系表';
  514. -- ----------------------------
  515. -- Records of mgr_archives_relation_copy
  516. -- ----------------------------
  517. INSERT INTO `mgr_archives_relation_copy` VALUES ('47', '1', '七星关区档案局', null, '1', '0001', null, null, '1', '备注', '2018-03-24 03:12:48', 'admin', null, null);
  518. INSERT INTO `mgr_archives_relation_copy` VALUES ('48', '0', '文书档案', '47', '2', '0002', null, null, '0', null, '2018-03-24 03:13:43', 'admin', null, null);
  519. INSERT INTO `mgr_archives_relation_copy` VALUES ('49', '14', '档案类型测试', '48', '2', '0002', null, '1,2', '0', null, '2018-03-24 03:13:43', 'admin', null, null);
  520. INSERT INTO `mgr_archives_relation_copy` VALUES ('50', '10', '测试', '48', '2', '0002', null, '2', '0', null, '2018-03-24 03:13:43', 'admin', null, null);
  521. INSERT INTO `mgr_archives_relation_copy` VALUES ('51', '0', '文书档案', '47', '2', '0002', null, null, '1', null, '2018-03-24 03:14:50', 'admin', null, null);
  522. INSERT INTO `mgr_archives_relation_copy` VALUES ('52', '14', '档案类型测试', '51', '2', '0002', null, '1,2', '1', null, '2018-03-24 03:14:50', 'admin', null, null);
  523. INSERT INTO `mgr_archives_relation_copy` VALUES ('53', '10', '测试', '51', '2', '0002', null, '2', '1', null, '2018-03-24 03:14:50', 'admin', null, null);
  524. INSERT INTO `mgr_archives_relation_copy` VALUES ('54', '0', '全宗分类001', '53', '3', '0000001', null, '2', '1', null, '2018-03-24 03:20:45', 'admin', null, null);
  525. INSERT INTO `mgr_archives_relation_copy` VALUES ('55', '7', '测试全宗6', '54', '3', '0000001', null, '2', '1', null, '2018-03-24 03:20:46', 'admin', null, null);
  526. INSERT INTO `mgr_archives_relation_copy` VALUES ('56', '9', '测试全宗7', '54', '3', '0000001', null, '2', '0', null, '2018-03-24 03:20:46', 'admin', null, null);
  527. INSERT INTO `mgr_archives_relation_copy` VALUES ('57', '10', '测试全宗9', '54', '3', '0000001', null, '2', '1', null, '2018-03-24 03:20:46', 'admin', null, null);
  528. INSERT INTO `mgr_archives_relation_copy` VALUES ('58', '11', '测试全宗10', '54', '3', '0000001', null, '2', '1', null, '2018-03-24 03:20:46', 'admin', null, null);
  529. INSERT INTO `mgr_archives_relation_copy` VALUES ('59', '12', '全宗测试001', '54', '3', '0000001', null, '2', '1', null, '2018-03-24 03:20:46', 'admin', null, null);
  530. INSERT INTO `mgr_archives_relation_copy` VALUES ('60', '0', '测试分类', '56', '4', '123456', null, '2', '0', null, '2018-03-24 03:22:42', 'admin', null, null);
  531. INSERT INTO `mgr_archives_relation_copy` VALUES ('61', '0', '测试测试分类', '57', '4', '135153496', null, '2', '1', '测试彩色', '2018-03-24 08:01:41', 'admin', null, null);
  532. INSERT INTO `mgr_archives_relation_copy` VALUES ('62', '0', '测试测试分类', '57', '4', '135153496', null, '2', '1', '测试彩色', '2018-03-24 08:02:40', 'admin', null, null);
  533. INSERT INTO `mgr_archives_relation_copy` VALUES ('63', '0', '测试测试分类', '57', '4', '135153496', null, '2', '1', '测试彩色', '2018-03-24 08:02:59', 'admin', null, null);
  534. INSERT INTO `mgr_archives_relation_copy` VALUES ('64', '0', '再分类', '63', '4', '13418940', null, '2', '1', '备注', '2018-03-24 08:13:52', 'admin', null, null);
  535. INSERT INTO `mgr_archives_relation_copy` VALUES ('65', '0', '再分类', '62', '4', '13418940', null, '2', '1', '备注', '2018-03-24 08:15:29', 'admin', null, null);
  536. INSERT INTO `mgr_archives_relation_copy` VALUES ('66', '11', '独生子女', '47', '2', '', null, '1,2', '1', '', '2018-03-24 08:18:01', 'admin', null, null);
  537. INSERT INTO `mgr_archives_relation_copy` VALUES ('67', '12', '独生子女档案', '47', '2', '', null, '2,1', '1', '', '2018-03-24 08:18:01', 'admin', null, null);
  538. INSERT INTO `mgr_archives_relation_copy` VALUES ('68', '9', '测试全宗7', '67', '3', '', null, '2,1', '1', '', '2018-03-24 08:18:17', 'admin', null, null);
  539. INSERT INTO `mgr_archives_relation_copy` VALUES ('69', '10', '测试全宗9', '67', '3', '', null, '2,1', '1', '', '2018-03-24 08:18:17', 'admin', null, null);
  540. INSERT INTO `mgr_archives_relation_copy` VALUES ('70', '36', '七星关档案局12', '67', '3', '', null, '2,1', '1', '', '2018-03-24 08:18:17', 'admin', null, null);
  541. INSERT INTO `mgr_archives_relation_copy` VALUES ('71', '35', '七星关档案局1', '67', '3', '', null, '2,1', '1', '', '2018-03-24 08:18:17', 'admin', null, null);
  542. INSERT INTO `mgr_archives_relation_copy` VALUES ('72', '37', '七星关档案局123', '67', '3', '', null, '2,1', '1', '', '2018-03-24 08:18:17', 'admin', null, null);
  543. -- ----------------------------
  544. -- Table structure for mgr_archives_setarchivalcode
  545. -- ----------------------------
  546. DROP TABLE IF EXISTS `mgr_archives_setarchivalcode`;
  547. CREATE TABLE `mgr_archives_setarchivalcode` (
  548. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '档号ID',
  549. `file_rule` varchar(255) DEFAULT NULL COMMENT '案卷级档号规则',
  550. `record_rule` varchar(255) DEFAULT NULL COMMENT '案件级档号规则',
  551. `archivaltype_id` bigint(20) NOT NULL COMMENT '档案类型ID',
  552. `link_code` varchar(10) DEFAULT NULL COMMENT '连接符',
  553. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  554. `remark` varchar(1024) DEFAULT NULL,
  555. `create_time` datetime DEFAULT NULL,
  556. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  557. `update_time` datetime DEFAULT NULL,
  558. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  559. PRIMARY KEY (`id`)
  560. ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COMMENT='档号设置表';
  561. -- ----------------------------
  562. -- Records of mgr_archives_setarchivalcode
  563. -- ----------------------------
  564. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('7', '全宗号,案卷,年度', '年度,案卷,年度', '8', '-', '1', null, '2018-03-27 08:34:20', 'liusen', '2018-03-27 09:27:54', 'admin');
  565. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('8', '全宗号-案卷-年度', '年度-案卷-年度', '7', '-', '1', null, '2018-03-27 09:31:47', 'liusen', '2018-03-27 10:44:45', 'admin');
  566. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('9', '全宗号+案卷+年度', '全宗号+年度+件号', '11', '+', '1', null, '2018-03-27 09:32:59', 'liusen ', null, null);
  567. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('10', '', '', '7', '+', '0', null, '2018-03-27 11:02:15', '草拟吗', null, null);
  568. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('11', '', '', '7', '+', '0', null, '2018-03-27 11:02:33', '草拟吗', null, null);
  569. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('12', '', '', '7', '+', '0', null, '2018-03-27 11:06:47', '草拟大爷', null, null);
  570. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('13', '', '', '8', '+', '0', null, '2018-03-27 11:07:58', '草你妈的逼', null, null);
  571. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('14', '', '', '9', '-', '0', null, '2018-03-27 11:09:42', '擦擦擦', null, null);
  572. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('15', '', '', '9', '-', '0', null, '2018-03-27 11:09:42', '擦擦擦', null, null);
  573. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('16', '年度+件号+件号', '全宗号+年度+件号', '12', '+', '1', null, '2018-03-27 11:10:40', '啛啛喳喳错', null, null);
  574. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('17', '年度-件号-案卷', '件号-全宗号-件号', '10', '-', '1', null, '2018-03-27 11:11:40', '啛啛喳喳', null, null);
  575. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('18', '全宗号+案卷+件号', '年度+案卷+件号', '10', '+', '1', null, '2018-03-27 11:12:42', '草拟吗', null, null);
  576. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('19', '年度+案卷+年度', '年度+件号+年度', '8', '+', '1', null, '2018-03-27 11:13:09', '草拟吗', null, null);
  577. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('20', '案卷+年度+年度', '年度+件号+件号', '7', '+', '1', null, '2018-03-27 11:14:02', '15634561', null, null);
  578. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('21', '全宗号-年度-件号', '年度-案卷-年度', '8', '-', '1', null, '2018-03-27 11:15:06', '草拟吗逼', null, null);
  579. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('22', '全宗号+案卷+年度', '案卷+件号+年度', '8', '+', '1', null, '2018-03-27 11:18:26', '13156', null, null);
  580. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('23', '全宗号-案卷-年度', '全宗号-年度-年度', '9', '-', '1', null, '2018-03-27 11:21:26', '查查塞擦声', null, null);
  581. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('24', '全宗号-年度-年度', '年度-案卷-年度', '7', '-', '1', null, '2018-03-27 11:24:51', '23213456', null, null);
  582. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('25', '年度-案卷-年度', '案卷-件号-件号', '9', '-', '1', null, '2018-03-27 11:25:51', '擦拭大Vas', null, null);
  583. INSERT INTO `mgr_archives_setarchivalcode` VALUES ('26', '全宗号+案卷+件号', '年度+件号+年度', '8', '+', '1', null, '2018-03-27 11:28:41', '134156', null, null);
  584. -- ----------------------------
  585. -- Table structure for mgr_archives_type
  586. -- ----------------------------
  587. DROP TABLE IF EXISTS `mgr_archives_type`;
  588. CREATE TABLE `mgr_archives_type` (
  589. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '档案类型ID',
  590. `name` varchar(50) DEFAULT NULL COMMENT '类型名',
  591. `parent_id` bigint(20) DEFAULT NULL COMMENT '父ID',
  592. `manage_model` varchar(50) DEFAULT NULL COMMENT '档案管理模式',
  593. `archival_catalog` varchar(50) DEFAULT NULL COMMENT '档案类型的档案目录(包含案卷还是件)(0:只包含件;1:包含案卷;2:包含分类表;3:包含项目)',
  594. `filepage_number` int(10) unsigned DEFAULT NULL COMMENT '立卷设置卷内页数',
  595. `type_code` varchar(255) DEFAULT NULL COMMENT '档案类型代码',
  596. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  597. `remark` varchar(1024) DEFAULT NULL,
  598. `create_time` datetime DEFAULT NULL,
  599. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  600. `update_time` datetime DEFAULT NULL,
  601. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  602. PRIMARY KEY (`id`)
  603. ) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8 COMMENT='档案类型表';
  604. -- ----------------------------
  605. -- Records of mgr_archives_type
  606. -- ----------------------------
  607. INSERT INTO `mgr_archives_type` VALUES ('23', '文书档案(新)', null, '3', '2,0', null, null, '1', '文书档案(新)', '2018-03-31 02:40:23', '', null, null);
  608. INSERT INTO `mgr_archives_type` VALUES ('24', '文书档案(旧)', null, '2', '1,2,0', null, null, '1', '文书档案(旧)', '2018-03-31 02:40:38', '', null, null);
  609. INSERT INTO `mgr_archives_type` VALUES ('25', '婚姻档案', null, '1', '0', null, null, '1', '婚姻档案', '2018-03-31 02:41:22', '', null, null);
  610. INSERT INTO `mgr_archives_type` VALUES ('26', '会计档案', null, '1', '0', null, null, '1', '会计档案', '2018-03-31 02:41:51', '', null, null);
  611. INSERT INTO `mgr_archives_type` VALUES ('27', '科技档案', null, '1', '0', null, null, '1', '科技档案', '2018-03-31 02:42:01', '', null, null);
  612. INSERT INTO `mgr_archives_type` VALUES ('28', '图片档案', null, '1', '0', null, null, '1', '图片档案', '2018-03-31 02:42:18', '', null, null);
  613. INSERT INTO `mgr_archives_type` VALUES ('29', '照片档案', null, '1', '0', null, null, '1', '照片档案', '2018-03-31 02:42:30', '', null, null);
  614. INSERT INTO `mgr_archives_type` VALUES ('30', '实物档案', null, '1', '0', null, null, '1', '实物档案', '2018-03-31 02:42:44', '', null, null);
  615. INSERT INTO `mgr_archives_type` VALUES ('31', '视频档案', null, '1', '0', null, null, '1', '视频档案', '2018-03-31 02:43:02', '', null, null);
  616. INSERT INTO `mgr_archives_type` VALUES ('32', '危改档案', null, '1', '0', null, null, '1', '危改档案', '2018-03-31 02:43:22', '', null, null);
  617. INSERT INTO `mgr_archives_type` VALUES ('33', '独生子女档案', null, '1', '0,1', null, null, '1', '独生子女', '2018-03-31 02:49:38', '', null, null);
  618. -- ----------------------------
  619. -- Table structure for mgr_archives_warehousemanage
  620. -- ----------------------------
  621. DROP TABLE IF EXISTS `mgr_archives_warehousemanage`;
  622. CREATE TABLE `mgr_archives_warehousemanage` (
  623. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '库房ID',
  624. `name` varchar(50) DEFAULT NULL COMMENT '库房名',
  625. `parent_id` bigint(20) DEFAULT NULL COMMENT '父ID',
  626. `manager` varchar(20) DEFAULT NULL COMMENT '管理员',
  627. `temperature` double DEFAULT NULL COMMENT '温度',
  628. `humidity` double DEFAULT NULL COMMENT '湿度',
  629. `enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '启用状态',
  630. `remark` varchar(1024) DEFAULT NULL,
  631. `create_time` datetime DEFAULT NULL,
  632. `create_by` varchar(50) DEFAULT NULL COMMENT '创建人',
  633. `update_time` datetime DEFAULT NULL,
  634. `update_by` varchar(50) DEFAULT NULL COMMENT '更新人',
  635. PRIMARY KEY (`id`)
  636. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='库房管理';
  637. -- ----------------------------
  638. -- Records of mgr_archives_warehousemanage
  639. -- ----------------------------