嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 3 元微信扫码支付:3 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
水温极值可视化平台
.
├── express
│ ├── HELP.md
│ ├── express.iml
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom.xml
│ ├── src
│ │ ├── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ └── project
│ │ │ │ ├── BaseApplication.java
│ │ │ │ ├── config
│ │ │ │ │ ├── AdminInterceptor.java
│ │ │ │ │ ├── LoginConfig.java
│ │ │ │ │ └── MybatisPlusConfig.java
│ │ │ │ ├── controller
│ │ │ │ │ ├── LakeController.java
│ │ │ │ │ ├── LakeInfoController.java
│ │ │ │ │ ├── LifeController.java
│ │ │ │ │ ├── PersonController.java
│ │ │ │ │ └── UserController.java
│ │ │ │ ├── dto
│ │ │ │ │ ├── LakeDTO.java
│ │ │ │ │ ├── LakeInfoDTO.java
│ │ │ │ │ ├── LifeDTO.java
│ │ │ │ │ └── PersonDTO.java
│ │ │ │ ├── entity
│ │ │ │ │ ├── Lake.java
│ │ │ │ │ ├── LakeInfo.java
│ │ │ │ │ ├── Life.java
│ │ │ │ │ ├── Person.java
│ │ │ │ │ └── User.java
│ │ │ │ ├── enums
│ │ │ │ │ ├── IbaseEnum.java
│ │ │ │ │ ├── UserRole.java
│ │ │ │ │ └── UserStatusEnum.java
│ │ │ │ ├── mapper
│ │ │ │ │ ├── LakeInfoMapper.java
│ │ │ │ │ ├── LakeMapper.java
│ │ │ │ │ ├── LifeMapper.java
│ │ │ │ │ ├── PersonMapper.java
│ │ │ │ │ └── UserMapper.java
│ │ │ │ ├── service
│ │ │ │ │ ├── LakeInfoService.java
│ │ │ │ │ ├── LakeService.java
│ │ │ │ │ ├── LifeService.java
│ │ │ │ │ ├── PersonService.java
│ │ │ │ │ ├── UserService.java
│ │ │ │ │ └── impl
│ │ │ │ │ ├── LakeInfoServiceImpl.java
│ │ │ │ │ ├── LakeServiceImpl.java
│ │ │ │ │ ├── LifeServiceImpl.java
│ │ │ │ │ ├── PersonServiceImpl.java
│ │ │ │ │ └── UserServiceImpl.java
│ │ │ │ └── uitls
│ │ │ │ ├── ClassUtil.java
│ │ │ │ └── Constant.java
│ │ │ └── resources
│ │ │ ├── application.yml
│ │ │ ├── mapper
│ │ │ └── static
│ │ │ ├── html
│ │ │ │ ├── lake.html
│ │ │ │ ├── lake_info.html
│ │ │ │ ├── life.html
│ │ │ │ ├── main.html
│ │ │ │ ├── person.html
│ │ │ │ ├── user.html
│ │ │ │ ├── userEdit.html
│ │ │ │ ├── water.html
│ │ │ │ ├── water_air.html
│ │ │ │ ├── water_evaporation.html
│ │ │ │ ├── water_evaporation_d.html
│ │ │ │ ├── water_evaporation_x.html
│ │ │ │ ├── water_precipitation.html
│ │ │ │ ├── water_sunshine.html
│ │ │ │ └── water_temperature.html
│ │ │ ├── image
│ │ │ │ ├── express.sql
│ │ │ │ └── login.jpg
│ │ │ ├── index.html
│ │ │ └── lib
│ │ │ ├── echarts.js
│ │ │ ├── echarts.min.js
│ │ │ ├── jquery-3.4.1.js
│ │ │ ├── jquery.min.js
│ │ │ ├── judge.js
│ │ │ └── layui
│ │ │ ├── css
│ │ │ │ ├── layui.css
│ │ │ │ ├── layui.mobile.css
│ │ │ │ └── modules
│ │ │ │ ├── code.css
│ │ │ │ ├── dropdown.css
│ │ │ │ ├── laydate
│ │ │ │ │ └── default
│ │ │ │ │ └── laydate.css
│ │ │ │ └── layer
│ │ │ │ └── default
│ │ │ │ ├── icon-ext.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── layer.css
│ │ │ │ ├── loading-0.gif
│ │ │ │ ├── loading-1.gif
│ │ │ │ └── loading-2.gif
│ │ │ ├── font
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ ├── iconfont.woff
│ │ │ │ └── iconfont.woff2
│ │ │ ├── images
│ │ │ │ └── face
│ │ │ │ ├── 0.gif
│ │ │ │ ├── 1.gif
│ │ │ │ ├── 10.gif
│ │ │ │ ├── 11.gif
│ │ │ │ ├── 12.gif
│ │ │ │ ├── 13.gif
│ │ │ │ ├── 14.gif
│ │ │ │ ├── 15.gif
│ │ │ │ ├── 16.gif
│ │ │ │ ├── 17.gif
│ │ │ │ ├── 18.gif
│ │ │ │ ├── 19.gif
│ │ │ │ ├── 2.gif
│ │ │ │ ├── 20.gif
│ │ │ │ ├── 21.gif
│ │ │ │ ├── 22.gif
│ │ │ │ ├── 23.gif
│ │ │ │ ├── 24.gif
│ │ │ │ ├── 25.gif
│ │ │ │ ├── 26.gif
│ │ │ │ ├── 27.gif
│ │ │ │ ├── 28.gif
│ │ │ │ ├── 29.gif
│ │ │ │ ├── 3.gif
│ │ │ │ ├── 30.gif
│ │ │ │ ├── 31.gif
│ │ │ │ ├── 32.gif
│ │ │ │ ├── 33.gif
│ │ │ │ ├── 34.gif
│ │ │ │ ├── 35.gif
│ │ │ │ ├── 36.gif
│ │ │ │ ├── 37.gif
│ │ │ │ ├── 38.gif
│ │ │ │ ├── 39.gif
│ │ │ │ ├── 4.gif
│ │ │ │ ├── 40.gif
│ │ │ │ ├── 41.gif
│ │ │ │ ├── 42.gif
│ │ │ │ ├── 43.gif
│ │ │ │ ├── 44.gif
│ │ │ │ ├── 45.gif
│ │ │ │ ├── 46.gif
│ │ │ │ ├── 47.gif
│ │ │ │ ├── 48.gif
│ │ │ │ ├── 49.gif
│ │ │ │ ├── 5.gif
│ │ │ │ ├── 50.gif
│ │ │ │ ├── 51.gif
│ │ │ │ ├── 52.gif
│ │ │ │ ├── 53.gif
│ │ │ │ ├── 54.gif
│ │ │ │ ├── 55.gif
│ │ │ │ ├── 56.gif
│ │ │ │ ├── 57.gif
│ │ │ │ ├── 58.gif
│ │ │ │ ├── 59.gif
│ │ │ │ ├── 6.gif
│ │ │ │ ├── 60.gif
│ │ │ │ ├── 61.gif
│ │ │ │ ├── 62.gif
│ │ │ │ ├── 63.gif
│ │ │ │ ├── 64.gif
│ │ │ │ ├── 65.gif
│ │ │ │ ├── 66.gif
│ │ │ │ ├── 67.gif
│ │ │ │ ├── 68.gif
│ │ │ │ ├── 69.gif
│ │ │ │ ├── 7.gif
│ │ │ │ ├── 70.gif
│ │ │ │ ├── 71.gif
│ │ │ │ ├── 8.gif
│ │ │ │ └── 9.gif
│ │ │ ├── lay
│ │ │ │ └── modules
│ │ │ │ ├── carousel.js
│ │ │ │ ├── code.js
│ │ │ │ ├── colorpicker.js
│ │ │ │ ├── dropdown.js
│ │ │ │ ├── element.js
│ │ │ │ ├── flow.js
│ │ │ │ ├── form.js
│ │ │ │ ├── jquery.js
│ │ │ │ ├── laydate.js
│ │ │ │ ├── layedit.js
│ │ │ │ ├── layer.js
│ │ │ │ ├── laypage.js
│ │ │ │ ├── laytpl.js
│ │ │ │ ├── mobile.js
│ │ │ │ ├── rate.js
│ │ │ │ ├── slider.js
│ │ │ │ ├── table.js
│ │ │ │ ├── transfer.js
│ │ │ │ ├── tree.js
│ │ │ │ ├── upload.js
│ │ │ │ └── util.js
│ │ │ ├── layui.all.js
│ │ │ └── layui.js
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── project
│ │ └── BoothApplicationTests.java
│ └── target
│ ├── classes
│ │ ├── application.yml
│ │ ├── com
│ │ │ └── project
│ │ │ ├── BaseApplication.class
│ │ │ ├── config
│ │ │ │ ├── AdminInterceptor.class
│ │ │ │ ├── LoginConfig.class
│ │ │ │ └── MybatisPlusConfig.class
│ │ │ ├── controller
│ │ │ │ ├── LakeController.class
│ │ │ │ ├── LakeInfoController.class
│ │ │ │ ├── LifeController.class
│ │ │ │ ├── PersonController.class
│ │ │ │ └── UserController.class
│ │ │ ├── dto
│ │ │ │ ├── LakeDTO.class
│ │ │ │ ├── LakeInfoDTO.class
│ │ │ │ ├── LifeDTO.class
│ │ │ │ └── PersonDTO.class
│ │ │ ├── entity
│ │ │ │ ├── Lake.class
│ │ │ │ ├── LakeInfo.class
│ │ │ │ ├── Life.class
│ │ │ │ ├── Person.class
│ │ │ │ └── User.class
│ │ │ ├── enums
│ │ │ │ ├── IbaseEnum.class
│ │ │ │ ├── UserRole.class
│ │ │ │ └── UserStatusEnum.class
│ │ │ ├── mapper
│ │ │ │ ├── LakeInfoMapper.class
│ │ │ │ ├── LakeMapper.class
│ │ │ │ ├── LifeMapper.class
│ │ │ │ ├── PersonMapper.class
│ │ │ │ └── UserMapper.class
│ │ │ ├── service
│ │ │ │ ├── LakeInfoService.class
│ │ │ │ ├── LakeService.class
│ │ │ │ ├── LifeService.class
│ │ │ │ ├── PersonService.class
│ │ │ │ ├── UserService.class
│ │ │ │ └── impl
│ │ │ │ ├── LakeInfoServiceImpl.class
│ │ │ │ ├── LakeServiceImpl.class
│ │ │ │ ├── LifeServiceImpl.class
│ │ │ │ ├── PersonServiceImpl.class
│ │ │ │ └── UserServiceImpl.class
│ │ │ └── uitls
│ │ │ ├── ClassUtil.class
│ │ │ └── Constant.class
│ │ └── static
│ │ ├── html
│ │ │ ├── lake.html
│ │ │ ├── lake_info.html
│ │ │ ├── life.html
│ │ │ ├── main.html
│ │ │ ├── person.html
│ │ │ ├── user.html
│ │ │ ├── userEdit.html
│ │ │ ├── water.html
│ │ │ ├── water_air.html
│ │ │ ├── water_evaporation.html
│ │ │ ├── water_evaporation_d.html
│ │ │ ├── water_evaporation_x.html
│ │ │ ├── water_precipitation.html
│ │ │ ├── water_sunshine.html
│ │ │ └── water_temperature.html
│ │ ├── image
│ │ │ ├── express.sql
│ │ │ └── login.jpg
│ │ ├── index.html
│ │ └── lib
│ │ ├── echarts.js
│ │ ├── echarts.min.js
│ │ ├── jquery-3.4.1.js
│ │ ├── jquery.min.js
│ │ ├── judge.js
│ │ └── layui
│ │ ├── css
│ │ │ ├── layui.css
│ │ │ ├── layui.mobile.css
│ │ │ └── modules
│ │ │ ├── code.css
│ │ │ ├── dropdown.css
│ │ │ ├── laydate
│ │ │ │ └── default
│ │ │ │ └── laydate.css
│ │ │ └── layer
│ │ │ └── default
│ │ │ ├── icon-ext.png
│ │ │ ├── icon.png
│ │ │ ├── layer.css
│ │ │ ├── loading-0.gif
│ │ │ ├── loading-1.gif
│ │ │ └── loading-2.gif
│ │ ├── font
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ ├── iconfont.woff
│ │ │ └── iconfont.woff2
│ │ ├── images
│ │ │ └── face
│ │ │ ├── 0.gif
│ │ │ ├── 1.gif
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 2.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 3.gif
│ │ │ ├── 30.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 35.gif
│ │ │ ├── 36.gif
│ │ │ ├── 37.gif
│ │ │ ├── 38.gif
│ │ │ ├── 39.gif
│ │ │ ├── 4.gif
│ │ │ ├── 40.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 45.gif
│ │ │ ├── 46.gif
│ │ │ ├── 47.gif
│ │ │ ├── 48.gif
│ │ │ ├── 49.gif
│ │ │ ├── 5.gif
│ │ │ ├── 50.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 55.gif
│ │ │ ├── 56.gif
│ │ │ ├── 57.gif
│ │ │ ├── 58.gif
│ │ │ ├── 59.gif
│ │ │ ├── 6.gif
│ │ │ ├── 60.gif
│ │ │ ├── 61.gif
│ │ │ ├── 62.gif
│ │ │ ├── 63.gif
│ │ │ ├── 64.gif
│ │ │ ├── 65.gif
│ │ │ ├── 66.gif
│ │ │ ├── 67.gif
│ │ │ ├── 68.gif
│ │ │ ├── 69.gif
│ │ │ ├── 7.gif
│ │ │ ├── 70.gif
│ │ │ ├── 71.gif
│ │ │ ├── 8.gif
│ │ │ └── 9.gif
│ │ ├── lay
│ │ │ └── modules
│ │ │ ├── carousel.js
│ │ │ ├── code.js
│ │ │ ├── colorpicker.js
│ │ │ ├── dropdown.js
│ │ │ ├── element.js
│ │ │ ├── flow.js
│ │ │ ├── form.js
│ │ │ ├── jquery.js
│ │ │ ├── laydate.js
│ │ │ ├── layedit.js
│ │ │ ├── layer.js
│ │ │ ├── laypage.js
│ │ │ ├── laytpl.js
│ │ │ ├── mobile.js
│ │ │ ├── rate.js
│ │ │ ├── slider.js
│ │ │ ├── table.js
│ │ │ ├── transfer.js
│ │ │ ├── tree.js
│ │ │ ├── upload.js
│ │ │ └── util.js
│ │ ├── layui.all.js
│ │ └── layui.js
│ ├── generated-sources
│ │ └── annotations
│ ├── generated-test-sources
│ │ └── test-annotations
│ └── test-classes
│ └── com
│ └── project
│ ├── BoothApplicationTests$1.class
│ └── BoothApplicationTests.class
└── 水温极值可视化平台.zip
73 directories, 355 files