实例介绍
基于springboot的oa自动化办公系统。数据库使用的是mysql5.7,开发工具使用的是idea2019.3,文件中包含了源码和数据库,打开即可使用,很使用用来学习或者当毕业设计
【实例截图】
【核心代码】
4744300845386999426.zip
├── 数据库
│ └── oa.sql
└── 程序
├── oa
│ ├── log
│ │ ├── my.log
│ │ └── my.log.2020-10-20.0.gz
│ ├── LOG_PATH_IS_UNDEFINED
│ │ └── sys
│ │ ├── info
│ │ │ ├── sys_log-info-2020-10-22.0.log
│ │ │ ├── sys_log-info-2020-10-24.0.log
│ │ │ └── sys_log-info-2020-11-03.0.log
│ │ ├── sys_log_debug.log
│ │ ├── sys_log_error.log
│ │ ├── sys_log_info.log
│ │ ├── sys_log_warn.log
│ │ └── warn
│ │ ├── sys_log-warn-2020-10-22.0.log
│ │ ├── sys_log-warn-2020-10-24.0.log
│ │ └── sys_log-warn-2020-11-03.0.log
│ ├── oa.iml
│ ├── oalog
│ │ ├── error.log
│ │ ├── info.log
│ │ ├── test.log
│ │ └── warn.log
│ ├── pom.xml
│ ├── src
│ │ └── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ ├── Application.java
│ │ │ ├── common
│ │ │ │ ├── config
│ │ │ │ │ ├── MyInterceptorConfig.java
│ │ │ │ │ ├── MyInterceptor.java
│ │ │ │ │ ├── SwaggerConfig.java
│ │ │ │ │ └── WebMvcConfig.java
│ │ │ │ ├── ResultCode.java
│ │ │ │ └── Result.java
│ │ │ ├── controller
│ │ │ │ ├── AccountController.java
│ │ │ │ ├── AdminInfoController.java
│ │ │ │ ├── AdvertiserInfoController.java
│ │ │ │ ├── ArchivesInfoController.java
│ │ │ │ ├── DeleteboxInfoController.java
│ │ │ │ ├── DraftboxInfoController.java
│ │ │ │ ├── EchartsController.java
│ │ │ │ ├── EmailInfoController.java
│ │ │ │ ├── EmployeesInfoController.java
│ │ │ │ ├── InboxInfoController.java
│ │ │ │ ├── LinkInfoController.java
│ │ │ │ ├── MenuController.java
│ │ │ │ ├── MessageInfoController.java
│ │ │ │ ├── NxSystemFileController.java
│ │ │ │ ├── OutboxInfoController.java
│ │ │ │ ├── RichtextInfoController.java
│ │ │ │ └── SignInfoController.java
│ │ │ ├── dao
│ │ │ │ ├── AdminInfoDao.java
│ │ │ │ ├── AdvertiserInfoDao.java
│ │ │ │ ├── ArchivesInfoDao.java
│ │ │ │ ├── DeleteboxInfoDao.java
│ │ │ │ ├── DraftboxInfoDao.java
│ │ │ │ ├── EmailInfoDao.java
│ │ │ │ ├── EmployeesInfoDao.java
│ │ │ │ ├── InboxInfoDao.java
│ │ │ │ ├── LinkInfoDao.java
│ │ │ │ ├── MessageInfoDao.java
│ │ │ │ ├── NxSystemFileInfoDao.java
│ │ │ │ ├── OutboxInfoDao.java
│ │ │ │ ├── RichtextInfoDao.java
│ │ │ │ └── SignInfoMapper.java
│ │ │ ├── entity
│ │ │ │ ├── Account.java
│ │ │ │ ├── AdminInfo.java
│ │ │ │ ├── AdvertiserInfo.java
│ │ │ │ ├── ArchivesInfo.java
│ │ │ │ ├── AuthorityInfo.java
│ │ │ │ ├── DeleteboxInfo.java
│ │ │ │ ├── DraftboxInfo.java
│ │ │ │ ├── EmailInfo.java
│ │ │ │ ├── EmployeesInfo.java
│ │ │ │ ├── InboxInfo.java
│ │ │ │ ├── LinkInfo.java
│ │ │ │ ├── MessageInfo.java
│ │ │ │ ├── NxSystemFileInfo.java
│ │ │ │ ├── OutboxInfo.java
│ │ │ │ ├── RichtextInfo.java
│ │ │ │ └── SignInfo.java
│ │ │ ├── exception
│ │ │ │ ├── CustomException.java
│ │ │ │ └── GlobalExceptionHandler.java
│ │ │ ├── service
│ │ │ │ ├── AdminInfoService.java
│ │ │ │ ├── AdvertiserInfoService.java
│ │ │ │ ├── ArchivesInfoService.java
│ │ │ │ ├── DeleteboxInfoService.java
│ │ │ │ ├── DraftboxInfoService.java
│ │ │ │ ├── EmailInfoService.java
│ │ │ │ ├── EmployeesInfoService.java
│ │ │ │ ├── InboxInfoService.java
│ │ │ │ ├── LinkInfoService.java
│ │ │ │ ├── MessageInfoService.java
│ │ │ │ ├── NxSystemFileInfoService.java
│ │ │ │ ├── OutboxInfoService.java
│ │ │ │ ├── RichtextInfoService.java
│ │ │ │ ├── SignInfoServiceImpl.java
│ │ │ │ └── SignInfoService.java
│ │ │ └── vo
│ │ │ ├── AdminInfoVo.java
│ │ │ ├── AdvertiserInfoVo.java
│ │ │ ├── ArchivesInfoVo.java
│ │ │ ├── DeleteboxInfoVo.java
│ │ │ ├── DraftboxInfoVo.java
│ │ │ ├── EchartsData.java
│ │ │ ├── EmailInfoVo.java
│ │ │ ├── EmployeesInfoVo.java
│ │ │ ├── InboxInfoVo.java
│ │ │ ├── LinkInfoVo.java
│ │ │ ├── MessageInfoVo.java
│ │ │ ├── OutboxInfoVo.java
│ │ │ ├── RichtextInfoVo.java
│ │ │ └── SignInfoVo.java
│ │ └── resources
│ │ ├── application.yml
│ │ ├── log4j2-spring.xml
│ │ ├── logback-spring.xml
│ │ ├── mapper
│ │ │ ├── AdminInfoMapper.xml
│ │ │ ├── AdvertiserInfoMapper.xml
│ │ │ ├── ArchivesInfoMapper.xml
│ │ │ ├── DeleteboxInfoMapper.xml
│ │ │ ├── DraftboxInfoMapper.xml
│ │ │ ├── EmailInfoMapper.xml
│ │ │ ├── EmployeesInfoMapper.xml
│ │ │ ├── InboxInfoMapper.xml
│ │ │ ├── LinkInfoMapper.xml
│ │ │ ├── MessageInfoMapper.xml
│ │ │ ├── NxSystemFileInfoMapper.xml
│ │ │ ├── OutboxInfoMapper.xml
│ │ │ ├── RichtextInfoMapper.xml
│ │ │ └── SignInfoMapper.xml
│ │ └── static
│ │ ├── end
│ │ │ ├── css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── common.css
│ │ │ │ ├── element
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── element-icons.ttf
│ │ │ │ │ │ └── element-icons.woff
│ │ │ │ │ └── index.css
│ │ │ │ ├── font-awesome.css
│ │ │ │ ├── my.css
│ │ │ │ ├── nav.css
│ │ │ │ └── quill.snow.css
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ ├── img
│ │ │ │ └── head.jpg
│ │ │ ├── js
│ │ │ │ ├── bootstrap-fileupload.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── echarts.min.js
│ │ │ │ ├── element
│ │ │ │ │ └── index.js
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ ├── my.js
│ │ │ │ ├── nav.js
│ │ │ │ ├── quill.js
│ │ │ │ └── vue2.6.11
│ │ │ │ ├── axios.js
│ │ │ │ └── vue.min.js
│ │ │ └── page
│ │ │ ├── accountAdminInfo.html
│ │ │ ├── accountEmployeesInfo.html
│ │ │ ├── adminInfo.html
│ │ │ ├── advertiserInfo.html
│ │ │ ├── archivesInfo.html
│ │ │ ├── deleteboxInfo.html
│ │ │ ├── draftboxInfo.html
│ │ │ ├── emailInfo.html
│ │ │ ├── employeesInfo.html
│ │ │ ├── inboxInfo.html
│ │ │ ├── index.html
│ │ │ ├── linkInfo.html
│ │ │ ├── login.html
│ │ │ ├── messageInfo.html
│ │ │ ├── outboxInfo.html
│ │ │ ├── register.html
│ │ │ ├── richtextInfo.html
│ │ │ └── updatePassword.html
│ │ ├── file
│ │ │ ├── ad021603268543070.png
│ │ │ ├── arrow-next1603251418834.png
│ │ │ ├── arrow_up1603251147228.png
│ │ │ ├── banner21603251110306.jpg
│ │ │ ├── feature-pic41603268259011.jpg
│ │ │ ├── file-info
│ │ │ ├── linkedin1603269049231.png
│ │ │ ├── t013bb341bc47092044.webp1603197451947.jpg
│ │ │ ├── t017a743cf6a0bde0581603193067784.png
│ │ │ └── t01d46ab215b8f2c970.webp1603196902865.jpg
│ │ └── front
│ │ ├── advertiserInfo.html
│ │ ├── archivesInfoDetail.html
│ │ ├── archivesInfo.html
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── font-awesome.css
│ │ │ ├── index.css
│ │ │ ├── my.css
│ │ │ ├── nav.css
│ │ │ ├── notice.css
│ │ │ └── swiper-5.4.5
│ │ │ └── swiper.min.css
│ │ ├── deleteboxInfoDetail.html
│ │ ├── deleteboxInfo.html
│ │ ├── draftboxInfoDetail.html
│ │ ├── draftboxInfo.html
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── img
│ │ │ ├── carousel
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── 4.jpg
│ │ │ │ ├── 6.jpg
│ │ │ │ ├── 7.jpg
│ │ │ │ ├── 8.jpg
│ │ │ │ ├── 9.jpg
│ │ │ │ ├── a.jpg
│ │ │ │ ├── b.jpg
│ │ │ │ ├── c.jpg
│ │ │ │ ├── d.jpg
│ │ │ │ ├── f.jpg
│ │ │ │ ├── new-pic4.jpg
│ │ │ │ ├── n.jpg
│ │ │ │ ├── pic1.jpg
│ │ │ │ ├── t013bb341bc47092044.webp.jpg
│ │ │ │ ├── t016ba778ef42a36f6f.webp.jpg
│ │ │ │ └── t017a743cf6a0bde058.jpg
│ │ │ ├── file.jpg
│ │ │ ├── goods
│ │ │ │ └── default.png
│ │ │ ├── logo.png
│ │ │ └── mali.png
│ │ ├── inboxInfoDetail.html
│ │ ├── inboxInfo.html
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── jquery-1.10.2.js
│ │ │ ├── jquery.metisMenu.js
│ │ │ ├── swiper-5.4.5
│ │ │ │ └── swiper.min.js
│ │ │ └── vue2.6.11
│ │ │ ├── axios.js
│ │ │ └── vue.min.js
│ │ ├── messageInfo.html
│ │ ├── outboxInfoDetail.html
│ │ ├── outboxInfo.html
│ │ ├── richtextInfoDetail.html
│ │ └── richtextInfo.html
│ └── target
│ ├── classes
│ │ ├── application.yml
│ │ ├── com
│ │ │ └── example
│ │ │ ├── Application.class
│ │ │ ├── common
│ │ │ │ ├── config
│ │ │ │ │ ├── MyInterceptor.class
│ │ │ │ │ ├── MyInterceptorConfig.class
│ │ │ │ │ ├── SwaggerConfig.class
│ │ │ │ │ └── WebMvcConfig.class
│ │ │ │ ├── Result.class
│ │ │ │ └── ResultCode.class
│ │ │ ├── controller
│ │ │ │ ├── AccountController.class
│ │ │ │ ├── AdminInfoController.class
│ │ │ │ ├── AdvertiserInfoController.class
│ │ │ │ ├── ArchivesInfoController.class
│ │ │ │ ├── DeleteboxInfoController.class
│ │ │ │ ├── DraftboxInfoController.class
│ │ │ │ ├── EchartsController.class
│ │ │ │ ├── EmailInfoController.class
│ │ │ │ ├── EmployeesInfoController.class
│ │ │ │ ├── InboxInfoController.class
│ │ │ │ ├── LinkInfoController.class
│ │ │ │ ├── MenuController.class
│ │ │ │ ├── MessageInfoController.class
│ │ │ │ ├── NxSystemFileController.class
│ │ │ │ ├── OutboxInfoController.class
│ │ │ │ ├── RichtextInfoController.class
│ │ │ │ └── SignInfoController.class
│ │ │ ├── dao
│ │ │ │ ├── AdminInfoDao.class
│ │ │ │ ├── AdvertiserInfoDao.class
│ │ │ │ ├── ArchivesInfoDao.class
│ │ │ │ ├── DeleteboxInfoDao.class
│ │ │ │ ├── DraftboxInfoDao.class
│ │ │ │ ├── EmailInfoDao.class
│ │ │ │ ├── EmployeesInfoDao.class
│ │ │ │ ├── InboxInfoDao.class
│ │ │ │ ├── LinkInfoDao.class
│ │ │ │ ├── MessageInfoDao.class
│ │ │ │ ├── NxSystemFileInfoDao.class
│ │ │ │ ├── OutboxInfoDao.class
│ │ │ │ ├── RichtextInfoDao.class
│ │ │ │ └── SignInfoMapper.class
│ │ │ ├── entity
│ │ │ │ ├── Account.class
│ │ │ │ ├── AdminInfo.class
│ │ │ │ ├── AdvertiserInfo.class
│ │ │ │ ├── ArchivesInfo.class
│ │ │ │ ├── AuthorityInfo$Model.class
│ │ │ │ ├── AuthorityInfo.class
│ │ │ │ ├── DeleteboxInfo.class
│ │ │ │ ├── DraftboxInfo.class
│ │ │ │ ├── EmailInfo.class
│ │ │ │ ├── EmployeesInfo.class
│ │ │ │ ├── InboxInfo.class
│ │ │ │ ├── LinkInfo.class
│ │ │ │ ├── MessageInfo.class
│ │ │ │ ├── NxSystemFileInfo.class
│ │ │ │ ├── OutboxInfo.class
│ │ │ │ ├── RichtextInfo.class
│ │ │ │ └── SignInfo.class
│ │ │ ├── exception
│ │ │ │ ├── CustomException.class
│ │ │ │ └── GlobalExceptionHandler.class
│ │ │ ├── service
│ │ │ │ ├── AdminInfoService.class
│ │ │ │ ├── AdvertiserInfoService.class
│ │ │ │ ├── ArchivesInfoService.class
│ │ │ │ ├── DeleteboxInfoService.class
│ │ │ │ ├── DraftboxInfoService.class
│ │ │ │ ├── EmailInfoService.class
│ │ │ │ ├── EmployeesInfoService.class
│ │ │ │ ├── InboxInfoService.class
│ │ │ │ ├── LinkInfoService.class
│ │ │ │ ├── MessageInfoService.class
│ │ │ │ ├── NxSystemFileInfoService.class
│ │ │ │ ├── OutboxInfoService.class
│ │ │ │ ├── RichtextInfoService.class
│ │ │ │ ├── SignInfoService.class
│ │ │ │ └── SignInfoServiceImpl.class
│ │ │ └── vo
│ │ │ ├── AdminInfoVo.class
│ │ │ ├── AdvertiserInfoVo.class
│ │ │ ├── ArchivesInfoVo.class
│ │ │ ├── DeleteboxInfoVo.class
│ │ │ ├── DraftboxInfoVo.class
│ │ │ ├── EchartsData$Data.class
│ │ │ ├── EchartsData$Series.class
│ │ │ ├── EchartsData.class
│ │ │ ├── EmailInfoVo.class
│ │ │ ├── EmployeesInfoVo.class
│ │ │ ├── InboxInfoVo.class
│ │ │ ├── LinkInfoVo.class
│ │ │ ├── MessageInfoVo.class
│ │ │ ├── OutboxInfoVo.class
│ │ │ ├── RichtextInfoVo.class
│ │ │ └── SignInfoVo.class
│ │ ├── log4j2-spring.xml
│ │ ├── logback-spring.xml
│ │ ├── mapper
│ │ │ ├── AdminInfoMapper.xml
│ │ │ ├── AdvertiserInfoMapper.xml
│ │ │ ├── ArchivesInfoMapper.xml
│ │ │ ├── DeleteboxInfoMapper.xml
│ │ │ ├── DraftboxInfoMapper.xml
│ │ │ ├── EmailInfoMapper.xml
│ │ │ ├── EmployeesInfoMapper.xml
│ │ │ ├── InboxInfoMapper.xml
│ │ │ ├── LinkInfoMapper.xml
│ │ │ ├── MessageInfoMapper.xml
│ │ │ ├── NxSystemFileInfoMapper.xml
│ │ │ ├── OutboxInfoMapper.xml
│ │ │ ├── RichtextInfoMapper.xml
│ │ │ └── SignInfoMapper.xml
│ │ └── static
│ │ ├── end
│ │ │ ├── css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── common.css
│ │ │ │ ├── element
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── element-icons.ttf
│ │ │ │ │ │ └── element-icons.woff
│ │ │ │ │ └── index.css
│ │ │ │ ├── font-awesome.css
│ │ │ │ ├── my.css
│ │ │ │ ├── nav.css
│ │ │ │ └── quill.snow.css
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ ├── img
│ │ │ │ └── head.jpg
│ │ │ ├── js
│ │ │ │ ├── bootstrap-fileupload.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── echarts.min.js
│ │ │ │ ├── element
│ │ │ │ │ └── index.js
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ ├── my.js
│ │ │ │ ├── nav.js
│ │ │ │ ├── quill.js
│ │ │ │ └── vue2.6.11
│ │ │ │ ├── axios.js
│ │ │ │ └── vue.min.js
│ │ │ └── page
│ │ │ ├── accountAdminInfo.html
│ │ │ ├── accountEmployeesInfo.html
│ │ │ ├── adminInfo.html
│ │ │ ├── advertiserInfo.html
│ │ │ ├── archivesInfo.html
│ │ │ ├── deleteboxInfo.html
│ │ │ ├── draftboxInfo.html
│ │ │ ├── emailInfo.html
│ │ │ ├── employeesInfo.html
│ │ │ ├── inboxInfo.html
│ │ │ ├── index.html
│ │ │ ├── linkInfo.html
│ │ │ ├── login.html
│ │ │ ├── messageInfo.html
│ │ │ ├── outboxInfo.html
│ │ │ ├── register.html
│ │ │ ├── richtextInfo.html
│ │ │ └── updatePassword.html
│ │ ├── file
│ │ │ ├── ad021603268543070.png
│ │ │ ├── arrow-next1603251418834.png
│ │ │ ├── arrow_up1603251147228.png
│ │ │ ├── banner21603251110306.jpg
│ │ │ ├── feature-pic41603268259011.jpg
│ │ │ ├── file-info
│ │ │ ├── linkedin1603269049231.png
│ │ │ ├── t013bb341bc47092044.webp1603197451947.jpg
│ │ │ ├── t017a743cf6a0bde0581603193067784.png
│ │ │ └── t01d46ab215b8f2c970.webp1603196902865.jpg
│ │ └── front
│ │ ├── advertiserInfo.html
│ │ ├── archivesInfoDetail.html
│ │ ├── archivesInfo.html
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── font-awesome.css
│ │ │ ├── index.css
│ │ │ ├── my.css
│ │ │ ├── nav.css
│ │ │ ├── notice.css
│ │ │ └── swiper-5.4.5
│ │ │ └── swiper.min.css
│ │ ├── deleteboxInfoDetail.html
│ │ ├── deleteboxInfo.html
│ │ ├── draftboxInfoDetail.html
│ │ ├── draftboxInfo.html
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── img
│ │ │ ├── carousel
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── 4.jpg
│ │ │ │ ├── 6.jpg
│ │ │ │ ├── 7.jpg
│ │ │ │ ├── 8.jpg
│ │ │ │ ├── 9.jpg
│ │ │ │ ├── a.jpg
│ │ │ │ ├── b.jpg
│ │ │ │ ├── c.jpg
│ │ │ │ ├── d.jpg
│ │ │ │ ├── f.jpg
│ │ │ │ ├── new-pic4.jpg
│ │ │ │ ├── n.jpg
│ │ │ │ ├── pic1.jpg
│ │ │ │ ├── t013bb341bc47092044.webp.jpg
│ │ │ │ ├── t016ba778ef42a36f6f.webp.jpg
│ │ │ │ └── t017a743cf6a0bde058.jpg
│ │ │ ├── file.jpg
│ │ │ ├── goods
│ │ │ │ └── default.png
│ │ │ ├── logo.png
│ │ │ └── mali.png
│ │ ├── inboxInfoDetail.html
│ │ ├── inboxInfo.html
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── jquery-1.10.2.js
│ │ │ ├── jquery.metisMenu.js
│ │ │ ├── swiper-5.4.5
│ │ │ │ └── swiper.min.js
│ │ │ └── vue2.6.11
│ │ │ ├── axios.js
│ │ │ └── vue.min.js
│ │ ├── messageInfo.html
│ │ ├── outboxInfoDetail.html
│ │ ├── outboxInfo.html
│ │ ├── richtextInfoDetail.html
│ │ └── richtextInfo.html
│ └── generated-sources
│ └── annotations
└── oa.zip
83 directories, 467 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论