├── .gitignore ├── README.md ├── SSM框架下的实验室管理系统.docx ├── WebRoot ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── jsp │ │ ├── approvement │ │ │ ├── applied_buy_record.jsp │ │ │ ├── applied_buy_record_detail.jsp │ │ │ ├── approve_buy_record.jsp │ │ │ └── approve_buy_record_detail.jsp │ │ ├── equipment │ │ │ ├── equipment.jsp │ │ │ └── request_buy_equipment.jsp │ │ ├── lab │ │ │ ├── content-bak.jsp │ │ │ ├── content.jsp │ │ │ ├── header.jsp │ │ │ └── lab_info.jsp │ │ ├── login │ │ │ └── login.jsp │ │ ├── record │ │ │ ├── deleted_record.jsp │ │ │ └── request_buy_record.jsp │ │ └── user │ │ │ └── userInfo.jsp │ └── web.xml ├── index.jsp └── static │ ├── css │ ├── approvement │ │ └── request_buy_record_detail.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── equipment │ │ ├── equipment.css │ │ ├── request_buy_equipment.css │ │ └── table.css │ ├── images │ │ ├── add.svg │ │ ├── check-box-outline-blank.svg │ │ ├── check-box.svg │ │ ├── delete.svg │ │ ├── details.svg │ │ ├── error-c.png │ │ ├── error.png │ │ ├── h1.jpg │ │ ├── h2.jpg │ │ ├── h3.png │ │ ├── h4.png │ │ ├── h5.png │ │ ├── h6.png │ │ ├── lab_icon.png │ │ ├── operation.svg │ │ └── tyut.png │ ├── lab │ │ ├── content.css │ │ ├── header.css │ │ ├── lab_info.css │ │ ├── main.css │ │ └── user_message.css │ ├── login │ │ └── login.css │ └── record │ │ └── request_buy_record.css │ └── js │ ├── approvement │ ├── approve_buy_record.js │ └── approve_buy_record_detail.js │ ├── equipment │ ├── equipment.js │ └── request_buy_equipment.js │ ├── lab │ ├── content.js │ └── lab_info.js │ ├── lib │ ├── bootstrap.js │ ├── echarts.simple.min.js │ ├── jquery-3.3.1.min.js │ └── md5.js │ ├── login │ └── login.js │ ├── record │ └── buy-record.js │ └── user │ └── user_info.js ├── pom.xml ├── screenshot ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png └── src ├── app.properties ├── applicationContext.xml ├── log4j.properties ├── mybatis-config.xml ├── mysql.properties ├── springMVC-servlet.xml └── top └── yjzloveyzh ├── common ├── Constants.java ├── exception │ ├── EquipmentException.java │ ├── RecordException.java │ └── UserException.java ├── pojo │ ├── DeletedRecord.java │ ├── Equipment.java │ ├── Lab.java │ ├── LabEquipmentCount.java │ ├── LabPermission.java │ ├── Pagination.java │ ├── Permission.java │ ├── RequestBuyRecord.java │ ├── RequestEquipment.java │ ├── Role.java │ └── User.java └── utils │ ├── CookieUtil.java │ ├── MD5Util.java │ ├── PaginationUtil.java │ ├── PathUtil.java │ ├── PermissionUtil.java │ ├── PropertyUtil.java │ └── StringUtil.java ├── controller ├── ApprovementController.java ├── DeletedRecordController.java ├── EquipmentController.java ├── LabController.java ├── RecordController.java └── UserController.java ├── dao ├── DeletedRecordDao.java ├── EquipmentDao.java ├── LabDao.java ├── LabUserDao.java ├── MySqlSessionDaoSupport.java ├── RecordDao.java └── impl │ ├── DeletedRecordDaoImpl.java │ ├── EquipmentDaoImpl.java │ ├── LabDaoImpl.java │ ├── LabUserDaoImpl.java │ └── RecordDaoImpl.java ├── mapper ├── DeleteRecordMappper.xml ├── EquipmentMapper.xml ├── LabMapper.xml ├── RecordMapper.xml └── UserMapper.xml ├── services ├── DeletedRecordService.java ├── EquipmentService.java ├── LabService.java ├── RecordService.java ├── UserService.java └── impl │ ├── DeletedRecordServiceImpl.java │ ├── EquipmentServiceImpl.java │ ├── LabServiceImpl.java │ ├── RecordServiceImpl.java │ └── UserServiceImpl.java └── web └── filter ├── CharacterEncodingFilter.java └── SessionFilter.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/README.md -------------------------------------------------------------------------------- /SSM框架下的实验室管理系统.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/SSM框架下的实验室管理系统.docx -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/approvement/applied_buy_record.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/approvement/applied_buy_record.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/approvement/applied_buy_record_detail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/approvement/applied_buy_record_detail.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/approvement/approve_buy_record.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/approvement/approve_buy_record.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/approvement/approve_buy_record_detail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/approvement/approve_buy_record_detail.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/equipment/equipment.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/equipment/equipment.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/equipment/request_buy_equipment.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/equipment/request_buy_equipment.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/lab/content-bak.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/lab/content-bak.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/lab/content.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/lab/content.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/lab/header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/lab/header.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/lab/lab_info.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/lab/lab_info.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/login/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/login/login.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/record/deleted_record.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/record/deleted_record.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/record/request_buy_record.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/record/request_buy_record.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/user/userInfo.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/jsp/user/userInfo.jsp -------------------------------------------------------------------------------- /WebRoot/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/WEB-INF/web.xml -------------------------------------------------------------------------------- /WebRoot/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/index.jsp -------------------------------------------------------------------------------- /WebRoot/static/css/approvement/request_buy_record_detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/approvement/request_buy_record_detail.css -------------------------------------------------------------------------------- /WebRoot/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /WebRoot/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /WebRoot/static/css/equipment/equipment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/equipment/equipment.css -------------------------------------------------------------------------------- /WebRoot/static/css/equipment/request_buy_equipment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/equipment/request_buy_equipment.css -------------------------------------------------------------------------------- /WebRoot/static/css/equipment/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/equipment/table.css -------------------------------------------------------------------------------- /WebRoot/static/css/images/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/add.svg -------------------------------------------------------------------------------- /WebRoot/static/css/images/check-box-outline-blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/check-box-outline-blank.svg -------------------------------------------------------------------------------- /WebRoot/static/css/images/check-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/check-box.svg -------------------------------------------------------------------------------- /WebRoot/static/css/images/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/delete.svg -------------------------------------------------------------------------------- /WebRoot/static/css/images/details.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/details.svg -------------------------------------------------------------------------------- /WebRoot/static/css/images/error-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/error-c.png -------------------------------------------------------------------------------- /WebRoot/static/css/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/error.png -------------------------------------------------------------------------------- /WebRoot/static/css/images/h1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/h1.jpg -------------------------------------------------------------------------------- /WebRoot/static/css/images/h2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/h2.jpg -------------------------------------------------------------------------------- /WebRoot/static/css/images/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/h3.png -------------------------------------------------------------------------------- /WebRoot/static/css/images/h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/h4.png -------------------------------------------------------------------------------- /WebRoot/static/css/images/h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/h5.png -------------------------------------------------------------------------------- /WebRoot/static/css/images/h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/h6.png -------------------------------------------------------------------------------- /WebRoot/static/css/images/lab_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/lab_icon.png -------------------------------------------------------------------------------- /WebRoot/static/css/images/operation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/operation.svg -------------------------------------------------------------------------------- /WebRoot/static/css/images/tyut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/images/tyut.png -------------------------------------------------------------------------------- /WebRoot/static/css/lab/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/lab/content.css -------------------------------------------------------------------------------- /WebRoot/static/css/lab/header.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | 3 | -------------------------------------------------------------------------------- /WebRoot/static/css/lab/lab_info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/lab/lab_info.css -------------------------------------------------------------------------------- /WebRoot/static/css/lab/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/lab/main.css -------------------------------------------------------------------------------- /WebRoot/static/css/lab/user_message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/lab/user_message.css -------------------------------------------------------------------------------- /WebRoot/static/css/login/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/login/login.css -------------------------------------------------------------------------------- /WebRoot/static/css/record/request_buy_record.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/css/record/request_buy_record.css -------------------------------------------------------------------------------- /WebRoot/static/js/approvement/approve_buy_record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/approvement/approve_buy_record.js -------------------------------------------------------------------------------- /WebRoot/static/js/approvement/approve_buy_record_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/approvement/approve_buy_record_detail.js -------------------------------------------------------------------------------- /WebRoot/static/js/equipment/equipment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/equipment/equipment.js -------------------------------------------------------------------------------- /WebRoot/static/js/equipment/request_buy_equipment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/equipment/request_buy_equipment.js -------------------------------------------------------------------------------- /WebRoot/static/js/lab/content.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebRoot/static/js/lab/lab_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/lab/lab_info.js -------------------------------------------------------------------------------- /WebRoot/static/js/lib/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/lib/bootstrap.js -------------------------------------------------------------------------------- /WebRoot/static/js/lib/echarts.simple.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/lib/echarts.simple.min.js -------------------------------------------------------------------------------- /WebRoot/static/js/lib/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/lib/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /WebRoot/static/js/lib/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/lib/md5.js -------------------------------------------------------------------------------- /WebRoot/static/js/login/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/login/login.js -------------------------------------------------------------------------------- /WebRoot/static/js/record/buy-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/record/buy-record.js -------------------------------------------------------------------------------- /WebRoot/static/js/user/user_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/WebRoot/static/js/user/user_info.js -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/pom.xml -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/screenshot/6.png -------------------------------------------------------------------------------- /screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/screenshot/7.png -------------------------------------------------------------------------------- /screenshot/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/screenshot/8.png -------------------------------------------------------------------------------- /screenshot/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/screenshot/9.png -------------------------------------------------------------------------------- /src/app.properties: -------------------------------------------------------------------------------- 1 | request_buy_record_per_page_count=15 2 | pagination_choose_list=7 -------------------------------------------------------------------------------- /src/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/applicationContext.xml -------------------------------------------------------------------------------- /src/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/log4j.properties -------------------------------------------------------------------------------- /src/mybatis-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/mybatis-config.xml -------------------------------------------------------------------------------- /src/mysql.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/mysql.properties -------------------------------------------------------------------------------- /src/springMVC-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/springMVC-servlet.xml -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/Constants.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/exception/EquipmentException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/exception/EquipmentException.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/exception/RecordException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/exception/RecordException.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/exception/UserException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/exception/UserException.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/pojo/DeletedRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/pojo/DeletedRecord.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/pojo/Equipment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/pojo/Equipment.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/pojo/Lab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/pojo/Lab.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/pojo/LabEquipmentCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/pojo/LabEquipmentCount.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/pojo/LabPermission.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/pojo/LabPermission.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/pojo/Pagination.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/pojo/Pagination.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/pojo/Permission.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/pojo/Permission.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/pojo/RequestBuyRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/pojo/RequestBuyRecord.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/pojo/RequestEquipment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/pojo/RequestEquipment.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/pojo/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/pojo/Role.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/pojo/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/pojo/User.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/utils/CookieUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/utils/CookieUtil.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/utils/MD5Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/utils/MD5Util.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/utils/PaginationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/utils/PaginationUtil.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/utils/PathUtil.java: -------------------------------------------------------------------------------- 1 | package top.yjzloveyzh.common.utils; 2 | 3 | public class PathUtil { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/utils/PermissionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/utils/PermissionUtil.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/utils/PropertyUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/utils/PropertyUtil.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/common/utils/StringUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/common/utils/StringUtil.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/controller/ApprovementController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/controller/ApprovementController.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/controller/DeletedRecordController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/controller/DeletedRecordController.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/controller/EquipmentController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/controller/EquipmentController.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/controller/LabController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/controller/LabController.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/controller/RecordController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/controller/RecordController.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/controller/UserController.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/dao/DeletedRecordDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/dao/DeletedRecordDao.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/dao/EquipmentDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/dao/EquipmentDao.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/dao/LabDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/dao/LabDao.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/dao/LabUserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/dao/LabUserDao.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/dao/MySqlSessionDaoSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/dao/MySqlSessionDaoSupport.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/dao/RecordDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/dao/RecordDao.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/dao/impl/DeletedRecordDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/dao/impl/DeletedRecordDaoImpl.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/dao/impl/EquipmentDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/dao/impl/EquipmentDaoImpl.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/dao/impl/LabDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/dao/impl/LabDaoImpl.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/dao/impl/LabUserDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/dao/impl/LabUserDaoImpl.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/dao/impl/RecordDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/dao/impl/RecordDaoImpl.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/mapper/DeleteRecordMappper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/mapper/DeleteRecordMappper.xml -------------------------------------------------------------------------------- /src/top/yjzloveyzh/mapper/EquipmentMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/mapper/EquipmentMapper.xml -------------------------------------------------------------------------------- /src/top/yjzloveyzh/mapper/LabMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/mapper/LabMapper.xml -------------------------------------------------------------------------------- /src/top/yjzloveyzh/mapper/RecordMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/mapper/RecordMapper.xml -------------------------------------------------------------------------------- /src/top/yjzloveyzh/mapper/UserMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/mapper/UserMapper.xml -------------------------------------------------------------------------------- /src/top/yjzloveyzh/services/DeletedRecordService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/services/DeletedRecordService.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/services/EquipmentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/services/EquipmentService.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/services/LabService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/services/LabService.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/services/RecordService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/services/RecordService.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/services/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/services/UserService.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/services/impl/DeletedRecordServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/services/impl/DeletedRecordServiceImpl.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/services/impl/EquipmentServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/services/impl/EquipmentServiceImpl.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/services/impl/LabServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/services/impl/LabServiceImpl.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/services/impl/RecordServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/services/impl/RecordServiceImpl.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/services/impl/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/services/impl/UserServiceImpl.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/web/filter/CharacterEncodingFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/web/filter/CharacterEncodingFilter.java -------------------------------------------------------------------------------- /src/top/yjzloveyzh/web/filter/SessionFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No183LaboratoryIntelligentManagementSystem/HEAD/src/top/yjzloveyzh/web/filter/SessionFilter.java --------------------------------------------------------------------------------