在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例Android平台开发 → 旅游管理

旅游管理

Android平台开发

下载此实例
  • 开发语言:Java
  • 实例大小:27.34M
  • 下载次数:40
  • 浏览次数:214
  • 发布时间:2022-03-21
  • 实例类别:Android平台开发
  • 发 布 人:hai1
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 旅游 管理

实例介绍

【实例简介】旅游管理

【实例截图】

from clipboardfrom clipboard

【核心代码】

.
├── 4937680923034624.zip
├── db_travel.sql
├── staic_resources.zip
├── travel-common
│   ├── pom.xml
│   ├── src
│   │   └── main
│   │       └── java
│   │           └── com
│   │               └── zzh
│   │                   ├── common
│   │                   │   ├── Const.java
│   │                   │   ├── PictureResult.java
│   │                   │   ├── ResponseCode.java
│   │                   │   └── ServerResponse.java
│   │                   └── util
│   │                       ├── BigDecimalUtil.java
│   │                       ├── DateTimeUtil.java
│   │                       ├── ExceptionUtil.java
│   │                       ├── FtpUtil.java
│   │                       ├── IDUtils.java
│   │                       ├── MD5Util.java
│   │                       ├── PropertiesUtil.java
│   │                       └── SendEmailUtil.java
│   ├── target
│   │   ├── classes
│   │   │   └── com
│   │   │       └── zzh
│   │   │           ├── common
│   │   │           │   ├── Const$AlipayCallback.class
│   │   │           │   ├── Const$OrderStatusEnum.class
│   │   │           │   ├── Const$PayPlatformEnum.class
│   │   │           │   ├── Const$PaymentTypeEnum.class
│   │   │           │   ├── Const$ProductListOrderBy.class
│   │   │           │   ├── Const$ProductStatusEnum.class
│   │   │           │   ├── Const$Role.class
│   │   │           │   ├── Const.class
│   │   │           │   ├── PictureResult.class
│   │   │           │   ├── ResponseCode.class
│   │   │           │   └── ServerResponse.class
│   │   │           └── util
│   │   │               ├── BigDecimalUtil.class
│   │   │               ├── DateTimeUtil.class
│   │   │               ├── ExceptionUtil.class
│   │   │               ├── FtpUtil.class
│   │   │               ├── IDUtils.class
│   │   │               ├── MD5Util.class
│   │   │               ├── PropertiesUtil.class
│   │   │               ├── SendEmailUtil$1.class
│   │   │               └── SendEmailUtil.class
│   │   ├── generated-sources
│   │   │   └── annotations
│   │   ├── maven-archiver
│   │   │   └── pom.properties
│   │   ├── maven-status
│   │   │   └── maven-compiler-plugin
│   │   │       ├── compile
│   │   │       │   └── default-compile
│   │   │       │       ├── createdFiles.lst
│   │   │       │       └── inputFiles.lst
│   │   │       └── testCompile
│   │   │           └── default-testCompile
│   │   │               ├── createdFiles.lst
│   │   │               └── inputFiles.lst
│   │   ├── surefire-reports
│   │   │   ├── TEST-com.zzh.AppTest.xml
│   │   │   └── com.zzh.AppTest.txt
│   │   └── travel-common.jar
│   └── travel-common.iml
├── travel-parent
│   ├── pom.xml
│   ├── src
│   │   └── site
│   │       ├── apt
│   │       │   └── index.apt
│   │       ├── markdown
│   │       │   ├── markdown-velocity.md.vm
│   │       │   └── markdown.md
│   │       └── site.xml
│   └── travel-parent.iml
├── travel-project
│   ├── pom.xml
│   ├── src
│   │   └── site
│   │       ├── apt
│   │       │   └── index.apt
│   │       ├── markdown
│   │       │   ├── markdown-velocity.md.vm
│   │       │   └── markdown.md
│   │       └── site.xml
│   ├── travel-project-dao
│   │   ├── pom.xml
│   │   ├── src
│   │   │   └── main
│   │   │       └── java
│   │   │           └── com
│   │   │               └── zzh
│   │   │                   ├── dao
│   │   │                   │   ├── AreaMapper.java
│   │   │                   │   ├── CustomizationMapper.java
│   │   │                   │   ├── EmailValidateMapper.java
│   │   │                   │   ├── ProductDescMapper.java
│   │   │                   │   ├── ProductMapper.java
│   │   │                   │   ├── ProductOrderMapper.java
│   │   │                   │   ├── ProductSellMapper.java
│   │   │                   │   ├── ThemeMapper.java
│   │   │                   │   ├── ThemeMapper.xml
│   │   │                   │   ├── ThemeProductMapper.java
│   │   │                   │   └── UserMapper.java
│   │   │                   └── mapper
│   │   │                       ├── AreaMapper.xml
│   │   │                       ├── CustomizationMapper.xml
│   │   │                       ├── EmailValidateMapper.xml
│   │   │                       ├── ProductDescMapper.xml
│   │   │                       ├── ProductMapper.xml
│   │   │                       ├── ProductOrderMapper.xml
│   │   │                       ├── ProductSellMapper.xml
│   │   │                       ├── ThemeProductMapper.xml
│   │   │                       └── UserMapper.xml
│   │   ├── target
│   │   │   ├── classes
│   │   │   │   └── com
│   │   │   │       └── zzh
│   │   │   │           ├── dao
│   │   │   │           │   ├── AreaMapper.class
│   │   │   │           │   ├── CustomizationMapper.class
│   │   │   │           │   ├── EmailValidateMapper.class
│   │   │   │           │   ├── ProductDescMapper.class
│   │   │   │           │   ├── ProductMapper.class
│   │   │   │           │   ├── ProductOrderMapper.class
│   │   │   │           │   ├── ProductSellMapper.class
│   │   │   │           │   ├── ThemeMapper.class
│   │   │   │           │   ├── ThemeMapper.xml
│   │   │   │           │   ├── ThemeProductMapper.class
│   │   │   │           │   └── UserMapper.class
│   │   │   │           └── mapper
│   │   │   │               ├── AreaMapper.xml
│   │   │   │               ├── CustomizationMapper.xml
│   │   │   │               ├── EmailValidateMapper.xml
│   │   │   │               ├── ProductDescMapper.xml
│   │   │   │               ├── ProductMapper.xml
│   │   │   │               ├── ProductOrderMapper.xml
│   │   │   │               ├── ProductSellMapper.xml
│   │   │   │               ├── ThemeProductMapper.xml
│   │   │   │               └── UserMapper.xml
│   │   │   ├── generated-sources
│   │   │   │   └── annotations
│   │   │   └── maven-status
│   │   │       └── maven-compiler-plugin
│   │   │           └── compile
│   │   │               └── default-compile
│   │   │                   ├── createdFiles.lst
│   │   │                   └── inputFiles.lst
│   │   └── travel-project-dao.iml
│   ├── travel-project-pojo
│   │   ├── pom.xml
│   │   ├── src
│   │   │   └── main
│   │   │       └── java
│   │   │           └── com
│   │   │               └── zzh
│   │   │                   ├── entity
│   │   │                   │   ├── Area.java
│   │   │                   │   ├── Customization.java
│   │   │                   │   ├── EmailValidate.java
│   │   │                   │   ├── Product.java
│   │   │                   │   ├── ProductDesc.java
│   │   │                   │   ├── ProductOrder.java
│   │   │                   │   ├── ProductSell.java
│   │   │                   │   ├── Theme.java
│   │   │                   │   ├── ThemeProduct.java
│   │   │                   │   └── User.java
│   │   │                   └── vo
│   │   │                       ├── OrderList.java
│   │   │                       └── PriceCalendar.java
│   │   ├── target
│   │   │   ├── classes
│   │   │   │   └── com
│   │   │   │       └── zzh
│   │   │   │           ├── entity
│   │   │   │           │   ├── Area.class
│   │   │   │           │   ├── Customization.class
│   │   │   │           │   ├── EmailValidate.class
│   │   │   │           │   ├── Product.class
│   │   │   │           │   ├── ProductDesc.class
│   │   │   │           │   ├── ProductOrder.class
│   │   │   │           │   ├── ProductSell.class
│   │   │   │           │   ├── Theme.class
│   │   │   │           │   ├── ThemeProduct.class
│   │   │   │           │   └── User.class
│   │   │   │           └── vo
│   │   │   │               ├── OrderList.class
│   │   │   │               └── PriceCalendar.class
│   │   │   ├── generated-sources
│   │   │   │   └── annotations
│   │   │   └── maven-status
│   │   │       └── maven-compiler-plugin
│   │   │           └── compile
│   │   │               └── default-compile
│   │   │                   ├── createdFiles.lst
│   │   │                   └── inputFiles.lst
│   │   └── travel-project-pojo.iml
│   ├── travel-project-service
│   │   ├── pom.xml
│   │   ├── src
│   │   │   └── main
│   │   │       └── java
│   │   │           └── com
│   │   │               └── zzh
│   │   │                   └── service
│   │   │                       ├── IAreaService.java
│   │   │                       ├── ICustomizationService.java
│   │   │                       ├── IEmailValidateService.java
│   │   │                       ├── IProductDescService.java
│   │   │                       ├── IProductOrderService.java
│   │   │                       ├── IProductSellService.java
│   │   │                       ├── IProductService.java
│   │   │                       ├── IThemeProductService.java
│   │   │                       ├── IThemeService.java
│   │   │                       ├── IUserService.java
│   │   │                       ├── PictureService.java
│   │   │                       └── impl
│   │   │                           ├── AreaServiceImpl.java
│   │   │                           ├── CustomizationServiceImpl.java
│   │   │                           ├── EmailValidateServiceImpl.java
│   │   │                           ├── PictureServiceImpl.java
│   │   │                           ├── ProductDescServiceImpl.java
│   │   │                           ├── ProductOrderServiceImpl.java
│   │   │                           ├── ProductSellServiceImpl.java
│   │   │                           ├── ProductServiceImpl.java
│   │   │                           ├── ThemeProductServiceImpl.java
│   │   │                           ├── ThemeServiceImpl.java
│   │   │                           └── UserServiceImpl.java
│   │   ├── target
│   │   │   ├── classes
│   │   │   │   └── com
│   │   │   │       └── zzh
│   │   │   │           └── service
│   │   │   │               ├── IAreaService.class
│   │   │   │               ├── ICustomizationService.class
│   │   │   │               ├── IEmailValidateService.class
│   │   │   │               ├── IProductDescService.class
│   │   │   │               ├── IProductOrderService.class
│   │   │   │               ├── IProductSellService.class
│   │   │   │               ├── IProductService.class
│   │   │   │               ├── IThemeProductService.class
│   │   │   │               ├── IThemeService.class
│   │   │   │               ├── IUserService.class
│   │   │   │               ├── PictureService.class
│   │   │   │               └── impl
│   │   │   │                   ├── AreaServiceImpl.class
│   │   │   │                   ├── CustomizationServiceImpl.class
│   │   │   │                   ├── EmailValidateServiceImpl.class
│   │   │   │                   ├── PictureServiceImpl.class
│   │   │   │                   ├── ProductDescServiceImpl.class
│   │   │   │                   ├── ProductOrderServiceImpl.class
│   │   │   │                   ├── ProductSellServiceImpl.class
│   │   │   │                   ├── ProductServiceImpl.class
│   │   │   │                   ├── ThemeProductServiceImpl.class
│   │   │   │                   ├── ThemeServiceImpl.class
│   │   │   │                   └── UserServiceImpl.class
│   │   │   ├── generated-sources
│   │   │   │   └── annotations
│   │   │   └── maven-status
│   │   │       └── maven-compiler-plugin
│   │   │           └── compile
│   │   │               └── default-compile
│   │   │                   ├── createdFiles.lst
│   │   │                   └── inputFiles.lst
│   │   └── travel-project-service.iml
│   ├── travel-project-web
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── Test
│   │   │   │   └── java
│   │   │   │       └── com
│   │   │   │           └── zzh
│   │   │   │               └── test
│   │   │   │                   ├── MpTest.java
│   │   │   │                   └── SendmailUtil.java
│   │   │   └── main
│   │   │       ├── java
│   │   │       │   └── com
│   │   │       │       └── zzh
│   │   │       │           ├── controller
│   │   │       │           │   ├── AreaController.java
│   │   │       │           │   ├── CustomizationController.java
│   │   │       │           │   ├── EmailValidateController.java
│   │   │       │           │   ├── IndexController.java
│   │   │       │           │   ├── ProductController.java
│   │   │       │           │   ├── ProductDescController.java
│   │   │       │           │   ├── ProductOrderController.java
│   │   │       │           │   ├── ProductSellController.java
│   │   │       │           │   ├── ThemeController.java
│   │   │       │           │   ├── ThemeProductController.java
│   │   │       │           │   ├── UserController.java
│   │   │       │           │   └── backend
│   │   │       │           │       ├── AreaManageController.java
│   │   │       │           │       ├── BackendController.java
│   │   │       │           │       ├── CustomizedManageController.java
│   │   │       │           │       ├── PictureController.java
│   │   │       │           │       ├── ProductManageOrderController.java
│   │   │       │           │       ├── ProductManagerController.java
│   │   │       │           │       ├── ProductSellManageController.java
│   │   │       │           │       ├── ThemeManageController.java
│   │   │       │           │       └── UserMangeController.java
│   │   │       │           └── interceptor
│   │   │       │               └── LoginInterceptor.java
│   │   │       ├── resources
│   │   │       │   ├── log4j.properties
│   │   │       │   ├── mybatis
│   │   │       │   │   └── mybatis-config.xml
│   │   │       │   ├── properties
│   │   │       │   │   ├── db.properties
│   │   │       │   │   ├── email.properties
│   │   │       │   │   └── resouce.properties
│   │   │       │   └── spring
│   │   │       │       ├── applicationContext-dao.xml
│   │   │       │       ├── applicationContext-service.xml
│   │   │       │       ├── applicationContext-trans.xml
│   │   │       │       └── springmvc.xml
│   │   │       └── webapp
│   │   │           └── WEB-INF
│   │   │               ├── assets
│   │   │               │   ├── css
│   │   │               │   │   ├── bootstrap.css
│   │   │               │   │   ├── custom-styles.css
│   │   │               │   │   └── font-awesome.css
│   │   │               │   ├── font-awesome
│   │   │               │   │   └── fonts
│   │   │               │   │       ├── fontawesome-webfontba72.eot
│   │   │               │   │       ├── fontawesome-webfontba72.svg
│   │   │               │   │       ├── fontawesome-webfontba72.ttf
│   │   │               │   │       ├── fontawesome-webfontba72.woff
│   │   │               │   │       └── fontawesome-webfontd41d.eot
│   │   │               │   ├── fonts
│   │   │               │   │   ├── glyphicons-halflings-regular.eot
│   │   │               │   │   ├── glyphicons-halflings-regular.svg
│   │   │               │   │   ├── glyphicons-halflings-regular.ttf
│   │   │               │   │   ├── glyphicons-halflings-regular.woff
│   │   │               │   │   └── glyphicons-halflings-regulard41d.eot
│   │   │               │   └── js
│   │   │               │       ├── bootstrap.min.js
│   │   │               │       ├── custom-scripts.js
│   │   │               │       ├── custom.js
│   │   │               │       ├── dataTables
│   │   │               │       │   ├── dataTables.bootstrap.css
│   │   │               │       │   ├── dataTables.bootstrap.js
│   │   │               │       │   └── jquery.dataTables.js
│   │   │               │       ├── jquery-1.10.2.js
│   │   │               │       ├── jquery.metisMenu.js
│   │   │               │       └── morris
│   │   │               │           ├── morris-0.4.3.min.css
│   │   │               │           ├── morris.js
│   │   │               │           └── raphael-2.1.0.min.js
│   │   │               ├── css
│   │   │               │   ├── allstyle.css
│   │   │               │   ├── attendstyle.css
│   │   │               │   ├── bootstrap-datepicker.css
│   │   │               │   ├── bootstrap-fileinput.css
│   │   │               │   ├── bootstrap-responsive.css
│   │   │               │   ├── bootstrap.css
│   │   │               │   ├── bootstrap.min.css
│   │   │               │   ├── calendar-pro.css
│   │   │               │   ├── destination.css
│   │   │               │   ├── font
│   │   │               │   │   ├── adminThemes.ttf
│   │   │               │   │   ├── adminthemes-webfont.eot
│   │   │               │   │   ├── adminthemes-webfont.svg
│   │   │               │   │   ├── adminthemes-webfont.ttf
│   │   │               │   │   ├── adminthemes-webfont.woff
│   │   │               │   │   ├── adminthemes-webfont.woff2
│   │   │               │   │   ├── glyphicons-halflings-regular.eot
│   │   │               │   │   ├── glyphicons-halflings-regular.svg
│   │   │               │   │   ├── glyphicons-halflings-regular.ttf
│   │   │               │   │   ├── glyphicons-halflings-regular.woff
│   │   │               │   │   ├── glyphicons-halflings-regular.woff2
│   │   │               │   │   └── mui.ttf
│   │   │               │   ├── font-awesome.min.css
│   │   │               │   ├── index.css
│   │   │               │   ├── jour.css
│   │   │               │   ├── jquery.mCustomScrollbar.css
│   │   │               │   ├── kuCity.css
│   │   │               │   ├── login.css
│   │   │               │   ├── matestyle.css
│   │   │               │   ├── reset.css
│   │   │               │   ├── style.css
│   │   │               │   ├── style2.css
│   │   │               │   └── theme.css
│   │   │               ├── fonts
│   │   │               │   ├── fontawesome-webfont.eot
│   │   │               │   ├── 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
│   │   │               │   └── mui.ttf
│   │   │               ├── images
│   │   │               │   ├── 15_d.jpg
│   │   │               │   ├── 43_d.jpg
│   │   │               │   ├── 50_d.jpg
│   │   │               │   ├── 80_d.jpg
│   │   │               │   ├── admin_logo.png
│   │   │               │   ├── banner-05.png
│   │   │               │   ├── banner-06.png
│   │   │               │   ├── banner-07.png
│   │   │               │   ├── banner-08.png
│   │   │               │   ├── banner-09.png
│   │   │               │   ├── bg_region_global.jpg
│   │   │               │   ├── custom-loge.png
│   │   │               │   ├── custom.png
│   │   │               │   ├── icon
│   │   │               │   │   ├── DefaultAvatar.jpg
│   │   │               │   │   ├── apple-touch-icon-120x120-precomposed.png
│   │   │               │   │   ├── apple-touch-icon-196x196-precomposed.png
│   │   │               │   │   ├── apple-touch-icon-57x57-precomposed.png
│   │   │               │   │   └── favicon.ico
│   │   │               │   ├── icon-40.png
│   │   │               │   ├── icon-41.png
│   │   │               │   ├── icon-42.png
│   │   │               │   ├── icon-43.png
│   │   │               │   ├── icon-45.png
│   │   │               │   ├── left-arr.png
│   │   │               │   ├── login01.jpg
│   │   │               │   ├── plan_search_icon.png
│   │   │               │   ├── rabbit_in_the_hat_128px_1199655_easyicon.net.ico
│   │   │               │   ├── rabbit_in_the_hat_573px_1199655_easyicon.net.png
│   │   │               │   ├── right-arr.png
│   │   │               │   ├── search.png
│   │   │               │   ├── sina.png
│   │   │               │   ├── test.jpg
│   │   │               │   ├── test2.jpg
│   │   │               │   ├── test3.jpg
│   │   │               │   ├── theme.png
│   │   │               │   ├── user-icon.png
│   │   │               │   ├── user_info_bg.jpg
│   │   │               │   └── wechat.png
│   │   │               ├── js
│   │   │               │   ├── Particleground.js
│   │   │               │   ├── ajax.js
│   │   │               │   ├── ajaxfileupload.js
│   │   │               │   ├── bootstrap-datepicker.js
│   │   │               │   ├── bootstrap-datepicker.zh-CN.min.js
│   │   │               │   ├── bootstrap.js
│   │   │               │   ├── bootstrap.min.js
│   │   │               │   ├── calendar-pro.js
│   │   │               │   ├── dialogs
│   │   │               │   │   ├── anchor
│   │   │               │   │   │   └── anchor.html
│   │   │               │   │   ├── attachment
│   │   │               │   │   │   ├── attachment.css
│   │   │               │   │   │   ├── attachment.html
│   │   │               │   │   │   ├── attachment.js
│   │   │               │   │   │   ├── fileTypeImages
│   │   │               │   │   │   │   ├── icon_chm.gif
│   │   │               │   │   │   │   ├── icon_default.png
│   │   │               │   │   │   │   ├── icon_doc.gif
│   │   │               │   │   │   │   ├── icon_exe.gif
│   │   │               │   │   │   │   ├── icon_jpg.gif
│   │   │               │   │   │   │   ├── icon_mp3.gif
│   │   │               │   │   │   │   ├── icon_mv.gif
│   │   │               │   │   │   │   ├── icon_pdf.gif
│   │   │               │   │   │   │   ├── icon_ppt.gif
│   │   │               │   │   │   │   ├── icon_psd.gif
│   │   │               │   │   │   │   ├── icon_rar.gif
│   │   │               │   │   │   │   ├── icon_txt.gif
│   │   │               │   │   │   │   └── icon_xls.gif
│   │   │               │   │   │   └── images
│   │   │               │   │   │       ├── alignicon.gif
│   │   │               │   │   │       ├── alignicon.png
│   │   │               │   │   │       ├── bg.png
│   │   │               │   │   │       ├── file-icons.gif
│   │   │               │   │   │       ├── file-icons.png
│   │   │               │   │   │       ├── icons.gif
│   │   │               │   │   │       ├── icons.png
│   │   │               │   │   │       ├── image.png
│   │   │               │   │   │       ├── progress.png
│   │   │               │   │   │       ├── success.gif
│   │   │               │   │   │       └── success.png
│   │   │               │   │   ├── background
│   │   │               │   │   │   ├── background.css
│   │   │               │   │   │   ├── background.html
│   │   │               │   │   │   ├── background.js
│   │   │               │   │   │   └── images
│   │   │               │   │   │       ├── bg.png
│   │   │               │   │   │       └── success.png
│   │   │               │   │   ├── charts
│   │   │               │   │   │   ├── chart.config.js
│   │   │               │   │   │   ├── charts.css
│   │   │               │   │   │   ├── charts.html
│   │   │               │   │   │   ├── charts.js
│   │   │               │   │   │   └── images
│   │   │               │   │   │       ├── charts0.png
│   │   │               │   │   │       ├── charts1.png
│   │   │               │   │   │       ├── charts2.png
│   │   │               │   │   │       ├── charts3.png
│   │   │               │   │   │       ├── charts4.png
│   │   │               │   │   │       └── charts5.png
│   │   │               │   │   ├── emotion
│   │   │               │   │   │   ├── emotion.css
│   │   │               │   │   │   ├── emotion.html
│   │   │               │   │   │   ├── emotion.js
│   │   │               │   │   │   └── images
│   │   │               │   │   │       ├── 0.gif
│   │   │               │   │   │       ├── bface.gif
│   │   │               │   │   │       ├── cface.gif
│   │   │               │   │   │       ├── fface.gif
│   │   │               │   │   │       ├── jxface2.gif
│   │   │               │   │   │       ├── neweditor-tab-bg.png
│   │   │               │   │   │       ├── tface.gif
│   │   │               │   │   │       ├── wface.gif
│   │   │               │   │   │       └── yface.gif
│   │   │               │   │   ├── gmap
│   │   │               │   │   │   └── gmap.html
│   │   │               │   │   ├── help
│   │   │               │   │   │   ├── help.css
│   │   │               │   │   │   ├── help.html
│   │   │               │   │   │   └── help.js
│   │   │               │   │   ├── image
│   │   │               │   │   │   ├── image.css
│   │   │               │   │   │   ├── image.html
│   │   │               │   │   │   ├── image.js
│   │   │               │   │   │   └── images
│   │   │               │   │   │       ├── alignicon.jpg
│   │   │               │   │   │       ├── bg.png
│   │   │               │   │   │       ├── icons.gif
│   │   │               │   │   │       ├── icons.png
│   │   │               │   │   │       ├── image.png
│   │   │               │   │   │       ├── progress.png
│   │   │               │   │   │       ├── success.gif
│   │   │               │   │   │       └── success.png
│   │   │               │   │   ├── insertframe
│   │   │               │   │   │   └── insertframe.html
│   │   │               │   │   ├── internal.js
│   │   │               │   │   ├── link
│   │   │               │   │   │   └── link.html
│   │   │               │   │   ├── map
│   │   │               │   │   │   ├── map.html
│   │   │               │   │   │   └── show.html
│   │   │               │   │   ├── music
│   │   │               │   │   │   ├── music.css
│   │   │               │   │   │   ├── music.html
│   │   │               │   │   │   └── music.js
│   │   │               │   │   ├── preview
│   │   │               │   │   │   └── preview.html
│   │   │               │   │   ├── scrawl
│   │   │               │   │   │   ├── images
│   │   │               │   │   │   │   ├── addimg.png
│   │   │               │   │   │   │   ├── brush.png
│   │   │               │   │   │   │   ├── delimg.png
│   │   │               │   │   │   │   ├── delimgH.png
│   │   │               │   │   │   │   ├── empty.png
│   │   │               │   │   │   │   ├── emptyH.png
│   │   │               │   │   │   │   ├── eraser.png
│   │   │               │   │   │   │   ├── redo.png
│   │   │               │   │   │   │   ├── redoH.png
│   │   │               │   │   │   │   ├── scale.png
│   │   │               │   │   │   │   ├── scaleH.png
│   │   │               │   │   │   │   ├── size.png
│   │   │               │   │   │   │   ├── undo.png
│   │   │               │   │   │   │   └── undoH.png
│   │   │               │   │   │   ├── scrawl.css
│   │   │               │   │   │   ├── scrawl.html
│   │   │               │   │   │   └── scrawl.js
│   │   │               │   │   ├── searchreplace
│   │   │               │   │   │   ├── searchreplace.html
│   │   │               │   │   │   └── searchreplace.js
│   │   │               │   │   ├── snapscreen
│   │   │               │   │   │   └── snapscreen.html
│   │   │               │   │   ├── spechars
│   │   │               │   │   │   ├── spechars.html
│   │   │               │   │   │   └── spechars.js
│   │   │               │   │   ├── table
│   │   │               │   │   │   ├── dragicon.png
│   │   │               │   │   │   ├── edittable.css
│   │   │               │   │   │   ├── edittable.html
│   │   │               │   │   │   ├── edittable.js
│   │   │               │   │   │   ├── edittd.html
│   │   │               │   │   │   └── edittip.html
│   │   │               │   │   ├── template
│   │   │               │   │   │   ├── config.js
│   │   │               │   │   │   ├── images
│   │   │               │   │   │   │   ├── bg.gif
│   │   │               │   │   │   │   ├── pre0.png
│   │   │               │   │   │   │   ├── pre1.png
│   │   │               │   │   │   │   ├── pre2.png
│   │   │               │   │   │   │   ├── pre3.png
│   │   │               │   │   │   │   └── pre4.png
│   │   │               │   │   │   ├── template.css
│   │   │               │   │   │   ├── template.html
│   │   │               │   │   │   └── template.js
│   │   │               │   │   ├── video
│   │   │               │   │   │   ├── images
│   │   │               │   │   │   │   ├── bg.png
│   │   │               │   │   │   │   ├── center_focus.jpg
│   │   │               │   │   │   │   ├── file-icons.gif
│   │   │               │   │   │   │   ├── file-icons.png
│   │   │               │   │   │   │   ├── icons.gif
│   │   │               │   │   │   │   ├── icons.png
│   │   │               │   │   │   │   ├── image.png
│   │   │               │   │   │   │   ├── left_focus.jpg
│   │   │               │   │   │   │   ├── none_focus.jpg
│   │   │               │   │   │   │   ├── progress.png
│   │   │               │   │   │   │   ├── right_focus.jpg
│   │   │               │   │   │   │   ├── success.gif
│   │   │               │   │   │   │   └── success.png
│   │   │               │   │   │   ├── video.css
│   │   │               │   │   │   ├── video.html
│   │   │               │   │   │   └── video.js
│   │   │               │   │   ├── webapp
│   │   │               │   │   │   └── webapp.html
│   │   │               │   │   └── wordimage
│   │   │               │   │       ├── fClipboard_ueditor.swf
│   │   │               │   │       ├── imageUploader.swf
│   │   │               │   │       ├── tangram.js
│   │   │               │   │       ├── wordimage.html
│   │   │               │   │       └── wordimage.js
│   │   │               │   ├── external.js
│   │   │               │   ├── fileinput.min.js
│   │   │               │   ├── html5.js
│   │   │               │   ├── index.js
│   │   │               │   ├── jq-paginator.js
│   │   │               │   ├── jquery-3.1.1.js
│   │   │               │   ├── jquery.js
│   │   │               │   ├── jquery.mCustomScrollbar.concat.min.js
│   │   │               │   ├── jquery.min.js
│   │   │               │   ├── kuCity.js
│   │   │               │   ├── lang
│   │   │               │   │   ├── en
│   │   │               │   │   │   ├── en.js
│   │   │               │   │   │   └── images
│   │   │               │   │   │       ├── addimage.png
│   │   │               │   │   │       ├── alldeletebtnhoverskin.png
│   │   │               │   │   │       ├── alldeletebtnupskin.png
│   │   │               │   │   │       ├── background.png
│   │   │               │   │   │       ├── button.png
│   │   │               │   │   │       ├── copy.png
│   │   │               │   │   │       ├── deletedisable.png
│   │   │               │   │   │       ├── deleteenable.png
│   │   │               │   │   │       ├── listbackground.png
│   │   │               │   │   │       ├── localimage.png
│   │   │               │   │   │       ├── music.png
│   │   │               │   │   │       ├── rotateleftdisable.png
│   │   │               │   │   │       ├── rotateleftenable.png
│   │   │               │   │   │       ├── rotaterightdisable.png
│   │   │               │   │   │       ├── rotaterightenable.png
│   │   │               │   │   │       └── upload.png
│   │   │               │   │   └── zh-cn
│   │   │               │   │       ├── images
│   │   │               │   │       │   ├── copy.png
│   │   │               │   │       │   ├── localimage.png
│   │   │               │   │       │   ├── music.png
│   │   │               │   │       │   └── upload.png
│   │   │               │   │       └── zh-cn.js
│   │   │               │   ├── template.js
│   │   │               │   ├── themes
│   │   │               │   │   ├── default
│   │   │               │   │   │   ├── css
│   │   │               │   │   │   │   ├── ueditor.css
│   │   │               │   │   │   │   └── ueditor.min.css
│   │   │               │   │   │   ├── dialogbase.css
│   │   │               │   │   │   └── images
│   │   │               │   │   │       ├── anchor.gif
│   │   │               │   │   │       ├── arrow.png
│   │   │               │   │   │       ├── arrow_down.png
│   │   │               │   │   │       ├── arrow_up.png
│   │   │               │   │   │       ├── button-bg.gif
│   │   │               │   │   │       ├── cancelbutton.gif
│   │   │               │   │   │       ├── charts.png
│   │   │               │   │   │       ├── cursor_h.gif
│   │   │               │   │   │       ├── cursor_h.png
│   │   │               │   │   │       ├── cursor_v.gif
│   │   │               │   │   │       ├── cursor_v.png
│   │   │               │   │   │       ├── dialog-title-bg.png
│   │   │               │   │   │       ├── filescan.png
│   │   │               │   │   │       ├── highlighted.gif
│   │   │               │   │   │       ├── icons-all.gif
│   │   │               │   │   │       ├── icons.gif
│   │   │               │   │   │       ├── icons.png
│   │   │               │   │   │       ├── loaderror.png
│   │   │               │   │   │       ├── loading.gif
│   │   │               │   │   │       ├── lock.gif
│   │   │               │   │   │       ├── neweditor-tab-bg.png
│   │   │               │   │   │       ├── pagebreak.gif
│   │   │               │   │   │       ├── scale.png
│   │   │               │   │   │       ├── sortable.png
│   │   │               │   │   │       ├── spacer.gif
│   │   │               │   │   │       ├── sparator_v.png
│   │   │               │   │   │       ├── table-cell-align.png
│   │   │               │   │   │       ├── tangram-colorpicker.png
│   │   │               │   │   │       ├── toolbar_bg.png
│   │   │               │   │   │       ├── unhighlighted.gif
│   │   │               │   │   │       ├── upload.png
│   │   │               │   │   │       ├── videologo.gif
│   │   │               │   │   │       ├── word.gif
│   │   │               │   │   │       └── wordpaste.png
│   │   │               │   │   └── iframe.css
│   │   │               │   ├── wangEditor.min.js
│   │   │               │   └── zh.js
│   │   │               ├── jsp
│   │   │               │   ├── backend
│   │   │               │   │   ├── admin_login.jsp
│   │   │               │   │   ├── customization.jsp
│   │   │               │   │   ├── customization_list.jsp
│   │   │               │   │   ├── index.jsp
│   │   │               │   │   ├── login.html
│   │   │               │   │   ├── nav.jsp
│   │   │               │   │   ├── order_detail.jsp
│   │   │               │   │   ├── order_list.jsp
│   │   │               │   │   ├── productSell_add.jsp
│   │   │               │   │   ├── productSell_list.jsp
│   │   │               │   │   ├── productSell_update.jsp
│   │   │               │   │   ├── product_add.jsp
│   │   │               │   │   ├── product_list.jsp
│   │   │               │   │   ├── product_update.jsp
│   │   │               │   │   ├── theme_add.jsp
│   │   │               │   │   ├── theme_list.jsp
│   │   │               │   │   ├── user_list.jsp
│   │   │               │   │   └── user_update.jsp
│   │   │               │   └── index
│   │   │               │       ├── cus_detail.jsp
│   │   │               │       ├── cuslist.jsp
│   │   │               │       ├── customized.jsp
│   │   │               │       ├── fill_order.jsp
│   │   │               │       ├── foot.jsp
│   │   │               │       ├── index.jsp
│   │   │               │       ├── my_order.jsp
│   │   │               │       ├── navigation.jsp
│   │   │               │       ├── order_detail.jsp
│   │   │               │       ├── plist.jsp
│   │   │               │       ├── product_detail.jsp
│   │   │               │       ├── product_list.jsp
│   │   │               │       ├── register.jsp
│   │   │               │       └── user_info.jsp
│   │   │               └── web.xml
│   │   ├── target
│   │   │   ├── apache-tomcat-maven-plugin
│   │   │   ├── classes
│   │   │   │   ├── com
│   │   │   │   │   └── zzh
│   │   │   │   │       ├── controller
│   │   │   │   │       │   ├── AreaController.class
│   │   │   │   │       │   ├── CustomizationController.class
│   │   │   │   │       │   ├── EmailValidateController.class
│   │   │   │   │       │   ├── IndexController.class
│   │   │   │   │       │   ├── ProductController.class
│   │   │   │   │       │   ├── ProductDescController.class
│   │   │   │   │       │   ├── ProductOrderController.class
│   │   │   │   │       │   ├── ProductSellController.class
│   │   │   │   │       │   ├── ThemeController.class
│   │   │   │   │       │   ├── ThemeProductController.class
│   │   │   │   │       │   ├── UserController.class
│   │   │   │   │       │   └── backend
│   │   │   │   │       │       ├── AreaManageController.class
│   │   │   │   │       │       ├── BackendController.class
│   │   │   │   │       │       ├── CustomizedManageController.class
│   │   │   │   │       │       ├── PictureController.class
│   │   │   │   │       │       ├── ProductManageOrderController.class
│   │   │   │   │       │       ├── ProductManagerController.class
│   │   │   │   │       │       ├── ProductSellManageController.class
│   │   │   │   │       │       ├── ThemeManageController.class
│   │   │   │   │       │       └── UserMangeController.class
│   │   │   │   │       └── interceptor
│   │   │   │   │           └── LoginInterceptor.class
│   │   │   │   ├── log4j.properties
│   │   │   │   ├── mybatis
│   │   │   │   │   └── mybatis-config.xml
│   │   │   │   ├── properties
│   │   │   │   │   ├── db.properties
│   │   │   │   │   ├── email.properties
│   │   │   │   │   └── resouce.properties
│   │   │   │   └── spring
│   │   │   │       ├── applicationContext-dao.xml
│   │   │   │       ├── applicationContext-service.xml
│   │   │   │       ├── applicationContext-trans.xml
│   │   │   │       └── springmvc.xml
│   │   │   ├── generated-sources
│   │   │   │   └── annotations
│   │   │   ├── maven-status
│   │   │   │   └── maven-compiler-plugin
│   │   │   │       └── compile
│   │   │   │           └── default-compile
│   │   │   │               ├── createdFiles.lst
│   │   │   │               └── inputFiles.lst
│   │   │   └── tomcat
│   │   │       ├── conf
│   │   │       │   ├── logging.properties
│   │   │       │   ├── tomcat-users.xml
│   │   │       │   └── web.xml
│   │   │       ├── logs
│   │   │       │   └── access_log.2020-05-15
│   │   │       ├── webapps
│   │   │       └── work
│   │   │           └── Tomcat
│   │   │               └── localhost
│   │   │                   └── _
│   │   │                       └── org
│   │   │                           └── apache
│   │   │                               └── jsp
│   │   │                                   └── WEB_002dINF
│   │   │                                       └── jsp
│   │   │                                           └── backend
│   │   │                                               ├── admin_005flogin_jsp.class
│   │   │                                               ├── admin_005flogin_jsp.java
│   │   │                                               ├── index_jsp.class
│   │   │                                               └── index_jsp.java
│   │   └── travel-project-web.iml
│   └── travel-project.iml
├── 好例子网_旅游管理.rar
└── 旅游管理系统.mp4

203 directories, 609 files


标签: 旅游 管理

实例下载地址

旅游管理

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警