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

BOS物流系统

一般编程问题

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

实例介绍

【实例简介】
BOS系统详细整理,非常好用。。。Linux部署,maven,很好的学习资料
【实例截图】
【核心代码】
BOS系统.zip
└── BOS系统
├── c++原型
│   ├── 原型
│   │   └── Debug
│   │   ├── MagicLibrary.dll
│   │   ├── UI.exe
│   │   ├── UI.exe.config
│   │   ├── UI.pdb
│   │   ├── UI.vshost.exe
│   │   ├── UI.vshost.exe.config
│   │   └── UI.vshost.exe.manifest
│   ├── 软件需求规格说明书_基础设置.doc
│   └── 需求规格说明书
│   ├── BOS系统软件需求规格说明书_中转.doc
│   ├── BOS系统软件需求规格说明书_取派.doc
│   └── BOS系统软件需求规格说明书_基础设置.doc
├── Java代码编写规范.doc
├── 开发步骤
│   └── 每日完成步骤
│   ├── 第一天.docx
│   ├── 第七天.docx
│   ├── 第三天.docx
│   ├── 第九天.docx
│   ├── 第二天.docx
│   ├── 第五天.docx
│   ├── 第八天.docx
│   ├── 第六天.docx
│   ├── 第十一天.docx
│   ├── 第十三天.docx
│   ├── 第十二天.docx
│   ├── 第十四天.docx
│   ├── 第十天.docx
│   └── 第四天.docx
└── 项目源码
├── bos-parent
│   ├── bos-dao
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │   └── itheima
│   │   │   │   │   └── bos
│   │   │   │   │   └── dao
│   │   │   │   │   ├── base
│   │   │   │   │   │   ├── IBaseDao.java
│   │   │   │   │   │   └── impl
│   │   │   │   │   │   └── BaseDaoImpl.java
│   │   │   │   │   ├── IDecidedzoneDao.java
│   │   │   │   │   ├── IFunctionDao.java
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── DecidedzoneDaoImpl.java
│   │   │   │   │   │   ├── FunctionDaoImpl.java
│   │   │   │   │   │   ├── NoticebillDaoImpl.java
│   │   │   │   │   │   ├── RegionDaoImpl.java
│   │   │   │   │   │   ├── RoleDaoImpl.java
│   │   │   │   │   │   ├── StaffDaoImpl.java
│   │   │   │   │   │   ├── SubareaDaoImpl.java
│   │   │   │   │   │   ├── UserDaoImpl.java
│   │   │   │   │   │   ├── WorkbillDaoImpl.java
│   │   │   │   │   │   └── WorkordermangeDaoImpl.java
│   │   │   │   │   ├── INoticebillDao.java
│   │   │   │   │   ├── IRegionDao.java
│   │   │   │   │   ├── IRoleDao.java
│   │   │   │   │   ├── IStaffDao.java
│   │   │   │   │   ├── ISubareaDao.java
│   │   │   │   │   ├── IUserDao.java
│   │   │   │   │   ├── IWorkbillDao.java
│   │   │   │   │   └── IWorkordermanageDao.java
│   │   │   │   └── resources
│   │   │   └── test
│   │   │   ├── java
│   │   │   └── resources
│   │   └── target
│   │   ├── bos-dao-0.0.1-SNAPSHOT.jar
│   │   ├── classes
│   │   │   ├── com
│   │   │   │   └── itheima
│   │   │   │   └── bos
│   │   │   │   └── dao
│   │   │   │   ├── base
│   │   │   │   │   ├── IBaseDao.class
│   │   │   │   │   └── impl
│   │   │   │   │   └── BaseDaoImpl.class
│   │   │   │   ├── IDecidedzoneDao.class
│   │   │   │   ├── IFunctionDao.class
│   │   │   │   ├── impl
│   │   │   │   │   ├── DecidedzoneDaoImpl.class
│   │   │   │   │   ├── FunctionDaoImpl.class
│   │   │   │   │   ├── NoticebillDaoImpl.class
│   │   │   │   │   ├── RegionDaoImpl.class
│   │   │   │   │   ├── StaffDaoImpl.class
│   │   │   │   │   ├── SubareaDaoImpl.class
│   │   │   │   │   ├── UserDaoImpl.class
│   │   │   │   │   ├── WorkbillDaoImpl.class
│   │   │   │   │   └── WorkordermangeDaoImpl.class
│   │   │   │   ├── INoticebillDao.class
│   │   │   │   ├── IRegionDao.class
│   │   │   │   ├── IStaffDao.class
│   │   │   │   ├── ISubareaDao.class
│   │   │   │   ├── IUserDao.class
│   │   │   │   ├── IWorkbillDao.class
│   │   │   │   └── IWorkordermanageDao.class
│   │   │   └── META-INF
│   │   │   ├── MANIFEST.MF
│   │   │   └── maven
│   │   │   └── com.itheima
│   │   │   └── bos-dao
│   │   │   ├── pom.properties
│   │   │   └── pom.xml
│   │   ├── maven-archiver
│   │   │   └── pom.properties
│   │   └── test-classes
│   ├── bos-domain
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │   └── itheima
│   │   │   │   │   └── bos
│   │   │   │   │   └── domain
│   │   │   │   │   ├── Decidedzone.hbm.xml
│   │   │   │   │   ├── Decidedzone.java
│   │   │   │   │   ├── Function.hbm.xml
│   │   │   │   │   ├── Function.java
│   │   │   │   │   ├── Noticebill.hbm.xml
│   │   │   │   │   ├── Noticebill.java
│   │   │   │   │   ├── Region.hbm.xml
│   │   │   │   │   ├── Region.java
│   │   │   │   │   ├── Role.hbm.xml
│   │   │   │   │   ├── Role.java
│   │   │   │   │   ├── Staff.hbm.xml
│   │   │   │   │   ├── Staff.java
│   │   │   │   │   ├── Subarea.hbm.xml
│   │   │   │   │   ├── Subarea.java
│   │   │   │   │   ├── User.hbm.xml
│   │   │   │   │   ├── User.java
│   │   │   │   │   ├── Workbill.hbm.xml
│   │   │   │   │   ├── Workbill.java
│   │   │   │   │   ├── Workordermanage.hbm.xml
│   │   │   │   │   └── Workordermanage.java
│   │   │   │   └── resources
│   │   │   └── test
│   │   │   ├── java
│   │   │   └── resources
│   │   └── target
│   │   ├── bos-domain-0.0.1-SNAPSHOT.jar
│   │   ├── classes
│   │   │   ├── com
│   │   │   │   └── itheima
│   │   │   │   └── bos
│   │   │   │   └── domain
│   │   │   │   ├── Decidedzone.class
│   │   │   │   ├── Decidedzone.hbm.xml
│   │   │   │   ├── Function.class
│   │   │   │   ├── Function.hbm.xml
│   │   │   │   ├── Noticebill.class
│   │   │   │   ├── Noticebill.hbm.xml
│   │   │   │   ├── Region.class
│   │   │   │   ├── Region.hbm.xml
│   │   │   │   ├── Role.class
│   │   │   │   ├── Role.hbm.xml
│   │   │   │   ├── Staff.class
│   │   │   │   ├── Staff.hbm.xml
│   │   │   │   ├── Subarea.class
│   │   │   │   ├── Subarea.hbm.xml
│   │   │   │   ├── User.class
│   │   │   │   ├── User.hbm.xml
│   │   │   │   ├── Workbill.class
│   │   │   │   ├── Workbill.hbm.xml
│   │   │   │   ├── Workordermanage.class
│   │   │   │   └── Workordermanage.hbm.xml
│   │   │   └── META-INF
│   │   │   ├── MANIFEST.MF
│   │   │   └── maven
│   │   │   └── com.itheima
│   │   │   └── bos-domain
│   │   │   ├── pom.properties
│   │   │   └── pom.xml
│   │   ├── maven-archiver
│   │   │   └── pom.properties
│   │   └── test-classes
│   ├── bos-service
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │   └── itheima
│   │   │   │   │   ├── bos
│   │   │   │   │   │   ├── realm
│   │   │   │   │   │   │   └── BOSRealm.java
│   │   │   │   │   │   └── service
│   │   │   │   │   │   ├── IDecidedzoneService.java
│   │   │   │   │   │   ├── IFunctionService.java
│   │   │   │   │   │   ├── impl
│   │   │   │   │   │   │   ├── DecidedzoneServiceImpl.java
│   │   │   │   │   │   │   ├── FunctionServiceImpl.java
│   │   │   │   │   │   │   ├── NoticebillServiceImpl.java
│   │   │   │   │   │   │   ├── RegionServiceImpl.java
│   │   │   │   │   │   │   ├── RoleServiceImpl.java
│   │   │   │   │   │   │   ├── StaffServiceImpl.java
│   │   │   │   │   │   │   ├── SubareaServiceImpl.java
│   │   │   │   │   │   │   ├── UserServiceImpl.java
│   │   │   │   │   │   │   └── WorkordermanageServiceImpl.java
│   │   │   │   │   │   ├── INoticebillService.java
│   │   │   │   │   │   ├── IRegionService.java
│   │   │   │   │   │   ├── IRoleService.java
│   │   │   │   │   │   ├── IStaffService.java
│   │   │   │   │   │   ├── ISubareaService.java
│   │   │   │   │   │   ├── IUserService.java
│   │   │   │   │   │   └── IWorkordermanageService.java
│   │   │   │   │   └── jobs
│   │   │   │   │   └── MailJob.java
│   │   │   │   └── resources
│   │   │   └── test
│   │   │   ├── java
│   │   │   └── resources
│   │   └── target
│   │   ├── bos-service-0.0.1-SNAPSHOT.jar
│   │   ├── classes
│   │   │   ├── com
│   │   │   │   └── itheima
│   │   │   │   ├── bos
│   │   │   │   │   ├── realm
│   │   │   │   │   │   └── BOSRealm.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── IDecidedzoneService.class
│   │   │   │   │   ├── IFunctionService.class
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── DecidedzoneServiceImpl.class
│   │   │   │   │   │   ├── FunctionServiceImpl.class
│   │   │   │   │   │   ├── NoticebillServiceImpl.class
│   │   │   │   │   │   ├── RegionServiceImpl.class
│   │   │   │   │   │   ├── RoleServiceImpl.class
│   │   │   │   │   │   ├── StaffServiceImpl.class
│   │   │   │   │   │   ├── SubareaServiceImpl.class
│   │   │   │   │   │   ├── UserServiceImpl.class
│   │   │   │   │   │   └── WorkordermanageServiceImpl.class
│   │   │   │   │   ├── INoticebillService.class
│   │   │   │   │   ├── IRegionService.class
│   │   │   │   │   ├── IRoleService.class
│   │   │   │   │   ├── IStaffService.class
│   │   │   │   │   ├── ISubareaService.class
│   │   │   │   │   ├── IUserService.class
│   │   │   │   │   └── IWorkordermanageService.class
│   │   │   │   └── jobs
│   │   │   │   ├── MailJob$1.class
│   │   │   │   └── MailJob.class
│   │   │   └── META-INF
│   │   │   ├── MANIFEST.MF
│   │   │   └── maven
│   │   │   └── com.itheima
│   │   │   └── bos-service
│   │   │   ├── pom.properties
│   │   │   └── pom.xml
│   │   ├── maven-archiver
│   │   │   └── pom.properties
│   │   └── test-classes
│   ├── bos-utils
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │   └── itheima
│   │   │   │   │   ├── bos
│   │   │   │   │   │   └── utils
│   │   │   │   │   │   ├── BOSUtils.java
│   │   │   │   │   │   ├── FileUtils.java
│   │   │   │   │   │   ├── MD5Utils.java
│   │   │   │   │   │   ├── PageBean.java
│   │   │   │   │   │   └── PinYin4jUtils.java
│   │   │   │   │   └── crm
│   │   │   │   │   ├── Customer.java
│   │   │   │   │   └── ICustomerService.java
│   │   │   │   └── resources
│   │   │   └── test
│   │   │   ├── java
│   │   │   └── resources
│   │   └── target
│   │   ├── bos-utils-0.0.1-SNAPSHOT.jar
│   │   ├── classes
│   │   │   ├── com
│   │   │   │   └── itheima
│   │   │   │   ├── bos
│   │   │   │   │   └── utils
│   │   │   │   │   ├── BOSUtils.class
│   │   │   │   │   ├── FileUtils.class
│   │   │   │   │   ├── MD5Utils.class
│   │   │   │   │   ├── PageBean.class
│   │   │   │   │   └── PinYin4jUtils.class
│   │   │   │   └── crm
│   │   │   │   ├── Customer.class
│   │   │   │   └── ICustomerService.class
│   │   │   └── META-INF
│   │   │   ├── MANIFEST.MF
│   │   │   └── maven
│   │   │   └── com.itheima
│   │   │   └── bos-utils
│   │   │   ├── pom.properties
│   │   │   └── pom.xml
│   │   ├── maven-archiver
│   │   │   └── pom.properties
│   │   └── test-classes
│   ├── bos-web
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │   └── itheima
│   │   │   │   │   └── bos
│   │   │   │   │   └── web
│   │   │   │   │   ├── action
│   │   │   │   │   │   ├── base
│   │   │   │   │   │   │   └── BaseAction.java
│   │   │   │   │   │   ├── DecidedzoneAction.java
│   │   │   │   │   │   ├── FunctionAction.java
│   │   │   │   │   │   ├── NoticebillAction.java
│   │   │   │   │   │   ├── RegionAction.java
│   │   │   │   │   │   ├── RoleAction.java
│   │   │   │   │   │   ├── StaffAction.java
│   │   │   │   │   │   ├── SubareaAction.java
│   │   │   │   │   │   ├── UserAction.java
│   │   │   │   │   │   └── WorkordermanageAction.java
│   │   │   │   │   ├── filter
│   │   │   │   │   ├── interceptor
│   │   │   │   │   │   └── BOSLoginInterceptor.java
│   │   │   │   │   └── listener
│   │   │   │   ├── resources
│   │   │   │   │   ├── applicationContext.xml
│   │   │   │   │   ├── db.properties
│   │   │   │   │   ├── ehcache.xml
│   │   │   │   │   ├── log4j.properties
│   │   │   │   │   └── struts.xml
│   │   │   │   └── webapp
│   │   │   │   ├── css
│   │   │   │   │   ├── default.css
│   │   │   │   │   ├── style.css
│   │   │   │   │   └── style_grey.css
│   │   │   │   ├── easyui
│   │   │   │   │   ├── 01-layout.jsp
│   │   │   │   │   ├── 02-accordion.jsp
│   │   │   │   │   ├── 03-tabs.jsp
│   │   │   │   │   ├── 04-ztree.jsp
│   │   │   │   │   ├── 05-messager.jsp
│   │   │   │   │   ├── 06-menubutton.jsp
│   │   │   │   │   ├── 07-datagrid.jsp
│   │   │   │   │   ├── 08-upload.jsp
│   │   │   │   │   ├── 09-combobox.jsp
│   │   │   │   │   ├── 10-datagrid_edit.jsp
│   │   │   │   │   ├── 11-highcharts_1.jsp
│   │   │   │   │   └── 12-highcharts_2.jsp
│   │   │   │   ├── images
│   │   │   │   │   ├── 0.png
│   │   │   │   │   ├── bg_grey.png
│   │   │   │   │   ├── bg_login.jpg
│   │   │   │   │   ├── bgx.png
│   │   │   │   │   ├── frame.png
│   │   │   │   │   ├── header_bg.png
│   │   │   │   │   ├── header_bg - 副本.png
│   │   │   │   │   ├── input_bg.png
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── menu.png
│   │   │   │   │   ├── online.png
│   │   │   │   │   ├── reload.png
│   │   │   │   │   ├── title.png
│   │   │   │   │   └── user_logout.png
│   │   │   │   ├── index.jsp
│   │   │   │   ├── js
│   │   │   │   │   ├── easyui
│   │   │   │   │   │   ├── easyloader.js
│   │   │   │   │   │   ├── ext
│   │   │   │   │   │   │   ├── jquery.cookie.js
│   │   │   │   │   │   │   ├── jquery.portal.js
│   │   │   │   │   │   │   └── portal.css
│   │   │   │   │   │   ├── jquery.easyui.min.js
│   │   │   │   │   │   ├── locale
│   │   │   │   │   │   │   └── easyui-lang-zh_CN.js
│   │   │   │   │   │   ├── plugins
│   │   │   │   │   │   │   ├── jquery.accordion.js
│   │   │   │   │   │   │   ├── jquery.calendar.js
│   │   │   │   │   │   │   ├── jquery.combobox.js
│   │   │   │   │   │   │   ├── jquery.combogrid.js
│   │   │   │   │   │   │   ├── jquery.combo.js
│   │   │   │   │   │   │   ├── jquery.combotree.js
│   │   │   │   │   │   │   ├── jquery.datagrid.js
│   │   │   │   │   │   │   ├── jquery.datebox.js
│   │   │   │   │   │   │   ├── jquery.datetimebox.js
│   │   │   │   │   │   │   ├── jquery.dialog.js
│   │   │   │   │   │   │   ├── jquery.draggable.js
│   │   │   │   │   │   │   ├── jquery.droppable.js
│   │   │   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   │   │   ├── jquery.layout.js
│   │   │   │   │   │   │   ├── jquery.linkbutton.js
│   │   │   │   │   │   │   ├── jquery.menubutton.js
│   │   │   │   │   │   │   ├── jquery.menu.js
│   │   │   │   │   │   │   ├── jquery.messager.js
│   │   │   │   │   │   │   ├── jquery.numberbox.js
│   │   │   │   │   │   │   ├── jquery.numberspinner.js
│   │   │   │   │   │   │   ├── jquery.pagination.js
│   │   │   │   │   │   │   ├── jquery.panel.js
│   │   │   │   │   │   │   ├── jquery.parser.js
│   │   │   │   │   │   │   ├── jquery.progressbar.js
│   │   │   │   │   │   │   ├── jquery.propertygrid.js
│   │   │   │   │   │   │   ├── jquery.resizable.js
│   │   │   │   │   │   │   ├── jquery.searchbox.js
│   │   │   │   │   │   │   ├── jquery.slider.js
│   │   │   │   │   │   │   ├── jquery.spinner.js
│   │   │   │   │   │   │   ├── jquery.splitbutton.js
│   │   │   │   │   │   │   ├── jquery.tabs.js
│   │   │   │   │   │   │   ├── jquery.timespinner.js
│   │   │   │   │   │   │   ├── jquery.treegrid.js
│   │   │   │   │   │   │   ├── jquery.tree.js
│   │   │   │   │   │   │   ├── jquery.validatebox.js
│   │   │   │   │   │   │   └── jquery.window.js
│   │   │   │   │   │   ├── src
│   │   │   │   │   │   │   ├── easyloader.js
│   │   │   │   │   │   │   ├── jquery.accordion.js
│   │   │   │   │   │   │   ├── jquery.calendar.js
│   │   │   │   │   │   │   ├── jquery.combobox.js
│   │   │   │   │   │   │   ├── jquery.datebox.js
│   │   │   │   │   │   │   ├── jquery.draggable.js
│   │   │   │   │   │   │   ├── jquery.droppable.js
│   │   │   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   │   │   ├── jquery.linkbutton.js
│   │   │   │   │   │   │   ├── jquery.menu.js
│   │   │   │   │   │   │   ├── jquery.parser.js
│   │   │   │   │   │   │   ├── jquery.progressbar.js
│   │   │   │   │   │   │   ├── jquery.propertygrid.js
│   │   │   │   │   │   │   ├── jquery.resizable.js
│   │   │   │   │   │   │   ├── jquery.slider.js
│   │   │   │   │   │   │   ├── jquery.tabs.js
│   │   │   │   │   │   │   └── jquery.window.js
│   │   │   │   │   │   └── themes
│   │   │   │   │   │   ├── black
│   │   │   │   │   │   │   ├── accordion.css
│   │   │   │   │   │   │   ├── calendar.css
│   │   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   │   ├── combo.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
│   │   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   │   ├── menu.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
│   │   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   │   ├── combo.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
│   │   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   │   ├── menu.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
│   │   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   │   ├── combo.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
│   │   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   │   ├── menu.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
│   │   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   │   ├── combo.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
│   │   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   │   ├── menu.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
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.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
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.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.js
│   │   │   │   │   │   ├── highcharts-more.js
│   │   │   │   │   │   ├── highcharts-more.src.js
│   │   │   │   │   │   ├── highcharts.src.js
│   │   │   │   │   │   ├── modules
│   │   │   │   │   │   │   ├── boost.js
│   │   │   │   │   │   │   ├── boost.src.js
│   │   │   │   │   │   │   ├── broken-axis.js
│   │   │   │   │   │   │   ├── broken-axis.src.js
│   │   │   │   │   │   │   ├── 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
│   │   │   │   │   │   │   ├── offline-exporting.js
│   │   │   │   │   │   │   ├── offline-exporting.src.js
│   │   │   │   │   │   │   ├── solid-gauge.js
│   │   │   │   │   │   │   ├── solid-gauge.src.js
│   │   │   │   │   │   │   ├── treemap.js
│   │   │   │   │   │   │   └── treemap.src.js
│   │   │   │   │   │   └── themes
│   │   │   │   │   │   ├── dark-blue.js
│   │   │   │   │   │   ├── dark-green.js
│   │   │   │   │   │   ├── dark-unica.js
│   │   │   │   │   │   ├── gray.js
│   │   │   │   │   │   ├── grid.js
│   │   │   │   │   │   ├── grid-light.js
│   │   │   │   │   │   ├── sand-signika.js
│   │   │   │   │   │   └── skies.js
│   │   │   │   │   ├── jquery-1.8.3.js
│   │   │   │   │   ├── 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
│   │   │   │   ├── json
│   │   │   │   │   ├── admin.json
│   │   │   │   │   ├── association_customer.json
│   │   │   │   │   ├── association_subarea.json
│   │   │   │   │   ├── combobox_data.json
│   │   │   │   │   ├── datagrid_data.json
│   │   │   │   │   ├── decidedzone.json
│   │   │   │   │   ├── decidedzone_subarea.json
│   │   │   │   │   ├── menu.json
│   │   │   │   │   ├── region.json
│   │   │   │   │   ├── staff.json
│   │   │   │   │   ├── subarea.json
│   │   │   │   │   └── users.json
│   │   │   │   ├── login.jsp
│   │   │   │   ├── unauthorized.jsp
│   │   │   │   ├── validatecode.jsp
│   │   │   │   └── WEB-INF
│   │   │   │   ├── pages
│   │   │   │   │   ├── admin
│   │   │   │   │   │   ├── function_add.jsp
│   │   │   │   │   │   ├── function.jsp
│   │   │   │   │   │   ├── role_add.jsp
│   │   │   │   │   │   ├── role.jsp
│   │   │   │   │   │   ├── userindex.jsp
│   │   │   │   │   │   ├── userinfo.jsp
│   │   │   │   │   │   └── userlist.jsp
│   │   │   │   │   ├── base
│   │   │   │   │   │   ├── decidedzone.jsp
│   │   │   │   │   │   ├── region.jsp
│   │   │   │   │   │   ├── staff.jsp
│   │   │   │   │   │   └── subarea.jsp
│   │   │   │   │   ├── common
│   │   │   │   │   │   ├── home.jsp
│   │   │   │   │   │   └── index.jsp
│   │   │   │   │   ├── portal
│   │   │   │   │   │   ├── bug.jsp
│   │   │   │   │   │   ├── daiban.jsp
│   │   │   │   │   │   ├── gonggao.jsp
│   │   │   │   │   │   └── yujing.jsp
│   │   │   │   │   └── qupai
│   │   │   │   │   ├── diaodu.jsp
│   │   │   │   │   ├── noticebill_add.jsp
│   │   │   │   │   ├── noticebill.jsp
│   │   │   │   │   ├── quickworkorder.jsp
│   │   │   │   │   └── workorderimport.jsp
│   │   │   │   └── web.xml
│   │   │   └── test
│   │   │   ├── java
│   │   │   │   └── com
│   │   │   │   └── itheima
│   │   │   │   └── bos
│   │   │   │   └── test
│   │   │   │   ├── Pinyin4JTest.java
│   │   │   │   └── POITest.java
│   │   │   └── resources
│   │   └── target
│   │   ├── bos-web-0.0.1-SNAPSHOT
│   │   │   ├── css
│   │   │   │   ├── default.css
│   │   │   │   ├── style.css
│   │   │   │   └── style_grey.css
│   │   │   ├── easyui
│   │   │   │   ├── 01-layout.jsp
│   │   │   │   ├── 02-accordion.jsp
│   │   │   │   ├── 03-tabs.jsp
│   │   │   │   ├── 04-ztree.jsp
│   │   │   │   ├── 05-messager.jsp
│   │   │   │   ├── 06-menubutton.jsp
│   │   │   │   ├── 07-datagrid.jsp
│   │   │   │   └── 08-upload.jsp
│   │   │   ├── images
│   │   │   │   ├── 0.png
│   │   │   │   ├── bg_grey.png
│   │   │   │   ├── bg_login.jpg
│   │   │   │   ├── bgx.png
│   │   │   │   ├── frame.png
│   │   │   │   ├── header_bg.png
│   │   │   │   ├── header_bg - 副本.png
│   │   │   │   ├── input_bg.png
│   │   │   │   ├── loading.gif
│   │   │   │   ├── menu.png
│   │   │   │   ├── online.png
│   │   │   │   ├── reload.png
│   │   │   │   ├── title.png
│   │   │   │   └── user_logout.png
│   │   │   ├── index.jsp
│   │   │   ├── js
│   │   │   │   ├── easyui
│   │   │   │   │   ├── easyloader.js
│   │   │   │   │   ├── ext
│   │   │   │   │   │   ├── jquery.cookie.js
│   │   │   │   │   │   ├── jquery.portal.js
│   │   │   │   │   │   └── portal.css
│   │   │   │   │   ├── jquery.easyui.min.js
│   │   │   │   │   ├── locale
│   │   │   │   │   │   └── easyui-lang-zh_CN.js
│   │   │   │   │   ├── plugins
│   │   │   │   │   │   ├── jquery.accordion.js
│   │   │   │   │   │   ├── jquery.calendar.js
│   │   │   │   │   │   ├── jquery.combobox.js
│   │   │   │   │   │   ├── jquery.combogrid.js
│   │   │   │   │   │   ├── jquery.combo.js
│   │   │   │   │   │   ├── jquery.combotree.js
│   │   │   │   │   │   ├── jquery.datagrid.js
│   │   │   │   │   │   ├── jquery.datebox.js
│   │   │   │   │   │   ├── jquery.datetimebox.js
│   │   │   │   │   │   ├── jquery.dialog.js
│   │   │   │   │   │   ├── jquery.draggable.js
│   │   │   │   │   │   ├── jquery.droppable.js
│   │   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   │   ├── jquery.layout.js
│   │   │   │   │   │   ├── jquery.linkbutton.js
│   │   │   │   │   │   ├── jquery.menubutton.js
│   │   │   │   │   │   ├── jquery.menu.js
│   │   │   │   │   │   ├── jquery.messager.js
│   │   │   │   │   │   ├── jquery.numberbox.js
│   │   │   │   │   │   ├── jquery.numberspinner.js
│   │   │   │   │   │   ├── jquery.pagination.js
│   │   │   │   │   │   ├── jquery.panel.js
│   │   │   │   │   │   ├── jquery.parser.js
│   │   │   │   │   │   ├── jquery.progressbar.js
│   │   │   │   │   │   ├── jquery.propertygrid.js
│   │   │   │   │   │   ├── jquery.resizable.js
│   │   │   │   │   │   ├── jquery.searchbox.js
│   │   │   │   │   │   ├── jquery.slider.js
│   │   │   │   │   │   ├── jquery.spinner.js
│   │   │   │   │   │   ├── jquery.splitbutton.js
│   │   │   │   │   │   ├── jquery.tabs.js
│   │   │   │   │   │   ├── jquery.timespinner.js
│   │   │   │   │   │   ├── jquery.treegrid.js
│   │   │   │   │   │   ├── jquery.tree.js
│   │   │   │   │   │   ├── jquery.validatebox.js
│   │   │   │   │   │   └── jquery.window.js
│   │   │   │   │   ├── src
│   │   │   │   │   │   ├── easyloader.js
│   │   │   │   │   │   ├── jquery.accordion.js
│   │   │   │   │   │   ├── jquery.calendar.js
│   │   │   │   │   │   ├── jquery.combobox.js
│   │   │   │   │   │   ├── jquery.datebox.js
│   │   │   │   │   │   ├── jquery.draggable.js
│   │   │   │   │   │   ├── jquery.droppable.js
│   │   │   │   │   │   ├── jquery.form.js
│   │   │   │   │   │   ├── jquery.linkbutton.js
│   │   │   │   │   │   ├── jquery.menu.js
│   │   │   │   │   │   ├── jquery.parser.js
│   │   │   │   │   │   ├── jquery.progressbar.js
│   │   │   │   │   │   ├── jquery.propertygrid.js
│   │   │   │   │   │   ├── jquery.resizable.js
│   │   │   │   │   │   ├── jquery.slider.js
│   │   │   │   │   │   ├── jquery.tabs.js
│   │   │   │   │   │   └── jquery.window.js
│   │   │   │   │   └── themes
│   │   │   │   │   ├── black
│   │   │   │   │   │   ├── accordion.css
│   │   │   │   │   │   ├── calendar.css
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.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
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.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
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.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
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.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
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.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
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.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
│   │   │   │   │   │   ├── combobox.css
│   │   │   │   │   │   ├── combo.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
│   │   │   │   │   │   ├── menubutton.css
│   │   │   │   │   │   ├── menu.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
│   │   │   │   │   ├── combobox.css
│   │   │   │   │   ├── combo.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
│   │   │   │   │   ├── menubutton.css
│   │   │   │   │   ├── menu.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
│   │   │   │   ├── jquery-1.8.3.js
│   │   │   │   ├── 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
│   │   │   ├── json
│   │   │   │   ├── admin.json
│   │   │   │   ├── association_customer.json
│   │   │   │   ├── association_subarea.json
│   │   │   │   ├── datagrid_data.json
│   │   │   │   ├── decidedzone.json
│   │   │   │   ├── decidedzone_subarea.json
│   │   │   │   ├── menu.json
│   │   │   │   ├── region.json
│   │   │   │   ├── staff.json
│   │   │   │   ├── subarea.json
│   │   │   │   └── users.json
│   │   │   ├── login.jsp
│   │   │   ├── META-INF
│   │   │   ├── validatecode.jsp
│   │   │   └── WEB-INF
│   │   │   ├── classes
│   │   │   │   ├── applicationContext.xml
│   │   │   │   ├── com
│   │   │   │   │   └── itheima
│   │   │   │   │   └── bos
│   │   │   │   │   └── web
│   │   │   │   │   ├── action
│   │   │   │   │   │   ├── base
│   │   │   │   │   │   │   └── BaseAction.class
│   │   │   │   │   │   ├── RegionAction.class
│   │   │   │   │   │   ├── StaffAction.class
│   │   │   │   │   │   └── UserAction.class
│   │   │   │   │   └── interceptor
│   │   │   │   │   └── BOSLoginInterceptor.class
│   │   │   │   ├── db.properties
│   │   │   │   ├── log4j.properties
│   │   │   │   └── struts.xml
│   │   │   ├── lib
│   │   │   │   ├── antlr-2.7.7.jar
│   │   │   │   ├── aopalliance-1.0.jar
│   │   │   │   ├── asm-3.3.1.jar
│   │   │   │   ├── asm-commons-3.3.jar
│   │   │   │   ├── asm-tree-3.3.jar
│   │   │   │   ├── aspectjweaver-1.7.4.jar
│   │   │   │   ├── bos-dao-0.0.1-SNAPSHOT.jar
│   │   │   │   ├── bos-domain-0.0.1-SNAPSHOT.jar
│   │   │   │   ├── bos-service-0.0.1-SNAPSHOT.jar
│   │   │   │   ├── bos-utils-0.0.1-SNAPSHOT.jar
│   │   │   │   ├── c3p0-0.9.1.2.jar
│   │   │   │   ├── commons-beanutils-1.8.0.jar
│   │   │   │   ├── commons-codec-1.9.jar
│   │   │   │   ├── commons-collections-3.2.1.jar
│   │   │   │   ├── commons-fileupload-1.3.1.jar
│   │   │   │   ├── commons-io-2.2.jar
│   │   │   │   ├── commons-lang-2.5.jar
│   │   │   │   ├── commons-lang3-3.2.jar
│   │   │   │   ├── commons-logging-1.2.jar
│   │   │   │   ├── cxf-core-3.0.1.jar
│   │   │   │   ├── cxf-rt-bindings-soap-3.0.1.jar
│   │   │   │   ├── cxf-rt-bindings-xml-3.0.1.jar
│   │   │   │   ├── cxf-rt-databinding-jaxb-3.0.1.jar
│   │   │   │   ├── cxf-rt-frontend-jaxws-3.0.1.jar
│   │   │   │   ├── cxf-rt-frontend-simple-3.0.1.jar
│   │   │   │   ├── cxf-rt-transports-http-3.0.1.jar
│   │   │   │   ├── cxf-rt-ws-addr-3.0.1.jar
│   │   │   │   ├── cxf-rt-wsdl-3.0.1.jar
│   │   │   │   ├── cxf-rt-ws-policy-3.0.1.jar
│   │   │   │   ├── dom4j-1.6.1.jar
│   │   │   │   ├── ehcache-core-2.6.6.jar
│   │   │   │   ├── ezmorph-1.0.6.jar
│   │   │   │   ├── freemarker-2.3.22.jar
│   │   │   │   ├── geronimo-jta_1.1_spec-1.1.1.jar
│   │   │   │   ├── guava-r09.jar
│   │   │   │   ├── guice-3.0.jar
│   │   │   │   ├── guice-multibindings-3.0.jar
│   │   │   │   ├── hibernate-commons-annotations-5.0.1.Final.jar
│   │   │   │   ├── hibernate-core-5.0.7.Final.jar
│   │   │   │   ├── hibernate-jpa-2.1-api-1.0.0.Final.jar
│   │   │   │   ├── jandex-2.0.0.Final.jar
│   │   │   │   ├── javassist-3.18.1-GA.jar
│   │   │   │   ├── javax.inject-1.jar
│   │   │   │   ├── jaxb-core-2.2.10-b140310.1920.jar
│   │   │   │   ├── jaxb-impl-2.2.10-b140310.1920.jar
│   │   │   │   ├── jboss-logging-3.3.0.Final.jar
│   │   │   │   ├── json-lib-2.4.jar
│   │   │   │   ├── log4j-1.2.12.jar
│   │   │   │   ├── mysql-connector-java-5.1.32.jar
│   │   │   │   ├── neethi-3.0.3.jar
│   │   │   │   ├── ognl-3.0.6.jar
│   │   │   │   ├── pinyin4j-2.5.0.jar
│   │   │   │   ├── poi-3.11.jar
│   │   │   │   ├── shiro-all-1.2.2.jar
│   │   │   │   ├── shiro-core-1.2.2.jar
│   │   │   │   ├── shiro-guice-1.2.2.jar
│   │   │   │   ├── slf4j-api-1.6.6.jar
│   │   │   │   ├── slf4j-log4j12-1.6.6.jar
│   │   │   │   ├── spring-aop-4.2.4.RELEASE.jar
│   │   │   │   ├── spring-beans-4.2.4.RELEASE.jar
│   │   │   │   ├── spring-context-4.2.4.RELEASE.jar
│   │   │   │   ├── spring-context-support-4.2.4.RELEASE.jar
│   │   │   │   ├── spring-core-4.2.4.RELEASE.jar
│   │   │   │   ├── spring-expression-4.2.4.RELEASE.jar
│   │   │   │   ├── spring-jdbc-4.2.4.RELEASE.jar
│   │   │   │   ├── spring-orm-4.2.4.RELEASE.jar
│   │   │   │   ├── spring-tx-4.2.4.RELEASE.jar
│   │   │   │   ├── spring-web-4.2.4.RELEASE.jar
│   │   │   │   ├── stax2-api-3.1.4.jar
│   │   │   │   ├── struts2-convention-plugin-2.3.24.jar
│   │   │   │   ├── struts2-core-2.3.24.jar
│   │   │   │   ├── struts2-spring-plugin-2.3.24.jar
│   │   │   │   ├── woodstox-core-asl-4.4.0.jar
│   │   │   │   ├── wsdl4j-1.6.3.jar
│   │   │   │   ├── xml-apis-1.0.b2.jar
│   │   │   │   ├── xml-resolver-1.2.jar
│   │   │   │   ├── xmlschema-core-2.1.0.jar
│   │   │   │   └── xwork-core-2.3.24.jar
│   │   │   ├── pages
│   │   │   │   ├── admin
│   │   │   │   │   ├── function_add.jsp
│   │   │   │   │   ├── function.jsp
│   │   │   │   │   ├── role_add.jsp
│   │   │   │   │   ├── role.jsp
│   │   │   │   │   ├── userindex.jsp
│   │   │   │   │   ├── userinfo.jsp
│   │   │   │   │   └── userlist.jsp
│   │   │   │   ├── base
│   │   │   │   │   ├── decidedzone.jsp
│   │   │   │   │   ├── region.jsp
│   │   │   │   │   ├── staff.jsp
│   │   │   │   │   └── subarea.jsp
│   │   │   │   ├── common
│   │   │   │   │   ├── home.jsp
│   │   │   │   │   └── index.jsp
│   │   │   │   ├── portal
│   │   │   │   │   ├── bug.jsp
│   │   │   │   │   ├── daiban.jsp
│   │   │   │   │   ├── gonggao.jsp
│   │   │   │   │   └── yujing.jsp
│   │   │   │   └── qupai
│   │   │   │   ├── diaodu.jsp
│   │   │   │   ├── noticebill_add.jsp
│   │   │   │   ├── noticebill.jsp
│   │   │   │   ├── quickworkorder.jsp
│   │   │   │   └── workorderimport.jsp
│   │   │   └── web.xml
│   │   ├── bos-web-0.0.1-SNAPSHOT.war
│   │   ├── classes
│   │   │   ├── applicationContext.xml
│   │   │   ├── com
│   │   │   │   └── itheima
│   │   │   │   └── bos
│   │   │   │   └── web
│   │   │   │   ├── action
│   │   │   │   │   ├── base
│   │   │   │   │   │   └── BaseAction.class
│   │   │   │   │   ├── DecidedzoneAction.class
│   │   │   │   │   ├── FunctionAction.class
│   │   │   │   │   ├── NoticebillAction.class
│   │   │   │   │   ├── RegionAction.class
│   │   │   │   │   ├── RoleAction.class
│   │   │   │   │   ├── StaffAction.class
│   │   │   │   │   ├── SubareaAction.class
│   │   │   │   │   ├── UserAction.class
│   │   │   │   │   └── WorkordermanageAction.class
│   │   │   │   ├── filter
│   │   │   │   ├── interceptor
│   │   │   │   │   └── BOSLoginInterceptor.class
│   │   │   │   └── listener
│   │   │   ├── db.properties
│   │   │   ├── ehcache.xml
│   │   │   ├── log4j.properties
│   │   │   └── struts.xml
│   │   ├── m2e-wtp
│   │   │   └── web-resources
│   │   │   └── META-INF
│   │   │   ├── MANIFEST.MF
│   │   │   └── maven
│   │   │   └── com.itheima
│   │   │   └── bos-web
│   │   │   ├── pom.properties
│   │   │   └── pom.xml
│   │   ├── maven-archiver
│   │   │   └── pom.properties
│   │   ├── surefire-reports
│   │   │   ├── com.itheima.bos.test.POITest.txt
│   │   │   └── TEST-com.itheima.bos.test.POITest.xml
│   │   └── test-classes
│   │   └── com
│   │   └── itheima
│   │   └── bos
│   │   └── test
│   │   ├── Pinyin4JTest.class
│   │   └── POITest.class
│   ├── pom.xml
│   └── src
│   └── site
└── myquartz
├── pom.xml
├── src
│   ├── main
│   │   ├── java
│   │   │   └── com
│   │   │   └── itheima
│   │   │   └── quartz
│   │   │   ├── App.java
│   │   │   └── MyJob.java
│   │   └── resources
│   │   └── applicationContext.xml
│   └── test
│   ├── java
│   └── resources
└── target
├── classes
│   ├── applicationContext.xml
│   ├── com
│   │   └── itheima
│   │   └── quartz
│   │   ├── App.class
│   │   └── MyJob.class
│   └── META-INF
│   ├── MANIFEST.MF
│   └── maven
│   └── com.itheima
│   └── myquartz
│   ├── pom.properties
│   └── pom.xml
└── test-classes

267 directories, 1147 files

标签:

实例下载地址

BOS物流系统

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警