【例子介绍】物流运输管理系统
【相关图片】
【源码结构】
.
├── course-bosv2-java-master
│ ├── common_parent
│ │ └── pom.xml
│ ├── docker-compose.yml
│ ├── init
│ │ └── oracle
│ │ ├── Dockerfile
│ │ └── init.sql
│ ├── readme.md
│ ├── settings.xml
│ ├── sybos
│ │ ├── Dockerfile
│ │ ├── pom.xml
│ │ └── src
│ │ ├── main
│ │ │ ├── java
│ │ │ │ └── cn
│ │ │ │ └── itcast
│ │ │ │ └── bos
│ │ │ │ ├── dao
│ │ │ │ │ ├── base
│ │ │ │ │ │ ├── AreaRepository.java
│ │ │ │ │ │ ├── CourierRepository.java
│ │ │ │ │ │ ├── FixedAreaRepository.java
│ │ │ │ │ │ ├── StandardRepository.java
│ │ │ │ │ │ └── TakeTimeRepository.java
│ │ │ │ │ ├── system
│ │ │ │ │ │ ├── MenuRepository.java
│ │ │ │ │ │ ├── PermissionRepository.java
│ │ │ │ │ │ ├── RoleRepository.java
│ │ │ │ │ │ └── UserRepository.java
│ │ │ │ │ ├── take_delivery
│ │ │ │ │ │ ├── OrderRepository.java
│ │ │ │ │ │ ├── PromotionRepository.java
│ │ │ │ │ │ ├── WayBillRepository.java
│ │ │ │ │ │ └── WorkBillRepository.java
│ │ │ │ │ └── transit
│ │ │ │ │ ├── DeliveryInfoRepository.java
│ │ │ │ │ ├── InOutStorageInfoRepository.java
│ │ │ │ │ ├── SignInfoRepository.java
│ │ │ │ │ └── TransitInfoRepository.java
│ │ │ │ ├── index
│ │ │ │ │ └── WayBillIndexRepository.java
│ │ │ │ ├── quartz
│ │ │ │ │ ├── JobFactory.java
│ │ │ │ │ └── PromotionJob.java
│ │ │ │ ├── realm
│ │ │ │ │ └── BosRealm.java
│ │ │ │ ├── service
│ │ │ │ │ ├── base
│ │ │ │ │ │ ├── AreaService.java
│ │ │ │ │ │ ├── CourierService.java
│ │ │ │ │ │ ├── FixedAreaService.java
│ │ │ │ │ │ ├── StandardService.java
│ │ │ │ │ │ ├── TakeTimeService.java
│ │ │ │ │ │ └── impl
│ │ │ │ │ │ ├── AreaServiceImpl.java
│ │ │ │ │ │ ├── CourierServiceImpl.java
│ │ │ │ │ │ ├── FixedAreaServiceImpl.java
│ │ │ │ │ │ ├── StandardServiceImpl.java
│ │ │ │ │ │ └── TakeTimeServiceImpl.java
│ │ │ │ │ ├── system
│ │ │ │ │ │ ├── MenuService.java
│ │ │ │ │ │ ├── PermissionService.java
│ │ │ │ │ │ ├── RoleService.java
│ │ │ │ │ │ ├── UserService.java
│ │ │ │ │ │ └── impl
│ │ │ │ │ │ ├── MenuServiceImpl.java
│ │ │ │ │ │ ├── PermissionServiceImpl.java
│ │ │ │ │ │ ├── RoleServiceImpl.java
│ │ │ │ │ │ └── UserServiceImpl.java
│ │ │ │ │ ├── take_delivery
│ │ │ │ │ │ ├── OrderService.java
│ │ │ │ │ │ ├── PromotionService.java
│ │ │ │ │ │ ├── WayBillService.java
│ │ │ │ │ │ └── impl
│ │ │ │ │ │ ├── OrderServiceImpl.java
│ │ │ │ │ │ ├── PromotionServiceImpl.java
│ │ │ │ │ │ └── WayBillServiceImpl.java
│ │ │ │ │ └── transit
│ │ │ │ │ ├── DeliveryInfoService.java
│ │ │ │ │ ├── InOutStorageInfoService.java
│ │ │ │ │ ├── SignInfoService.java
│ │ │ │ │ ├── TransitInfoService.java
│ │ │ │ │ └── impl
│ │ │ │ │ ├── DeliveryInfoServiceImpl.java
│ │ │ │ │ ├── InOutStorageInfoServiceImpl.java
│ │ │ │ │ ├── SignInfoServiceImpl.java
│ │ │ │ │ └── TransitInfoServiceImpl.java
│ │ │ │ ├── utils
│ │ │ │ │ ├── FileUtils.java
│ │ │ │ │ └── PinYin4jUtils.java
│ │ │ │ └── web
│ │ │ │ └── action
│ │ │ │ ├── base
│ │ │ │ │ ├── AreaAction.java
│ │ │ │ │ ├── CourierAction.java
│ │ │ │ │ ├── FixedAreaAction.java
│ │ │ │ │ ├── StandardAction.java
│ │ │ │ │ └── TakeTimeAction.java
│ │ │ │ ├── common
│ │ │ │ │ └── BaseAction.java
│ │ │ │ ├── report
│ │ │ │ │ └── ReportAction.java
│ │ │ │ ├── system
│ │ │ │ │ ├── MenuAction.java
│ │ │ │ │ ├── PermissionAction.java
│ │ │ │ │ ├── RoleAction.java
│ │ │ │ │ └── UserAction.java
│ │ │ │ ├── take_delivery
│ │ │ │ │ ├── ImageAction.java
│ │ │ │ │ ├── OrderAction.java
│ │ │ │ │ ├── PromotionAction.java
│ │ │ │ │ └── WayBillAction.java
│ │ │ │ └── transit
│ │ │ │ ├── DeliveryInfoAction.java
│ │ │ │ ├── InOutStorageInfoAction.java
│ │ │ │ ├── SignInfoAction.java
│ │ │ │ └── TransitInfoAction.java
│ │ │ ├── resources
│ │ │ │ ├── applicationContext-cache.xml
│ │ │ │ ├── applicationContext-dataSource.xml
│ │ │ │ ├── applicationContext-elasticsearch.xml
│ │ │ │ ├── applicationContext-mq.xml
│ │ │ │ ├── applicationContext-quartz.xml
│ │ │ │ ├── applicationContext-shiro.xml
│ │ │ │ ├── applicationContext-webService.xml
│ │ │ │ ├── applicationContext.xml
│ │ │ │ ├── config.properties
│ │ │ │ ├── ehcache.xml
│ │ │ │ ├── log4j.properties
│ │ │ │ └── sentry.properties
│ │ │ └── webapp
│ │ │ ├── WEB-INF
│ │ │ │ ├── jasper
│ │ │ │ │ └── waybill.jrxml
│ │ │ │ ├── templates
│ │ │ │ │ └── hello.ftl
│ │ │ │ └── web.xml
│ │ │ ├── css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.css.map
│ │ │ │ ├── default.css
│ │ │ │ ├── login.css
│ │ │ │ ├── style.css
│ │ │ │ └── style_grey.css
│ │ │ ├── data
│ │ │ │ ├── admin.json
│ │ │ │ ├── archives.json
│ │ │ │ ├── area.json
│ │ │ │ ├── association_customer.json
│ │ │ │ ├── courier.json
│ │ │ │ ├── fixed_area.json
│ │ │ │ ├── fixedarea_subarea.json
│ │ │ │ ├── menu.json
│ │ │ │ ├── standard.json
│ │ │ │ ├── sub_area.json
│ │ │ │ ├── take_time.json
│ │ │ │ ├── transit.json
│ │ │ │ ├── users.json
│ │ │ │ └── vehicle.json
│ │ │ ├── easyuidemo
│ │ │ │ ├── 1.html
│ │ │ │ ├── 10.html
│ │ │ │ ├── 11.html
│ │ │ │ ├── 2.html
│ │ │ │ ├── 3.html
│ │ │ │ ├── 4.html
│ │ │ │ ├── 5.html
│ │ │ │ ├── 6.html
│ │ │ │ ├── 7.html
│ │ │ │ ├── 8.html
│ │ │ │ ├── 9.html
│ │ │ │ └── product.json
│ │ │ ├── editor
│ │ │ │ ├── kindeditor.js
│ │ │ │ ├── lang
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── zh_CN.js
│ │ │ │ │ └── zh_TW.js
│ │ │ │ ├── plugins
│ │ │ │ │ ├── anchor
│ │ │ │ │ │ └── anchor.js
│ │ │ │ │ ├── baidumap
│ │ │ │ │ │ ├── baidumap.js
│ │ │ │ │ │ └── map.html
│ │ │ │ │ ├── clearhtml
│ │ │ │ │ │ └── clearhtml.js
│ │ │ │ │ ├── code
│ │ │ │ │ │ ├── code.js
│ │ │ │ │ │ ├── prettify.css
│ │ │ │ │ │ └── prettify.js
│ │ │ │ │ ├── emoticons
│ │ │ │ │ │ ├── emoticons.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── 1.gif
│ │ │ │ │ │ ├── 10.gif
│ │ │ │ │ │ ├── 100.gif
│ │ │ │ │ │ ├── 101.gif
│ │ │ │ │ │ ├── 102.gif
│ │ │ │ │ │ ├── 103.gif
│ │ │ │ │ │ ├── 104.gif
│ │ │ │ │ │ ├── 105.gif
│ │ │ │ │ │ ├── 106.gif
│ │ │ │ │ │ ├── 107.gif
│ │ │ │ │ │ ├── 108.gif
│ │ │ │ │ │ ├── 109.gif
│ │ │ │ │ │ ├── 11.gif
│ │ │ │ │ │ ├── 110.gif
│ │ │ │ │ │ ├── 111.gif
│ │ │ │ │ │ ├── 112.gif
│ │ │ │ │ │ ├── 113.gif
│ │ │ │ │ │ ├── 114.gif
│ │ │ │ │ │ ├── 115.gif
│ │ │ │ │ │ ├── 116.gif
│ │ │ │ │ │ ├── 117.gif
│ │ │ │ │ │ ├── 118.gif
│ │ │ │ │ │ ├── 119.gif
│ │ │ │ │ │ ├── 12.gif
│ │ │ │ │ │ ├── 120.gif
│ │ │ │ │ │ ├── 121.gif
│ │ │ │ │ │ ├── 122.gif
│ │ │ │ │ │ ├── 123.gif
│ │ │ │ │ │ ├── 124.gif
│ │ │ │ │ │ ├── 125.gif
│ │ │ │ │ │ ├── 126.gif
│ │ │ │ │ │ ├── 127.gif
│ │ │ │ │ │ ├── 128.gif
│ │ │ │ │ │ ├── 129.gif
│ │ │ │ │ │ ├── 13.gif
│ │ │ │ │ │ ├── 130.gif
│ │ │ │ │ │ ├── 131.gif
│ │ │ │ │ │ ├── 132.gif
│ │ │ │ │ │ ├── 133.gif
│ │ │ │ │ │ ├── 134.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
│ │ │ │ │ │ ├── 72.gif
│ │ │ │ │ │ ├── 73.gif
│ │ │ │ │ │ ├── 74.gif
│ │ │ │ │ │ ├── 75.gif
│ │ │ │ │ │ ├── 76.gif
│ │ │ │ │ │ ├── 77.gif
│ │ │ │ │ │ ├── 78.gif
│ │ │ │ │ │ ├── 79.gif
│ │ │ │ │ │ ├── 8.gif
│ │ │ │ │ │ ├── 80.gif
│ │ │ │ │ │ ├── 81.gif
│ │ │ │ │ │ ├── 82.gif
│ │ │ │ │ │ ├── 83.gif
│ │ │ │ │ │ ├── 84.gif
│ │ │ │ │ │ ├── 85.gif
│ │ │ │ │ │ ├── 86.gif
│ │ │ │ │ │ ├── 87.gif
│ │ │ │ │ │ ├── 88.gif
│ │ │ │ │ │ ├── 89.gif
│ │ │ │ │ │ ├── 9.gif
│ │ │ │ │ │ ├── 90.gif
│ │ │ │ │ │ ├── 91.gif
│ │ │ │ │ │ ├── 92.gif
│ │ │ │ │ │ ├── 93.gif
│ │ │ │ │ │ ├── 94.gif
│ │ │ │ │ │ ├── 95.gif
│ │ │ │ │ │ ├── 96.gif
│ │ │ │ │ │ ├── 97.gif
│ │ │ │ │ │ ├── 98.gif
│ │ │ │ │ │ ├── 99.gif
│ │ │ │ │ │ └── static.gif
│ │ │ │ │ ├── filemanager
│ │ │ │ │ │ ├── filemanager.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── file-16.gif
│ │ │ │ │ │ ├── file-64.gif
│ │ │ │ │ │ ├── folder-16.gif
│ │ │ │ │ │ ├── folder-64.gif
│ │ │ │ │ │ └── go-up.gif
│ │ │ │ │ ├── flash
│ │ │ │ │ │ └── flash.js
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── align_left.gif
│ │ │ │ │ │ ├── align_right.gif
│ │ │ │ │ │ ├── align_top.gif
│ │ │ │ │ │ └── refresh.png
│ │ │ │ │ ├── insertfile
│ │ │ │ │ │ └── insertfile.js
│ │ │ │ │ ├── lineheight
│ │ │ │ │ │ └── lineheight.js
│ │ │ │ │ ├── link
│ │ │ │ │ │ └── link.js
│ │ │ │ │ ├── map
│ │ │ │ │ │ ├── map.html
│ │ │ │ │ │ └── map.js
│ │ │ │ │ ├── media
│ │ │ │ │ │ └── media.js
│ │ │ │ │ ├── multiimage
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ ├── select-files-en.png
│ │ │ │ │ │ │ ├── select-files-zh_CN.png
│ │ │ │ │ │ │ └── swfupload.swf
│ │ │ │ │ │ └── multiimage.js
│ │ │ │ │ ├── pagebreak
│ │ │ │ │ │ └── pagebreak.js
│ │ │ │ │ ├── plainpaste
│ │ │ │ │ │ └── plainpaste.js
│ │ │ │ │ ├── preview
│ │ │ │ │ │ └── preview.js
│ │ │ │ │ ├── quickformat
│ │ │ │ │ │ └── quickformat.js
│ │ │ │ │ ├── table
│ │ │ │ │ │ └── table.js
│ │ │ │ │ ├── template
│ │ │ │ │ │ ├── html
│ │ │ │ │ │ │ ├── 1.html
│ │ │ │ │ │ │ ├── 2.html
│ │ │ │ │ │ │ └── 3.html
│ │ │ │ │ │ └── template.js
│ │ │ │ │ └── wordpaste
│ │ │ │ │ └── wordpaste.js
│ │ │ │ └── themes
│ │ │ │ ├── common
│ │ │ │ │ ├── anchor.gif
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── flash.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── media.gif
│ │ │ │ │ └── rm.gif
│ │ │ │ ├── default
│ │ │ │ │ ├── background.png
│ │ │ │ │ ├── default.css
│ │ │ │ │ └── default.png
│ │ │ │ ├── qq
│ │ │ │ │ ├── editor.gif
│ │ │ │ │ └── qq.css
│ │ │ │ └── simple
│ │ │ │ └── simple.css
│ │ │ ├── favicon.ico
│ │ │ ├── highcharts
│ │ │ │ └── 1.html
│ │ │ ├── home.html
│ │ │ ├── images
│ │ │ │ ├── 0.png
│ │ │ │ ├── bg_grey.png
│ │ │ │ ├── bg_login.jpg
│ │ │ │ ├── bgx.png
│ │ │ │ ├── car48.gif
│ │ │ │ ├── endd.gif
│ │ │ │ ├── frame.png
│ │ │ │ ├── house.png
│ │ │ │ ├── input_bg.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── logo.png
│ │ │ │ ├── menu.png
│ │ │ │ ├── online.png
│ │ │ │ ├── person.gif
│ │ │ │ ├── person64.gif
│ │ │ │ ├── reload.png
│ │ │ │ ├── startd.gif
│ │ │ │ ├── store.png
│ │ │ │ ├── title.png
│ │ │ │ └── user_logout.png
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── easyui
│ │ │ │ │ ├── ext
│ │ │ │ │ │ ├── jquery.cookie.js
│ │ │ │ │ │ ├── jquery.portal.js
│ │ │ │ │ │ └── portal.css
│ │ │ │ │ ├── jquery.easyui.min.js
│ │ │ │ │ ├── locale
│ │ │ │ │ │ └── easyui-lang-zh_CN.js
│ │ │ │ │ └── themes
│ │ │ │ │ ├── black
│ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ ├── datagrid.css
│ │ │ │ │ │ ├── datebox.css
│ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ ├── easyui.css
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ │ ├── validatebox_arrows.png
│ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ ├── progressbar.css
│ │ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ │ ├── searchbox.css
│ │ │ │ │ │ ├── slider.css
│ │ │ │ │ │ ├── spinner.css
│ │ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ │ ├── tabs.css
│ │ │ │ │ │ ├── tree.css
│ │ │ │ │ │ ├── validatebox.css
│ │ │ │ │ │ └── window.css
│ │ │ │ │ ├── bootstrap
│ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ ├── datagrid.css
│ │ │ │ │ │ ├── datebox.css
│ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ ├── easyui.css
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ │ ├── validatebox_arrows.png
│ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ ├── progressbar.css
│ │ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ │ ├── searchbox.css
│ │ │ │ │ │ ├── slider.css
│ │ │ │ │ │ ├── spinner.css
│ │ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ │ ├── tabs.css
│ │ │ │ │ │ ├── tree.css
│ │ │ │ │ │ ├── validatebox.css
│ │ │ │ │ │ └── window.css
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ ├── datagrid.css
│ │ │ │ │ │ ├── datebox.css
│ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ ├── easyui.css
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ │ ├── validatebox_arrows.png
│ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ ├── progressbar.css
│ │ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ │ ├── searchbox.css
│ │ │ │ │ │ ├── slider.css
│ │ │ │ │ │ ├── spinner.css
│ │ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ │ ├── tabs.css
│ │ │ │ │ │ ├── tree.css
│ │ │ │ │ │ ├── validatebox.css
│ │ │ │ │ │ └── window.css
│ │ │ │ │ ├── gray
│ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ ├── datagrid.css
│ │ │ │ │ │ ├── datebox.css
│ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ ├── easyui.css
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ │ ├── validatebox_arrows.png
│ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ ├── progressbar.css
│ │ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ │ ├── searchbox.css
│ │ │ │ │ │ ├── slider.css
│ │ │ │ │ │ ├── spinner.css
│ │ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ │ ├── tabs.css
│ │ │ │ │ │ ├── tree.css
│ │ │ │ │ │ ├── validatebox.css
│ │ │ │ │ │ └── window.css
│ │ │ │ │ ├── icon.css
│ │ │ │ │ ├── icons
│ │ │ │ │ │ ├── back.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── cancel.png
│ │ │ │ │ │ ├── cut.png
│ │ │ │ │ │ ├── edit_add.png
│ │ │ │ │ │ ├── edit_remove.png
│ │ │ │ │ │ ├── filesave.png
│ │ │ │ │ │ ├── help.png
│ │ │ │ │ │ ├── mini_add.png
│ │ │ │ │ │ ├── mini_edit.png
│ │ │ │ │ │ ├── mini_refresh.png
│ │ │ │ │ │ ├── no.png
│ │ │ │ │ │ ├── ok.png
│ │ │ │ │ │ ├── pencil.png
│ │ │ │ │ │ ├── print.png
│ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ ├── reload.png
│ │ │ │ │ │ ├── search.png
│ │ │ │ │ │ ├── sum.png
│ │ │ │ │ │ ├── tip.png
│ │ │ │ │ │ └── undo.png
│ │ │ │ │ └── metro
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ ├── validatebox_arrows.png
│ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.css
│ │ │ │ │ ├── slider.css
│ │ │ │ │ ├── spinner.css
│ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ ├── tabs.css
│ │ │ │ │ ├── tree.css
│ │ │ │ │ ├── validatebox.css
│ │ │ │ │ └── window.css
│ │ │ │ ├── highcharts
│ │ │ │ │ ├── adapters
│ │ │ │ │ │ ├── standalone-framework.js
│ │ │ │ │ │ └── standalone-framework.src.js
│ │ │ │ │ ├── highcharts-3d.js
│ │ │ │ │ ├── highcharts-3d.src.js
│ │ │ │ │ ├── highcharts-all.js
│ │ │ │ │ ├── highcharts-more.js
│ │ │ │ │ ├── highcharts-more.src.js
│ │ │ │ │ ├── highcharts.js
│ │ │ │ │ ├── highcharts.src.js
│ │ │ │ │ ├── modules
│ │ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ ├── data.src.js
│ │ │ │ │ │ ├── drilldown.js
│ │ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ │ ├── exporting.js
│ │ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ │ ├── funnel.js
│ │ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ │ ├── heatmap.js
│ │ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ │ ├── no-data-to-display.src.js
│ │ │ │ │ │ ├── solid-gauge.js
│ │ │ │ │ │ └── solid-gauge.src.js
│ │ │ │ │ └── themes
│ │ │ │ │ ├── dark-blue.js
│ │ │ │ │ ├── dark-green.js
│ │ │ │ │ ├── dark-unica.js
│ │ │ │ │ ├── gray.js
│ │ │ │ │ ├── grid-light.js
│ │ │ │ │ ├── grid.js
│ │ │ │ │ ├── sand-signika.js
│ │ │ │ │ └── skies.js
│ │ │ │ ├── jquery-1.8.3.js
│ │ │ │ ├── ocupload
│ │ │ │ │ └── jquery.ocupload-1.1.2.js
│ │ │ │ └── ztree
│ │ │ │ ├── img
│ │ │ │ │ ├── diy
│ │ │ │ │ │ ├── 1_close.png
│ │ │ │ │ │ ├── 1_open.png
│ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ └── 9.png
│ │ │ │ │ ├── line_conn.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── zTreeStandard.gif
│ │ │ │ │ └── zTreeStandard.png
│ │ │ │ ├── jquery.ztree.all-3.5.js
│ │ │ │ └── zTreeStyle.css
│ │ │ ├── login.html
│ │ │ ├── pages
│ │ │ │ ├── base
│ │ │ │ │ ├── archives.html
│ │ │ │ │ ├── area.html
│ │ │ │ │ ├── courier.html
│ │ │ │ │ ├── fixed_area.html
│ │ │ │ │ ├── standard.html
│ │ │ │ │ ├── sub_area.html
│ │ │ │ │ ├── take_time.html
│ │ │ │ │ └── vehicle.html
│ │ │ │ ├── portal
│ │ │ │ │ ├── bug.html
│ │ │ │ │ ├── daiban.html
│ │ │ │ │ ├── gonggao.html
│ │ │ │ │ └── yujing.html
│ │ │ │ ├── system
│ │ │ │ │ ├── menu.html
│ │ │ │ │ ├── menu_add.html
│ │ │ │ │ ├── permission.html
│ │ │ │ │ ├── permission_add.html
│ │ │ │ │ ├── role.html
│ │ │ │ │ ├── role_add.html
│ │ │ │ │ ├── userindex.html
│ │ │ │ │ ├── userinfo.html
│ │ │ │ │ └── userlist.html
│ │ │ │ ├── take_delivery
│ │ │ │ │ ├── change_work_order.html
│ │ │ │ │ ├── different_waybill.html
│ │ │ │ │ ├── dispatcher.html
│ │ │ │ │ ├── dispatcher_monitor.html
│ │ │ │ │ ├── order.html
│ │ │ │ │ ├── promotion.html
│ │ │ │ │ ├── promotion_add.html
│ │ │ │ │ ├── sign_cancel.html
│ │ │ │ │ ├── sign_input.html
│ │ │ │ │ ├── waybill.html
│ │ │ │ │ ├── waybill_import.html
│ │ │ │ │ ├── waybill_manage.html
│ │ │ │ │ ├── waybill_print.html
│ │ │ │ │ ├── waybill_quick.html
│ │ │ │ │ └── work_order.html
│ │ │ │ └── transit
│ │ │ │ ├── arrive_time.html
│ │ │ │ ├── compose_package.html
│ │ │ │ ├── in_out_search.html
│ │ │ │ ├── in_storage.html
│ │ │ │ ├── make_storage.html
│ │ │ │ ├── out_storage.html
│ │ │ │ ├── package_search.html
│ │ │ │ ├── remain_search.html
│ │ │ │ └── transitinfo.html
│ │ │ ├── shiro.jsp
│ │ │ ├── unauthorized.html
│ │ │ ├── upload
│ │ │ │ ├── 0f441b64-6f3b-4d30-af53-f3fb53c82cf5.jpg
│ │ │ │ ├── 0fa5ecf9-a3e1-49d6-b480-7a14fc4d83b8.jpg
│ │ │ │ ├── 1e0ed4f9-182a-4ac9-bf2e-c010217cab43.jpg
│ │ │ │ ├── 456bb758-b03a-4f74-b21f-6819958f29d8.png
│ │ │ │ ├── 507f08ed-fd75-4c00-81ba-0e7e482633a5.jpg
│ │ │ │ ├── 5e5187a4-26be-498b-9f56-5aa8ce435573.jpg
│ │ │ │ ├── 6038cfe6-099d-4ed8-9d9f-cb9a16a1e1ef.jpg
│ │ │ │ ├── 609b916a-d8e2-4aa3-9891-9b2672c7c663.jpg
│ │ │ │ ├── 747beba7-4e82-430f-ab7b-174002603ba3.jpg
│ │ │ │ ├── 8d1cacdb-5076-4fdd-a859-27f955b8917b.jpg
│ │ │ │ ├── 917eeeb9-cbb0-4e22-a822-834fce30c62b.png
│ │ │ │ ├── bce307c7-e087-4249-a08a-f0f45fbbb00c.jpg
│ │ │ │ ├── d05de128-5ed7-4a1b-b9cf-9b8f7017e65b.jpg
│ │ │ │ ├── e94df87f-26b3-4ac4-b838-cc3b934bc743.jpg
│ │ │ │ ├── eec82cd5-53b2-4c7f-bc0c-2dfb9869fa68.jpg
│ │ │ │ └── fb82121b-03c4-448d-a99f-f31e5c410586.jpg
│ │ │ └── validatecode.jsp
│ │ └── test
│ │ └── java
│ │ └── cn
│ │ └── itcast
│ │ └── bos
│ │ ├── dao
│ │ │ ├── base
│ │ │ │ └── StandardRepositoryTest.java
│ │ │ └── freemarker
│ │ │ └── FreemarkerTest.java
│ │ └── service
│ │ └── take_delivery
│ │ └── test
│ │ └── WayBillServiceTest.java
│ ├── sybos_domain
│ │ ├── pom.xml
│ │ └── src
│ │ └── main
│ │ └── java
│ │ └── cn
│ │ └── itcast
│ │ └── bos
│ │ ├── constant
│ │ │ └── Constants.java
│ │ └── domain
│ │ ├── base
│ │ │ ├── Archive.java
│ │ │ ├── Area.java
│ │ │ ├── Courier.java
│ │ │ ├── FixedArea.java
│ │ │ ├── Standard.java
│ │ │ ├── SubArchive.java
│ │ │ ├── SubArea.java
│ │ │ ├── TakeTime.java
│ │ │ └── Vehicle.java
│ │ ├── page
│ │ │ └── PageBean.java
│ │ ├── system
│ │ │ ├── Menu.java
│ │ │ ├── Permission.java
│ │ │ ├── Role.java
│ │ │ └── User.java
│ │ ├── take_delivery
│ │ │ ├── Order.java
│ │ │ ├── Promotion.java
│ │ │ ├── WayBill.java
│ │ │ └── WorkBill.java
│ │ └── transit
│ │ ├── DeliveryInfo.java
│ │ ├── InOutStorageInfo.java
│ │ ├── SignInfo.java
│ │ └── TransitInfo.java
│ ├── sycrm
│ │ ├── Dockerfile
│ │ ├── data
│ │ │ └── elasticsearch
│ │ │ └── nodes
│ │ │ └── 0
│ │ │ ├── _state
│ │ │ │ └── global-11.st
│ │ │ └── node.lock
│ │ ├── pom.xml
│ │ └── src
│ │ ├── main
│ │ │ ├── java
│ │ │ │ └── cn
│ │ │ │ └── itcast
│ │ │ │ └── crm
│ │ │ │ ├── config
│ │ │ │ │ └── MainApp.java
│ │ │ │ ├── dao
│ │ │ │ │ └── CustomerRepository.java
│ │ │ │ └── service
│ │ │ │ ├── CustomerService.java
│ │ │ │ └── impl
│ │ │ │ └── CustomerServiceImpl.java
│ │ │ └── resources
│ │ │ ├── application.properties
│ │ │ ├── applicationContext-dataSource.xml
│ │ │ ├── applicationContext-webService.xml
│ │ │ ├── applicationContext.xml
│ │ │ ├── banner.txt
│ │ │ ├── config.properties
│ │ │ ├── log4j.properties
│ │ │ └── sentry.properties
│ │ └── test
│ │ └── java
│ │ └── cn
│ │ └── itcast
│ │ └── crm
│ │ └── service
│ │ └── test
│ │ └── CustomerServiceTest.java
│ ├── sycrm_domain
│ │ ├── pom.xml
│ │ └── src
│ │ └── main
│ │ └── java
│ │ └── cn
│ │ └── itcast
│ │ └── crm
│ │ └── domain
│ │ └── Customer.java
│ ├── syfore
│ │ ├── Dockerfile
│ │ ├── pom.xml
│ │ └── src
│ │ ├── main
│ │ │ ├── java
│ │ │ │ └── cn
│ │ │ │ └── itcast
│ │ │ │ └── bos
│ │ │ │ ├── utils
│ │ │ │ │ └── MailUtils.java
│ │ │ │ └── web
│ │ │ │ └── action
│ │ │ │ ├── BaseAction.java
│ │ │ │ ├── CustomerAction.java
│ │ │ │ ├── OrderAction.java
│ │ │ │ └── PromotionAction.java
│ │ │ ├── resources
│ │ │ │ ├── application.properties
│ │ │ │ ├── applicationContext-cache.xml
│ │ │ │ ├── applicationContext-mq.xml
│ │ │ │ ├── applicationContext.xml
│ │ │ │ ├── banner.txt
│ │ │ │ ├── config.properties
│ │ │ │ ├── log4j.properties
│ │ │ │ └── sentry.properties
│ │ │ └── webapp
│ │ │ ├── WEB-INF
│ │ │ │ ├── freemarker_templates
│ │ │ │ │ └── promotion_detail.ftl
│ │ │ │ ├── template
│ │ │ │ │ └── batchOrderModel.xlsx
│ │ │ │ └── web.xml
│ │ │ ├── angulardemo
│ │ │ │ ├── 1.html
│ │ │ │ ├── 2.html
│ │ │ │ ├── 3.html
│ │ │ │ ├── 4.html
│ │ │ │ ├── 5.html
│ │ │ │ ├── 5_1.html
│ │ │ │ ├── 5_2.html
│ │ │ │ ├── 5_3.html
│ │ │ │ ├── 6.html
│ │ │ │ ├── 6_1.json
│ │ │ │ └── 6_2.json
│ │ │ ├── css
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ └── font-awesome.css
│ │ │ │ ├── city-picker.css
│ │ │ │ ├── fail.css
│ │ │ │ ├── nav.css
│ │ │ │ ├── promotion_detail.css
│ │ │ │ ├── public.css
│ │ │ │ ├── styleexpress.css
│ │ │ │ ├── styleindex.css
│ │ │ │ ├── styleloginsign.css
│ │ │ │ ├── stylemyhome.css
│ │ │ │ ├── styleorder.css
│ │ │ │ ├── stylesearch.css
│ │ │ │ └── styleuserinfo.css
│ │ │ ├── data
│ │ │ │ ├── promotion1.json
│ │ │ │ └── promotion2.json
│ │ │ ├── express_manage.html
│ │ │ ├── favicon.ico
│ │ │ ├── freemarker
│ │ │ │ └── 44.html
│ │ │ ├── images
│ │ │ │ ├── convenience_store.png
│ │ │ │ ├── drop-arrow.png
│ │ │ │ ├── fail_person.png
│ │ │ │ ├── fresh-to-stomach_in.png
│ │ │ │ ├── icon
│ │ │ │ │ ├── clock.png
│ │ │ │ │ ├── fail_person.png
│ │ │ │ │ ├── line.png
│ │ │ │ │ ├── logo.png
│ │ │ │ │ ├── ok.png
│ │ │ │ │ ├── partline.png
│ │ │ │ │ ├── suyun
│ │ │ │ │ │ ├── contact.png
│ │ │ │ │ │ ├── erweima.png
│ │ │ │ │ │ ├── gotop.png
│ │ │ │ │ │ ├── icon1.png
│ │ │ │ │ │ ├── icon2.png
│ │ │ │ │ │ ├── icon3.png
│ │ │ │ │ │ ├── icon4.png
│ │ │ │ │ │ ├── ordercon01.png
│ │ │ │ │ │ ├── ordercon02.png
│ │ │ │ │ │ ├── ordercon03.png
│ │ │ │ │ │ ├── photo.png
│ │ │ │ │ │ ├── plus.png
│ │ │ │ │ │ ├── right.png
│ │ │ │ │ │ ├── sign01.png
│ │ │ │ │ │ ├── sign02.png
│ │ │ │ │ │ ├── sign03.png
│ │ │ │ │ │ ├── signbg.png
│ │ │ │ │ │ ├── signbg02.png
│ │ │ │ │ │ └── signbg03.png
│ │ │ │ │ ├── xlsLogo.png
│ │ │ │ │ └── yanz.png
│ │ │ │ ├── order-success.png
│ │ │ │ ├── pro.jpg
│ │ │ │ ├── qujian.png
│ │ │ │ ├── self.png
│ │ │ │ ├── sf_youxuan.png
│ │ │ │ ├── show
│ │ │ │ │ ├── activity01.png
│ │ │ │ │ ├── activity02.jpg
│ │ │ │ │ ├── activity03.jpg
│ │ │ │ │ ├── banner_sc.jpg
│ │ │ │ │ ├── cuxiaobg.jpg
│ │ │ │ │ ├── homebg.png
│ │ │ │ │ ├── photo.png
│ │ │ │ │ ├── suyun
│ │ │ │ │ │ ├── banner.png
│ │ │ │ │ │ ├── homebanner.png
│ │ │ │ │ │ ├── homeshow.png
│ │ │ │ │ │ ├── loginbg.png
│ │ │ │ │ │ ├── newsbg.png
│ │ │ │ │ │ ├── promotion1.png
│ │ │ │ │ │ ├── promotion2.png
│ │ │ │ │ │ ├── promotion3.png
│ │ │ │ │ │ ├── promotion4.png
│ │ │ │ │ │ ├── tese1.png
│ │ │ │ │ │ ├── tese2.png
│ │ │ │ │ │ ├── tese3.png
│ │ │ │ │ │ └── tese4.png
│ │ │ │ │ ├── tui01.jpg
│ │ │ │ │ ├── tui02.jpg
│ │ │ │ │ └── tui03.jpg
│ │ │ │ ├── station.png
│ │ │ │ ├── store.png
│ │ │ │ └── vehicle.png
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── angular-file-upload.min.js
│ │ │ │ ├── angular-route.min.js
│ │ │ │ ├── angular-route.min.js.map
│ │ │ │ ├── angular.min.js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── citypicker
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── city-picker.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ └── drop-arrow.png
│ │ │ │ │ └── js
│ │ │ │ │ ├── city-picker.data.js
│ │ │ │ │ ├── city-picker.data.min.js
│ │ │ │ │ ├── city-picker.js
│ │ │ │ │ └── city-picker.min.js
│ │ │ │ ├── console-sham.min.js
│ │ │ │ ├── html5.js
│ │ │ │ ├── jquery.js
│ │ │ │ ├── jquery.min.js
│ │ │ │ ├── respond.min.js
│ │ │ │ └── self
│ │ │ │ ├── addressadd.js
│ │ │ │ ├── city-picker.data.js
│ │ │ │ ├── city-picker.js
│ │ │ │ ├── controllers.js
│ │ │ │ ├── effect.js
│ │ │ │ ├── main.js
│ │ │ │ ├── page.js
│ │ │ │ └── validate.js
│ │ │ ├── loadfail.html
│ │ │ ├── login.html
│ │ │ ├── main.html
│ │ │ ├── myhome.html
│ │ │ ├── network.html
│ │ │ ├── order-success.jsp
│ │ │ ├── order.html
│ │ │ ├── promotion.html
│ │ │ ├── promotion_detail.html
│ │ │ ├── search.html
│ │ │ ├── signup-success.html
│ │ │ ├── signup.html
│ │ │ └── userinfo.html
│ │ └── test
│ │ └── java
│ │ └── cn
│ │ └── itcast
│ │ └── bos
│ │ └── redis
│ │ └── test
│ │ ├── JedisTest.java
│ │ └── RedisTemplateTest.java
│ └── sysms
│ ├── Dockerfile
│ ├── pom.xml
│ └── src
│ └── main
│ ├── java
│ │ └── cn
│ │ └── itcast
│ │ └── bos
│ │ ├── config
│ │ │ └── MainApp.java
│ │ ├── mq
│ │ │ └── SmsConsumer.java
│ │ └── utils
│ │ └── SmsUtils.java
│ └── resources
│ ├── application.properties
│ ├── applicationContext.xml
│ ├── banner.txt
│ └── log4j.properties
└── 5t6t网_物流运输管理系统.zip
218 directories, 924 files
评论