├── .idea ├── $CACHE_FILE$ ├── .gitignore ├── DAQ-IoT-SpringBoot.iml ├── IoT-SpringBoot.iml ├── compiler.xml ├── encodings.xml ├── jarRepositories.xml ├── misc.xml ├── sqldialects.xml ├── uiDesigner.xml └── vcs.xml ├── IoT-SpringBoot.iml ├── README.md ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── my │ │ └── iot │ │ ├── IoTSpringBootApplication.java │ │ ├── config │ │ ├── ServerConfig.java │ │ ├── StringToDateConverter.java │ │ └── WebAppConfig.java │ │ ├── controller │ │ ├── DataController.java │ │ ├── FileController.java │ │ ├── GatewayController.java │ │ ├── GatewayExceptionController.java │ │ ├── HomeController.java │ │ ├── SensorClassifyController.java │ │ ├── SensorController.java │ │ ├── SensorExceptionController.java │ │ └── UserController.java │ │ ├── domain │ │ ├── Data.java │ │ ├── Gateway.java │ │ ├── GatewayException.java │ │ ├── PageBean.java │ │ ├── Result.java │ │ ├── Sensor.java │ │ ├── SensorClassify.java │ │ ├── SensorException.java │ │ └── User.java │ │ ├── interceptor │ │ └── LoginInterceptor.java │ │ ├── mapper │ │ ├── DataMapper.java │ │ ├── GatewayExceptionMapper.java │ │ ├── GatewayMapper.java │ │ ├── SensorClassifyMapper.java │ │ ├── SensorExceptionMapper.java │ │ ├── SensorMapper.java │ │ └── UserMapper.java │ │ ├── schedule │ │ └── AsyncTaskService.java │ │ ├── service │ │ ├── DataService.java │ │ ├── GatewayExceptionService.java │ │ ├── GatewayService.java │ │ ├── SensorClassifyService.java │ │ ├── SensorExceptionService.java │ │ ├── SensorService.java │ │ ├── UserService.java │ │ └── impl │ │ │ ├── DataServiceImpl.java │ │ │ ├── GatewayExceptionServiceImpl.java │ │ │ ├── GatewayServiceImpl.java │ │ │ ├── SensorClassifyServiceImpl.java │ │ │ ├── SensorExceptionServiceImpl.java │ │ │ ├── SensorServiceImpl.java │ │ │ └── UserServiceImpl.java │ │ └── util │ │ └── Md5Util.java └── resources │ ├── application.yml │ ├── iot.sql │ ├── static-old │ ├── html │ │ ├── changeBasicInfomation.html │ │ ├── changePassword.html │ │ ├── data_post.html │ │ ├── data_sensor.html │ │ ├── download.html │ │ ├── exception.html │ │ ├── gateway.html │ │ ├── login.html │ │ ├── network.html │ │ ├── regist.html │ │ ├── sensor.html │ │ └── sensor_classify.html │ ├── index.html │ └── js │ │ ├── dateformat.js │ │ ├── echarts.min.js │ │ └── jquery-3.4.1.min.js │ └── static │ ├── html │ ├── basicInformation.html │ ├── changePassword.html │ ├── data-post.html │ ├── data-sensor.html │ ├── download.html │ ├── exception.html │ ├── gateway.html │ ├── login.html │ ├── network.html │ ├── regist.html │ └── sensor.html │ ├── index.html │ └── js │ ├── dateformat.js │ └── echarts.min.js └── test └── java └── com └── my └── iot ├── BaseTest.java └── log └── LoggerTest.java /.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/DAQ-IoT-SpringBoot.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/.idea/DAQ-IoT-SpringBoot.iml -------------------------------------------------------------------------------- /.idea/IoT-SpringBoot.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/.idea/IoT-SpringBoot.iml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/sqldialects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/.idea/sqldialects.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /IoT-SpringBoot.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/IoT-SpringBoot.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/my/iot/IoTSpringBootApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/IoTSpringBootApplication.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/config/ServerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/config/ServerConfig.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/config/StringToDateConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/config/StringToDateConverter.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/config/WebAppConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/config/WebAppConfig.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/controller/DataController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/controller/DataController.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/controller/FileController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/controller/FileController.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/controller/GatewayController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/controller/GatewayController.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/controller/GatewayExceptionController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/controller/GatewayExceptionController.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/controller/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/controller/HomeController.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/controller/SensorClassifyController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/controller/SensorClassifyController.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/controller/SensorController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/controller/SensorController.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/controller/SensorExceptionController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/controller/SensorExceptionController.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/controller/UserController.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/domain/Data.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/domain/Data.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/domain/Gateway.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/domain/Gateway.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/domain/GatewayException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/domain/GatewayException.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/domain/PageBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/domain/PageBean.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/domain/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/domain/Result.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/domain/Sensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/domain/Sensor.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/domain/SensorClassify.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/domain/SensorClassify.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/domain/SensorException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/domain/SensorException.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/domain/User.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/interceptor/LoginInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/interceptor/LoginInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/mapper/DataMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/mapper/DataMapper.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/mapper/GatewayExceptionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/mapper/GatewayExceptionMapper.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/mapper/GatewayMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/mapper/GatewayMapper.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/mapper/SensorClassifyMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/mapper/SensorClassifyMapper.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/mapper/SensorExceptionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/mapper/SensorExceptionMapper.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/mapper/SensorMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/mapper/SensorMapper.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/mapper/UserMapper.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/schedule/AsyncTaskService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/schedule/AsyncTaskService.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/DataService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/DataService.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/GatewayExceptionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/GatewayExceptionService.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/GatewayService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/GatewayService.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/SensorClassifyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/SensorClassifyService.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/SensorExceptionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/SensorExceptionService.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/SensorService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/SensorService.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/UserService.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/impl/DataServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/impl/DataServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/impl/GatewayExceptionServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/impl/GatewayExceptionServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/impl/GatewayServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/impl/GatewayServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/impl/SensorClassifyServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/impl/SensorClassifyServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/impl/SensorExceptionServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/impl/SensorExceptionServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/impl/SensorServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/impl/SensorServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/service/impl/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/service/impl/UserServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/my/iot/util/Md5Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/java/com/my/iot/util/Md5Util.java -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/main/resources/iot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/iot.sql -------------------------------------------------------------------------------- /src/main/resources/static-old/html/changeBasicInfomation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/changeBasicInfomation.html -------------------------------------------------------------------------------- /src/main/resources/static-old/html/changePassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/changePassword.html -------------------------------------------------------------------------------- /src/main/resources/static-old/html/data_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/data_post.html -------------------------------------------------------------------------------- /src/main/resources/static-old/html/data_sensor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/data_sensor.html -------------------------------------------------------------------------------- /src/main/resources/static-old/html/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/download.html -------------------------------------------------------------------------------- /src/main/resources/static-old/html/exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/exception.html -------------------------------------------------------------------------------- /src/main/resources/static-old/html/gateway.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/gateway.html -------------------------------------------------------------------------------- /src/main/resources/static-old/html/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/login.html -------------------------------------------------------------------------------- /src/main/resources/static-old/html/network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/network.html -------------------------------------------------------------------------------- /src/main/resources/static-old/html/regist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/regist.html -------------------------------------------------------------------------------- /src/main/resources/static-old/html/sensor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/sensor.html -------------------------------------------------------------------------------- /src/main/resources/static-old/html/sensor_classify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/html/sensor_classify.html -------------------------------------------------------------------------------- /src/main/resources/static-old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/index.html -------------------------------------------------------------------------------- /src/main/resources/static-old/js/dateformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/js/dateformat.js -------------------------------------------------------------------------------- /src/main/resources/static-old/js/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/js/echarts.min.js -------------------------------------------------------------------------------- /src/main/resources/static-old/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static-old/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /src/main/resources/static/html/basicInformation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/html/basicInformation.html -------------------------------------------------------------------------------- /src/main/resources/static/html/changePassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/html/changePassword.html -------------------------------------------------------------------------------- /src/main/resources/static/html/data-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/html/data-post.html -------------------------------------------------------------------------------- /src/main/resources/static/html/data-sensor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/html/data-sensor.html -------------------------------------------------------------------------------- /src/main/resources/static/html/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/html/download.html -------------------------------------------------------------------------------- /src/main/resources/static/html/exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/html/exception.html -------------------------------------------------------------------------------- /src/main/resources/static/html/gateway.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/html/gateway.html -------------------------------------------------------------------------------- /src/main/resources/static/html/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/html/login.html -------------------------------------------------------------------------------- /src/main/resources/static/html/network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/html/network.html -------------------------------------------------------------------------------- /src/main/resources/static/html/regist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/html/regist.html -------------------------------------------------------------------------------- /src/main/resources/static/html/sensor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/html/sensor.html -------------------------------------------------------------------------------- /src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/index.html -------------------------------------------------------------------------------- /src/main/resources/static/js/dateformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/js/dateformat.js -------------------------------------------------------------------------------- /src/main/resources/static/js/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/main/resources/static/js/echarts.min.js -------------------------------------------------------------------------------- /src/test/java/com/my/iot/BaseTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/test/java/com/my/iot/BaseTest.java -------------------------------------------------------------------------------- /src/test/java/com/my/iot/log/LoggerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlaizhe/DAQ-IoT-SpringBoot/HEAD/src/test/java/com/my/iot/log/LoggerTest.java --------------------------------------------------------------------------------