嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
旅游管理
.
├── 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