1 Star 0 Fork 80

wernm/LeyeOA

forked from wanglong/LeyeOA 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
leyeoa.sql 103.19 KB
一键复制 编辑 原始数据 按行查看 历史
CREATE DATABASE IF NOT EXISTS `leyeoa` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `leyeoa`;
-- MySQL dump 10.13 Distrib 5.6.10, for Win32 (x86)
--
-- Host: localhost Database: leyeoa
-- ------------------------------------------------------
-- Server version 5.6.10
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `account`
--
DROP TABLE IF EXISTS `account`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(50) NOT NULL,
`password` varchar(60) NOT NULL,
`fullname` varchar(80) NOT NULL,
`email` varchar(80) NOT NULL,
`enabled` tinyint(1) NOT NULL,
`default_roleid` int(11) unsigned NOT NULL,
`department_id` int(11) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `account_idx1` (`username`),
KEY `accout_defaultrole_fk1_idx` (`default_roleid`),
KEY `account_department_fk2_idx` (`department_id`),
CONSTRAINT `account_defaultrole_fk1` FOREIGN KEY (`default_roleid`) REFERENCES `role` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `account_department_fk2` FOREIGN KEY (`department_id`) REFERENCES `department` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=1091 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `account`
--
LOCK TABLES `account` WRITE;
/*!40000 ALTER TABLE `account` DISABLE KEYS */;
INSERT INTO `account` VALUES (1000,'administrator','$2a$10$rxA5BuIvW64dstcbZLXR8OKMGKLnro4nsgrVKvGVHgoPp/poxASLG','管理员','303650172@qq.com',1,1000,1),(1083,'a12345678','$2a$10$5azKaRfz2ygllSbt.nT16.g0OxfPxAq7ZGo4hhPK1FYRkbxrUWI1K','汪龙','303650172@qq.om',1,1024,31),(1084,'wj12345678','$2a$10$qqBcegm969futQ1uYyb9d.wufyCvyXViQ3D8fIS2E/sMsJRSbeRjC','吴杰','welfw@f.com',1,1024,31),(1085,'wt123456','$2a$10$7x8ffphojBTxImMjmibXaOxavwj7aSgRRiRge89ndSb.3IQMz7L6.','王涛','wangtao@fdlf.com',1,1018,27),(1086,'zk123456','$2a$10$NA.U9GDmNWi44FjJEn5h6OGVWAbrpqunLS2Asi7GM1jbeRs8KjGtW','张康','zkw@fc.om',1,1021,27),(1087,'qj123456','$2a$10$.lcooQ/8CHKoINDP/6pSIOBP4mBpyr9WhNrp2BoufR4rSGSaU6PmG','钱杰','dfd@fd.com',1,1019,45),(1088,'lh123456','$2a$10$zWhh5ArXoyHtRh16hEJL3eSPiJx2DCfvO/rc8CorMzuOWAy/QXJlK','李浩','dfs@fd.com',1,1020,45),(1089,'wf12345678','$2a$10$hLSiz5o.mgfmJK6RI6MlGO94vKclKS2eqsOieS.yACp0gX4bIrmbC','王芳','dfsf@fdf.com',1,1025,28),(1090,'gj123123123','$2a$10$1XQ6V1JWl3M7UzqYrU79leR1afmRgCxGBMkwnMtr52OTMJhbJWI.u','高洁','dlsfkj@fc.om',1,1025,28);
/*!40000 ALTER TABLE `account` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `account_role`
--
DROP TABLE IF EXISTS `account_role`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_role` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`role_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `account_role_unique` (`account_id`,`role_id`),
KEY `account_role_fk1_idx` (`account_id`),
KEY `account_role_fk2_idx` (`role_id`),
CONSTRAINT `account_role_fk1` FOREIGN KEY (`account_id`) REFERENCES `account` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `account_role_fk2` FOREIGN KEY (`role_id`) REFERENCES `role` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=913 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `account_role`
--
LOCK TABLES `account_role` WRITE;
/*!40000 ALTER TABLE `account_role` DISABLE KEYS */;
INSERT INTO `account_role` VALUES (699,1000,1000),(903,1083,1024),(909,1084,1017),(904,1084,1024),(905,1085,1018),(906,1086,1021),(907,1087,1019),(908,1088,1020),(910,1089,1025),(912,1090,1017),(911,1090,1025);
/*!40000 ALTER TABLE `account_role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `announcement`
--
DROP TABLE IF EXISTS `announcement`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `announcement` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`content` text NOT NULL,
`createtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `announcement`
--
LOCK TABLES `announcement` WRITE;
/*!40000 ALTER TABLE `announcement` DISABLE KEYS */;
INSERT INTO `announcement` VALUES (1,'wefwef','<p>ewfwef</p>','2014-10-16 12:53:39'),(2,'就5就这4','<p>45就5这4就5<br />\r\n&nbsp;</p>','2014-10-21 07:52:50');
/*!40000 ALTER TABLE `announcement` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `defaultflow`
--
DROP TABLE IF EXISTS `defaultflow`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `defaultflow` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`participate` varchar(255) NOT NULL,
`workform_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`),
KEY `defaultflow_workform_fk1_idx` (`workform_id`),
CONSTRAINT `defaultflow_workform_fk1` FOREIGN KEY (`workform_id`) REFERENCES `workform` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `defaultflow`
--
LOCK TABLES `defaultflow` WRITE;
/*!40000 ALTER TABLE `defaultflow` DISABLE KEYS */;
INSERT INTO `defaultflow` VALUES (2,'用印','1017,1018,1025',3),(3,'请假申请','1017,1018,1025',1);
/*!40000 ALTER TABLE `defaultflow` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `delegate`
--
DROP TABLE IF EXISTS `delegate`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `delegate` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`delegate_id` int(10) unsigned NOT NULL,
`enabled` tinyint(4) NOT NULL,
PRIMARY KEY (`id`),
KEY `account_delegate_fk1_idx` (`account_id`),
KEY `account_delegate_fk2_idx` (`delegate_id`),
CONSTRAINT `account_delegate_fk1` FOREIGN KEY (`account_id`) REFERENCES `account` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `account_delegate_fk2` FOREIGN KEY (`delegate_id`) REFERENCES `account` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 COMMENT='委托别的用户签单';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `delegate`
--
LOCK TABLES `delegate` WRITE;
/*!40000 ALTER TABLE `delegate` DISABLE KEYS */;
INSERT INTO `delegate` VALUES (27,1083,1084,0),(33,1084,1090,1);
/*!40000 ALTER TABLE `delegate` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `department`
--
DROP TABLE IF EXISTS `department`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `department` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`alias` varchar(80) NOT NULL,
`pid` int(11) NOT NULL DEFAULT '0' COMMENT '部门父ID',
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8 COMMENT='部门表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `department`
--
LOCK TABLES `department` WRITE;
/*!40000 ALTER TABLE `department` DISABLE KEYS */;
INSERT INTO `department` VALUES (1,'other','其它',0),(26,'diangong','电工',30),(27,'guanlibu','管理部',45),(28,'renshi','人事',27),(29,'caiwu','财务',27),(30,'zongwu','总务',27),(31,'zixun','资讯',27),(32,'guanwu','关务',27),(33,'yewu','业务',27),(34,'caigou','采购',30),(35,'sujiaobu','塑胶部',45),(36,'shengchanbu','生产部',35),(37,'gongchengbu','工程部',35),(38,'pinbaobu','品保部',35),(39,'shengguan','生管',36),(40,'cangku','仓库',36),(41,'chengxing','成型',36),(42,'chengxingzuyi','成型组一',41),(43,'chengxingzuer','成型组二',41),(44,'chengxingzusan','成型组三',41),(45,'gudong','股东',0);
/*!40000 ALTER TABLE `department` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `formtype`
--
DROP TABLE IF EXISTS `formtype`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `formtype` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `formtype`
--
LOCK TABLES `formtype` WRITE;
/*!40000 ALTER TABLE `formtype` DISABLE KEYS */;
INSERT INTO `formtype` VALUES (3,'其它'),(2,'常用表单');
/*!40000 ALTER TABLE `formtype` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `loginlimit`
--
DROP TABLE IF EXISTS `loginlimit`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `loginlimit` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`ipaddress` varchar(255) NOT NULL,
`createtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`number` int(11) NOT NULL,
`username` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username_UNIQUE` (`username`),
KEY `loginlimit_account_fk1_idx` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `loginlimit`
--
LOCK TABLES `loginlimit` WRITE;
/*!40000 ALTER TABLE `loginlimit` DISABLE KEYS */;
/*!40000 ALTER TABLE `loginlimit` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `permission`
--
DROP TABLE IF EXISTS `permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `permission` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`alias` varchar(80) NOT NULL,
`pid` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `permission`
--
LOCK TABLES `permission` WRITE;
/*!40000 ALTER TABLE `permission` DISABLE KEYS */;
INSERT INTO `permission` VALUES (12,'backend','管理后台',0),(13,'frontend','管理前台',0),(14,'rbac','管理权限',0),(15,'cuser','添加用户',14),(16,'luser','列出用户',14),(17,'uuser','修改用户',14),(18,'duser','删除用户',14),(19,'drolePermission','删除角色',14),(20,'crole','添加角色',14),(21,'lrole','列出角色',14),(22,'urole','修改角色',14),(23,'cdepartment','添加部门',12),(24,'ldepartment','列出部门',12),(25,'udepartment','修改部门',12),(26,'ddepartment','删除部门',12),(27,'pdephierarchy','部门层次',12),(28,'cformtype','添加表单类型',12),(29,'lformtype','列出表单类型',12),(30,'uformtype','修改表单类型',12),(31,'cworkform','添加表单',12),(32,'lworkform','列出表单',12),(33,'uworkform','修改表单',12),(34,'cworkflow','添加流程',12),(35,'uworkflow','修改流程',12),(36,'lworkflow','列出流程',12),(37,'cannouncement','添加公告',12),(38,'lannouncement','列出公告',12),(39,'uannouncement','修改公告',12),(40,'queryuser','用户查询',12),(41,'queryworkflow','工作流查询',12),(42,'lsysteminfo','系统信息',12),(43,'lloginlimit','锁定管理',12),(44,'prolehierarchytree','角色层次',14),(45,'cpermission','添加操作',14),(46,'lpermission','列出操作',14),(47,'upermission','修改操作',14),(48,'dpermission','删除操作',14),(49,'crelationship','添加关系',14),(50,'drelationship','删除关系',14),(51,'urolehierarchy','修改角色层次',14),(52,'sdefaultRole','设置默认角色',14),(53,'sdefaultdepartment','设置默认部门',14),(54,'nworkflow','申请单据',13),(55,'fquery','查询',13),(56,'rfinishedflow','已审批',13),(57,'rmyapplication','已申请单据',13),(58,'rannouncement','读取公告',13),(59,'rworkflow','审批单据',13),(60,'rdepartmentflow','部门已审批',13),(61,'nworkform','申请',13),(62,'detailmyapplication','详细的表单申请',13),(63,'udephierarchy','修改部门层次',12),(64,'userInfo','用户信息',13),(65,'detailflow','详细的待签工作流',13),(66,'modifyflow','审批指定流程',13),(68,'qdetailworkflow','查询工作流详情',12),(69,'detaildepartmentflow','详细的部门流程',13),(71,'detailfinishedflow','详细的已完成流',13),(72,'nannouncement','详细的公告',13),(73,'modifydelegate','修改委托',13);
/*!40000 ALTER TABLE `permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `role`
--
DROP TABLE IF EXISTS `role`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`alias` varchar(80) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=1039 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `role`
--
LOCK TABLES `role` WRITE;
/*!40000 ALTER TABLE `role` DISABLE KEYS */;
INSERT INTO `role` VALUES (1000,'administrator','管理员'),(1016,'zuzhang','组长'),(1017,'kezhang','科长'),(1018,'jingli','经理'),(1019,'zongjingli','总经理'),(1020,'dongshizhang','董事长'),(1021,'fuzongjingli','副总经理'),(1022,'caiwu','财务'),(1023,'guanwu','关务'),(1024,'zixun','资讯'),(1025,'renshi','人事'),(1026,'zongwu','总务'),(1027,'yewu','业务'),(1028,'gongcheng','工程'),(1029,'pinbao','品保'),(1030,'shengguan','生管'),(1031,'cangku','仓库'),(1032,'chengxingyi','成型一'),(1033,'chengxinger','成型二'),(1034,'chengxingsan','成型三'),(1035,'caigou','采购'),(1036,'diangong','电工'),(1037,'chengxing','成型'),(1038,'yilizhi','已离职');
/*!40000 ALTER TABLE `role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `role_hierarchy`
--
DROP TABLE IF EXISTS `role_hierarchy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_hierarchy` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`advanced_role` int(11) unsigned NOT NULL,
`basic_role` int(11) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `role_role_unique` (`basic_role`),
KEY `role_hierarchy_fk1_idx` (`advanced_role`),
KEY `role_hierarchy_fk2_idx` (`basic_role`),
CONSTRAINT `role_hierarchy_fk1` FOREIGN KEY (`advanced_role`) REFERENCES `role` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `role_hierarchy_fk2` FOREIGN KEY (`basic_role`) REFERENCES `role` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `role_hierarchy`
--
LOCK TABLES `role_hierarchy` WRITE;
/*!40000 ALTER TABLE `role_hierarchy` DISABLE KEYS */;
/*!40000 ALTER TABLE `role_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `role_permission`
--
DROP TABLE IF EXISTS `role_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_permission` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`role_id` int(10) unsigned NOT NULL,
`permission_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `role_permission_unique` (`role_id`,`permission_id`),
KEY `role_permission_fk1_idx` (`role_id`),
KEY `role_permission_fk2_idx` (`permission_id`),
CONSTRAINT `role_permission_fk1` FOREIGN KEY (`role_id`) REFERENCES `role` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `role_permission_fk2` FOREIGN KEY (`permission_id`) REFERENCES `permission` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=561 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `role_permission`
--
LOCK TABLES `role_permission` WRITE;
/*!40000 ALTER TABLE `role_permission` DISABLE KEYS */;
INSERT INTO `role_permission` VALUES (418,1000,15),(419,1000,16),(420,1000,17),(421,1000,18),(423,1000,19),(424,1000,20),(425,1000,21),(426,1000,22),(427,1000,23),(428,1000,24),(429,1000,25),(430,1000,26),(431,1000,27),(436,1000,28),(437,1000,29),(438,1000,30),(439,1000,31),(441,1000,32),(442,1000,33),(443,1000,34),(444,1000,35),(445,1000,36),(446,1000,37),(447,1000,38),(448,1000,39),(449,1000,40),(450,1000,41),(451,1000,42),(452,1000,43),(461,1000,44),(463,1000,45),(462,1000,46),(464,1000,47),(465,1000,48),(466,1000,49),(467,1000,50),(468,1000,51),(469,1000,52),(470,1000,53),(475,1000,54),(488,1000,55),(489,1000,56),(490,1000,57),(453,1000,58),(492,1000,59),(493,1000,60),(476,1000,61),(495,1000,62),(486,1000,63),(539,1000,68),(557,1016,55),(558,1016,56),(559,1016,57),(521,1016,65),(515,1017,54),(514,1017,55),(516,1017,56),(517,1017,57),(546,1017,58),(518,1017,59),(551,1017,60),(552,1017,61),(542,1017,62),(543,1017,64),(519,1017,65),(522,1017,66),(554,1017,69),(555,1017,71),(556,1017,72),(523,1018,54),(524,1018,55),(525,1018,56),(526,1018,57),(527,1018,58),(528,1018,59),(529,1018,60),(530,1018,61),(531,1018,62),(532,1018,64),(520,1018,65),(534,1018,66),(496,1024,54),(497,1024,55),(499,1024,56),(498,1024,57),(500,1024,58),(501,1024,61),(502,1024,62),(504,1024,64),(560,1024,73),(505,1025,54),(506,1025,55),(507,1025,56),(508,1025,57),(509,1025,58),(513,1025,60),(510,1025,61),(511,1025,62),(512,1025,64);
/*!40000 ALTER TABLE `role_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `workflow`
--
DROP TABLE IF EXISTS `workflow`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `workflow` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`roleflow` varchar(255) NOT NULL,
`accountflow` varchar(255) DEFAULT NULL,
`content` text NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT '0',
`account_id` int(11) NOT NULL,
`createtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`custom` varchar(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `workflow`
--
LOCK TABLES `workflow` WRITE;
/*!40000 ALTER TABLE `workflow` DISABLE KEYS */;
INSERT INTO `workflow` VALUES (1,'用印申請單','28','1090,1085,1084','<p>昆山佳騰光電塑膠有限公司</p>\r\n\r\n<p>用印申請單</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width:139px\">\r\n <p>申 請 單 位</p>\r\n </td>\r\n <td style=\"width:197px\">\r\n <p>wefwefwe</p>\r\n </td>\r\n <td style=\"width:139px\">\r\n <p>申 請 日 期</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:197px\">\r\n <p>年&nbsp; &nbsp;月&nbsp;&nbsp;&nbsp; 日</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width:139px\">\r\n <p>用 印 類 別</p>\r\n </td>\r\n <td style=\"width:197px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"width:139px\">\r\n <p>份&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 數</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:197px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"5\" style=\"width:672px\">\r\n <p>文&nbsp;&nbsp;&nbsp; 件&nbsp;&nbsp; 名&nbsp;&nbsp; 稱&nbsp;&nbsp; 及&nbsp;&nbsp; 說&nbsp;&nbsp; 明</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"5\" style=\"height:91px; width:672px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\" style=\"width:336px\">\r\n <p>印&nbsp;&nbsp; 鑒&nbsp;&nbsp; 留&nbsp;&nbsp;&nbsp; 存</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:168px\">\r\n <p>廠 長 / 經 理</p>\r\n </td>\r\n <td style=\"width:168px\">\r\n <p>申&nbsp; 請&nbsp; 人</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\" style=\"height:82px; width:336px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:82px; width:168px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:82px; width:168px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>用印流程說明︰</p>\r\n\r\n<ol>\r\n <li>文件需用印時,應先填寫用印申請單,經主管(本部門最高主管)核準后連同文件、文稿等交監印人用印。</li>\r\n <li>監印人除於文件、文稿上用印外,並於用印申請單上加蓋使用之印章並存檔。</li>\r\n</ol>\r\n',1,1083,'2014-10-19 00:39:03','f'),(2,'用印申請單','28','1090,1085,1084','<p>昆山佳騰光電塑膠有限公司</p>\r\n\r\n<p>用印申請單</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width:139px\">\r\n <p>申 請 單 位</p>\r\n </td>\r\n <td style=\"width:197px\">\r\n <p>fewf</p>\r\n </td>\r\n <td style=\"width:139px\">\r\n <p>申 請 日 期</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:197px\">\r\n <p>&nbsp;wefwef年&nbsp; &nbsp;月&nbsp;&nbsp;&nbsp; 日</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width:139px\">\r\n <p>用 印 類 別</p>\r\n </td>\r\n <td style=\"width:197px\">\r\n <p>wefwe</p>\r\n </td>\r\n <td style=\"width:139px\">\r\n <p>份&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 數</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:197px\">\r\n <p>fwef</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"5\" style=\"width:672px\">\r\n <p>文&nbsp;&nbsp;&nbsp; 件&nbsp;&nbsp; 名&nbsp;&nbsp; 稱&nbsp;&nbsp; 及&nbsp;&nbsp; 說&nbsp;&nbsp; 明wefwefsdf</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"5\" style=\"height:91px; width:672px\">\r\n <p>wefweffsdfs</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\" style=\"width:336px\">\r\n <p>印&nbsp;&nbsp; 鑒&nbsp;&nbsp; 留&nbsp;&nbsp;&nbsp; 存</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:168px\">\r\n <p>廠 長 / 經 理</p>\r\n </td>\r\n <td style=\"width:168px\">\r\n <p>申&nbsp; 請&nbsp; 人</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\" style=\"height:82px; width:336px\">\r\n <p>dsfsdfsdfsdf</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:82px; width:168px\">\r\n <p>s</p>\r\n </td>\r\n <td style=\"height:82px; width:168px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>用印流程說明︰</p>\r\n\r\n<ol>\r\n <li>文件需用印時,應先填寫用印申請單,經主管(本部門最高主管)核準后連同文件、文稿等交監印人用印。</li>\r\n <li>監印人除於文件、文稿上用印外,並於用印申請單上加蓋使用之印章並存檔。</li>\r\n</ol>\r\n',1,1083,'2014-10-19 06:15:18','f'),(3,'用印申請單','28','1084','<p>昆山佳騰光電塑膠有限公司</p>\r\n\r\n<p>用印申請單</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width:139px\">\r\n <p>申 請 單 位</p>\r\n </td>\r\n <td style=\"width:197px\">\r\n <p>wefewf</p>\r\n </td>\r\n <td style=\"width:139px\">\r\n <p>申 請 日 期</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:197px\">\r\n <p>2014年10 &nbsp; 月 19 &nbsp; 日</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width:139px\">\r\n <p>用 印 類 別</p>\r\n </td>\r\n <td style=\"width:197px\">\r\n <p>wefwe</p>\r\n </td>\r\n <td style=\"width:139px\">\r\n <p>份&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 數</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:197px\">\r\n <p>wefwef</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"5\" style=\"width:672px\">\r\n <p>文&nbsp;&nbsp;&nbsp; 件&nbsp;&nbsp; 名&nbsp;&nbsp; 稱&nbsp;&nbsp; 及&nbsp;&nbsp; 說&nbsp;&nbsp; 明</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"5\" style=\"height:91px; width:672px\">\r\n <p>wefwef</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\" style=\"width:336px\">\r\n <p>印&nbsp;&nbsp; 鑒&nbsp;&nbsp; 留&nbsp;&nbsp;&nbsp; 存</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:168px\">\r\n <p>廠 長 / 經 理</p>\r\n </td>\r\n <td style=\"width:168px\">\r\n <p>申&nbsp; 請&nbsp; 人</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\" style=\"height:82px; width:336px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:82px; width:168px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:82px; width:168px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>用印流程說明︰</p>\r\n\r\n<ol>\r\n <li>文件需用印時,應先填寫用印申請單,經主管(本部門最高主管)核準后連同文件、文稿等交監印人用印。</li>\r\n <li>監印人除於文件、文稿上用印外,並於用印申請單上加蓋使用之印章並存檔。</li>\r\n</ol>\r\n',2,1083,'2014-10-19 06:19:15','f'),(4,'用印申請單','28','1090,1085,1084','<p>昆山佳騰光電塑膠有限公司</p>\r\n\r\n<p>用印申請單</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width:139px\">\r\n <p>申 請 單 位</p>\r\n </td>\r\n <td style=\"width:197px\">\r\n <p>&nbsp; 资讯</p>\r\n </td>\r\n <td style=\"width:139px\">\r\n <p>&nbsp; 申 請 日 期</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:197px\">\r\n <p>&nbsp;2014&nbsp; 年 10&nbsp; 月&nbsp; 20&nbsp; 日</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width:139px\">\r\n <p>用 印 類 別</p>\r\n </td>\r\n <td style=\"width:197px\">\r\n <p>&nbsp; xx</p>\r\n </td>\r\n <td style=\"width:139px\">\r\n <p>&nbsp; 份&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 數</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:197px\">\r\n <p>&nbsp;2</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"5\" style=\"width:672px\">\r\n <p>文&nbsp;&nbsp;&nbsp; 件&nbsp;&nbsp; 名&nbsp;&nbsp; 稱&nbsp;&nbsp; 及&nbsp;&nbsp; 說&nbsp;&nbsp; 明</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"5\" style=\"height:91px; width:672px\">\r\n <p>zzzzzzzzzzzzzzzzzzzzzzz</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\" style=\"width:336px\">\r\n <p>印&nbsp;&nbsp; 鑒&nbsp;&nbsp; 留&nbsp;&nbsp;&nbsp; 存</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:168px\">\r\n <p>廠 長 / 經 理</p>\r\n </td>\r\n <td style=\"width:168px\">\r\n <p>申&nbsp; 請&nbsp; 人</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\" style=\"height:82px; width:336px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:82px; width:168px\">\r\n <p>sss</p>\r\n </td>\r\n <td style=\"height:82px; width:168px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>用印流程說明︰</p>\r\n\r\n<ol>\r\n <li>文件需用印時,應先填寫用印申請單,經主管(本部門最高主管)核準后連同文件、文稿等交監印人用印。</li>\r\n <li>監印人除於文件、文稿上用印外,並於用印申請單上加蓋使用之印章並存檔。</li>\r\n</ol>\r\n',1,1083,'2014-10-20 06:33:31','f'),(5,'请假申请单','1019,1024,1018,1000,1017',NULL,'<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>',0,1083,'2014-10-21 04:01:24','f'),(6,'请假申请单','1018,1025','1090','<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>&nbsp;</p>\r\n',0,1083,'2014-10-25 07:10:00','f'),(7,'请假申请单','28','1090,1085,1084','<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>&nbsp;</p>\r\n',1,1083,'2014-10-25 08:25:40','f'),(8,'请假申请单','1018,1025','1090','<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>&nbsp;</p>\r\n',0,1083,'2014-10-25 08:26:36','f'),(9,'请假申请单','1018,1025','1090','<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>&nbsp;</p>\r\n',0,1083,'2014-10-25 08:30:09','f'),(11,'请假申请单','1018,1025','1090','<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>&nbsp;</p>\r\n',0,1083,'2014-10-25 08:33:44','f'),(12,'请假申请单','28','1090,1085,1084-1090,1090,1085,1084-1090,1090,1085,1084-1090,1090,1085,1084-1090','<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>&nbsp;</p>\r\n',1,1083,'2014-10-25 08:44:14','f');
/*!40000 ALTER TABLE `workflow` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `workform`
--
DROP TABLE IF EXISTS `workform`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `workform` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`content` text NOT NULL,
`type_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`),
KEY `formtype_workform_fk1_idx` (`type_id`),
CONSTRAINT `formtype_workform_fk1` FOREIGN KEY (`type_id`) REFERENCES `formtype` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `workform`
--
LOCK TABLES `workform` WRITE;
/*!40000 ALTER TABLE `workform` DISABLE KEYS */;
INSERT INTO `workform` VALUES (1,'请假申请单','<p>申请日期:&nbsp;&nbsp; 年&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:41px; width:79px\">\r\n <p>姓 名</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:60px\">\r\n <p>工 号</p>\r\n </td>\r\n <td style=\"height:41px; width:96px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>部 门</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:41px; width:72px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:41px; width:84px\">\r\n <p>进厂日期</p>\r\n </td>\r\n <td style=\"height:41px; width:108px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:30px; width:79px\">\r\n <p>假&nbsp;&nbsp;&nbsp; 别</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:30px; width:600px\">\r\n <p>□病假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □事假&nbsp;&nbsp;&nbsp;&nbsp; □工伤假&nbsp;&nbsp;&nbsp;&nbsp; □婚假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □产假&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; □丧假&nbsp;&nbsp;&nbsp; □年休假</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:52px; width:79px\">\r\n <p>请假事由</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:52px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td rowspan=\"2\" style=\"height:41px; width:79px\">\r\n <p>申请时间</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:41px; width:264px\">\r\n <p>&nbsp;&nbsp; 月&nbsp;&nbsp;&nbsp; 日&nbsp;&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n <td colspan=\"2\" rowspan=\"2\" style=\"height:41px; width:84px\">\r\n <p>核准时间</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:41px; width:252px\">\r\n <p>月&nbsp;&nbsp; 日&nbsp;&nbsp; 时至&nbsp;&nbsp;&nbsp; 月&nbsp;&nbsp; 日&nbsp;&nbsp; 时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"4\" style=\"height:31px; width:264px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;小时</p>\r\n </td>\r\n <td colspan=\"3\" style=\"height:31px; width:252px\">\r\n <p>合计:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 小时</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:47px; width:79px\">\r\n <p>备&nbsp;&nbsp;&nbsp; 注</p>\r\n </td>\r\n <td colspan=\"9\" style=\"height:47px; width:600px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>请假核准程序</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:679px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"height:37px; width:175px\">\r\n <p>核准</p>\r\n </td>\r\n <td style=\"height:37px; width:156px\">\r\n <p>人事</p>\r\n </td>\r\n <td colspan=\"4\" style=\"height:37px; width:348px\">\r\n <p>本&nbsp;&nbsp;&nbsp;&nbsp; 部&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 门</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:65px; width:175px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:156px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>课长</p>\r\n </td>\r\n <td style=\"height:65px; width:144px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:65px; width:36px\">\r\n <p>组长</p>\r\n </td>\r\n <td style=\"height:65px; width:132px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>窗体流程﹕请假本人提出申请&nbsp; &rarr; 本部门主管审核  &rarr;&nbsp; 管理部人事审核 &rarr;&nbsp; 各部门最高主管核准 (请假日期如跨月或跨年请分开填写)</p>\r\n\r\n<p>&nbsp;</p>',2),(2,'住宿换房','<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"height:298px; width:683px\">\r\n <tbody>\r\n <tr>\r\n <td colspan=\"6\" style=\"height:33px; width:684px\">昆山佳腾光电塑料有限公司</td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"6\" style=\"height:39px\">住宿换房申请单</td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:53px\">申请人</td>\r\n <td> </td>\r\n <td>工号</td>\r\n <td> </td>\r\n <td>所属部门</td>\r\n <td> </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:53px\">申请日期</td>\r\n <td> </td>\r\n <td>预计换房日期</td>\r\n <td> </td>\r\n <td>现住宿房号</td>\r\n <td> </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:53px\">申请更换房号</td>\r\n <td> </td>\r\n <td>申请理由</td>\r\n <td colspan=\"3\"> </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height:53px\">总务课</td>\r\n <td> </td>\r\n <td>舍监</td>\r\n <td> </td>\r\n <td>单位主管</td>\r\n <td> </td>\r\n </tr>\r\n </tbody>\r\n</table>',3),(3,'用印申請單','<p>昆山佳騰光電塑膠有限公司</p>\r\n\r\n<p>用印申請單</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width:139px\">\r\n <p>申 請 單 位</p>\r\n </td>\r\n <td style=\"width:197px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"width:139px\">\r\n <p>申 請 日 期</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:197px\">\r\n <p>年&nbsp; &nbsp;月&nbsp;&nbsp;&nbsp; 日</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width:139px\">\r\n <p>用 印 類 別</p>\r\n </td>\r\n <td style=\"width:197px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"width:139px\">\r\n <p>份&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 數</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:197px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"5\" style=\"width:672px\">\r\n <p>文&nbsp;&nbsp;&nbsp; 件&nbsp;&nbsp; 名&nbsp;&nbsp; 稱&nbsp;&nbsp; 及&nbsp;&nbsp; 說&nbsp;&nbsp; 明</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"5\" style=\"height:91px; width:672px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\" style=\"width:336px\">\r\n <p>印&nbsp;&nbsp; 鑒&nbsp;&nbsp; 留&nbsp;&nbsp;&nbsp; 存</p>\r\n </td>\r\n <td colspan=\"2\" style=\"width:168px\">\r\n <p>廠 長 / 經 理</p>\r\n </td>\r\n <td style=\"width:168px\">\r\n <p>申&nbsp; 請&nbsp; 人</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td colspan=\"2\" style=\"height:82px; width:336px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td colspan=\"2\" style=\"height:82px; width:168px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n <td style=\"height:82px; width:168px\">\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<p>用印流程說明︰</p>\r\n\r\n<ol>\r\n <li>文件需用印時,應先填寫用印申請單,經主管(本部門最高主管)核準后連同文件、文稿等交監印人用印。</li>\r\n <li>監印人除於文件、文稿上用印外,並於用印申請單上加蓋使用之印章並存檔。</li>\r\n</ol>',2);
/*!40000 ALTER TABLE `workform` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2014-10-25 20:00:31
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/lannu/LeyeOA.git
git@gitee.com:lannu/LeyeOA.git
lannu
LeyeOA
LeyeOA
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385