diff --git a/PythonFlaskDemo/.idea/.name b/PythonFlaskDemo/.idea/.name deleted file mode 100644 index 043a3b4..0000000 --- a/PythonFlaskDemo/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -Demo \ No newline at end of file diff --git a/PythonFlaskDemo/.idea/Demo.iml b/PythonFlaskDemo/.idea/Demo.iml deleted file mode 100644 index ad89592..0000000 --- a/PythonFlaskDemo/.idea/Demo.iml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/PythonFlaskDemo/.idea/encodings.xml b/PythonFlaskDemo/.idea/encodings.xml deleted file mode 100644 index 15a15b2..0000000 --- a/PythonFlaskDemo/.idea/encodings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/PythonFlaskDemo/.idea/inspectionProfiles/Project_Default.xml b/PythonFlaskDemo/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 9245876..0000000 --- a/PythonFlaskDemo/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - \ No newline at end of file diff --git a/PythonFlaskDemo/.idea/misc.xml b/PythonFlaskDemo/.idea/misc.xml deleted file mode 100644 index dc08ed5..0000000 --- a/PythonFlaskDemo/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/PythonFlaskDemo/.idea/modules.xml b/PythonFlaskDemo/.idea/modules.xml deleted file mode 100644 index dc59b4c..0000000 --- a/PythonFlaskDemo/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/PythonFlaskDemo/.idea/workspace.xml b/PythonFlaskDemo/.idea/workspace.xml deleted file mode 100644 index 7879a69..0000000 --- a/PythonFlaskDemo/.idea/workspace.xml +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1558503422404 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/PythonFlaskDemo/__pycache__/app.cpython-36.pyc b/PythonFlaskDemo/__pycache__/app.cpython-36.pyc deleted file mode 100644 index b1d554a..0000000 Binary files a/PythonFlaskDemo/__pycache__/app.cpython-36.pyc and /dev/null differ diff --git a/PythonFlaskDemo/__pycache__/app.cpython-37.pyc b/PythonFlaskDemo/__pycache__/app.cpython-37.pyc deleted file mode 100644 index c2e5891..0000000 Binary files a/PythonFlaskDemo/__pycache__/app.cpython-37.pyc and /dev/null differ diff --git a/PythonFlaskDemo/__pycache__/models_tmp.cpython-37.pyc b/PythonFlaskDemo/__pycache__/models_tmp.cpython-37.pyc deleted file mode 100644 index 2d30825..0000000 Binary files a/PythonFlaskDemo/__pycache__/models_tmp.cpython-37.pyc and /dev/null differ diff --git a/PythonFlaskDemo/models/__pycache__/models.cpython-37.pyc b/PythonFlaskDemo/models/__pycache__/models.cpython-37.pyc deleted file mode 100644 index 29312e3..0000000 Binary files a/PythonFlaskDemo/models/__pycache__/models.cpython-37.pyc and /dev/null differ diff --git a/PythonFlaskDemo/models/models.py b/PythonFlaskDemo/models/models.py deleted file mode 100644 index 72fc923..0000000 --- a/PythonFlaskDemo/models/models.py +++ /dev/null @@ -1,135 +0,0 @@ -# coding: utf-8 -from sqlalchemy import Column, ForeignKey, Integer, MetaData, String -from sqlalchemy.orm import relationship -from sqlalchemy.ext.declarative import declarative_base -from app import db -# Base = declarative_base() -# metadata = Base.metadata - - -class City(db.Model): - __tablename__ = 'city' - - id = Column(Integer, primary_key=True) - provincename = Column(String(255)) - cityname = Column(String(255)) - usernumber = Column(Integer, nullable=False) - - -class Fangjianshiyongqingkuangbiao(db.Model): - __tablename__ = 'fangjianshiyongqingkuangbiao' - - fangjianhao = Column(String(3), primary_key=True) - fangjianweizhi = Column(ForeignKey('huanzherjibenxinxibiao.fangjianweizhi'), index=True) - fangjianshifoumanyuan = Column(String(2)) - - huanzherjibenxinxibiao = relationship('Huanzherjibenxinxibiao', - primaryjoin='Fangjianshiyongqingkuangbiao.fangjianweizhi == Huanzherjibenxinxibiao.fangjianweizhi', - backref='fangjianshiyongqingkuangbiaos') - - -class Huanzhebingqingcanzhaobiao(db.Model): - __tablename__ = 'huanzhebingqingcanzhaobiao' - - huanzhebingqingdaihao = Column(Integer, primary_key=True) - jutibingqing = Column(String(2), nullable=False) - - -class Huanzhebingqingzhuangkuangbiao(db.Model): - __tablename__ = 'huanzhebingqingzhuangkuangbiao' - - huanzhehao = Column(String(10), primary_key=True) - fangjianhao = Column(Integer) - huanzhebingqingdaihao = Column(ForeignKey('huanzhebingqingcanzhaobiao.huanzhebingqingdaihao'), index=True) - teshuqingkuangbeizhu = Column(String(255)) - jiashuyouwuganran = Column(String(2)) - - huanzhebingqingcanzhaobiao = relationship('Huanzhebingqingcanzhaobiao', - primaryjoin='Huanzhebingqingzhuangkuangbiao.huanzhebingqingdaihao == Huanzhebingqingcanzhaobiao.huanzhebingqingdaihao', - backref='huanzhebingqingzhuangkuangbiaos') - - -class Huanzherjibenxinxibiao(db.Model): - __tablename__ = 'huanzherjibenxinxibiao' - - shenfenzhenghao = Column(String(18), primary_key=True) - xingming = Column(String(3)) - xingbie = Column(String(2)) - nianling = Column(Integer) - jiguan = Column(String(4)) - huanzhehao = Column(ForeignKey('huanzhebingqingzhuangkuangbiao.huanzhehao'), index=True) - fangjianweizhi = Column(Integer, index=True) - ruyuanshijian = Column(String(10)) - jiashulianxitianhua = Column(String(11)) - - huanzhebingqingzhuangkuangbiao = relationship('Huanzhebingqingzhuangkuangbiao', - primaryjoin='Huanzherjibenxinxibiao.huanzhehao == Huanzhebingqingzhuangkuangbiao.huanzhehao', - backref='huanzherjibenxinxibiaos') - - -class Siwanghuanzhebiao(Huanzherjibenxinxibiao): - __tablename__ = 'siwanghuanzhebiao' - - xingming = Column(String(3)) - xingbie = Column(String(2)) - nianling = Column(Integer) - shenfenzhenghao = Column(ForeignKey('huanzherjibenxinxibiao.shenfenzhenghao'), primary_key=True) - siwangshijian = Column(String(10)) - - -class Yihuanguanxibiao(Huanzherjibenxinxibiao): - __tablename__ = 'yihuanguanxibiao' - - huanzhehao = Column(ForeignKey('huanzherjibenxinxibiao.huanzhehao'), primary_key=True) - yishenggongzuozhenghao = Column(ForeignKey('yiyuanrenyuanxinxibiao.yishenggongzuozhenghao'), index=True) - yiyurenyuandegongzuoleixingdaihao = Column(Integer) - - yiyuanrenyuanxinxibiao = relationship('Yiyuanrenyuanxinxibiao', - primaryjoin='Yihuanguanxibiao.yishenggongzuozhenghao == Yiyuanrenyuanxinxibiao.yishenggongzuozhenghao', - backref='yihuanguanxibiaos') - - -class Zhiyuhuanzhebiao(Huanzherjibenxinxibiao): - __tablename__ = 'zhiyuhuanzhebiao' - - xingming = Column(String(3)) - xingbie = Column(String(2)) - nianling = Column(Integer) - shenfenzhenghao = Column(ForeignKey('huanzherjibenxinxibiao.shenfenzhenghao'), primary_key=True) - zhiyushijian = Column(String(10)) - lianxidianhua = Column(String(11)) - - -class Shebeishiyongqingkuangbiao(db.Model): - __tablename__ = 'shebeishiyongqingkuangbiao' - - shebeihao = Column(String(5), primary_key=True) - shebeileixing = Column(String(10), nullable=False) - shifoushiyong = Column(String(2), nullable=False) - yongyunagehuanzhe_huanzhehao_ = Column('yongyunagehuanzhe(huanzhehao)', String(10), index=True) - - -class Yiyuanrenyuangongzuoqufenbiao(db.Model): - __tablename__ = 'yiyuanrenyuangongzuoqufenbiao' - - yiyuanrenyuandegongzuoleixingdaihao = Column(String(4), primary_key=True) - jutigongzuoleixing = Column(String(4), nullable=False) - - -class Yiyuanrenyuanxinxibiao(db.Model): - __tablename__ = 'yiyuanrenyuanxinxibiao' - - yishenggongzuozhenghao = Column(String(10), primary_key=True) - xingming = Column(String(3), nullable=False) - xingbie = Column(String(2), nullable=False) - nianling = Column(Integer, nullable=False) - dianhua = Column(String(11), nullable=False) - shifoudushengzinv = Column(String(2), nullable=False) - shifoudangyuan = Column(String(2), nullable=False) - gongzuonianling = Column(Integer, nullable=False) - yiyuanrenyuandegongzuoleixingdaihao = Column( - ForeignKey('yiyuanrenyuangongzuoqufenbiao.yiyuanrenyuandegongzuoleixingdaihao'), nullable=False, index=True) - - yiyuanrenyuangongzuoqufenbiao = relationship('Yiyuanrenyuangongzuoqufenbiao', - primaryjoin='Yiyuanrenyuanxinxibiao.yiyuanrenyuandegongzuoleixingdaihao == Yiyuanrenyuangongzuoqufenbiao.yiyuanrenyuandegongzuoleixingdaihao', - backref='yiyuanrenyuanxinxibiaos') diff --git a/PythonFlaskDemo/static/layui/login.jpg b/PythonFlaskDemo/static/layui/login.jpg deleted file mode 100644 index 59aa9c1..0000000 Binary files a/PythonFlaskDemo/static/layui/login.jpg and /dev/null differ diff --git a/PythonFlaskDemo/templates/login.jpg b/PythonFlaskDemo/templates/login.jpg deleted file mode 100644 index 59aa9c1..0000000 Binary files a/PythonFlaskDemo/templates/login.jpg and /dev/null differ diff --git a/PythonFlaskDemo/templates/video.mp4 b/PythonFlaskDemo/templates/video.mp4 deleted file mode 100644 index 3b8f5ff..0000000 Binary files a/PythonFlaskDemo/templates/video.mp4 and /dev/null differ diff --git a/PythonFlaskDemo/video.mp4 b/PythonFlaskDemo/video.mp4 deleted file mode 100644 index 3b8f5ff..0000000 Binary files a/PythonFlaskDemo/video.mp4 and /dev/null differ diff --git a/PythonFlaskDemo/雷神山3.txt b/PythonFlaskDemo/雷神山3.txt deleted file mode 100644 index 0c7b038..0000000 --- a/PythonFlaskDemo/雷神山3.txt +++ /dev/null @@ -1,403 +0,0 @@ -/* - Navicat MySQL Data Transfer - - Source Server : localhost3306 - Source Server Type : MySQL - Source Server Version : 50703 - Source Host : localhost:3306 - Source Schema : 雷神山医院管理 - - Target Server Type : MySQL - Target Server Version : 50703 - File Encoding : 65001 - - Date: 27/04/2020 11:41:30 -*/ - -SET NAMES utf8mb4; -SET FOREIGN_KEY_CHECKS = 0; - --- ---------------------------- --- Table structure for fangjianshiyongqingkuangbiao --- ---------------------------- -DROP TABLE IF EXISTS `fangjianshiyongqingkuangbiao`; -CREATE TABLE `fangjianshiyongqingkuangbiao` ( - `fangjianhao` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `fangjianweizhi` int(3) NULL DEFAULT NULL, - `fangjianshifoumanyuan` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - PRIMARY KEY (`fangjianhao`) USING BTREE, - INDEX `seven_six`(`fangjianweizhi`) USING BTREE, - CONSTRAINT `seven_six` FOREIGN KEY (`fangjianweizhi`) REFERENCES `huanzherjibenxinxibiao` (`fangjianweizhi`) ON DELETE RESTRICT ON UPDATE RESTRICT -) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; - --- ---------------------------- --- Records of fangjianshiyongqingkuangbiao --- ---------------------------- -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('107', 107, '是'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('205', 205, '是'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('209', 209, '是'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('215', 215, '是'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('220', 220, '否'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('301', 301, '否'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('306', 306, '否'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('307', 307, '是'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('314', 314, '是'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('401', 401, '否'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('402', 402, '是'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('403', 403, '否'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('404', 404, '否'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('501', 501, '否'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('506', 506, '是'); -INSERT INTO `fangjianshiyongqingkuangbiao` VALUES ('509', 509, '否'); - --- ---------------------------- --- Table structure for huanzhebingqingcanzhaobiao --- ---------------------------- -DROP TABLE IF EXISTS `huanzhebingqingcanzhaobiao`; -CREATE TABLE `huanzhebingqingcanzhaobiao` ( - `huanzhebingqingdaihao` int(2) NOT NULL, - `jutibingqing` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - PRIMARY KEY (`huanzhebingqingdaihao`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; - --- ---------------------------- --- Records of huanzhebingqingcanzhaobiao --- ---------------------------- -INSERT INTO `huanzhebingqingcanzhaobiao` VALUES (1, '重度'); -INSERT INTO `huanzhebingqingcanzhaobiao` VALUES (2, '轻度'); -INSERT INTO `huanzhebingqingcanzhaobiao` VALUES (3, '轻微'); - --- ---------------------------- --- Table structure for huanzhebingqingzhuangkuangbiao --- ---------------------------- -DROP TABLE IF EXISTS `huanzhebingqingzhuangkuangbiao`; -CREATE TABLE `huanzhebingqingzhuangkuangbiao` ( - `huanzhehao` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `fangjianhao` int(3) NULL DEFAULT NULL, - `huanzhebingqingdaihao` int(2) NULL DEFAULT NULL, - `teshuqingkuangbeizhu` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `jiashuyouwuganran` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - PRIMARY KEY (`huanzhehao`) USING BTREE, - INDEX `one_two`(`huanzhebingqingdaihao`) USING BTREE, - INDEX `fangjianhao`(`fangjianhao`) USING BTREE, - CONSTRAINT `one_two` FOREIGN KEY (`huanzhebingqingdaihao`) REFERENCES `huanzhebingqingcanzhaobiao` (`huanzhebingqingdaihao`) ON DELETE RESTRICT ON UPDATE RESTRICT -) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; - --- ---------------------------- --- Records of huanzhebingqingzhuangkuangbiao --- ---------------------------- -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('2212020001', 301, 1, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('2212020021', 301, 1, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5112020003', 205, 1, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5122020001', 403, 2, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5122020002', 403, 2, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5132020034', 220, 3, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5132020094', 220, 3, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5142020020', 209, 1, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5142020045', 209, 1, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5152020005', 306, 1, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5152020021', 306, 2, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5162020006', 307, 1, '无', '有'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5162020013', 307, 2, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5172020012', 314, 1, '无', '有'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5172020056', 314, 2, '无', '有'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5182020026', 404, 2, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5182020032', 404, 3, '无', '有'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5192020038', 402, 3, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5192020043', 403, 3, '无', '有'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5192020063', 402, 3, '无', '有'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5202020018', 401, 1, '无', '有'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5202020069', 401, 2, '注意休息', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5212020026', 215, 2, '无', '有'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5212020054', 215, 1, '饮食清淡', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5222020013', 501, 1, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5222020078', 501, 3, '避免通风', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5232020004', 509, 2, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5232020045', 509, 3, '避免接触', '有'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5242020028', 506, 3, '无', '有'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5242020035', 506, 3, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5252020007', 504, 2, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5252020084', 504, 2, '注意不要接触手术部位', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5292020009', 107, 2, '无', '无'); -INSERT INTO `huanzhebingqingzhuangkuangbiao` VALUES ('5292020036', 107, 1, '无', '无'); - --- ---------------------------- --- Table structure for huanzherjibenxinxibiao --- ---------------------------- -DROP TABLE IF EXISTS `huanzherjibenxinxibiao`; -CREATE TABLE `huanzherjibenxinxibiao` ( - `shenfenzhenghao` varchar(18) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `xingming` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `xingbie` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `nianling` int(3) NULL DEFAULT NULL, - `jiguan` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `huanzhehao` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `fangjianweizhi` int(3) NULL DEFAULT NULL, - `ruyuanshijian` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `jiashulianxitianhua` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - PRIMARY KEY (`shenfenzhenghao`) USING BTREE, - INDEX `患者号`(`huanzhehao`) USING BTREE, - INDEX `房间位置`(`fangjianweizhi`) USING BTREE, - CONSTRAINT `six_two` FOREIGN KEY (`huanzhehao`) REFERENCES `huanzhebingqingzhuangkuangbiao` (`huanzhehao`) ON DELETE RESTRICT ON UPDATE RESTRICT -) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; - --- ---------------------------- --- Records of huanzherjibenxinxibiao --- ---------------------------- -INSERT INTO `huanzherjibenxinxibiao` VALUES ('152983199504259864', '杜组建', '男', 25, '湖北宜昌', '5132020034', 220, '20200117', '18883073333'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('211165199203029864', '刘海燕', '男', 31, '湖南益阳', '5142020020', 209, '20200119', '18323333339'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('231154199202282143', '周前进', '女', 29, '湖北枣阳', '5122020002', 403, '20200101', '13883622222'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('233424198901248765', '黄安', '男', 46, '湖北宜昌', '5142020045', 209, '20200113', '13996362222'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('234221199906278461', '谢鹏', '女', 31, '陕西西安', '5152020005', 306, '20200112', '18883587777'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('235432199712030432', '王有福', '男', 39, '湖北荆门', '5152020021', 306, '20200113', '18883897777'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('242221200108063451', '李雪钟', '男', 33, '湖南娄底', '5162020006', 307, '20200114', '13960228888'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('242323200405032341', '周家国', '女', 36, '湖北利川', '5162020013', 307, '20200115', '13996262222'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('311134200411230932', '韩爽', '男', 27, '重庆长寿', '5172020012', 314, '20200116', '18883567783'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('312434199205071532', '陈晓敏', '男', 32, '湖北荆州', '5182020032', 404, '20200117', '15034567843'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('321154198303312014', '柳林', '女', 28, '湖南益阳', '5182020026', 404, '20200118', '18889999990'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('321234299612050321', '赵保国', '女', 32, '重庆开州', '5192020038', 402, '20200119', '16783945747'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('32324319846243564', '单楠楠', '男', 22, '湖北咸宁', '5192020063', 403, '20200101', '17342724848'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('334254199804089821', '刘向华', '女', 37, '江西南昌', '5202020018', 401, '20200102', '17389477574'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('362222199406042154', '刘华美', '女', 36, '湖北宜昌', '2212020001', 301, '20200103', '15384563476'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('376345199002186743', '石栏', '男', 35, '湖北武汉', '5202020069', 401, '20200104', '13478456344'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('429221200112078751', '杜大伟', '女', 36, '湖北荆门', '5212020054', 215, '20200105', '17483535334'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('432221198812040602', '郝总生', '女', 26, '湖北广水', '5222020013', 501, '20200106', '14835734538'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('432223199229162314', '刘海', '男', 35, '湖北襄阳', '5112020003', 205, '20200107', '13294857349'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('433122199302046732', '卢平', '女', 32, '湖北潜江', '5212020026', 215, '20200106', '14353653463'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('452441199508042031', '王凤虚', '男', 47, '湖南岳阳', '5222020078', 501, '20200108', '14357837348'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('50022818747843', '阳明路', '男', 34, '重庆忠县', '5122020001', 403, '20200104', '17865876695'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('500228198703046754', '石师', '女', 38, '重庆开州', '5192020043', 301, '20200102', '15890043574'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('500228199405176754', '刘妮昂', '女', 39, '湖北恩施', '5132020094', 220, '20200117', '17867549001'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('512223197803023421', '王茜金', '女', 42, '湖北宜昌', '2212020021', 301, '20200118', '17829364578'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('512225198705074564', '吴国栋', '男', 34, '湖北武汉', '5172020056', 314, '20200178', '15846736654'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('512341199610096732', '马金龙', '男', 42, '湖北武汉', '5232020004', 509, '20200111', '17483738758'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('522142199206088453', '张兆', '女', 25, '江西南昌', '5232020045', 509, '20200112', '13432745388'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('532164199303097432', '于勇', '男', 32, '湖南长沙', '5242020028', 506, '20200113', '17432853739'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('532356199509046741', '孙松林', '男', 23, '重庆开州', '5242020035', 506, '20200114', '19435738734'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('535231200304053214', '刘丽萍', '男', 34, '江西南昌', '5252020007', 504, '20200115', '14398757874'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('541197199405278563', '吴建明', '女', 33, '重庆开州', '5252020084', 504, '20200116', '43856574435'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('542331199311020431', '王桂霞', '女', 43, '湖南长沙', '5292020009', 107, '20200117', '15484674967'); -INSERT INTO `huanzherjibenxinxibiao` VALUES ('652564199106077844', '刘健夫', '女', 33, '湖南娄底', '5292020036', 107, '20200118', '54387643653'); - --- ---------------------------- --- Table structure for shebeishiyongqingkuangbiao --- ---------------------------- -DROP TABLE IF EXISTS `shebeishiyongqingkuangbiao`; -CREATE TABLE `shebeishiyongqingkuangbiao` ( - `shebeihao` varchar(5) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `shebeileixing` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `shifoushiyong` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `yongyunagehuanzhe(huanzhehao)` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - PRIMARY KEY (`shebeihao`) USING BTREE, - INDEX `eight_six`(`yongyunagehuanzhe(huanzhehao)`) USING BTREE, - CONSTRAINT `eight_six` FOREIGN KEY (`yongyunagehuanzhe(huanzhehao)`) REFERENCES `huanzherjibenxinxibiao` (`huanzhehao`) ON DELETE RESTRICT ON UPDATE RESTRICT -) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; - --- ---------------------------- --- Records of shebeishiyongqingkuangbiao --- ---------------------------- -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('22110', '洗肠机', '否', '2212020001'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('22111', '洗肠机', '是', '2212020021'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51101', '全景口腔x光机', '是', '5112020003'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51201', '综合验光仪', '是', '5122020001'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51202', '综合验光仪', '否', '5122020002'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51301', '听力计', '是', '5132020034'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51302', '听力计', '是', '5132020094'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51411', '微创治疗仪', '是', '5142020045'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51416', '微创治疗仪', '否', '5142020020'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51502', '监护仪', '否', '5152020021'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51504', '监护仪', '是', '5152020005'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51612', '引流管', '是', '5162020006'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51621', '引流管', '是', '5162020013'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51704', '血压计', '否', '5172020056'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51722', '血压计', '否', '5172020012'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51812', '电动吸引器', '是', '5182020026'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51813', '电动吸引器', '是', '5182020032'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51901', '超声', '否', '5192020063'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51902', '超声', '否', '5192020043'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('51905', '超声', '是', '5192020038'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52001', '心理测试系统', '是', '5202020018'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52002', '心理测试系统', '是', '5202020069'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52101', '医用气体设备', '是', '5212020054'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52102', '医用气体设备', '否', '5212020026'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52201', '光热治疗仪', '是', '5222020013'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52202', '光热治疗仪', '否', '5222020078'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52301', 'b超', '是', '5232020004'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52302', 'b超', '是', '5232020045'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52401', '疫苗', '是', '5242020028'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52402', '疫苗', '是', '5242020035'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52501', '激光治疗仪', '是', '5252020007'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52502', '激光治疗仪', '否', '5252020084'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52901', '无影灯', '否', '5292020009'); -INSERT INTO `shebeishiyongqingkuangbiao` VALUES ('52902', '无影灯', '否', '5292020036'); - --- ---------------------------- --- Table structure for siwanghuanzhebiao --- ---------------------------- -DROP TABLE IF EXISTS `siwanghuanzhebiao`; -CREATE TABLE `siwanghuanzhebiao` ( - `xingming` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `xingbie` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `nianling` int(3) NULL DEFAULT NULL, - `shenfenzhenghao` varchar(18) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `siwangshijian` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - PRIMARY KEY (`shenfenzhenghao`) USING BTREE, - CONSTRAINT `ten_six` FOREIGN KEY (`shenfenzhenghao`) REFERENCES `huanzherjibenxinxibiao` (`shenfenzhenghao`) ON DELETE RESTRICT ON UPDATE RESTRICT -) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; - --- ---------------------------- --- Table structure for yihuanguanxibiao --- ---------------------------- -DROP TABLE IF EXISTS `yihuanguanxibiao`; -CREATE TABLE `yihuanguanxibiao` ( - `huanzhehao` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `yishenggongzuozhenghao` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `yiyurenyuandegongzuoleixingdaihao` int(4) NULL DEFAULT NULL, - PRIMARY KEY (`huanzhehao`) USING BTREE, - INDEX `five_four`(`yishenggongzuozhenghao`) USING BTREE, - CONSTRAINT `five_four` FOREIGN KEY (`yishenggongzuozhenghao`) REFERENCES `yiyuanrenyuanxinxibiao` (`yishenggongzuozhenghao`) ON DELETE RESTRICT ON UPDATE RESTRICT, - CONSTRAINT `five_six` FOREIGN KEY (`huanzhehao`) REFERENCES `huanzherjibenxinxibiao` (`huanzhehao`) ON DELETE RESTRICT ON UPDATE RESTRICT -) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; - --- ---------------------------- --- Records of yihuanguanxibiao --- ---------------------------- -INSERT INTO `yihuanguanxibiao` VALUES ('2212020001', '2212020001', 221); -INSERT INTO `yihuanguanxibiao` VALUES ('2212020021', '2212020002', 221); -INSERT INTO `yihuanguanxibiao` VALUES ('5112020003', '5112020001', 511); -INSERT INTO `yihuanguanxibiao` VALUES ('5122020001', '5122020001', 512); -INSERT INTO `yihuanguanxibiao` VALUES ('5122020002', '5122020001', 512); -INSERT INTO `yihuanguanxibiao` VALUES ('5132020034', '5132020001', 513); -INSERT INTO `yihuanguanxibiao` VALUES ('5132020094', '5132020001', 513); -INSERT INTO `yihuanguanxibiao` VALUES ('5142020020', '5142020001', 514); -INSERT INTO `yihuanguanxibiao` VALUES ('5142020045', '5142020001', 514); -INSERT INTO `yihuanguanxibiao` VALUES ('5152020005', '5152020002', 515); -INSERT INTO `yihuanguanxibiao` VALUES ('5152020021', '5152020002', 515); -INSERT INTO `yihuanguanxibiao` VALUES ('5162020006', '5162020003', 516); -INSERT INTO `yihuanguanxibiao` VALUES ('5162020013', '5162020003', 516); -INSERT INTO `yihuanguanxibiao` VALUES ('5172020012', '5172020004', 517); -INSERT INTO `yihuanguanxibiao` VALUES ('5172020056', '2102020002', 210); -INSERT INTO `yihuanguanxibiao` VALUES ('5182020026', '5182020001', 518); -INSERT INTO `yihuanguanxibiao` VALUES ('5182020032', '5182020001', 518); -INSERT INTO `yihuanguanxibiao` VALUES ('5192020038', '5192020002', 519); -INSERT INTO `yihuanguanxibiao` VALUES ('5192020043', '5192020002', 519); -INSERT INTO `yihuanguanxibiao` VALUES ('5192020063', '5192020002', 519); -INSERT INTO `yihuanguanxibiao` VALUES ('5202020018', '5202020001', 520); -INSERT INTO `yihuanguanxibiao` VALUES ('5202020069', '5202020001', 520); -INSERT INTO `yihuanguanxibiao` VALUES ('5212020026', '5212020001', 521); -INSERT INTO `yihuanguanxibiao` VALUES ('5212020054', '5212020001', 521); -INSERT INTO `yihuanguanxibiao` VALUES ('5222020013', '5222020003', 522); -INSERT INTO `yihuanguanxibiao` VALUES ('5222020078', '5222020003', 522); -INSERT INTO `yihuanguanxibiao` VALUES ('5232020004', '5232020001', 523); -INSERT INTO `yihuanguanxibiao` VALUES ('5232020045', '5232020001', 523); -INSERT INTO `yihuanguanxibiao` VALUES ('5242020028', '5242020001', 624); -INSERT INTO `yihuanguanxibiao` VALUES ('5242020035', '5242020001', 524); -INSERT INTO `yihuanguanxibiao` VALUES ('5252020007', '5252020003', 525); -INSERT INTO `yihuanguanxibiao` VALUES ('5252020084', '5252020003', 525); -INSERT INTO `yihuanguanxibiao` VALUES ('5292020009', '5292020005', 529); -INSERT INTO `yihuanguanxibiao` VALUES ('5292020036', '5292020005', 529); - --- ---------------------------- --- Table structure for yiyuanrenyuangongzuoqufenbiao --- ---------------------------- -DROP TABLE IF EXISTS `yiyuanrenyuangongzuoqufenbiao`; -CREATE TABLE `yiyuanrenyuangongzuoqufenbiao` ( - `yiyuanrenyuandegongzuoleixingdaihao` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `jutigongzuoleixing` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - PRIMARY KEY (`yiyuanrenyuandegongzuoleixingdaihao`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; - --- ---------------------------- --- Records of yiyuanrenyuangongzuoqufenbiao --- ---------------------------- -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('100', '综合医生'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('210', '中医'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('221', '腔肠'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('222', '骨伤'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('223', '针灸'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('511', '口腔'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('512', '眼科'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('513', '耳喉鼻'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('514', '肿瘤'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('515', '心血管'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('516', '胸腔'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('517', '血液'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('518', '妇产'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('519', '儿科'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('520', '精神科'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('521', '传染'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('522', '皮肤科'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('523', '结核'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('524', '麻风'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('525', '整形外科'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('529', '美容科'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('710', '护士'); -INSERT INTO `yiyuanrenyuangongzuoqufenbiao` VALUES ('720', '护士长'); - --- ---------------------------- --- Table structure for yiyuanrenyuanxinxibiao --- ---------------------------- -DROP TABLE IF EXISTS `yiyuanrenyuanxinxibiao`; -CREATE TABLE `yiyuanrenyuanxinxibiao` ( - `yishenggongzuozhenghao` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `xingming` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `xingbie` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `nianling` int(3) NOT NULL, - `dianhua` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `shifoudushengzinv` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `shifoudangyuan` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `gongzuonianling` int(2) NOT NULL, - `yiyuanrenyuandegongzuoleixingdaihao` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - PRIMARY KEY (`yishenggongzuozhenghao`) USING BTREE, - INDEX `three_four`(`yiyuanrenyuandegongzuoleixingdaihao`) USING BTREE, - CONSTRAINT `three_four` FOREIGN KEY (`yiyuanrenyuandegongzuoleixingdaihao`) REFERENCES `yiyuanrenyuangongzuoqufenbiao` (`yiyuanrenyuandegongzuoleixingdaihao`) ON DELETE RESTRICT ON UPDATE RESTRICT -) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; - --- ---------------------------- --- Records of yiyuanrenyuanxinxibiao --- ---------------------------- -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('1002020001', '王长根', '男', 35, '18874051001', '是', '是', 18, '100'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('1002020002', '肖长文', '男', 34, '18874051002', '否', '否', 15, '100'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('2102020001', '苏红卫', '男', 36, '18874051003', '是', '否', 17, '210'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('2102020002', '陶清风', '男', 45, '18874051004', '否', '是', 20, '210'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('2212020001', '赵福彩', '女', 38, '18874051005', '是', '是', 18, '221'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('2212020002', '杨敏节', '男', 47, '18874051006', '是', '是', 27, '221'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('2222020001', '梁峰', '男', 33, '18874051007', '否', '否', 13, '222'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('2222020002', '张敏', '女', 32, '18874951008', '是', '否', 12, '222'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('2232020001', '戴博', '男', 41, '18874051010', '是', '是', 21, '223'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('2232020002', '黄志强', '男', 35, '18874051011', '否', '否', 15, '223'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5112020001', '李亚军', '男', 23, '18874051012', '是', '是', 2, '511'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5122020001', '韩正', '女', 25, '18874051020', '否', '否', 3, '512'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5132020001', '马军', '男', 27, '18874051021', '是', '是', 6, '513'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5142020001', '赵健航', '男', 29, '18874035001', '是', '是', 7, '514'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5152020002', '谭玉彬', '男', 48, '18874051029', '否', '是', 26, '515'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5162020003', '钟发更', '男', 50, '18874051093', '是', '是', 28, '516'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5172020004', '郭占农', '男', 35, '18874051023', '是', '是', 12, '517'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5182020001', '李静', '女', 25, '18874930004', '是', '否', 3, '518'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5192020002', '唐红', '女', 26, '18890450003', '是', '是', 4, '519'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5202020001', '胡蕴华', '女', 30, '18874937654', '是', '是', 8, '520'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5212020001', '尚海风', '男', 31, '17790453689', '否', '是', 9, '521'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5222020003', '陈专', '男', 29, '18874051095', '是', '是', 8, '522'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5232020001', '龙永', '男', 38, '18874038934', '是', '是', 16, '523'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5242020001', '许明明', '男', 34, '18934567833', '是', '是', 12, '524'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5252020003', '李健', '男', 23, '18874051098', '是', '否', 1, '525'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('5292020005', '胡新文', '女', 27, '18894005001', '是', '是', 5, '529'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('7102020005', '严冬雪', '女', 25, '13390209004', '是', '是', 3, '710'); -INSERT INTO `yiyuanrenyuanxinxibiao` VALUES ('7202020001', '韩梦', '女', 38, '17789023421', '否', 'f否', 16, '720'); - --- ---------------------------- --- Table structure for zhiyuhuanzhebiao --- ---------------------------- -DROP TABLE IF EXISTS `zhiyuhuanzhebiao`; -CREATE TABLE `zhiyuhuanzhebiao` ( - `xingming` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `xingbie` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `nianling` int(3) NULL DEFAULT NULL, - `shenfenzhenghao` varchar(18) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, - `zhiyushijian` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - `lianxidianhua` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, - PRIMARY KEY (`shenfenzhenghao`) USING BTREE, - CONSTRAINT `nine_six` FOREIGN KEY (`shenfenzhenghao`) REFERENCES `huanzherjibenxinxibiao` (`shenfenzhenghao`) ON DELETE RESTRICT ON UPDATE RESTRICT -) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; - -SET FOREIGN_KEY_CHECKS = 1; diff --git a/PythonFlaskDemo/app.py b/app.py similarity index 99% rename from PythonFlaskDemo/app.py rename to app.py index 3385c59..8f51b38 100644 --- a/PythonFlaskDemo/app.py +++ b/app.py @@ -317,6 +317,7 @@ def update_gen(): fangjianshifoumanyuan=number) db.session.add(bingfang) db.session.commit() + # 添加完成重定向至主页 return redirect('/bingfang') elif type == 'doctor': diff --git a/PythonFlaskDemo/static/layui/css/layui.css b/static/layui/css/layui.css similarity index 100% rename from PythonFlaskDemo/static/layui/css/layui.css rename to static/layui/css/layui.css diff --git a/PythonFlaskDemo/static/layui/css/layui.mobile.css b/static/layui/css/layui.mobile.css similarity index 100% rename from PythonFlaskDemo/static/layui/css/layui.mobile.css rename to static/layui/css/layui.mobile.css diff --git a/PythonFlaskDemo/static/layui/css/modules/code.css b/static/layui/css/modules/code.css similarity index 100% rename from PythonFlaskDemo/static/layui/css/modules/code.css rename to static/layui/css/modules/code.css diff --git a/PythonFlaskDemo/static/layui/css/modules/laydate/default/laydate.css b/static/layui/css/modules/laydate/default/laydate.css similarity index 100% rename from PythonFlaskDemo/static/layui/css/modules/laydate/default/laydate.css rename to static/layui/css/modules/laydate/default/laydate.css diff --git a/PythonFlaskDemo/static/layui/css/modules/layer/default/icon-ext.png b/static/layui/css/modules/layer/default/icon-ext.png similarity index 100% rename from PythonFlaskDemo/static/layui/css/modules/layer/default/icon-ext.png rename to static/layui/css/modules/layer/default/icon-ext.png diff --git a/PythonFlaskDemo/static/layui/css/modules/layer/default/icon.png b/static/layui/css/modules/layer/default/icon.png similarity index 100% rename from PythonFlaskDemo/static/layui/css/modules/layer/default/icon.png rename to static/layui/css/modules/layer/default/icon.png diff --git a/PythonFlaskDemo/static/layui/css/modules/layer/default/layer.css b/static/layui/css/modules/layer/default/layer.css similarity index 100% rename from PythonFlaskDemo/static/layui/css/modules/layer/default/layer.css rename to static/layui/css/modules/layer/default/layer.css diff --git a/PythonFlaskDemo/static/layui/css/modules/layer/default/loading-0.gif b/static/layui/css/modules/layer/default/loading-0.gif similarity index 100% rename from PythonFlaskDemo/static/layui/css/modules/layer/default/loading-0.gif rename to static/layui/css/modules/layer/default/loading-0.gif diff --git a/PythonFlaskDemo/static/layui/css/modules/layer/default/loading-1.gif b/static/layui/css/modules/layer/default/loading-1.gif similarity index 100% rename from PythonFlaskDemo/static/layui/css/modules/layer/default/loading-1.gif rename to static/layui/css/modules/layer/default/loading-1.gif diff --git a/PythonFlaskDemo/static/layui/css/modules/layer/default/loading-2.gif b/static/layui/css/modules/layer/default/loading-2.gif similarity index 100% rename from PythonFlaskDemo/static/layui/css/modules/layer/default/loading-2.gif rename to static/layui/css/modules/layer/default/loading-2.gif diff --git a/PythonFlaskDemo/static/layui/first.JPG b/static/layui/first.JPG similarity index 100% rename from PythonFlaskDemo/static/layui/first.JPG rename to static/layui/first.JPG diff --git a/PythonFlaskDemo/static/layui/font/iconfont.eot b/static/layui/font/iconfont.eot similarity index 100% rename from PythonFlaskDemo/static/layui/font/iconfont.eot rename to static/layui/font/iconfont.eot diff --git a/PythonFlaskDemo/static/layui/font/iconfont.svg b/static/layui/font/iconfont.svg similarity index 100% rename from PythonFlaskDemo/static/layui/font/iconfont.svg rename to static/layui/font/iconfont.svg diff --git a/PythonFlaskDemo/static/layui/font/iconfont.ttf b/static/layui/font/iconfont.ttf similarity index 100% rename from PythonFlaskDemo/static/layui/font/iconfont.ttf rename to static/layui/font/iconfont.ttf diff --git a/PythonFlaskDemo/static/layui/font/iconfont.woff b/static/layui/font/iconfont.woff similarity index 100% rename from PythonFlaskDemo/static/layui/font/iconfont.woff rename to static/layui/font/iconfont.woff diff --git a/PythonFlaskDemo/static/layui/images/face/0.gif b/static/layui/images/face/0.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/0.gif rename to static/layui/images/face/0.gif diff --git a/PythonFlaskDemo/static/layui/images/face/1.gif b/static/layui/images/face/1.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/1.gif rename to static/layui/images/face/1.gif diff --git a/PythonFlaskDemo/static/layui/images/face/10.gif b/static/layui/images/face/10.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/10.gif rename to static/layui/images/face/10.gif diff --git a/PythonFlaskDemo/static/layui/images/face/11.gif b/static/layui/images/face/11.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/11.gif rename to static/layui/images/face/11.gif diff --git a/PythonFlaskDemo/static/layui/images/face/12.gif b/static/layui/images/face/12.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/12.gif rename to static/layui/images/face/12.gif diff --git a/PythonFlaskDemo/static/layui/images/face/13.gif b/static/layui/images/face/13.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/13.gif rename to static/layui/images/face/13.gif diff --git a/PythonFlaskDemo/static/layui/images/face/14.gif b/static/layui/images/face/14.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/14.gif rename to static/layui/images/face/14.gif diff --git a/PythonFlaskDemo/static/layui/images/face/15.gif b/static/layui/images/face/15.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/15.gif rename to static/layui/images/face/15.gif diff --git a/PythonFlaskDemo/static/layui/images/face/16.gif b/static/layui/images/face/16.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/16.gif rename to static/layui/images/face/16.gif diff --git a/PythonFlaskDemo/static/layui/images/face/17.gif b/static/layui/images/face/17.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/17.gif rename to static/layui/images/face/17.gif diff --git a/PythonFlaskDemo/static/layui/images/face/18.gif b/static/layui/images/face/18.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/18.gif rename to static/layui/images/face/18.gif diff --git a/PythonFlaskDemo/static/layui/images/face/19.gif b/static/layui/images/face/19.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/19.gif rename to static/layui/images/face/19.gif diff --git a/PythonFlaskDemo/static/layui/images/face/2.gif b/static/layui/images/face/2.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/2.gif rename to static/layui/images/face/2.gif diff --git a/PythonFlaskDemo/static/layui/images/face/20.gif b/static/layui/images/face/20.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/20.gif rename to static/layui/images/face/20.gif diff --git a/PythonFlaskDemo/static/layui/images/face/21.gif b/static/layui/images/face/21.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/21.gif rename to static/layui/images/face/21.gif diff --git a/PythonFlaskDemo/static/layui/images/face/22.gif b/static/layui/images/face/22.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/22.gif rename to static/layui/images/face/22.gif diff --git a/PythonFlaskDemo/static/layui/images/face/23.gif b/static/layui/images/face/23.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/23.gif rename to static/layui/images/face/23.gif diff --git a/PythonFlaskDemo/static/layui/images/face/24.gif b/static/layui/images/face/24.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/24.gif rename to static/layui/images/face/24.gif diff --git a/PythonFlaskDemo/static/layui/images/face/25.gif b/static/layui/images/face/25.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/25.gif rename to static/layui/images/face/25.gif diff --git a/PythonFlaskDemo/static/layui/images/face/26.gif b/static/layui/images/face/26.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/26.gif rename to static/layui/images/face/26.gif diff --git a/PythonFlaskDemo/static/layui/images/face/27.gif b/static/layui/images/face/27.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/27.gif rename to static/layui/images/face/27.gif diff --git a/PythonFlaskDemo/static/layui/images/face/28.gif b/static/layui/images/face/28.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/28.gif rename to static/layui/images/face/28.gif diff --git a/PythonFlaskDemo/static/layui/images/face/29.gif b/static/layui/images/face/29.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/29.gif rename to static/layui/images/face/29.gif diff --git a/PythonFlaskDemo/static/layui/images/face/3.gif b/static/layui/images/face/3.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/3.gif rename to static/layui/images/face/3.gif diff --git a/PythonFlaskDemo/static/layui/images/face/30.gif b/static/layui/images/face/30.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/30.gif rename to static/layui/images/face/30.gif diff --git a/PythonFlaskDemo/static/layui/images/face/31.gif b/static/layui/images/face/31.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/31.gif rename to static/layui/images/face/31.gif diff --git a/PythonFlaskDemo/static/layui/images/face/32.gif b/static/layui/images/face/32.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/32.gif rename to static/layui/images/face/32.gif diff --git a/PythonFlaskDemo/static/layui/images/face/33.gif b/static/layui/images/face/33.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/33.gif rename to static/layui/images/face/33.gif diff --git a/PythonFlaskDemo/static/layui/images/face/34.gif b/static/layui/images/face/34.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/34.gif rename to static/layui/images/face/34.gif diff --git a/PythonFlaskDemo/static/layui/images/face/35.gif b/static/layui/images/face/35.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/35.gif rename to static/layui/images/face/35.gif diff --git a/PythonFlaskDemo/static/layui/images/face/36.gif b/static/layui/images/face/36.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/36.gif rename to static/layui/images/face/36.gif diff --git a/PythonFlaskDemo/static/layui/images/face/37.gif b/static/layui/images/face/37.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/37.gif rename to static/layui/images/face/37.gif diff --git a/PythonFlaskDemo/static/layui/images/face/38.gif b/static/layui/images/face/38.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/38.gif rename to static/layui/images/face/38.gif diff --git a/PythonFlaskDemo/static/layui/images/face/39.gif b/static/layui/images/face/39.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/39.gif rename to static/layui/images/face/39.gif diff --git a/PythonFlaskDemo/static/layui/images/face/4.gif b/static/layui/images/face/4.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/4.gif rename to static/layui/images/face/4.gif diff --git a/PythonFlaskDemo/static/layui/images/face/40.gif b/static/layui/images/face/40.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/40.gif rename to static/layui/images/face/40.gif diff --git a/PythonFlaskDemo/static/layui/images/face/41.gif b/static/layui/images/face/41.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/41.gif rename to static/layui/images/face/41.gif diff --git a/PythonFlaskDemo/static/layui/images/face/42.gif b/static/layui/images/face/42.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/42.gif rename to static/layui/images/face/42.gif diff --git a/PythonFlaskDemo/static/layui/images/face/43.gif b/static/layui/images/face/43.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/43.gif rename to static/layui/images/face/43.gif diff --git a/PythonFlaskDemo/static/layui/images/face/44.gif b/static/layui/images/face/44.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/44.gif rename to static/layui/images/face/44.gif diff --git a/PythonFlaskDemo/static/layui/images/face/45.gif b/static/layui/images/face/45.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/45.gif rename to static/layui/images/face/45.gif diff --git a/PythonFlaskDemo/static/layui/images/face/46.gif b/static/layui/images/face/46.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/46.gif rename to static/layui/images/face/46.gif diff --git a/PythonFlaskDemo/static/layui/images/face/47.gif b/static/layui/images/face/47.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/47.gif rename to static/layui/images/face/47.gif diff --git a/PythonFlaskDemo/static/layui/images/face/48.gif b/static/layui/images/face/48.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/48.gif rename to static/layui/images/face/48.gif diff --git a/PythonFlaskDemo/static/layui/images/face/49.gif b/static/layui/images/face/49.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/49.gif rename to static/layui/images/face/49.gif diff --git a/PythonFlaskDemo/static/layui/images/face/5.gif b/static/layui/images/face/5.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/5.gif rename to static/layui/images/face/5.gif diff --git a/PythonFlaskDemo/static/layui/images/face/50.gif b/static/layui/images/face/50.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/50.gif rename to static/layui/images/face/50.gif diff --git a/PythonFlaskDemo/static/layui/images/face/51.gif b/static/layui/images/face/51.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/51.gif rename to static/layui/images/face/51.gif diff --git a/PythonFlaskDemo/static/layui/images/face/52.gif b/static/layui/images/face/52.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/52.gif rename to static/layui/images/face/52.gif diff --git a/PythonFlaskDemo/static/layui/images/face/53.gif b/static/layui/images/face/53.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/53.gif rename to static/layui/images/face/53.gif diff --git a/PythonFlaskDemo/static/layui/images/face/54.gif b/static/layui/images/face/54.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/54.gif rename to static/layui/images/face/54.gif diff --git a/PythonFlaskDemo/static/layui/images/face/55.gif b/static/layui/images/face/55.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/55.gif rename to static/layui/images/face/55.gif diff --git a/PythonFlaskDemo/static/layui/images/face/56.gif b/static/layui/images/face/56.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/56.gif rename to static/layui/images/face/56.gif diff --git a/PythonFlaskDemo/static/layui/images/face/57.gif b/static/layui/images/face/57.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/57.gif rename to static/layui/images/face/57.gif diff --git a/PythonFlaskDemo/static/layui/images/face/58.gif b/static/layui/images/face/58.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/58.gif rename to static/layui/images/face/58.gif diff --git a/PythonFlaskDemo/static/layui/images/face/59.gif b/static/layui/images/face/59.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/59.gif rename to static/layui/images/face/59.gif diff --git a/PythonFlaskDemo/static/layui/images/face/6.gif b/static/layui/images/face/6.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/6.gif rename to static/layui/images/face/6.gif diff --git a/PythonFlaskDemo/static/layui/images/face/60.gif b/static/layui/images/face/60.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/60.gif rename to static/layui/images/face/60.gif diff --git a/PythonFlaskDemo/static/layui/images/face/61.gif b/static/layui/images/face/61.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/61.gif rename to static/layui/images/face/61.gif diff --git a/PythonFlaskDemo/static/layui/images/face/62.gif b/static/layui/images/face/62.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/62.gif rename to static/layui/images/face/62.gif diff --git a/PythonFlaskDemo/static/layui/images/face/63.gif b/static/layui/images/face/63.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/63.gif rename to static/layui/images/face/63.gif diff --git a/PythonFlaskDemo/static/layui/images/face/64.gif b/static/layui/images/face/64.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/64.gif rename to static/layui/images/face/64.gif diff --git a/PythonFlaskDemo/static/layui/images/face/65.gif b/static/layui/images/face/65.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/65.gif rename to static/layui/images/face/65.gif diff --git a/PythonFlaskDemo/static/layui/images/face/66.gif b/static/layui/images/face/66.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/66.gif rename to static/layui/images/face/66.gif diff --git a/PythonFlaskDemo/static/layui/images/face/67.gif b/static/layui/images/face/67.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/67.gif rename to static/layui/images/face/67.gif diff --git a/PythonFlaskDemo/static/layui/images/face/68.gif b/static/layui/images/face/68.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/68.gif rename to static/layui/images/face/68.gif diff --git a/PythonFlaskDemo/static/layui/images/face/69.gif b/static/layui/images/face/69.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/69.gif rename to static/layui/images/face/69.gif diff --git a/PythonFlaskDemo/static/layui/images/face/7.gif b/static/layui/images/face/7.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/7.gif rename to static/layui/images/face/7.gif diff --git a/PythonFlaskDemo/static/layui/images/face/70.gif b/static/layui/images/face/70.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/70.gif rename to static/layui/images/face/70.gif diff --git a/PythonFlaskDemo/static/layui/images/face/71.gif b/static/layui/images/face/71.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/71.gif rename to static/layui/images/face/71.gif diff --git a/PythonFlaskDemo/static/layui/images/face/8.gif b/static/layui/images/face/8.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/8.gif rename to static/layui/images/face/8.gif diff --git a/PythonFlaskDemo/static/layui/images/face/9.gif b/static/layui/images/face/9.gif similarity index 100% rename from PythonFlaskDemo/static/layui/images/face/9.gif rename to static/layui/images/face/9.gif diff --git a/PythonFlaskDemo/static/layui/lay/modules/carousel.js b/static/layui/lay/modules/carousel.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/carousel.js rename to static/layui/lay/modules/carousel.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/code.js b/static/layui/lay/modules/code.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/code.js rename to static/layui/lay/modules/code.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/colorpicker.js b/static/layui/lay/modules/colorpicker.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/colorpicker.js rename to static/layui/lay/modules/colorpicker.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/element.js b/static/layui/lay/modules/element.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/element.js rename to static/layui/lay/modules/element.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/flow.js b/static/layui/lay/modules/flow.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/flow.js rename to static/layui/lay/modules/flow.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/form.js b/static/layui/lay/modules/form.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/form.js rename to static/layui/lay/modules/form.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/jquery.js b/static/layui/lay/modules/jquery.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/jquery.js rename to static/layui/lay/modules/jquery.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/laydate.js b/static/layui/lay/modules/laydate.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/laydate.js rename to static/layui/lay/modules/laydate.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/layedit.js b/static/layui/lay/modules/layedit.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/layedit.js rename to static/layui/lay/modules/layedit.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/layer.js b/static/layui/lay/modules/layer.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/layer.js rename to static/layui/lay/modules/layer.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/laypage.js b/static/layui/lay/modules/laypage.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/laypage.js rename to static/layui/lay/modules/laypage.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/laytpl.js b/static/layui/lay/modules/laytpl.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/laytpl.js rename to static/layui/lay/modules/laytpl.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/mobile.js b/static/layui/lay/modules/mobile.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/mobile.js rename to static/layui/lay/modules/mobile.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/rate.js b/static/layui/lay/modules/rate.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/rate.js rename to static/layui/lay/modules/rate.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/slider.js b/static/layui/lay/modules/slider.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/slider.js rename to static/layui/lay/modules/slider.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/table.js b/static/layui/lay/modules/table.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/table.js rename to static/layui/lay/modules/table.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/tree.js b/static/layui/lay/modules/tree.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/tree.js rename to static/layui/lay/modules/tree.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/upload.js b/static/layui/lay/modules/upload.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/upload.js rename to static/layui/lay/modules/upload.js diff --git a/PythonFlaskDemo/static/layui/lay/modules/util.js b/static/layui/lay/modules/util.js similarity index 100% rename from PythonFlaskDemo/static/layui/lay/modules/util.js rename to static/layui/lay/modules/util.js diff --git a/PythonFlaskDemo/static/layui/layui.all.js b/static/layui/layui.all.js similarity index 100% rename from PythonFlaskDemo/static/layui/layui.all.js rename to static/layui/layui.all.js diff --git a/PythonFlaskDemo/static/layui/layui.js b/static/layui/layui.js similarity index 100% rename from PythonFlaskDemo/static/layui/layui.js rename to static/layui/layui.js diff --git a/PythonFlaskDemo/login.jpg b/static/layui/login.jpg similarity index 100% rename from PythonFlaskDemo/login.jpg rename to static/layui/login.jpg diff --git a/PythonFlaskDemo/static/layui/video.mp4 b/static/layui/video.mp4 similarity index 100% rename from PythonFlaskDemo/static/layui/video.mp4 rename to static/layui/video.mp4 diff --git a/PythonFlaskDemo/static/layui/医护人员.JPG b/static/layui/医护人员.JPG similarity index 100% rename from PythonFlaskDemo/static/layui/医护人员.JPG rename to static/layui/医护人员.JPG diff --git a/PythonFlaskDemo/static/layui/医疗设备.JPG b/static/layui/医疗设备.JPG similarity index 100% rename from PythonFlaskDemo/static/layui/医疗设备.JPG rename to static/layui/医疗设备.JPG diff --git a/PythonFlaskDemo/static/layui/患者.JPG b/static/layui/患者.JPG similarity index 100% rename from PythonFlaskDemo/static/layui/患者.JPG rename to static/layui/患者.JPG diff --git a/PythonFlaskDemo/static/layui/病房.JPG b/static/layui/病房.JPG similarity index 100% rename from PythonFlaskDemo/static/layui/病房.JPG rename to static/layui/病房.JPG diff --git a/PythonFlaskDemo/templates/bingfang.html b/templates/bingfang.html similarity index 100% rename from PythonFlaskDemo/templates/bingfang.html rename to templates/bingfang.html diff --git a/PythonFlaskDemo/templates/call.html b/templates/call.html similarity index 100% rename from PythonFlaskDemo/templates/call.html rename to templates/call.html diff --git a/PythonFlaskDemo/templates/check_in.html b/templates/check_in.html similarity index 100% rename from PythonFlaskDemo/templates/check_in.html rename to templates/check_in.html diff --git a/PythonFlaskDemo/templates/device.html b/templates/device.html similarity index 100% rename from PythonFlaskDemo/templates/device.html rename to templates/device.html diff --git a/PythonFlaskDemo/templates/doctor.html b/templates/doctor.html similarity index 100% rename from PythonFlaskDemo/templates/doctor.html rename to templates/doctor.html diff --git a/PythonFlaskDemo/templates/huanzhe.html b/templates/huanzhe.html similarity index 100% rename from PythonFlaskDemo/templates/huanzhe.html rename to templates/huanzhe.html diff --git a/PythonFlaskDemo/templates/insert_bingfang.html b/templates/insert_bingfang.html similarity index 100% rename from PythonFlaskDemo/templates/insert_bingfang.html rename to templates/insert_bingfang.html diff --git a/PythonFlaskDemo/templates/insert_device.html b/templates/insert_device.html similarity index 100% rename from PythonFlaskDemo/templates/insert_device.html rename to templates/insert_device.html diff --git a/PythonFlaskDemo/templates/insert_doctor.html b/templates/insert_doctor.html similarity index 100% rename from PythonFlaskDemo/templates/insert_doctor.html rename to templates/insert_doctor.html diff --git a/PythonFlaskDemo/templates/insert_huanzhe.html b/templates/insert_huanzhe.html similarity index 100% rename from PythonFlaskDemo/templates/insert_huanzhe.html rename to templates/insert_huanzhe.html diff --git a/PythonFlaskDemo/templates/repair.html b/templates/repair.html similarity index 100% rename from PythonFlaskDemo/templates/repair.html rename to templates/repair.html diff --git a/PythonFlaskDemo/templates/start.html b/templates/start.html similarity index 100% rename from PythonFlaskDemo/templates/start.html rename to templates/start.html diff --git a/PythonFlaskDemo/templates/suggestion.html b/templates/suggestion.html similarity index 100% rename from PythonFlaskDemo/templates/suggestion.html rename to templates/suggestion.html diff --git a/test.txt b/test.txt deleted file mode 100644 index 30d74d2..0000000 --- a/test.txt +++ /dev/null @@ -1 +0,0 @@ -test \ No newline at end of file