在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 物流管理系统代码

物流管理系统代码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:129.99M
  • 下载次数:13
  • 浏览次数:166
  • 发布时间:2021-11-16
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
物流管理系统代码
【实例截图】
【核心代码】
16359647479701477014.zip
├── mvnw
├── mvnw.cmd
├── pom.xml
├── src
│   ├── main
│   │   ├── java
│   │   │   └── com
│   │   │   └── forest
│   │   │   └── wu
│   │   │   ├── controller
│   │   │   │   ├── BranchController.java
│   │   │   │   ├── CenterController.java
│   │   │   │   ├── ClientController.java
│   │   │   │   ├── FilialeController.java
│   │   │   │   ├── HomeController.java
│   │   │   │   ├── LoginController.java
│   │   │   │   └── Order_infoController.java
│   │   │   ├── dao
│   │   │   │   ├── CargoMapper.java
│   │   │   │   ├── DictionaryMapper.java
│   │   │   │   ├── FunctionMapper.java
│   │   │   │   ├── InstorageMapper.java
│   │   │   │   ├── NoteMapper.java
│   │   │   │   ├── Order_infoMapper.java
│   │   │   │   ├── OrganizationMapper.java
│   │   │   │   ├── OutstorageMapper.java
│   │   │   │   ├── RepertoryMapper.java
│   │   │   │   ├── ReturnMapper.java
│   │   │   │   ├── RoleMapper.java
│   │   │   │   ├── UserfunctionMapper.java
│   │   │   │   ├── UserMapper.java
│   │   │   │   └── WorkorderMapper.java
│   │   │   ├── excel
│   │   │   │   ├── ExcelException.java
│   │   │   │   ├── ExcelListener.java
│   │   │   │   ├── ExcelUtil.java
│   │   │   │   └── ExcelWriterFactroy.java
│   │   │   ├── pojo
│   │   │   │   ├── Cargo.java
│   │   │   │   ├── Dictionary.java
│   │   │   │   ├── Function.java
│   │   │   │   ├── Instorage.java
│   │   │   │   ├── Note.java
│   │   │   │   ├── Order_info.java
│   │   │   │   ├── Organization.java
│   │   │   │   ├── Outstorage.java
│   │   │   │   ├── Repertory.java
│   │   │   │   ├── Return.java
│   │   │   │   ├── Role.java
│   │   │   │   ├── Userfunction.java
│   │   │   │   ├── User.java
│   │   │   │   └── Workorder.java
│   │   │   ├── service
│   │   │   │   ├── CenterService.java
│   │   │   │   ├── CourierService.java
│   │   │   │   ├── DictionaryService.java
│   │   │   │   ├── FilialeWorkOrderService.java
│   │   │   │   ├── impl
│   │   │   │   │   ├── CenterServiceImpl.java
│   │   │   │   │   ├── CourierServiceImpl.java
│   │   │   │   │   ├── DictionaryServiceImpl.java
│   │   │   │   │   ├── FilialeWorkOrderServiceImpl.java
│   │   │   │   │   ├── NoteServiceImpl.java
│   │   │   │   │   ├── Order_infoServiceImpl.java
│   │   │   │   │   ├── OrganizationServiceImpl.java
│   │   │   │   │   ├── StorageServiceImpl.java
│   │   │   │   │   ├── UserServiceImpl.java
│   │   │   │   │   └── WdServiceImpl.java
│   │   │   │   ├── NoteService.java
│   │   │   │   ├── Order_infoService.java
│   │   │   │   ├── OrganizationService.java
│   │   │   │   ├── StorageService.java
│   │   │   │   ├── UserService.java
│   │   │   │   └── WdService.java
│   │   │   ├── utils
│   │   │   │   ├── AlipayConfig.java
│   │   │   │   ├── CalculateMoneyEstimate.java
│   │   │   │   ├── Constants.java
│   │   │   │   ├── DistanceUtils.java
│   │   │   │   ├── httpApiDemo
│   │   │   │   │   ├── AccountInfo.java
│   │   │   │   │   ├── AffMarkSMS.java
│   │   │   │   │   ├── common
│   │   │   │   │   │   ├── Config.java
│   │   │   │   │   │   └── HttpUtil.java
│   │   │   │   │   ├── IndustrySMS.java
│   │   │   │   │   ├── Test.java
│   │   │   │   │   └── VoiceCode.java
│   │   │   │   ├── interceptor
│   │   │   │   │   ├── Auth.java
│   │   │   │   │   ├── InterceptorConfig.java
│   │   │   │   │   └── SysInterceptor.java
│   │   │   │   ├── MD5.java
│   │   │   │   ├── NotifyServlet.java
│   │   │   │   └── Page.java
│   │   │   └── WuApplication.java
│   │   ├── resources
│   │   │   ├── application.properties
│   │   │   ├── images
│   │   │   │   ├── 1.jpg
│   │   │   │   └── dahua.png
│   │   │   ├── logback-spring.xml
│   │   │   └── mapper
│   │   │   ├── CargoMapper.xml
│   │   │   ├── DictionaryMapper.xml
│   │   │   ├── FunctionMapper.xml
│   │   │   ├── InstorageMapper.xml
│   │   │   ├── NoteMapper.xml
│   │   │   ├── Order_infoMapper.xml
│   │   │   ├── OrganizationMapper.xml
│   │   │   ├── OutstorageMapper.xml
│   │   │   ├── RepertoryMapper.xml
│   │   │   ├── ReturnMapper.xml
│   │   │   ├── RoleMapper.xml
│   │   │   ├── UserfunctionMapper.xml
│   │   │   ├── UserMapper.xml
│   │   │   └── WorkorderMapper.xml
│   │   └── webapp
│   │   ├── 403.jsp
│   │   ├── chartjs.html
│   │   ├── indexBootstrap
│   │   │   ├── css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── flexslider.css
│   │   │   │   ├── font-awesome1.css
│   │   │   │   ├── index.css
│   │   │   │   ├── index_ login.css
│   │   │   │   ├── owl.carousel.css
│   │   │   │   ├── style.css
│   │   │   │   └── tiao.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   ├── images
│   │   │   │   ├── 1.jpg
│   │   │   │   ├── 2.jpg
│   │   │   │   ├── 3.jpg
│   │   │   │   ├── 4.jpg
│   │   │   │   ├── 5.jpg
│   │   │   │   ├── 6.jpg
│   │   │   │   ├── 7.jpg
│   │   │   │   ├── area1.jpg
│   │   │   │   ├── area2.jpg
│   │   │   │   ├── area3.jpg
│   │   │   │   ├── c1.jpg
│   │   │   │   ├── c2.jpg
│   │   │   │   ├── c3.jpg
│   │   │   │   ├── c4.jpg
│   │   │   │   ├── c5.jpg
│   │   │   │   ├── c6.jpg
│   │   │   │   ├── g1.jpg
│   │   │   │   ├── g2.jpg
│   │   │   │   ├── g3.jpg
│   │   │   │   ├── g4.jpg
│   │   │   │   ├── g5.jpg
│   │   │   │   ├── g6.jpg
│   │   │   │   ├── img-sprite.png
│   │   │   │   ├── location.jpg
│   │   │   │   ├── n1.png
│   │   │   │   ├── n2.png
│   │   │   │   ├── o1.png
│   │   │   │   ├── o2.png
│   │   │   │   ├── o3.png
│   │   │   │   ├── o4.png
│   │   │   │   ├── subscribe.png
│   │   │   │   ├── themes.gif
│   │   │   │   ├── to-top2.png
│   │   │   │   └── world.jpg
│   │   │   └── js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── easing.js
│   │   │   ├── jquery.flexslider.js
│   │   │   ├── jquery.min.js
│   │   │   ├── modernizr.custom.js
│   │   │   ├── move-top.js
│   │   │   ├── owl.carousel.js
│   │   │   ├── personal.js
│   │   │   ├── responsiveslides.min.js
│   │   │   └── tangcuang.js
│   │   ├── index.jsp
│   │   ├── statics
│   │   │   ├── css
│   │   │   │   ├── bootstrap-datetimepicker.css
│   │   │   │   ├── bootstrap-datetimepicker.min.css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-progressbar-3.3.4.min.css
│   │   │   │   ├── custom.min.css
│   │   │   │   ├── dropzone.min.css
│   │   │   │   ├── font-awesome.min.css
│   │   │   │   ├── green@2x.png
│   │   │   │   ├── green.css
│   │   │   │   ├── green.png
│   │   │   │   ├── index.css
│   │   │   │   ├── index_ login.css
│   │   │   │   ├── jquery.mCustomScrollbar.min.css
│   │   │   │   ├── jqvmap.min.css
│   │   │   │   ├── maps
│   │   │   │   │   └── jquery-jvectormap-2.0.3.css
│   │   │   │   ├── nprogress.css
│   │   │   │   └── tiao.css
│   │   │   ├── fonts
│   │   │   │   ├── FontAwesome.otf
│   │   │   │   ├── fontawesome-webfont.eot
│   │   │   │   ├── fontawesome-webfont.svg
│   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   ├── fontawesome-webfont.woff
│   │   │   │   ├── fontawesome-webfont.woff2
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   ├── images
│   │   │   │   ├── 1.jpg
│   │   │   │   ├── 2.jpg
│   │   │   │   ├── 3.jpg
│   │   │   │   ├── 4.jpg
│   │   │   │   ├── 5.jpg
│   │   │   │   ├── 6.jpg
│   │   │   │   ├── 7.jpg
│   │   │   │   ├── american-express.png
│   │   │   │   ├── area1.jpg
│   │   │   │   ├── area2.jpg
│   │   │   │   ├── area3.jpg
│   │   │   │   ├── c1.jpg
│   │   │   │   ├── c2.jpg
│   │   │   │   ├── c3.jpg
│   │   │   │   ├── c4.jpg
│   │   │   │   ├── c5.jpg
│   │   │   │   ├── c6.jpg
│   │   │   │   ├── cropper.jpg
│   │   │   │   ├── g1.jpg
│   │   │   │   ├── g2.jpg
│   │   │   │   ├── g3.jpg
│   │   │   │   ├── g4.jpg
│   │   │   │   ├── g5.jpg
│   │   │   │   ├── g6.jpg
│   │   │   │   ├── img1.jpg
│   │   │   │   ├── img.jpg
│   │   │   │   ├── img-sprite.png
│   │   │   │   ├── inbox.png
│   │   │   │   ├── location.jpg
│   │   │   │   ├── mastercard.png
│   │   │   │   ├── media.jpg
│   │   │   │   ├── n1.png
│   │   │   │   ├── n2.png
│   │   │   │   ├── o1.png
│   │   │   │   ├── o2.png
│   │   │   │   ├── o3.png
│   │   │   │   ├── o4.png
│   │   │   │   ├── paypal.png
│   │   │   │   ├── picture.jpg
│   │   │   │   ├── prod-1.jpg
│   │   │   │   ├── prod-2.jpg
│   │   │   │   ├── prod-3.jpg
│   │   │   │   ├── prod-4.jpg
│   │   │   │   ├── prod-5.jpg
│   │   │   │   ├── subscribe.png
│   │   │   │   ├── themes.gif
│   │   │   │   ├── to-top2.png
│   │   │   │   ├── user.png
│   │   │   │   ├── visa.png
│   │   │   │   └── world.jpg
│   │   │   ├── js
│   │   │   │   ├── bootstrap-datetimepicker.js
│   │   │   │   ├── bootstrap-datetimepicker.min.js
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   ├── Chart.min.js
│   │   │   │   ├── custom.min.js
│   │   │   │   ├── dataTables.responsive.min.js
│   │   │   │   ├── datepicker
│   │   │   │   │   └── daterangepicker.js
│   │   │   │   ├── dropzone.js
│   │   │   │   ├── echarts.js
│   │   │   │   ├── fastclick.js
│   │   │   │   ├── icheck.min.js
│   │   │   │   ├── jquery-1.4.2.min.js
│   │   │   │   ├── jquery-1.8.3.js
│   │   │   │   ├── jquery.dataTables.min.js
│   │   │   │   ├── jquery.mCustomScrollbar.concat.min.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   ├── moment
│   │   │   │   │   └── moment.min.js
│   │   │   │   ├── nprogress.js
│   │   │   │   ├── responsive.bootstrap.js
│   │   │   │   ├── ry
│   │   │   │   │   ├── branchquery_ry.js
│   │   │   │   │   ├── moneyestimate_ry.js
│   │   │   │   │   ├── query_ry.js
│   │   │   │   │   └── send_ry.js
│   │   │   │   ├── tangcuang.js
│   │   │   │   ├── validator.js
│   │   │   │   └── zz
│   │   │   │   ├── baobiao3.js
│   │   │   │   ├── fanhuodanxiangqing.js
│   │   │   │   ├── fengongsichaxun.js
│   │   │   │   ├── fengongsiguanlitianjia.js
│   │   │   │   ├── fengongsitianjia.js
│   │   │   │   └── gongdan2_zz.js
│   │   │   ├── localcss
│   │   │   │   ├── appinfoadd.css
│   │   │   │   ├── appinfolist.css
│   │   │   │   ├── applist.css
│   │   │   │   └── fenpei.css
│   │   │   ├── localjs
│   │   │   │   ├── appcheck.js
│   │   │   │   ├── appinfoadd.js
│   │   │   │   ├── applist.js
│   │   │   │   ├── appversionadd.js
│   │   │   │   ├── appversionmodify.js
│   │   │   │   ├── database.js
│   │   │   │   ├── fenpeigong.js
│   │   │   │   ├── fenpei.js
│   │   │   │   ├── putinstorage.js
│   │   │   │   ├── rollpage.js
│   │   │   │   ├── storage.js
│   │   │   │   ├── wdadd.js
│   │   │   │   ├── wdinfolist.js
│   │   │   │   ├── wdinfoview.js
│   │   │   │   └── workorderview.js
│   │   │   └── uploadfiles
│   │   │   ├── 111.jpg
│   │   │   ├── 11.jpg
│   │   │   ├── 123123123.jpg
│   │   │   ├── 123123.jpg
│   │   │   ├── 123456.gif
│   │   │   ├── 123456.jpg
│   │   │   ├── 123456.png
│   │   │   ├── 1.jpg
│   │   │   ├── 22222222.jpg
│   │   │   ├── 3333.jpg
│   │   │   ├── 444.jpg
│   │   │   ├── 6666.jpg
│   │   │   ├── 888888.jpg
│   │   │   ├── 8888.gif
│   │   │   ├── 8888.jpg
│   │   │   ├── admin1111.jpg
│   │   │   ├── admin11122d222.jpg
│   │   │   ├── admin11.jpg
│   │   │   ├── admin166.jpg
│   │   │   ├── admin1.jpg
│   │   │   ├── admin2222.jpg
│   │   │   ├── admin7777.jpg
│   │   │   ├── admin999.jpg
│   │   │   ├── admin.jpg
│   │   │   ├── beijing.jpg
│   │   │   ├── dahua.png
│   │   │   ├── filiale.jpg
│   │   │   ├── lixing.gif
│   │   │   ├── lixing.jpg
│   │   │   ├── shanghai.jpg
│   │   │   ├── test004.jpg
│   │   │   ├── test3.jpg
│   │   │   ├── user.png
│   │   │   ├── xiao.jpg
│   │   │   └── 如444.jpg
│   │   ├── test.html
│   │   ├── WEB-INF
│   │   │   ├── jsp
│   │   │   │   ├── common
│   │   │   │   │   ├── footer.jsp
│   │   │   │   │   ├── header.jsp
│   │   │   │   │   └── js.jsp
│   │   │   │   ├── jzl
│   │   │   │   │   ├── index.jsp
│   │   │   │   │   ├── personal.jsp
│   │   │   │   │   └── TEST
│   │   │   │   ├── ljh
│   │   │   │   │   ├── addchuku.jsp
│   │   │   │   │   ├── addruku.jsp
│   │   │   │   │   ├── instorageinfo.jsp
│   │   │   │   │   ├── outstorageinfo.jsp
│   │   │   │   │   ├── package.jsp
│   │   │   │   │   ├── putinstorage.jsp
│   │   │   │   │   ├── putoutinstorage.jsp
│   │   │   │   │   ├── unpackage.jsp
│   │   │   │   │   ├── wdadd.jsp
│   │   │   │   │   ├── wdinfo.jsp
│   │   │   │   │   ├── wdmodify.jsp
│   │   │   │   │   ├── wdquery.jsp
│   │   │   │   │   ├── workorderinfo.jsp
│   │   │   │   │   └── workorderquery.jsp
│   │   │   │   ├── lpq
│   │   │   │   │   ├── chaxun_lpq.jsp
│   │   │   │   │   ├── fenpei2.jsp
│   │   │   │   │   ├── gongdan_lpq.jsp
│   │   │   │   │   ├── jidu.jsp
│   │   │   │   │   ├── nian.jsp
│   │   │   │   │   ├── querengongdan2.jsp
│   │   │   │   │   ├── tianjiayuangong2.jsp
│   │   │   │   │   ├── xiangqing3.jsp
│   │   │   │   │   ├── yuangong2.jsp
│   │   │   │   │   ├── yuangongxiangqing2.jsp
│   │   │   │   │   └── yue.jsp
│   │   │   │   ├── ry
│   │   │   │   │   ├── baobiao_ry.jsp
│   │   │   │   │   ├── branchquery_ry.jsp
│   │   │   │   │   ├── moneyestimate_ry.jsp
│   │   │   │   │   ├── note_ry.jsp
│   │   │   │   │   ├── notify.jsp
│   │   │   │   │   ├── query_ry.jsp
│   │   │   │   │   ├── send_ry.jsp
│   │   │   │   │   └── success.jsp
│   │   │   │   ├── statics
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   │   ├── bootstrap-progressbar-3.3.4.min.css
│   │   │   │   │   │   ├── custom.min.css
│   │   │   │   │   │   ├── dropzone.min.css
│   │   │   │   │   │   ├── font-awesome.min.css
│   │   │   │   │   │   ├── green@2x.png
│   │   │   │   │   │   ├── green.css
│   │   │   │   │   │   ├── green.png
│   │   │   │   │   │   ├── index.css
│   │   │   │   │   │   ├── index_ login.css
│   │   │   │   │   │   ├── jquery.mCustomScrollbar.min.css
│   │   │   │   │   │   ├── jqvmap.min.css
│   │   │   │   │   │   ├── maps
│   │   │   │   │   │   │   └── jquery-jvectormap-2.0.3.css
│   │   │   │   │   │   ├── nprogress.css
│   │   │   │   │   │   └── tiao.css
│   │   │   │   │   ├── fonts
│   │   │   │   │   │   ├── FontAwesome.otf
│   │   │   │   │   │   ├── fontawesome-webfont.eot
│   │   │   │   │   │   ├── fontawesome-webfont.svg
│   │   │   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   │   │   ├── fontawesome-webfont.woff
│   │   │   │   │   │   ├── fontawesome-webfont.woff2
│   │   │   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── 1.jpg
│   │   │   │   │   │   ├── 2.jpg
│   │   │   │   │   │   ├── 3.jpg
│   │   │   │   │   │   ├── 4.jpg
│   │   │   │   │   │   ├── 5.jpg
│   │   │   │   │   │   ├── 6.jpg
│   │   │   │   │   │   ├── 7.jpg
│   │   │   │   │   │   ├── american-express.png
│   │   │   │   │   │   ├── area1.jpg
│   │   │   │   │   │   ├── area2.jpg
│   │   │   │   │   │   ├── area3.jpg
│   │   │   │   │   │   ├── c1.jpg
│   │   │   │   │   │   ├── c2.jpg
│   │   │   │   │   │   ├── c3.jpg
│   │   │   │   │   │   ├── c4.jpg
│   │   │   │   │   │   ├── c5.jpg
│   │   │   │   │   │   ├── c6.jpg
│   │   │   │   │   │   ├── cropper.jpg
│   │   │   │   │   │   ├── g1.jpg
│   │   │   │   │   │   ├── g2.jpg
│   │   │   │   │   │   ├── g3.jpg
│   │   │   │   │   │   ├── g4.jpg
│   │   │   │   │   │   ├── g5.jpg
│   │   │   │   │   │   ├── g6.jpg
│   │   │   │   │   │   ├── img1.jpg
│   │   │   │   │   │   ├── img.jpg
│   │   │   │   │   │   ├── img-sprite.png
│   │   │   │   │   │   ├── inbox.png
│   │   │   │   │   │   ├── location.jpg
│   │   │   │   │   │   ├── mastercard.png
│   │   │   │   │   │   ├── media.jpg
│   │   │   │   │   │   ├── n1.png
│   │   │   │   │   │   ├── n2.png
│   │   │   │   │   │   ├── o1.png
│   │   │   │   │   │   ├── o2.png
│   │   │   │   │   │   ├── o3.png
│   │   │   │   │   │   ├── o4.png
│   │   │   │   │   │   ├── paypal.png
│   │   │   │   │   │   ├── picture.jpg
│   │   │   │   │   │   ├── prod-1.jpg
│   │   │   │   │   │   ├── prod-2.jpg
│   │   │   │   │   │   ├── prod-3.jpg
│   │   │   │   │   │   ├── prod-4.jpg
│   │   │   │   │   │   ├── prod-5.jpg
│   │   │   │   │   │   ├── subscribe.png
│   │   │   │   │   │   ├── themes.gif
│   │   │   │   │   │   ├── to-top2.png
│   │   │   │   │   │   ├── user.png
│   │   │   │   │   │   ├── visa.png
│   │   │   │   │   │   └── world.jpg
│   │   │   │   │   ├── js
│   │   │   │   │   │   ├── bootstrap.min.js
│   │   │   │   │   │   ├── custom.min.js
│   │   │   │   │   │   ├── datepicker
│   │   │   │   │   │   │   └── daterangepicker.js
│   │   │   │   │   │   ├── dropzone.js
│   │   │   │   │   │   ├── echarts.js
│   │   │   │   │   │   ├── fastclick.js
│   │   │   │   │   │   ├── icheck.min.js
│   │   │   │   │   │   ├── jquery-1.4.2.min.js
│   │   │   │   │   │   ├── jquery-1.8.3.js
│   │   │   │   │   │   ├── jquery.dataTables.min.js
│   │   │   │   │   │   ├── jquery.mCustomScrollbar.concat.min.js
│   │   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   │   ├── moment
│   │   │   │   │   │   │   └── moment.min.js
│   │   │   │   │   │   ├── nprogress.js
│   │   │   │   │   │   ├── tangcuang.js
│   │   │   │   │   │   ├── validator.js
│   │   │   │   │   │   ├── xlh
│   │   │   │   │   │   │   └── weekbaobiao.js
│   │   │   │   │   │   └── zz
│   │   │   │   │   ├── localcss
│   │   │   │   │   │   ├── appinfoadd.css
│   │   │   │   │   │   ├── appinfolist.css
│   │   │   │   │   │   ├── applist.css
│   │   │   │   │   │   └── fenpei.css
│   │   │   │   │   ├── localjs
│   │   │   │   │   │   ├── appcheck.js
│   │   │   │   │   │   ├── appinfoadd.js
│   │   │   │   │   │   ├── appinfolist.js
│   │   │   │   │   │   ├── appinfomodify.js
│   │   │   │   │   │   ├── appinfoview.js
│   │   │   │   │   │   ├── applist.js
│   │   │   │   │   │   ├── appversionadd.js
│   │   │   │   │   │   ├── appversionmodify.js
│   │   │   │   │   │   ├── database.js
│   │   │   │   │   │   └── rollpage.js
│   │   │   │   │   └── uploadfiles
│   │   │   │   │   ├── air.net.machinarium.Machinarium.GP.jpg
│   │   │   │   │   ├── air.net.machinarium.Machinarium.GP-V1.1.1.apk
│   │   │   │   │   ├── com.bithack.apparatus.jpg
│   │   │   │   │   ├── com.bithack.apparatus-V1.1.1.apk
│   │   │   │   │   ├── com.bithack.apparatus-V1.1.2.apk
│   │   │   │   │   ├── com.doodleapps.powdertoy.jpg
│   │   │   │   │   ├── com.doodleapps.powdertoy-V1.1.2.apk
│   │   │   │   │   ├── com.doodleapps.powdertoy-V1.1.31.apk
│   │   │   │   │   ├── com.doodleapps.powdertoy-V1.1.3.apk
│   │   │   │   │   ├── com.google.android.inputmethod.pinyin.jpg
│   │   │   │   │   ├── com.google.android.inputmethod.pinyin-V1.1.1.apk
│   │   │   │   │   ├── com.katecca.screenofflockdonate.jpg
│   │   │   │   │   ├── com.kleientertainment.doNotStarvePocket.jpg
│   │   │   │   │   ├── com.kleientertainment.doNotStarvePocket-V1.1.1.apk
│   │   │   │   │   ├── com.kleientertainment.doNotStarvePocket-V1.1.2.apk
│   │   │   │   │   ├── com.lbe.security.jpg
│   │   │   │   │   ├── com.momocorp.o2jamu.jpg
│   │   │   │   │   ├── com.plexnor.gravityscreenoffpro.jpg
│   │   │   │   │   ├── com.speedsoftware.rootexplorer.jpg
│   │   │   │   │   ├── com.speedsoftware.rootexplorer-V1.1.1.apk
│   │   │   │   │   └── com.sp.protector.free.jpg
│   │   │   │   ├── xlh
│   │   │   │   │   ├── addinfo_xlh.jsp
│   │   │   │   │   ├── baobiao_dindan_xlh.jsp
│   │   │   │   │   ├── dindan_xlh.jsp
│   │   │   │   │   ├── gondanxiangqing_xlh.jsp
│   │   │   │   │   ├── gondan_xlh.jsp
│   │   │   │   │   ├── main_xlh.jsp
│   │   │   │   │   ├── orderxianqian_xlh.jsp
│   │   │   │   │   ├── return_xlh.jsp
│   │   │   │   │   ├── weituo_xlh.jsp
│   │   │   │   │   └── workweituo_xlh.jsp
│   │   │   │   └── zz
│   │   │   │   ├── baobiao1_zz.jsp
│   │   │   │   ├── baobiao2.jsp
│   │   │   │   ├── baobiao3.jsp
│   │   │   │   ├── baobiao4.jsp
│   │   │   │   ├── fanhuodanlist_zz.jsp
│   │   │   │   ├── fanhuodanxiangqing_zz.jsp
│   │   │   │   ├── fengongsichaxun_zz.jsp
│   │   │   │   ├── fengongsiguanlichaxun_zz.jsp
│   │   │   │   ├── fengongsiguanlitianjia_zz.jsp
│   │   │   │   ├── fengongsiguanlixiangqing_zz.jsp
│   │   │   │   ├── fengongsitianjia_zz.jsp
│   │   │   │   ├── fengongsixiangqing_zz.jsp
│   │   │   │   ├── gondan2_zz.jsp
│   │   │   │   ├── TEST
│   │   │   │   ├── wangdianchaxun_zz.jsp
│   │   │   │   ├── wangdiantianjia_zz.jsp
│   │   │   │   ├── wangdianxiangqing_zz.jsp
│   │   │   │   └── xiangqing_zz.jsp
│   │   │   └── web.xml
│   │   └── zz
│   │   └── wangdianxiangqing_zz.jsp
│   └── test
│   └── java
│   ├── com
│   │   └── forest
│   │   └── wu
│   │   └── WuApplicationTests.java
│   └── test.java
├── target
│   ├── classes
│   │   ├── application.properties
│   │   ├── com
│   │   │   └── forest
│   │   │   └── wu
│   │   │   ├── controller
│   │   │   │   ├── BranchController.class
│   │   │   │   ├── CenterController.class
│   │   │   │   ├── ClientController.class
│   │   │   │   ├── FilialeController.class
│   │   │   │   ├── HomeController.class
│   │   │   │   ├── LoginController.class
│   │   │   │   └── Order_infoController.class
│   │   │   ├── dao
│   │   │   │   ├── CargoMapper.class
│   │   │   │   ├── DictionaryMapper.class
│   │   │   │   ├── FunctionMapper.class
│   │   │   │   ├── InstorageMapper.class
│   │   │   │   ├── NoteMapper.class
│   │   │   │   ├── Order_infoMapper.class
│   │   │   │   ├── OrganizationMapper.class
│   │   │   │   ├── OutstorageMapper.class
│   │   │   │   ├── RepertoryMapper.class
│   │   │   │   ├── ReturnMapper.class
│   │   │   │   ├── RoleMapper.class
│   │   │   │   ├── UserfunctionMapper.class
│   │   │   │   ├── UserMapper.class
│   │   │   │   └── WorkorderMapper.class
│   │   │   ├── excel
│   │   │   │   ├── ExcelException.class
│   │   │   │   ├── ExcelListener.class
│   │   │   │   ├── ExcelUtil.class
│   │   │   │   └── ExcelWriterFactroy.class
│   │   │   ├── pojo
│   │   │   │   ├── Cargo.class
│   │   │   │   ├── Dictionary.class
│   │   │   │   ├── Function.class
│   │   │   │   ├── Instorage.class
│   │   │   │   ├── Note.class
│   │   │   │   ├── Order_info.class
│   │   │   │   ├── Organization.class
│   │   │   │   ├── Outstorage.class
│   │   │   │   ├── Repertory.class
│   │   │   │   ├── Return.class
│   │   │   │   ├── Role.class
│   │   │   │   ├── User.class
│   │   │   │   ├── Userfunction.class
│   │   │   │   └── Workorder.class
│   │   │   ├── service
│   │   │   │   ├── CenterService.class
│   │   │   │   ├── CourierService.class
│   │   │   │   ├── DictionaryService.class
│   │   │   │   ├── FilialeWorkOrderService.class
│   │   │   │   ├── impl
│   │   │   │   │   ├── CenterServiceImpl.class
│   │   │   │   │   ├── CourierServiceImpl.class
│   │   │   │   │   ├── DictionaryServiceImpl.class
│   │   │   │   │   ├── FilialeWorkOrderServiceImpl.class
│   │   │   │   │   ├── NoteServiceImpl.class
│   │   │   │   │   ├── Order_infoServiceImpl.class
│   │   │   │   │   ├── OrganizationServiceImpl.class
│   │   │   │   │   ├── StorageServiceImpl.class
│   │   │   │   │   ├── UserServiceImpl.class
│   │   │   │   │   └── WdServiceImpl.class
│   │   │   │   ├── NoteService.class
│   │   │   │   ├── Order_infoService.class
│   │   │   │   ├── OrganizationService.class
│   │   │   │   ├── StorageService.class
│   │   │   │   ├── UserService.class
│   │   │   │   └── WdService.class
│   │   │   ├── utils
│   │   │   │   ├── AlipayConfig.class
│   │   │   │   ├── CalculateMoneyEstimate.class
│   │   │   │   ├── Constants.class
│   │   │   │   ├── DistanceUtils.class
│   │   │   │   ├── httpApiDemo
│   │   │   │   │   ├── AccountInfo.class
│   │   │   │   │   ├── AffMarkSMS.class
│   │   │   │   │   ├── common
│   │   │   │   │   │   ├── Config.class
│   │   │   │   │   │   └── HttpUtil.class
│   │   │   │   │   ├── IndustrySMS.class
│   │   │   │   │   ├── Test.class
│   │   │   │   │   └── VoiceCode.class
│   │   │   │   ├── interceptor
│   │   │   │   │   ├── Auth.class
│   │   │   │   │   ├── InterceptorConfig.class
│   │   │   │   │   └── SysInterceptor.class
│   │   │   │   ├── MD5.class
│   │   │   │   ├── NotifyServlet.class
│   │   │   │   └── Page.class
│   │   │   └── WuApplication.class
│   │   ├── images
│   │   │   ├── 1.jpg
│   │   │   └── dahua.png
│   │   ├── logback-spring.xml
│   │   ├── mapper
│   │   │   ├── CargoMapper.xml
│   │   │   ├── DictionaryMapper.xml
│   │   │   ├── FunctionMapper.xml
│   │   │   ├── InstorageMapper.xml
│   │   │   ├── NoteMapper.xml
│   │   │   ├── Order_infoMapper.xml
│   │   │   ├── OrganizationMapper.xml
│   │   │   ├── OutstorageMapper.xml
│   │   │   ├── RepertoryMapper.xml
│   │   │   ├── ReturnMapper.xml
│   │   │   ├── RoleMapper.xml
│   │   │   ├── UserfunctionMapper.xml
│   │   │   ├── UserMapper.xml
│   │   │   └── WorkorderMapper.xml
│   │   └── META-INF
│   │   └── wuliu2.kotlin_module
│   ├── generated-sources
│   │   └── annotations
│   ├── generated-test-sources
│   │   └── test-annotations
│   └── test-classes
│   ├── com
│   │   └── forest
│   │   └── wu
│   │   └── WuApplicationTests.class
│   ├── META-INF
│   │   └── wuliu2.kotlin_module
│   └── test.class
└── 返货单列表.xlsx

94 directories, 620 files

标签:

实例下载地址

物流管理系统代码

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警