You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

261 lines
49 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
Navicat Premium Data Transfer
Source Server : localhostMySql
Source Server Type : MySQL
Source Server Version : 50729
Source Host : localhost:3306
Source Schema : hrdb
Target Server Type : MySQL
Target Server Version : 50729
File Encoding : 65001
Date: 17/06/2022 22:03:18
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for dept
-- ----------------------------
DROP TABLE IF EXISTS `dept`;
CREATE TABLE `dept` (
`did` int(11) NOT NULL AUTO_INCREMENT,
`dname` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`dremark` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`did`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of dept
-- ----------------------------
INSERT INTO `dept` VALUES (1, '财务部', '');
INSERT INTO `dept` VALUES (2, '学术部', '');
INSERT INTO `dept` VALUES (3, '公关部', '');
INSERT INTO `dept` VALUES (5, '技术部', '');
INSERT INTO `dept` VALUES (6, '人事部', '优秀部门');
INSERT INTO `dept` VALUES (9, '行政部', '行政');
INSERT INTO `dept` VALUES (10, '扫黄打非部', '扫黄打非部');
-- ----------------------------
-- Table structure for employee
-- ----------------------------
DROP TABLE IF EXISTS `employee`;
CREATE TABLE `employee` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL COMMENT '用户id',
`dept_id` int(11) NOT NULL COMMENT '部门id',
`job_id` int(11) NOT NULL COMMENT '职务id',
`name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`card_id` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`address` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`post_code` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`tel` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`qq_num` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`email` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`sex` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`party` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`birthday` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`race` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`education` varchar(5) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`speciality` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`hobby` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`remark` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`create_date` datetime(0) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `FK_dept`(`dept_id`) USING BTREE,
INDEX `FK_job`(`job_id`) USING BTREE,
INDEX `FK_user`(`user_id`) USING BTREE,
CONSTRAINT `FK_dept` FOREIGN KEY (`dept_id`) REFERENCES `dept` (`did`) ON DELETE RESTRICT ON UPDATE RESTRICT,
CONSTRAINT `FK_job` FOREIGN KEY (`job_id`) REFERENCES `job` (`jid`) ON DELETE RESTRICT ON UPDATE RESTRICT,
CONSTRAINT `FK_user` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 16 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of employee
-- ----------------------------
INSERT INTO `employee` VALUES (14, 100025, 10, 4, 'UZI', '110', '深圳南山', '538006', '15777031180', '15777031180', '308144593', '308144593@qq.com', '1', '党员', '2021-12-29', '汉族', '大学', '计算机', '爬山', 'UZI个人资料', '2022-01-15 18:03:08');
INSERT INTO `employee` VALUES (15, 100023, 5, 2, '秦叔宝', '550', '北京', '121', '1212', '15777031180', '1212', '308144593@qq.com', '1', '团员', '2022-02-02', '汉族', '12', '12', '有用1', '', '2022-01-15 18:04:52');
-- ----------------------------
-- Table structure for job
-- ----------------------------
DROP TABLE IF EXISTS `job`;
CREATE TABLE `job` (
`jid` int(11) NOT NULL AUTO_INCREMENT,
`jname` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`jremark` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`jid`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of job
-- ----------------------------
INSERT INTO `job` VALUES (1, '工程师', '');
INSERT INTO `job` VALUES (2, '会计师', '');
INSERT INTO `job` VALUES (3, '普通职员', '');
INSERT INTO `job` VALUES (4, 'java程序员', '');
INSERT INTO `job` VALUES (6, '前端工程师', '');
INSERT INTO `job` VALUES (7, '董事长秘书', '小三');
INSERT INTO `job` VALUES (9, '安卓工程师', '工资不能低于10000');
INSERT INTO `job` VALUES (10, '攻城狮', '我是一名可怜的JAVA攻城狮\n没日没夜的搬砖\n梦想被包养');
-- ----------------------------
-- Table structure for notice
-- ----------------------------
DROP TABLE IF EXISTS `notice`;
CREATE TABLE `notice` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) NULL DEFAULT NULL,
`name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`title` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`remark` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `FK_notice_userId`(`userId`) USING BTREE,
CONSTRAINT `FK_notice_userId` FOREIGN KEY (`userId`) REFERENCES `user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 50 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of notice
-- ----------------------------
INSERT INTO `notice` VALUES (1, 100001, '今日头条', '习近平在中央政协工作会议上的讲话金句', '金句来了习近平在中央政协工作会议暨庆祝中国人民政治协商会议成立70周年大会上的讲话金句 ', '');
INSERT INTO `notice` VALUES (2, 100001, '今日头条', '携手奋进新时代', '新华社评论员:画出最大同心圆,携手奋进新时代——学习\r\n习近平总书记在中央政协工作会议暨庆祝中国人民政治协商会议成立70周年大会重要讲话 ', '');
INSERT INTO `notice` VALUES (3, 100001, '习近平以“六稳”推动经济高质量发展', '联播+丨习近平以“六稳”推动经济高质量发展', '<p class=\"title\" style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.6rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; width: 745.104px; font-family: &quot;PingFang SC&quot;, &quot;PingFang TC&quot;, &quot;Microsoft YaHei&quot;, STHeiti, arial, helvetica, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\">12月6日习近平总书记主持中共中央政治局会议。会议分析研究2020年经济工作强调全面做好“六稳”工作。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em; font-family: &quot;PingFang SC&quot;, &quot;PingFang TC&quot;, &quot;Microsoft YaHei&quot;, STHeiti, arial, helvetica, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\">“六稳”,即“稳就业、稳金融、稳外贸、稳外资、稳投资、稳预期”。做好“六稳”工作对于保持经济运行在合理区间,确保全面建成小康社会和“十三五”规划圆满收官具有重要意义。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em; font-family: &quot;PingFang SC&quot;, &quot;PingFang TC&quot;, &quot;Microsoft YaHei&quot;, STHeiti, arial, helvetica, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\">近年来,习近平在国内考察、重要会议、国际活动等多个场合,对如何扎实做好“六稳”工作进行了详细阐述。《联播+》与您一起学习。</p><p class=\"title\" style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0px; margin-bottom: 0.12rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; width: 745.104px; display: inline-block; background: url(&quot;//p1.img.cctvpic.com/photoAlbum/templet/common/DEPA1539311446672181/icon_bluexian_18313.png&quot;) 0% 0% / 0.36rem 0.36rem repeat; border: 1px solid rgb(33, 68, 140);\"><span class=\"text\" style=\"box-sizing: border-box; font-size: 0.36rem; line-height: 0.6rem; display: block; text-align: center; margin: -0.1rem 0px 0.1rem; transform: translate(-0.1rem, 0px); padding: 0.06rem 0.25rem; font-weight: bold; border: 1px solid rgb(33, 68, 140);\">稳就业</span></p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">要出台更多鼓励就业创业的措施,重点解决好高校毕业生、退役军人、下岗职工、农民工、返乡人员等重点人群的就业问题。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2019年9月18日在河南考察时的讲话</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">要对就业困难人员及时提供就业指导和技能培训,确保他们就业有门路、生活有保障。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2019年5月22日在江西考察时的讲话</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">要坚持就业优先战略,把解决人民群众就业问题放在更加突出的位置,努力创造更多就业岗位。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0px; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2019年2月1日春节前夕在北京看望慰问基层干部群众时的讲话</p><p class=\"title\" style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0px; margin-bottom: 0.12rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; width: 745.104px; display: inline-block; background: url(&quot;//p1.img.cctvpic.com/photoAlbum/templet/common/DEPA1539311446672181/icon_bluexian_18313.png&quot;) 0% 0% / 0.36rem 0.36rem repeat; border: 1px solid rgb(33, 68, 140);\"><span class=\"text\" style=\"box-sizing: border-box; font-size: 0.36rem; line-height: 0.6rem; display: block; text-align: center; margin: -0.1rem 0px 0.1rem; transform: translate(-0.1rem, 0px); padding: 0.06rem 0.25rem; font-weight: bold; border: 1px solid rgb(33, 68, 140);\">稳金融</span></p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">面对未来全球系统性金融风险挑战,我们不但要确保金融安全网资源充足,也要让国际金融架构的代表性更加合理,更好反映世界经济现实格局。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2019年6月28日在二十国集团领导人峰会上关于世界经济形势和贸易问题的讲话</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">要坚持靶向治疗、精确惩治,聚焦党的十八大以来着力查处的重点对象,紧盯事关发展全局和国家安全的重大工程、重点领域、关键岗位,加大金融领域反腐力度,对存在腐败问题的,发现一起坚决查处一起。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2019年1月11日在十九届中央纪委三次全会上的讲话</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">希望国际货币基金组织继续在全球贸易议程中发挥积极作用,维护公平开放的全球金融市场,推动国际秩序朝着更加公正合理的方向发展。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0px; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2019年11月22日会见国际货币基金组织总裁格奥尔基耶娃时的讲话</p><p class=\"title\" style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0px; margin-bottom: 0.12rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; width: 745.104px; display: inline-block; background: url(&quot;//p1.img.cctvpic.com/photoAlbum/templet/common/DEPA1539311446672181/icon_bluexian_18313.png&quot;) 0% 0% / 0.36rem 0.36rem repeat; border: 1px solid rgb(33, 68, 140);\"><span class=\"text\" style=\"box-sizing: border-box; font-size: 0.36rem; line-height: 0.6rem; display: block; text-align: center; margin: -0.1rem 0px 0.1rem; transform: translate(-0.1rem, 0px); padding: 0.06rem 0.25rem; font-weight: bold; border: 1px solid rgb(33, 68, 140);\">稳外贸</span></p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">我们应该坚持以开放求发展,深化交流合作,坚持“拉手”而不是“松手”,坚持“拆墙”而不是“筑墙”,坚决反对保护主义、单边主义,不断削减贸易壁垒,推动全球价值链、供应链更加完善,共同培育市场需求。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2019年11月5日在第二届中国国际进口博览会开幕式上的主旨演讲</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">我们不刻意追求贸易顺差,愿意进口更多国外有竞争力的优质农产品、制成品和服务,促进贸易平衡发展。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2019年4月26日在第二届“一带一路”国际合作高峰论坛开幕式上的主旨演讲</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">为此,我们必须坚持对外开放的基本国策,奉行互利共赢的开放战略,深化人文交流,完善对外开放区域布局、对外贸易布局、投资布局,形成对外开放新体制,发展更高层次的开放型经济,以扩大开放带动创新、推动改革、促进发展。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0px; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2015年10月29日在党的十八届五中全会第二次全体会议上的讲话</p><p class=\"title\" style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0px; margin-bottom: 0.12rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; width: 745.104px; display: inline-block; background: url(&quot;//p1.img.cctvpic.com/photoAlbum/templet/common/DEPA1539311446672181/icon_bluexian_18313.png&quot;) 0% 0% / 0.36rem 0.36rem repeat; border: 1px solid rgb(33, 68, 140);\"><span class=\"text\" style=\"box-sizing: border-box; font-size: 0.36rem; line-height: 0.6rem; display: block; text-align: center; margin: -0.1rem 0px 0.1rem; transform: translate(-0.1rem, 0px); padding: 0.06rem 0.25rem; font-weight: bold; border: 1px solid rgb(33, 68, 140);\">稳外资</span></p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">中国将坚持扩大对外开放,增加商品和服务进口,扩大外资市场准入,加强知识产权保护,形成全方位、多层次、宽领域的全面开放新格局。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2019年11月14日在金砖国家领导人巴西利亚会晤公开会议上的讲话</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">中国将不断完善市场化、法治化、国际化的营商环境,放宽外资市场准入,继续缩减负面清单,完善投资促进和保护、信息报告等制度。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2019年11月5日在第二届中国国际进口博览会开幕式上的主旨演讲</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0.48rem; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">中国致力于促进更高水平对外开放,坚定支持多边贸易体制,将在更广领域扩大外资市场准入,积极打造一流营商环境。</p><p style=\"box-sizing: border-box; text-size-adjust: none; padding: 0px; margin-top: 0.48rem; margin-bottom: 0px; list-style: none; letter-spacing: 2px; color: rgb(51, 51, 51); font-size: 0.36rem; line-height: 0.6rem; text-align: justify; text-indent: 2em;\">——2019年5月28日向2019年中国国际服务贸易交易会致贺信</p><p><br/></p>', NULL);
INSERT INTO `notice` VALUES (4, 100001, '习近平新时代中国特色社会主义', '【在习近平新时代中国特色社会主义思想指引下——新时代 新作为 新篇章】全国人大上海虹桥基层立法联系点探索全过程民主', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: &quot;PingFang SC&quot;, &quot;Lantinghei SC&quot;, &quot;Microsoft Yahei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Sans Serif&quot;, &quot;WenQuanYi Micro Hei&quot;, sans; font-size: 18px; white-space: normal; background-color: rgb(255, 255, 255);\">央广网北京12月8日消息记者马喆据中央广播电视总台中国之声《新闻和报纸摘要》报道今年11月2日习近平总书记到上海虹桥街道考察基层立法联系点工作。他指出虹桥这个基层立法联系点很有意义立足社区实际、认真扎实地开展工作做了很多接地气、聚民智的有益探索并勉励街道要再接再厉为发展中国特色社会主义民主继续作贡献。<a target=\"_blank\" href=\"http://china.cnr.cn/news//20191208/t20191208_524888505.shtml\" style=\"color: rgb(0, 0, 0); text-decoration-line: none;\"><span style=\"color:#0000ff;font-family:楷体_GB2312\"><strong style=\"color: rgb(0, 0, 0);\">2019-12-8 新闻和报纸摘要全文&gt;&gt;&gt;</strong></span></a></p><p><span class=\"vcp-timelabel\" style=\"display: inline-block; line-height: 3em; float: left; color: rgb(255, 255, 255); padding: 0px 9px; height: 3em; z-index: 1001; position: relative;\">00:15 / 04:53</span></p><p><span class=\"vcp-volume-icon\" style=\"background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMzYgMzYiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+DQogICAgPHBhdGggZD0iTTEyLjM5LDE1LjU0IEwxMCwxNS41NCBMMTAsMjAuNDQgTDEyLjQsMjAuNDQgTDE3LDI1LjUwIEwxNywxMC40OCBMMTIuMzksMTUuNTQgWiIgb3BhY2l0eT0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KICAgIDxwYXRoIGQ9Ik0xMi4zOSwxNS41NCBMMTAsMTUuNTQgTDEwLDIwLjQ0IEwxMi40LDIwLjQ0IEwxNywyNS41MCBMMTcsMTAuNDggTDEyLjM5LDE1LjU0IFoiIG9wYWNpdHk9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCiAgICA8cGF0aCBkPSJNMTkuNjMsMTUuOTIgTDIwLjY4LDE0LjkzIEwyMi44MSwxNi45NCBMMjQuOTQsMTQuOTMgTDI2LDE1LjkyIEwyMy44NiwxNy45MyBMMjYsMTkuOTMgTDI0Ljk0LDIwLjkyIEwyMi44MSwxOC45MiBMMjAuNjgsMjAuOTIgTDE5LjYzLDE5LjkzIEwyMS43NiwxNy45MyBMMTkuNjMsMTUuOTIgWiIgb3BhY2l0eT0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KICAgIDxwYXRoIGQ9Ik0xOS42MywxNS45MiBMMjAuNjgsMTQuOTMgTDIyLjgxLDE2Ljk0IEwyNC45NCwxNC45MyBMMjYsMTUuOTIgTDIzLjg2LDE3LjkzIEwyNiwxOS45MyBMMjQuOTQsMjAuOTIgTDIyLjgxLDE4LjkyIEwyMC42OCwyMC45MiBMMTkuNjMsMTkuOTMgTDIxLjc2LDE3LjkzIEwxOS42MywxNS45MiBaIiBvcGFjaXR5PSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=&quot;); display: inline-block; width: 3em; height: 3em; position: absolute; left: 0px; top: 0px;\"></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: &quot;PingFang SC&quot;, &quot;Lantinghei SC&quot;, &quot;Microsoft Yahei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Sans Serif&quot;, &quot;WenQuanYi Micro Hei&quot;, sans; font-size: 18px; white-space: normal; background-color: rgb(255, 255, 255);\">  自2015年起全国人大常委会法工委在上海虹桥街道设立基层立法联系点。在这里基层的立法建议可以直达全国人大常委会。四年多来25条来自基层的建议被采纳成为法律条文。基层立法联系点有力地彰显了新时代的民主立法、科学立法也为全过程民主进行了有益探索。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: &quot;PingFang SC&quot;, &quot;Lantinghei SC&quot;, &quot;Microsoft Yahei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Sans Serif&quot;, &quot;WenQuanYi Micro Hei&quot;, sans; font-size: 18px; white-space: normal; background-color: rgb(255, 255, 255);\">  上海虹桥街道是全国人大常委会法工委在全国设立的四个基层立法联系点之一,也是唯一设在街道的立法联系点。基层立法联系点直通全国人大常委会,被百姓形象地称为“群众声音直通车,基层立法彩虹桥”。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: &quot;PingFang SC&quot;, &quot;Lantinghei SC&quot;, &quot;Microsoft Yahei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft Sans Serif&quot;, &quot;WenQuanYi Micro Hei&quot;, sans; font-size: 18px; white-space: normal; background-color: rgb(255, 255, 255);\">  近日,全国人大常委会法工委就未成年人保护法修订草案和预防未成年人犯罪法修订草案在上海虹桥街道进行意见征询。征询的对象是街道辖区内的教师、家长和法律工作者等。全国人大常委会法工委社会法室主任郭林茂在征询会上表示,原汁原味的意见,有助于开拓立法思路。</p><p><br/></p>', NULL);
INSERT INTO `notice` VALUES (5, 100001, '美联邦调查局', '美联邦调查局确认美海军航空站枪击案凶手为沙特人', '<p style=\"margin-top: 10px; margin-bottom: 20px; padding: 0px; list-style: none; line-height: 30px; word-break: break-all; color: rgb(25, 25, 25); font-family: &quot;PingFang SC&quot;, Helvetica, &quot;Microsoft YaHei&quot;, simsun, sans-serif; white-space: normal; background-color: rgb(249, 249, 249);\">新华社华盛顿12月7日电记者邓仙来 孙丁美国联邦调查局7日在社交媒体上确认6日发生在美国佛罗里达州一海军航空站的枪击事件凶手为沙特阿拉伯籍男子穆罕默德⋅阿尔沙姆拉尼。</p><p style=\"margin-top: 10px; margin-bottom: 20px; padding: 0px; list-style: none; line-height: 30px; word-break: break-all; color: rgb(25, 25, 25); font-family: &quot;PingFang SC&quot;, Helvetica, &quot;Microsoft YaHei&quot;, simsun, sans-serif; white-space: normal; background-color: rgb(249, 249, 249);\">美国联邦调查局当日表示该局下设的打击恐怖活动联合工作组等部门正在参与相关调查。据美国媒体报道凶手穆罕默德⋅阿尔沙姆拉尼现年21岁服役于沙特阿拉伯皇家空军当时在事发海军航空站接受飞行训练。</p><p style=\"margin-top: 10px; margin-bottom: 20px; padding: 0px; list-style: none; line-height: 30px; word-break: break-all; color: rgb(25, 25, 25); font-family: &quot;PingFang SC&quot;, Helvetica, &quot;Microsoft YaHei&quot;, simsun, sans-serif; white-space: normal; background-color: rgb(249, 249, 249);\">美国海军7日公布了枪击事件中3名遇难人员的姓名及身份他们均是海军飞行学员年龄在19岁至23岁之间分别来自美国亚拉巴马州、佛罗里达州和佐治亚州。</p><p><br/></p>', NULL);
INSERT INTO `notice` VALUES (25, 100001, '百度资讯', '常程闪电加盟小米 “电磁炉”正式组合出道', '<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 24px; color: rgb(51, 51, 51); text-align: justify; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);\"><span class=\"bjh-p\"><span class=\"bjh-strong\" style=\"font-size: 18px; font-weight: 700;\">出品|凤凰网科技综合</span></span></p><p style=\"margin-top: 22px; margin-bottom: 0px; padding: 0px; line-height: 24px; color: rgb(51, 51, 51); text-align: justify; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);\"><span class=\"bjh-p\">1月2日上午雷军在新浪微博发布消息原联想集团副总裁、ZUKCEO正式加入小米将担任小米集团副总裁负责手机产品规划。</span></p><p style=\"margin-top: 22px; margin-bottom: 0px; padding: 0px; line-height: 24px; color: rgb(51, 51, 51); text-align: justify; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);\"><span class=\"bjh-p\">常程今日上午也在微信朋友圈表示小米是最美的期待2020年的拼搏从第一天开始。</span></p><p style=\"margin-top: 22px; margin-bottom: 0px; padding: 0px; line-height: 24px; color: rgb(51, 51, 51); text-align: justify; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);\"><span class=\"bjh-p\">他在朋友圈里写到”雷总有梦想“”Bin总有能力“有梦想/有能量/坚持不懈的10年小米最美的期待。2020拼搏从第一天开始。</span></p><p style=\"margin-top: 22px; margin-bottom: 0px; padding: 0px; line-height: 24px; color: rgb(51, 51, 51); text-align: justify; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);\"><span class=\"bjh-p\">2019年12月31日联想中国区发布公告宣布联想手机掌门人常程离职。常程的工作将由联想集团副总裁、联想移动亚太新兴市场负责人赵允明代管。</span></p><p style=\"margin-top: 22px; margin-bottom: 0px; padding: 0px; line-height: 24px; color: rgb(51, 51, 51); text-align: justify; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);\"><span class=\"bjh-p\">联想中国区给出的离职原因是”家庭因素“。联想中国区表示,常程因家庭聚少离多,基于个人身体健康和希望更多精力照顾家庭的原因,故近期提出离职。</span></p><p style=\"margin-top: 22px; margin-bottom: 0px; padding: 0px; line-height: 24px; color: rgb(51, 51, 51); text-align: justify; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);\"><span class=\"bjh-p\">凤凰网科技从知情人士处了解到,常程从联想集团离职,并没有竞业条款,也没有拿竞业补偿。</span></p><p style=\"margin-top: 22px; margin-bottom: 0px; padding: 0px; line-height: 24px; color: rgb(51, 51, 51); text-align: justify; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);\"><span class=\"bjh-p\">常程本人则在微博上称“19年成长在联想感悟、感谢、感恩”。</span></p><p><br/></p>', '同花顺财经');
INSERT INTO `notice` VALUES (29, 100001, 'HTML5-语义化', '大前端', '<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; word-wrap: break-word; color: rgb(85, 85, 85); font-family: &quot;Microsoft Yahei&quot;; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;&nbsp;&nbsp;&nbsp;距HTML5标准规范制定完成并公开发布已经有好些年了面试时也少不了要问对HTML5语义化得理解。但是在实际运用时真正使用HTML5标签来开发的似乎不是很多ps查看了几个巨头公司网站推论可能一部分原因是仍有部分用户使用在使用低版本浏览器。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; word-wrap: break-word; color: rgb(85, 85, 85); font-family: &quot;Microsoft Yahei&quot;; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp; &nbsp; 但是就我个人而言因选取一些标签时会比较纠结所以仍使用了div。PS正是因为这样才有了这篇文章的没错以后要注意语义化了</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; word-wrap: break-word; color: rgb(85, 85, 85); font-family: &quot;Microsoft Yahei&quot;; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp; &nbsp; 什么是语义化就是用合理、正确的标签来展示内容比如h1~h6定义标题。</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; word-wrap: break-word; color: rgb(85, 85, 85); font-family: &quot;Microsoft Yahei&quot;; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp; &nbsp; 语义化优点:</p><ul style=\"box-sizing: border-box; margin-bottom: 20px; margin-left: 50px; padding: 0px; list-style-position: initial; list-style-image: initial; color: rgb(85, 85, 85); font-family: &quot;Microsoft Yahei&quot;; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\" class=\" list-paddingleft-2\"><li><p>易于用户阅读,样式丢失的时候能让页面呈现清晰的结构。</p></li><li><p>有利于SEO搜索引擎根据标签来确定上下文和各个关键字的权重。</p></li><li><p>方便其他设备解析,如盲人阅读器根据语义渲染网页</p></li><li><p>有利于开发和维护语义化更具可读性代码更好维护与CSS3关系更和谐。</p></li></ul><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; word-wrap: break-word; color: rgb(85, 85, 85); font-family: &quot;Microsoft Yahei&quot;; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp; &nbsp; 今天先介绍主体结构标签,如图所示:</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; word-wrap: break-word; color: rgb(85, 85, 85); font-family: &quot;Microsoft Yahei&quot;; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\"><img class=\"aligncenter wp-image-6577\" src=\"http://www.daqianduan.com/wp-content/uploads/2018/03/html5.png\" alt=\"html5\" width=\"454\" height=\"300\"/></p><p><br/></p>', 'Made by Lcy');
INSERT INTO `notice` VALUES (32, 100001, '1', '1', '<p>1</p>', '1');
INSERT INTO `notice` VALUES (34, 100001, '1', '1', '<p class=\"ql-align-justify\" style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: justify; color: rgb(25, 25, 25); font-family: &quot;PingFang SC&quot;, Arial, 微软雅黑, 宋体, simsun, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\">2020年1月1日一则话题上了热搜。</p><p class=\"ql-align-justify\" style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: justify; color: rgb(25, 25, 25); font-family: &quot;PingFang SC&quot;, Arial, 微软雅黑, 宋体, simsun, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\">据媒体报道2019年12月23日安徽合肥一女子和朋友前往海底捞吃饭。</p><p class=\"ql-align-justify\" style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: justify; color: rgb(25, 25, 25); font-family: &quot;PingFang SC&quot;, Arial, 微软雅黑, 宋体, simsun, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\">朋友携带的导盲犬被海底捞工作人员拒绝入内。女子称导盲犬属于工作犬,且带有证件,相关规定可以进出公共场合,仍被拒绝。</p><p class=\"ql-align-center\" style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: center; color: rgb(25, 25, 25); font-family: &quot;PingFang SC&quot;, Arial, 微软雅黑, 宋体, simsun, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\"><img src=\"http://5b0988e595225.cdn.sohucs.com/images/20200102/39a422e48c044a1f9bc98957483d4755.png\"/></p><p><br/></p>', '1');
INSERT INTO `notice` VALUES (35, 100001, '导盲犬进海底捞被拒 耐吉斯呼吁正确对待工作犬', '导盲犬进海底捞被拒 耐吉斯呼吁正确对待工作犬', '<p class=\"ql-align-justify\" style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: justify; color: rgb(25, 25, 25); font-family: &quot;PingFang SC&quot;, Arial, 微软雅黑, 宋体, simsun, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\">020年1月1日一则话题上了热搜。</p><p class=\"ql-align-justify\" style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: justify; color: rgb(25, 25, 25); font-family: &quot;PingFang SC&quot;, Arial, 微软雅黑, 宋体, simsun, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\">据媒体报道2019年12月23日安徽合肥一女子和朋友前往海底捞吃饭。</p><p class=\"ql-align-justify\" style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: justify; color: rgb(25, 25, 25); font-family: &quot;PingFang SC&quot;, Arial, 微软雅黑, 宋体, simsun, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\">朋友携带的导盲犬被海底捞工作人员拒绝入内。女子称导盲犬属于工作犬,且带有证件,相关规定可以进出公共场合,仍被拒绝。</p><p class=\"ql-align-center\" style=\"border: 0px; margin-top: 0.63em; margin-bottom: 1.8em; padding: 0px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; text-align: center; color: rgb(25, 25, 25); font-family: &quot;PingFang SC&quot;, Arial, 微软雅黑, 宋体, simsun, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);\"><img src=\"http://5b0988e595225.cdn.sohucs.com/images/20200102/39a422e48c044a1f9bc98957483d4755.png\"/></p><p><br/></p>', '');
INSERT INTO `notice` VALUES (36, 100001, '地摊经济活了-', 'qqqq', '<p style=\"text-align: center;\"><span style=\"font-size: 36px; color: rgb(255, 0, 0);\">地摊经济活了-</span></p><p><br/></p>', '');
INSERT INTO `notice` VALUES (37, 100001, 'wqewqeq', 'eqweqeqwe', '<p>ewqeqweqweqwe</p>', '');
INSERT INTO `notice` VALUES (38, 100001, 'qwewrq', 'ewrwerwer', '<p>rwerwr</p>', '');
INSERT INTO `notice` VALUES (40, 100001, 'wyc', 'wyc弟弟', '', '');
INSERT INTO `notice` VALUES (41, 100001, '无缘超弟弟', '弟弟', '', '');
INSERT INTO `notice` VALUES (42, 100001, '吴元超迟到', 'q', '', '');
INSERT INTO `notice` VALUES (43, 100001, '当你选择做这件事时,尽管不对,也要愚蠢往下走.', '1', '', '');
INSERT INTO `notice` VALUES (44, 100001, '幸子煮', '幸子煮', '', '幸子煮');
INSERT INTO `notice` VALUES (45, 100001, '123', '123', '123', '123');
INSERT INTO `notice` VALUES (46, 100001, '公告名称', '公告标题', '<p><img src=\"http://localhost:8080/hr//layui/images/face/15.gif\" alt=\"[生病]\"><img src=\"http://localhost:8080/hr//layui/images/face/12.gif\" alt=\"[泪]\"><br></p><p>阿斯顿几把卡刷卡好哒khj <br></p><p>阿斯顿。就卡很<b>久了时代的客户机阿斯顿 阿迪达斯<img src=\"http://localhost:8080/hr//layui/images/face/46.gif\" alt=\"[互粉]\"></b><br></p>', '1212');
INSERT INTO `notice` VALUES (47, 100001, '我爱你', '我爱你', '<p><img src=\"http://localhost:8089/SSM_PROJECT//layui/images/face/15.gif\" alt=\"[生病]\"><img src=\"http://localhost:8089/SSM_PROJECT//layui/images/face/47.gif\" alt=\"[心]\"><img src=\"http://localhost:8089/SSM_PROJECT//layui/images/face/47.gif\" alt=\"[心]\"></p><p><span>巴巴地活着,每天打水,煮饭,按时吃药</span><br><span>阳光好的时候就把自己放进去,像放一块陈皮</span><br><span>茶叶轮换着喝:菊花,茉莉,玫瑰,柠檬</span><br><span>这些美好的事物仿佛把我往春天的路上带</span><br><br><span>所以我一次次按住内心的雪</span><br><span>它们过于洁白过于接近春天</span><br><br><span>在干净的院子里读你的诗歌。这人间情事</span><br><span>恍惚如突然飞过的麻雀儿</span><br><span>而光阴皎洁。我不适宜肝肠寸断</span><br><br><span>如果给你寄一本书,我不会寄给你诗歌</span><br><span>我要给你一本关于植物,关于庄稼的</span><br><span>告诉你稻子和稗子的区别</span><br><span>告诉你一棵稗子提心吊胆的</span><br><span>春天</span></p>', '就像老鼠爱大米');
INSERT INTO `notice` VALUES (48, 100001, '扩展:文件点击下载', '扩展:文件点击下载', '<p>//下载模板<br>&nbsp;&nbsp;&nbsp; function downLoad() {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var curWwwPath = window.document.location.href;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var pathName = window.document.location.pathname;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var pos = curWwwPath.indexOf(pathName);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var localhostPath = curWwwPath.substring(0, pos);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var projectName = pathName.substring(0, pathName.substr(1).indexOf(\'/\') + 1);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var url = localhostPath + projectName + \"/xxTemplate/xxx.xls\";<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; window.open(url);<br>&nbsp;&nbsp;&nbsp; }<br><img src=\"http://localhost:8089/SSM_PROJECT//layui/images/face/53.gif\" alt=\"[耶]\"><img src=\"http://localhost:8089/SSM_PROJECT//layui/images/face/44.gif\" alt=\"[阴险]\"><br></p>', '扩展:文件点击下载');
INSERT INTO `notice` VALUES (49, 100001, '放假通知', '国庆放假通知', '<p>各位员工:</p><p>&nbsp; &nbsp; &nbsp; &nbsp;你们好!</p><p>由于公司业绩太差,经我司再三思考,国庆不放假,正常上班。</p><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; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;办公室</p><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; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2020-9-30</p>', '国庆放假须知');
-- ----------------------------
-- Table structure for punishment
-- ----------------------------
DROP TABLE IF EXISTS `punishment`;
CREATE TABLE `punishment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NULL DEFAULT NULL,
`content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '惩罚内容',
`create_by` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_by` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `FK_employee`(`user_id`) USING BTREE,
CONSTRAINT `FK_employee` FOREIGN KEY (`user_id`) REFERENCES `employee` (`user_id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of punishment
-- ----------------------------
INSERT INTO `punishment` VALUES (1, 100025, '上班玩游戏罚款1W', '系统管理员', '2022-01-15 18:03:36', NULL, NULL);
INSERT INTO `punishment` VALUES (2, 100023, '迟到罚扫地100天', '系统管理员', '2022-01-15 18:06:20', NULL, NULL);
-- ----------------------------
-- Table structure for role
-- ----------------------------
DROP TABLE IF EXISTS `role`;
CREATE TABLE `role` (
`rid` int(11) NOT NULL AUTO_INCREMENT,
`rname` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`rremark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`rid`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of role
-- ----------------------------
INSERT INTO `role` VALUES (1, '普通员工', '我是普工');
INSERT INTO `role` VALUES (2, '管理员', '');
INSERT INTO `role` VALUES (3, '超级管理员', '我是草鸡管理员');
-- ----------------------------
-- Table structure for salary
-- ----------------------------
DROP TABLE IF EXISTS `salary`;
CREATE TABLE `salary` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL COMMENT '员工id',
`job_id` int(11) NOT NULL COMMENT '部门id',
`s_month` date NULL DEFAULT NULL COMMENT '薪资月份',
`jb_salary` decimal(10, 2) NULL DEFAULT NULL COMMENT '基本工资',
`qq_salary` decimal(10, 2) NULL DEFAULT NULL COMMENT '全勤工资',
`cd_deduction` decimal(10, 2) NULL DEFAULT NULL COMMENT '迟到扣款',
`qj_deduction` decimal(10, 2) NULL DEFAULT NULL COMMENT '请假扣款',
`bonus` decimal(10, 2) NULL DEFAULT NULL COMMENT '绩效奖金',
`taxes` decimal(10, 2) NULL DEFAULT NULL COMMENT '纳税',
`insurance` decimal(10, 2) NULL DEFAULT NULL COMMENT '5险一金',
`remark` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`create_by` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`update_by` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of salary
-- ----------------------------
INSERT INTO `salary` VALUES (4, 100025, 4, '2022-01-01', 5000.00, 500.00, 100.00, 100.00, 500.00, 50.00, 300.00, 'UZI1月份工资', '2022-01-15 18:07:00', '系统管理员', '2022-01-15 18:07:28', '系统管理员');
-- ----------------------------
-- Table structure for uploadfile
-- ----------------------------
DROP TABLE IF EXISTS `uploadfile`;
CREATE TABLE `uploadfile` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) NOT NULL,
`fileName` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`uploadDate` datetime(0) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `FK_uploadfile_userId`(`userId`) USING BTREE,
CONSTRAINT `FK_uploadfile_userId` FOREIGN KEY (`userId`) REFERENCES `user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`username` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`password` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`role_id` int(11) NOT NULL,
`phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`createdate` datetime(0) NULL DEFAULT NULL,
`remark` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`, `username`) USING BTREE,
UNIQUE INDEX `phone`(`phone`) USING BTREE,
INDEX `FK_role`(`role_id`) USING BTREE,
INDEX `id`(`id`) USING BTREE,
CONSTRAINT `FK_role` FOREIGN KEY (`role_id`) REFERENCES `role` (`rid`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 100027 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES (100001, 'admin', 'admin', 3, '18802290129', '2021-06-01 18:20:51', '系统管理员1');
INSERT INTO `user` VALUES (100023, '秦叔宝', '123', 3, '15777777777', '2021-07-09 10:57:40', '十三太保\n 秦叔宝');
INSERT INTO `user` VALUES (100025, 'vy1223', '123', 1, '110', '2022-01-15 15:02:24', '前端注册的用户');
INSERT INTO `user` VALUES (100026, '1223aaa', '123456', 1, '15777031180', '2022-02-18 15:41:03', '');
SET FOREIGN_KEY_CHECKS = 1;