【实例简介】springboot企业固定资产管理系统(含数据库)
企业固定资产管理系统
【实例截图】
【核心代码】
.
├── springboot企业固定资产管理系统jcj07
│ └── springbootjcj07
│ ├── db
│ │ └── springbootjcj07.sql
│ ├── mvnw
│ ├── mvnw.cmd
│ ├── pom-war.xml
│ ├── pom.xml
│ ├── src
│ │ ├── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ ├── SpringbootSchemaApplication.java
│ │ │ │ ├── annotation
│ │ │ │ │ ├── APPLoginUser.java
│ │ │ │ │ ├── IgnoreAuth.java
│ │ │ │ │ └── LoginUser.java
│ │ │ │ ├── config
│ │ │ │ │ ├── AlipayConfig.java
│ │ │ │ │ ├── InterceptorConfig.java
│ │ │ │ │ └── MybatisPlusConfig.java
│ │ │ │ ├── controller
│ │ │ │ │ ├── CommonController.java
│ │ │ │ │ ├── ConfigController.java
│ │ │ │ │ ├── FileController.java
│ │ │ │ │ ├── UsersController.java
│ │ │ │ │ ├── YonghuController.java
│ │ │ │ │ ├── ZichanguihaiController.java
│ │ │ │ │ ├── ZichanleibieController.java
│ │ │ │ │ ├── ZichanlingyongController.java
│ │ │ │ │ └── ZichanxinxiController.java
│ │ │ │ ├── dao
│ │ │ │ │ ├── CommonDao.java
│ │ │ │ │ ├── ConfigDao.java
│ │ │ │ │ ├── TokenDao.java
│ │ │ │ │ ├── UsersDao.java
│ │ │ │ │ ├── YonghuDao.java
│ │ │ │ │ ├── ZichanguihaiDao.java
│ │ │ │ │ ├── ZichanleibieDao.java
│ │ │ │ │ ├── ZichanlingyongDao.java
│ │ │ │ │ └── ZichanxinxiDao.java
│ │ │ │ ├── entity
│ │ │ │ │ ├── ConfigEntity.java
│ │ │ │ │ ├── EIException.java
│ │ │ │ │ ├── TokenEntity.java
│ │ │ │ │ ├── UsersEntity.java
│ │ │ │ │ ├── YonghuEntity.java
│ │ │ │ │ ├── ZichanguihaiEntity.java
│ │ │ │ │ ├── ZichanleibieEntity.java
│ │ │ │ │ ├── ZichanlingyongEntity.java
│ │ │ │ │ ├── ZichanxinxiEntity.java
│ │ │ │ │ ├── model
│ │ │ │ │ │ ├── YonghuModel.java
│ │ │ │ │ │ ├── ZichanguihaiModel.java
│ │ │ │ │ │ ├── ZichanleibieModel.java
│ │ │ │ │ │ ├── ZichanlingyongModel.java
│ │ │ │ │ │ └── ZichanxinxiModel.java
│ │ │ │ │ ├── view
│ │ │ │ │ │ ├── YonghuView.java
│ │ │ │ │ │ ├── ZichanguihaiView.java
│ │ │ │ │ │ ├── ZichanleibieView.java
│ │ │ │ │ │ ├── ZichanlingyongView.java
│ │ │ │ │ │ └── ZichanxinxiView.java
│ │ │ │ │ └── vo
│ │ │ │ │ ├── YonghuVO.java
│ │ │ │ │ ├── ZichanguihaiVO.java
│ │ │ │ │ ├── ZichanleibieVO.java
│ │ │ │ │ ├── ZichanlingyongVO.java
│ │ │ │ │ └── ZichanxinxiVO.java
│ │ │ │ ├── interceptor
│ │ │ │ │ └── AuthorizationInterceptor.java
│ │ │ │ ├── service
│ │ │ │ │ ├── CommonService.java
│ │ │ │ │ ├── ConfigService.java
│ │ │ │ │ ├── TokenService.java
│ │ │ │ │ ├── UsersService.java
│ │ │ │ │ ├── YonghuService.java
│ │ │ │ │ ├── ZichanguihaiService.java
│ │ │ │ │ ├── ZichanleibieService.java
│ │ │ │ │ ├── ZichanlingyongService.java
│ │ │ │ │ ├── ZichanxinxiService.java
│ │ │ │ │ └── impl
│ │ │ │ │ ├── CommonServiceImpl.java
│ │ │ │ │ ├── ConfigServiceImpl.java
│ │ │ │ │ ├── TokenServiceImpl.java
│ │ │ │ │ ├── UsersServiceImpl.java
│ │ │ │ │ ├── YonghuServiceImpl.java
│ │ │ │ │ ├── ZichanguihaiServiceImpl.java
│ │ │ │ │ ├── ZichanleibieServiceImpl.java
│ │ │ │ │ ├── ZichanlingyongServiceImpl.java
│ │ │ │ │ └── ZichanxinxiServiceImpl.java
│ │ │ │ └── utils
│ │ │ │ ├── BaiduUtil.java
│ │ │ │ ├── CommonUtil.java
│ │ │ │ ├── FileUtil.java
│ │ │ │ ├── HttpClientUtils.java
│ │ │ │ ├── JQPageInfo.java
│ │ │ │ ├── MD5Util.java
│ │ │ │ ├── MPUtil.java
│ │ │ │ ├── PageUtils.java
│ │ │ │ ├── Query.java
│ │ │ │ ├── R.java
│ │ │ │ ├── SQLFilter.java
│ │ │ │ ├── SpringContextUtils.java
│ │ │ │ └── ValidatorUtils.java
│ │ │ └── resources
│ │ │ ├── admin
│ │ │ │ └── admin
│ │ │ │ ├── 1-install.bat
│ │ │ │ ├── 2-run.bat
│ │ │ │ ├── 3-build.bat
│ │ │ │ ├── babel.config.js
│ │ │ │ ├── public
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── verifys
│ │ │ │ │ ├── jquery-3.4.1.min.js
│ │ │ │ │ ├── verify.js
│ │ │ │ │ └── yz.js
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── canvas-bg-1.css
│ │ │ │ │ │ │ ├── canvas-bg-2.css
│ │ │ │ │ │ │ ├── canvas-bg-3.css
│ │ │ │ │ │ │ ├── canvas-bg-4.css
│ │ │ │ │ │ │ ├── canvas-bg-5.css
│ │ │ │ │ │ │ ├── element-variables.scss
│ │ │ │ │ │ │ └── style.scss
│ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ ├── 404.png
│ │ │ │ │ │ │ ├── QRcode.png
│ │ │ │ │ │ │ ├── avator.png
│ │ │ │ │ │ │ ├── bg.jpg
│ │ │ │ │ │ │ ├── captcha.jpg
│ │ │ │ │ │ │ ├── jiahao.png
│ │ │ │ │ │ │ ├── login.png
│ │ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ │ ├── password.png
│ │ │ │ │ │ │ ├── role.png
│ │ │ │ │ │ │ ├── test
│ │ │ │ │ │ │ │ ├── jianshe.png
│ │ │ │ │ │ │ │ ├── jiaotong.png
│ │ │ │ │ │ │ │ ├── nongye.png
│ │ │ │ │ │ │ │ ├── weixin.png
│ │ │ │ │ │ │ │ ├── zhifubao.png
│ │ │ │ │ │ │ │ └── zhongguo.png
│ │ │ │ │ │ │ └── username.png
│ │ │ │ │ │ └── js
│ │ │ │ │ │ ├── canvas-bg-1.js
│ │ │ │ │ │ ├── canvas-bg-2.js
│ │ │ │ │ │ ├── canvas-bg-3.js
│ │ │ │ │ │ ├── canvas-bg-4.js
│ │ │ │ │ │ └── canvas-bg-5.js
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── SvgIcon
│ │ │ │ │ │ │ └── index.vue
│ │ │ │ │ │ ├── common
│ │ │ │ │ │ │ ├── BreadCrumbs.vue
│ │ │ │ │ │ │ ├── BreadCrumbs.vue.bak
│ │ │ │ │ │ │ ├── Editor.vue
│ │ │ │ │ │ │ ├── ExcelFileUpload.vue
│ │ │ │ │ │ │ ├── FileUpload.vue
│ │ │ │ │ │ │ └── img.vue
│ │ │ │ │ │ ├── home
│ │ │ │ │ │ │ ├── HomeCard.vue
│ │ │ │ │ │ │ ├── HomeChart.vue
│ │ │ │ │ │ │ ├── HomeComment.vue
│ │ │ │ │ │ │ └── HomeProgress.vue
│ │ │ │ │ │ └── index
│ │ │ │ │ │ ├── IndexAside.vue
│ │ │ │ │ │ ├── IndexAsideStatic.vue
│ │ │ │ │ │ ├── IndexAsideStatic.vue.bak
│ │ │ │ │ │ ├── IndexAsideSub.vue
│ │ │ │ │ │ ├── IndexHeader.vue
│ │ │ │ │ │ ├── IndexHeader.vue.bak
│ │ │ │ │ │ ├── IndexMain.vue
│ │ │ │ │ │ └── IndexMain.vue.bak
│ │ │ │ │ ├── icons
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── svg
│ │ │ │ │ │ │ ├── 404.svg
│ │ │ │ │ │ │ ├── articleEdit.svg
│ │ │ │ │ │ │ ├── banner.svg
│ │ │ │ │ │ │ ├── bug.svg
│ │ │ │ │ │ │ ├── build.svg
│ │ │ │ │ │ │ ├── cfg.svg
│ │ │ │ │ │ │ ├── channel.svg
│ │ │ │ │ │ │ ├── chart.svg
│ │ │ │ │ │ │ ├── clipboard.svg
│ │ │ │ │ │ │ ├── code.svg
│ │ │ │ │ │ │ ├── component.svg
│ │ │ │ │ │ │ ├── contacts.svg
│ │ │ │ │ │ │ ├── dashboard.svg
│ │ │ │ │ │ │ ├── date.svg
│ │ │ │ │ │ │ ├── dept.svg
│ │ │ │ │ │ │ ├── dict.svg
│ │ │ │ │ │ │ ├── documentation.svg
│ │ │ │ │ │ │ ├── download.svg
│ │ │ │ │ │ │ ├── drag.svg
│ │ │ │ │ │ │ ├── druid.svg
│ │ │ │ │ │ │ ├── edit.svg
│ │ │ │ │ │ │ ├── education.svg
│ │ │ │ │ │ │ ├── email.svg
│ │ │ │ │ │ │ ├── excel.svg
│ │ │ │ │ │ │ ├── exit-fullscreen.svg
│ │ │ │ │ │ │ ├── eye-open.svg
│ │ │ │ │ │ │ ├── file.svg
│ │ │ │ │ │ │ ├── form.svg
│ │ │ │ │ │ │ ├── fullscreen.svg
│ │ │ │ │ │ │ ├── icon.svg
│ │ │ │ │ │ │ ├── international.svg
│ │ │ │ │ │ │ ├── job.svg
│ │ │ │ │ │ │ ├── language.svg
│ │ │ │ │ │ │ ├── link.svg
│ │ │ │ │ │ │ ├── list.svg
│ │ │ │ │ │ │ ├── lock.svg
│ │ │ │ │ │ │ ├── log.svg
│ │ │ │ │ │ │ ├── logininfor.svg
│ │ │ │ │ │ │ ├── menu.svg
│ │ │ │ │ │ │ ├── message.svg
│ │ │ │ │ │ │ ├── money.svg
│ │ │ │ │ │ │ ├── monitor.svg
│ │ │ │ │ │ │ ├── nested.svg
│ │ │ │ │ │ │ ├── nested0.svg
│ │ │ │ │ │ │ ├── online.svg
│ │ │ │ │ │ │ ├── operation.svg
│ │ │ │ │ │ │ ├── password.svg
│ │ │ │ │ │ │ ├── password0.svg
│ │ │ │ │ │ │ ├── pdf.svg
│ │ │ │ │ │ │ ├── people.svg
│ │ │ │ │ │ │ ├── peoples.svg
│ │ │ │ │ │ │ ├── phone.svg
│ │ │ │ │ │ │ ├── post.svg
│ │ │ │ │ │ │ ├── qq.svg
│ │ │ │ │ │ │ ├── search.svg
│ │ │ │ │ │ │ ├── sender.svg
│ │ │ │ │ │ │ ├── server.svg
│ │ │ │ │ │ │ ├── shopping.svg
│ │ │ │ │ │ │ ├── shoppingCard.svg
│ │ │ │ │ │ │ ├── size.svg
│ │ │ │ │ │ │ ├── skill.svg
│ │ │ │ │ │ │ ├── star.svg
│ │ │ │ │ │ │ ├── svg
│ │ │ │ │ │ │ │ ├── AI.svg
│ │ │ │ │ │ │ │ ├── AIDeviceLayout.svg
│ │ │ │ │ │ │ │ ├── EIM.svg
│ │ │ │ │ │ │ │ ├── VIP.svg
│ │ │ │ │ │ │ │ ├── agricultureRegister.svg
│ │ │ │ │ │ │ │ ├── area.svg
│ │ │ │ │ │ │ │ ├── base.svg
│ │ │ │ │ │ │ │ ├── batch.svg
│ │ │ │ │ │ │ │ ├── board.svg
│ │ │ │ │ │ │ │ ├── board1.svg
│ │ │ │ │ │ │ │ ├── boardConfig.svg
│ │ │ │ │ │ │ │ ├── cfg.svg
│ │ │ │ │ │ │ │ ├── code.svg
│ │ │ │ │ │ │ │ ├── company.svg
│ │ │ │ │ │ │ │ ├── crop.svg
│ │ │ │ │ │ │ │ ├── crops.svg
│ │ │ │ │ │ │ │ ├── dashboard.svg
│ │ │ │ │ │ │ │ ├── dataAbnormal.svg
│ │ │ │ │ │ │ │ ├── dataLack.svg
│ │ │ │ │ │ │ │ ├── dept.svg
│ │ │ │ │ │ │ │ ├── device.svg
│ │ │ │ │ │ │ │ ├── deviceMonitorData.svg
│ │ │ │ │ │ │ │ ├── dict.svg
│ │ │ │ │ │ │ │ ├── diseasesinsect.svg
│ │ │ │ │ │ │ │ ├── diseasesinsects.svg
│ │ │ │ │ │ │ │ ├── documentation.svg
│ │ │ │ │ │ │ │ ├── email.svg
│ │ │ │ │ │ │ │ ├── environmental.svg
│ │ │ │ │ │ │ │ ├── eye-open.svg
│ │ │ │ │ │ │ │ ├── farmingProject.svg
│ │ │ │ │ │ │ │ ├── finance.svg
│ │ │ │ │ │ │ │ ├── financeBudget.svg
│ │ │ │ │ │ │ │ ├── financeReality.svg
│ │ │ │ │ │ │ │ ├── firm.svg
│ │ │ │ │ │ │ │ ├── firms.svg
│ │ │ │ │ │ │ │ ├── harvestBatch.svg
│ │ │ │ │ │ │ │ ├── harvestDetection.svg
│ │ │ │ │ │ │ │ ├── harvestManage.svg
│ │ │ │ │ │ │ │ ├── harvestWorks.svg
│ │ │ │ │ │ │ │ ├── heavyMetalDetection.svg
│ │ │ │ │ │ │ │ ├── home.svg
│ │ │ │ │ │ │ │ ├── inspection.svg
│ │ │ │ │ │ │ │ ├── internet.svg
│ │ │ │ │ │ │ │ ├── internetActive.svg
│ │ │ │ │ │ │ │ ├── log.svg
│ │ │ │ │ │ │ │ ├── mainSystem.svg
│ │ │ │ │ │ │ │ ├── mainSystemActive.svg
│ │ │ │ │ │ │ │ ├── menu.svg
│ │ │ │ │ │ │ │ ├── monitorEquipment.svg
│ │ │ │ │ │ │ │ ├── news.svg
│ │ │ │ │ │ │ │ ├── order.svg
│ │ │ │ │ │ │ │ ├── password.svg
│ │ │ │ │ │ │ │ ├── peoples.svg
│ │ │ │ │ │ │ │ ├── pest.svg
│ │ │ │ │ │ │ │ ├── pestActive.svg
│ │ │ │ │ │ │ │ ├── pesticideResidue.svg
│ │ │ │ │ │ │ │ ├── pests.svg
│ │ │ │ │ │ │ │ ├── phone.svg
│ │ │ │ │ │ │ │ ├── plant.svg
│ │ │ │ │ │ │ │ ├── plants.svg
│ │ │ │ │ │ │ │ ├── plantsActive.svg
│ │ │ │ │ │ │ │ ├── residual.svg
│ │ │ │ │ │ │ │ ├── retroactiveCoding.svg
│ │ │ │ │ │ │ │ ├── scheme.svg
│ │ │ │ │ │ │ │ ├── source.svg
│ │ │ │ │ │ │ │ ├── sourceActive.svg
│ │ │ │ │ │ │ │ ├── system.svg
│ │ │ │ │ │ │ │ ├── task.svg
│ │ │ │ │ │ │ │ ├── tempFarm.svg
│ │ │ │ │ │ │ │ ├── traceability.svg
│ │ │ │ │ │ │ │ ├── traceabilityList.svg
│ │ │ │ │ │ │ │ ├── traceabilityStyle.svg
│ │ │ │ │ │ │ │ ├── user.svg
│ │ │ │ │ │ │ │ ├── user0.svg
│ │ │ │ │ │ │ │ ├── validCode.svg
│ │ │ │ │ │ │ │ ├── video.svg
│ │ │ │ │ │ │ │ ├── videoEquipment.svg
│ │ │ │ │ │ │ │ ├── videoKey.svg
│ │ │ │ │ │ │ │ ├── vipCustomized.svg
│ │ │ │ │ │ │ │ ├── warnings.svg
│ │ │ │ │ │ │ │ └── workOrder.svg
│ │ │ │ │ │ │ ├── swagger.svg
│ │ │ │ │ │ │ ├── system.svg
│ │ │ │ │ │ │ ├── tab.svg
│ │ │ │ │ │ │ ├── table.svg
│ │ │ │ │ │ │ ├── table0.svg
│ │ │ │ │ │ │ ├── task.svg
│ │ │ │ │ │ │ ├── template.svg
│ │ │ │ │ │ │ ├── theme.svg
│ │ │ │ │ │ │ ├── tool.svg
│ │ │ │ │ │ │ ├── tree-table.svg
│ │ │ │ │ │ │ ├── tree.svg
│ │ │ │ │ │ │ ├── user.svg
│ │ │ │ │ │ │ ├── user0.svg
│ │ │ │ │ │ │ ├── validCode.svg
│ │ │ │ │ │ │ ├── wechat.svg
│ │ │ │ │ │ │ └── zip.svg
│ │ │ │ │ │ └── svgo.yml
│ │ │ │ │ ├── main.js
│ │ │ │ │ ├── main.js.bak
│ │ │ │ │ ├── router
│ │ │ │ │ │ └── router-static.js
│ │ │ │ │ ├── store
│ │ │ │ │ │ └── store.js
│ │ │ │ │ ├── utils
│ │ │ │ │ │ ├── api.js
│ │ │ │ │ │ ├── base.js
│ │ │ │ │ │ ├── http.js
│ │ │ │ │ │ ├── i18n.js
│ │ │ │ │ │ ├── menu.js
│ │ │ │ │ │ ├── storage.js
│ │ │ │ │ │ ├── utils.js
│ │ │ │ │ │ └── validate.js
│ │ │ │ │ └── views
│ │ │ │ │ ├── 404.vue
│ │ │ │ │ ├── board.vue
│ │ │ │ │ ├── center.vue
│ │ │ │ │ ├── home.vue
│ │ │ │ │ ├── index.vue
│ │ │ │ │ ├── login.vue
│ │ │ │ │ ├── pay.vue
│ │ │ │ │ ├── register.vue
│ │ │ │ │ ├── update-password.vue
│ │ │ │ │ └── update-password.vue.bak
│ │ │ │ └── vue.config.js
│ │ │ ├── application.yml
│ │ │ ├── mapper
│ │ │ │ ├── CommonDao.xml
│ │ │ │ ├── ConfigDao.xml
│ │ │ │ ├── TokenDao.xml
│ │ │ │ ├── UsersDao.xml
│ │ │ │ ├── YonghuDao.xml
│ │ │ │ ├── ZichanguihaiDao.xml
│ │ │ │ ├── ZichanleibieDao.xml
│ │ │ │ ├── ZichanlingyongDao.xml
│ │ │ │ └── ZichanxinxiDao.xml
│ │ │ └── static
│ │ │ └── upload
│ │ │ ├── 1577351717989.jpg
│ │ │ ├── test
│ │ │ ├── yonghu_touxiang1.jpg
│ │ │ ├── yonghu_touxiang2.jpg
│ │ │ ├── yonghu_touxiang3.jpg
│ │ │ ├── yonghu_touxiang4.jpg
│ │ │ ├── yonghu_touxiang5.jpg
│ │ │ ├── yonghu_touxiang6.jpg
│ │ │ ├── yonghu_touxiang7.jpg
│ │ │ └── yonghu_touxiang8.jpg
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── SpringbootSchemaApplicationTests.java
│ └── target
└── 5t6t网_springboot企业固定资产管理系统.zip
49 directories, 350 files
评论