实例介绍
物流系统代码备份
【实例截图】
【核心代码】
物流系统
└── 物流系统
├── Logistics
│ ├── fen
│ │ ├── src
│ │ │ ├── com
│ │ │ │ ├── fgs
│ │ │ │ │ ├── biz
│ │ │ │ │ │ ├── FareBiz.java
│ │ │ │ │ │ ├── JiaojieBiz.java
│ │ │ │ │ │ ├── OrderBiz.java
│ │ │ │ │ │ ├── ReceiverBiz.java
│ │ │ │ │ │ ├── SiteBiz.java
│ │ │ │ │ │ └── UserBiz.java
│ │ │ │ │ ├── control
│ │ │ │ │ │ ├── back
│ │ │ │ │ │ │ ├── EmpDeleteSvl.java
│ │ │ │ │ │ │ ├── EmpQuerySvl.java
│ │ │ │ │ │ │ ├── EmpUpdateSvl.java
│ │ │ │ │ │ │ ├── FareChangeSvl.java
│ │ │ │ │ │ │ ├── FareQuerySvl.java
│ │ │ │ │ │ │ ├── JiaoJieChangeSvl.java
│ │ │ │ │ │ │ ├── JiaojieQuerySvl.java
│ │ │ │ │ │ │ ├── JJAddSvl.java
│ │ │ │ │ │ │ ├── OrderDeleteSvl.java
│ │ │ │ │ │ │ ├── OrderQuerySvl.java
│ │ │ │ │ │ │ ├── OrderReviewSvl.java
│ │ │ │ │ │ │ ├── PsdChangeSvl.java
│ │ │ │ │ │ │ ├── PsdQuerySvl.java
│ │ │ │ │ │ │ └── StaffAddSvl.java
│ │ │ │ │ │ ├── FgsLoginSvl.java
│ │ │ │ │ │ ├── FgsLogoutSvl.java
│ │ │ │ │ │ ├── FgsMainSvl.java
│ │ │ │ │ │ ├── FgsSessionName.java
│ │ │ │ │ │ ├── ValidEmpnoSvl.java
│ │ │ │ │ │ └── ValidOrdernoSvl.java
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── BaseDao.java
│ │ │ │ │ │ ├── FareDao.java
│ │ │ │ │ │ ├── JiaojieDao.java
│ │ │ │ │ │ ├── OrderDao.java
│ │ │ │ │ │ ├── ReceiverDao.java
│ │ │ │ │ │ ├── SiteDao.java
│ │ │ │ │ │ └── UserDao.java
│ │ │ │ │ └── demo
│ │ │ │ │ └── entity
│ │ │ │ │ └── TurnPagePara.java
│ │ │ │ └── icss
│ │ │ │ ├── bean
│ │ │ │ │ └── T.java
│ │ │ │ ├── demo
│ │ │ │ │ └── util
│ │ │ │ │ ├── DateJson.java
│ │ │ │ │ └── JsonUtil.java
│ │ │ │ ├── entity
│ │ │ │ │ ├── Role.java
│ │ │ │ │ ├── TBiaoZhun.java
│ │ │ │ │ ├── TCar.java
│ │ │ │ │ ├── TCity.java
│ │ │ │ │ ├── TFlows.java
│ │ │ │ │ ├── TGoodsType.java
│ │ │ │ │ ├── TJiaojie.java
│ │ │ │ │ ├── TLine.java
│ │ │ │ │ ├── TOrder.java
│ │ │ │ │ ├── TReceiver.java
│ │ │ │ │ ├── TSite.java
│ │ │ │ │ └── TUser.java
│ │ │ │ ├── exception
│ │ │ │ │ ├── AccountNotPayExcption.java
│ │ │ │ │ └── EmptyInputException.java
│ │ │ │ └── util
│ │ │ │ ├── DbInfo.java
│ │ │ │ └── Log.java
│ │ │ ├── db.properties
│ │ │ └── log4j.properties
│ │ └── WebRoot
│ │ ├── createMa.jsp
│ │ ├── css
│ │ │ ├── back.css
│ │ │ ├── demo.css
│ │ │ ├── style.css
│ │ │ └── themes
│ │ │ ├── black
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── bootstrap
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── color.css
│ │ │ ├── default
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── gray
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── icon.css
│ │ │ ├── icons
│ │ │ │ ├── back.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── cancel.png
│ │ │ │ ├── clear.png
│ │ │ │ ├── cut.png
│ │ │ │ ├── edit_add.png
│ │ │ │ ├── edit_remove.png
│ │ │ │ ├── filesave.png
│ │ │ │ ├── filter.png
│ │ │ │ ├── help.png
│ │ │ │ ├── large_chart.png
│ │ │ │ ├── large_clipart.png
│ │ │ │ ├── large_picture.png
│ │ │ │ ├── large_shapes.png
│ │ │ │ ├── large_smartart.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── man.png
│ │ │ │ ├── mini_add.png
│ │ │ │ ├── mini_edit.png
│ │ │ │ ├── mini_refresh.png
│ │ │ │ ├── more.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
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ └── mobile.css
│ │ ├── error.jsp
│ │ ├── image
│ │ │ ├── back
│ │ │ │ ├── app.png
│ │ │ │ ├── bg1.png
│ │ │ │ ├── channel.png
│ │ │ │ ├── cloud.png
│ │ │ │ ├── custom.png
│ │ │ │ ├── erweima.jpg
│ │ │ │ ├── home.png
│ │ │ │ ├── ioc-02.png
│ │ │ │ ├── ioc-03.png
│ │ │ │ ├── ioc-04.png
│ │ │ │ ├── ioc.png
│ │ │ │ ├── select_xl01.png
│ │ │ │ ├── select_xl.png
│ │ │ │ ├── source.png
│ │ │ │ ├── statistics.png
│ │ │ │ ├── syetem_management.png
│ │ │ │ └── system.png
│ │ │ ├── ht_bg2.jpg
│ │ │ └── ht_bg.jpg
│ │ ├── index.jsp
│ │ ├── js
│ │ │ ├── jquery.easyui.min.js
│ │ │ ├── jquery.min.js
│ │ │ └── menu.js
│ │ ├── jsp
│ │ │ ├── addjiaojie.jsp
│ │ │ ├── addstaff.jsp
│ │ │ ├── changefare.jsp
│ │ │ ├── changejiaojie.jsp
│ │ │ ├── changepsdinfo.jsp
│ │ │ ├── changestaff.jsp
│ │ │ ├── deletedingdan.jsp
│ │ │ ├── deletestaff.jsp
│ │ │ ├── qiantai.jsp
│ │ │ ├── reviewdingdan.jsp
│ │ │ ├── searchdingdan.jsp
│ │ │ ├── searchjiaojie.jsp
│ │ │ ├── searchstaff.jsp
│ │ │ └── zgsback.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ ├── classes
│ │ │ ├── com
│ │ │ │ ├── fgs
│ │ │ │ │ ├── biz
│ │ │ │ │ │ ├── FareBiz.class
│ │ │ │ │ │ ├── JiaojieBiz.class
│ │ │ │ │ │ ├── OrderBiz.class
│ │ │ │ │ │ ├── ReceiverBiz.class
│ │ │ │ │ │ ├── SiteBiz.class
│ │ │ │ │ │ └── UserBiz.class
│ │ │ │ │ ├── control
│ │ │ │ │ │ ├── back
│ │ │ │ │ │ │ ├── EmpDeleteSvl.class
│ │ │ │ │ │ │ ├── EmpQuerySvl.class
│ │ │ │ │ │ │ ├── EmpUpdateSvl.class
│ │ │ │ │ │ │ ├── FareChangeSvl.class
│ │ │ │ │ │ │ ├── FareQuerySvl.class
│ │ │ │ │ │ │ ├── JiaoJieChangeSvl.class
│ │ │ │ │ │ │ ├── JiaojieQuerySvl.class
│ │ │ │ │ │ │ ├── JJAddSvl.class
│ │ │ │ │ │ │ ├── OrderDeleteSvl.class
│ │ │ │ │ │ │ ├── OrderQuerySvl.class
│ │ │ │ │ │ │ ├── OrderReviewSvl.class
│ │ │ │ │ │ │ ├── PsdChangeSvl.class
│ │ │ │ │ │ │ ├── PsdQuerySvl.class
│ │ │ │ │ │ │ └── StaffAddSvl.class
│ │ │ │ │ │ ├── FgsLoginSvl.class
│ │ │ │ │ │ ├── FgsLogoutSvl.class
│ │ │ │ │ │ ├── FgsMainSvl.class
│ │ │ │ │ │ ├── FgsSessionName.class
│ │ │ │ │ │ ├── ValidEmpnoSvl.class
│ │ │ │ │ │ └── ValidOrdernoSvl.class
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── BaseDao.class
│ │ │ │ │ │ ├── FareDao.class
│ │ │ │ │ │ ├── JiaojieDao.class
│ │ │ │ │ │ ├── OrderDao.class
│ │ │ │ │ │ ├── ReceiverDao.class
│ │ │ │ │ │ ├── SiteDao.class
│ │ │ │ │ │ └── UserDao.class
│ │ │ │ │ └── demo
│ │ │ │ │ └── entity
│ │ │ │ │ └── TurnPagePara.class
│ │ │ │ └── icss
│ │ │ │ ├── bean
│ │ │ │ │ └── T.class
│ │ │ │ ├── demo
│ │ │ │ │ └── util
│ │ │ │ │ ├── DateJson.class
│ │ │ │ │ └── JsonUtil.class
│ │ │ │ ├── entity
│ │ │ │ │ ├── Role.class
│ │ │ │ │ ├── TBiaoZhun.class
│ │ │ │ │ ├── TCar.class
│ │ │ │ │ ├── TCity.class
│ │ │ │ │ ├── TFlows.class
│ │ │ │ │ ├── TGoodsType.class
│ │ │ │ │ ├── TJiaojie.class
│ │ │ │ │ ├── TLine.class
│ │ │ │ │ ├── TOrder.class
│ │ │ │ │ ├── TReceiver.class
│ │ │ │ │ ├── TSite.class
│ │ │ │ │ └── TUser.class
│ │ │ │ ├── exception
│ │ │ │ │ ├── AccountNotPayExcption.class
│ │ │ │ │ └── EmptyInputException.class
│ │ │ │ └── util
│ │ │ │ ├── DbInfo.class
│ │ │ │ └── Log.class
│ │ │ ├── db.properties
│ │ │ └── log4j.properties
│ │ ├── fgsback
│ │ │ ├── login.jsp
│ │ │ └── main.jsp
│ │ ├── lib
│ │ │ ├── commons-beanutils.jar
│ │ │ ├── commons-collections-3.2.jar
│ │ │ ├── commons-lang-2.4.jar
│ │ │ ├── commons-logging-1.0.4.jar
│ │ │ ├── ezmorph-1.0.4.jar
│ │ │ ├── json-lib-2.3-jdk15.jar
│ │ │ ├── log4j-1.2.8.jar
│ │ │ └── ojdbc6.jar
│ │ └── web.xml
│ ├── Logistics
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── icss
│ │ │ │ ├── bean
│ │ │ │ │ └── T.java
│ │ │ │ ├── biz
│ │ │ │ │ ├── CarBiz.java
│ │ │ │ │ ├── LineBiz.java
│ │ │ │ │ ├── OrderBiz.java
│ │ │ │ │ ├── SiteBiz.java
│ │ │ │ │ └── UserBiz.java
│ │ │ │ ├── control
│ │ │ │ │ ├── back
│ │ │ │ │ │ └── MainSvl.java
│ │ │ │ │ ├── car
│ │ │ │ │ │ ├── CarDoSvl.java
│ │ │ │ │ │ ├── CarSvl.java
│ │ │ │ │ │ ├── TurnPageSvl.java
│ │ │ │ │ │ └── ValidCnoSvl.java
│ │ │ │ │ ├── line
│ │ │ │ │ │ ├── LineDoSvl.java
│ │ │ │ │ │ ├── LineSvl.java
│ │ │ │ │ │ ├── TurnPageLineSvl.java
│ │ │ │ │ │ └── ValidLineSvl.java
│ │ │ │ │ ├── order
│ │ │ │ │ │ ├── OrderSvl.java
│ │ │ │ │ │ └── TurnPageOrderSvl.java
│ │ │ │ │ ├── SessionName.java
│ │ │ │ │ ├── site
│ │ │ │ │ │ ├── SiteDoSvl.java
│ │ │ │ │ │ ├── SiteSvl.java
│ │ │ │ │ │ ├── TurnPageSiteSvl.java
│ │ │ │ │ │ └── ValidSitenoSvl.java
│ │ │ │ │ └── user
│ │ │ │ │ ├── LoginSvl.java
│ │ │ │ │ ├── LogoutSvl.java
│ │ │ │ │ ├── TurnPageUserSvl.java
│ │ │ │ │ ├── UserDaoSvl.java
│ │ │ │ │ ├── UserSvl.java
│ │ │ │ │ └── ValidUserSvl.java
│ │ │ │ ├── dao
│ │ │ │ │ ├── BaseDao.java
│ │ │ │ │ ├── CarDao.java
│ │ │ │ │ ├── LineDao.java
│ │ │ │ │ ├── OrderDao.java
│ │ │ │ │ ├── SiteDao.java
│ │ │ │ │ └── UserDao.java
│ │ │ │ ├── entity
│ │ │ │ │ ├── Line.java
│ │ │ │ │ ├── Order.java
│ │ │ │ │ ├── Role.java
│ │ │ │ │ ├── Site.java
│ │ │ │ │ ├── TCar.java
│ │ │ │ │ ├── TurnPagePara.java
│ │ │ │ │ └── User.java
│ │ │ │ ├── exception
│ │ │ │ │ ├── AccountNotPayExcption.java
│ │ │ │ │ └── EmptyInputException.java
│ │ │ │ └── util
│ │ │ │ ├── DbInfo.java
│ │ │ │ ├── JsonUtil.java
│ │ │ │ └── Log.java
│ │ │ ├── db.properties
│ │ │ └── log4j.properties
│ │ └── WebRoot
│ │ ├── createMa.jsp
│ │ ├── css
│ │ │ ├── demo.css
│ │ │ ├── style.css
│ │ │ └── themes
│ │ │ ├── black
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── bootstrap
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── color.css
│ │ │ ├── default
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── gray
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── icon.css
│ │ │ ├── icons
│ │ │ │ ├── back.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── cancel.png
│ │ │ │ ├── clear.png
│ │ │ │ ├── cut.png
│ │ │ │ ├── edit_add.png
│ │ │ │ ├── edit_remove.png
│ │ │ │ ├── filesave.png
│ │ │ │ ├── filter.png
│ │ │ │ ├── help.png
│ │ │ │ ├── large_chart.png
│ │ │ │ ├── large_clipart.png
│ │ │ │ ├── large_picture.png
│ │ │ │ ├── large_shapes.png
│ │ │ │ ├── large_smartart.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── man.png
│ │ │ │ ├── mini_add.png
│ │ │ │ ├── mini_edit.png
│ │ │ │ ├── mini_refresh.png
│ │ │ │ ├── more.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
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ └── mobile.css
│ │ ├── error_test.html
│ │ ├── image
│ │ │ ├── back
│ │ │ │ ├── app.png
│ │ │ │ ├── bg1.png
│ │ │ │ ├── channel.png
│ │ │ │ ├── cloud.png
│ │ │ │ ├── custom.png
│ │ │ │ ├── erweima.jpg
│ │ │ │ ├── home.png
│ │ │ │ ├── ioc-02.png
│ │ │ │ ├── ioc-03.png
│ │ │ │ ├── ioc-04.png
│ │ │ │ ├── ioc.png
│ │ │ │ ├── select_xl01.png
│ │ │ │ ├── select_xl.png
│ │ │ │ ├── source.png
│ │ │ │ ├── statistics.png
│ │ │ │ ├── syetem_management.png
│ │ │ │ └── system.png
│ │ │ ├── ht_bg2.jpg
│ │ │ ├── ht_bg3.jpg
│ │ │ ├── ht_bg5.jpg
│ │ │ ├── ht_bg6.jpg
│ │ │ ├── ht_bg.jpg
│ │ │ └── htbg.jpg
│ │ ├── index.jsp
│ │ ├── js
│ │ │ ├── jquery.easyui.min.js
│ │ │ ├── jquery.min.js
│ │ │ └── menu.js
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ ├── back
│ │ │ ├── car
│ │ │ │ ├── CarAdd.jsp
│ │ │ │ ├── CarDel.jsp
│ │ │ │ ├── CarList.jsp
│ │ │ │ ├── carQuery_test.jsp
│ │ │ │ └── CarUpdate.jsp
│ │ │ ├── index.jsp
│ │ │ ├── line
│ │ │ │ ├── LineAdd.jsp
│ │ │ │ ├── LineDel.jsp
│ │ │ │ └── LineList.jsp
│ │ │ ├── order
│ │ │ │ └── OrderList.jsp
│ │ │ ├── site
│ │ │ │ ├── SiteAdd.jsp
│ │ │ │ ├── SiteDel.jsp
│ │ │ │ ├── SiteList.jsp
│ │ │ │ └── SiteUpdate.jsp
│ │ │ └── user
│ │ │ ├── UserAdd.jsp
│ │ │ └── UserList.jsp
│ │ ├── backlogin.jsp
│ │ ├── classes
│ │ │ ├── com
│ │ │ │ └── icss
│ │ │ │ ├── bean
│ │ │ │ │ └── T.class
│ │ │ │ ├── biz
│ │ │ │ │ ├── CarBiz.class
│ │ │ │ │ ├── LineBiz.class
│ │ │ │ │ ├── OrderBiz.class
│ │ │ │ │ ├── SiteBiz.class
│ │ │ │ │ └── UserBiz.class
│ │ │ │ ├── control
│ │ │ │ │ ├── back
│ │ │ │ │ │ └── MainSvl.class
│ │ │ │ │ ├── car
│ │ │ │ │ │ ├── CarDoSvl.class
│ │ │ │ │ │ ├── CarSvl.class
│ │ │ │ │ │ ├── TurnPageSvl.class
│ │ │ │ │ │ └── ValidCnoSvl.class
│ │ │ │ │ ├── line
│ │ │ │ │ │ ├── LineDoSvl.class
│ │ │ │ │ │ ├── LineSvl.class
│ │ │ │ │ │ ├── TurnPageLineSvl.class
│ │ │ │ │ │ └── ValidLineSvl.class
│ │ │ │ │ ├── order
│ │ │ │ │ │ ├── OrderSvl.class
│ │ │ │ │ │ └── TurnPageOrderSvl.class
│ │ │ │ │ ├── SessionName.class
│ │ │ │ │ ├── site
│ │ │ │ │ │ ├── SiteDoSvl.class
│ │ │ │ │ │ ├── SiteSvl.class
│ │ │ │ │ │ ├── TurnPageSiteSvl.class
│ │ │ │ │ │ └── ValidSitenoSvl.class
│ │ │ │ │ └── user
│ │ │ │ │ ├── LoginSvl.class
│ │ │ │ │ ├── LogoutSvl.class
│ │ │ │ │ ├── TurnPageUserSvl.class
│ │ │ │ │ ├── UserDaoSvl.class
│ │ │ │ │ ├── UserSvl.class
│ │ │ │ │ └── ValidUserSvl.class
│ │ │ │ ├── dao
│ │ │ │ │ ├── BaseDao.class
│ │ │ │ │ ├── CarDao.class
│ │ │ │ │ ├── LineDao.class
│ │ │ │ │ ├── OrderDao.class
│ │ │ │ │ ├── SiteDao.class
│ │ │ │ │ └── UserDao.class
│ │ │ │ ├── entity
│ │ │ │ │ ├── Line.class
│ │ │ │ │ ├── Order.class
│ │ │ │ │ ├── Role.class
│ │ │ │ │ ├── Site.class
│ │ │ │ │ ├── TCar.class
│ │ │ │ │ ├── TurnPagePara.class
│ │ │ │ │ └── User.class
│ │ │ │ ├── exception
│ │ │ │ │ ├── AccountNotPayExcption.class
│ │ │ │ │ └── EmptyInputException.class
│ │ │ │ └── util
│ │ │ │ ├── DbInfo.class
│ │ │ │ ├── JsonUtil.class
│ │ │ │ └── Log.class
│ │ │ ├── db.properties
│ │ │ └── log4j.properties
│ │ ├── lib
│ │ │ ├── commons-beanutils.jar
│ │ │ ├── commons-collections-3.2.jar
│ │ │ ├── commons-lang-2.4.jar
│ │ │ ├── commons-logging-1.0.4.jar
│ │ │ ├── ezmorph-1.0.4.jar
│ │ │ ├── json-lib-2.3-jdk15.jar
│ │ │ ├── log4j-1.2.8.jar
│ │ │ ├── ojdbc14.jar
│ │ │ └── ojdbc6.jar
│ │ └── web.xml
│ └── Logistics1.0
│ ├── project
│ │ └── houtai
│ │ ├── css
│ │ │ └── style.css
│ │ ├── images
│ │ │ ├── app.png
│ │ │ ├── bg1.png
│ │ │ ├── channel.png
│ │ │ ├── cloud.png
│ │ │ ├── custom.png
│ │ │ ├── erweima.jpg
│ │ │ ├── home.png
│ │ │ ├── ioc-02.png
│ │ │ ├── ioc-03.png
│ │ │ ├── ioc-04.png
│ │ │ ├── ioc.png
│ │ │ ├── select_xl01.png
│ │ │ ├── select_xl.png
│ │ │ ├── source.png
│ │ │ ├── statistics.png
│ │ │ ├── syetem_management.png
│ │ │ └── system.png
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── jquery-1.8.3.min.js
│ │ │ └── menu.js
│ │ └── 功能.jpg
│ ├── src
│ │ ├── com
│ │ │ └── icss
│ │ │ ├── bean
│ │ │ │ └── T.java
│ │ │ ├── biz
│ │ │ │ ├── ActivityBiz.java
│ │ │ │ └── UserBiz.java
│ │ │ ├── control
│ │ │ │ ├── FlowGoodSvl.java
│ │ │ │ ├── LoginSvl.java
│ │ │ │ ├── LogoutSvl.java
│ │ │ │ ├── MainSvl.java
│ │ │ │ ├── OrderSvl.java
│ │ │ │ ├── RegistSvl.java
│ │ │ │ ├── SessionName.java
│ │ │ │ ├── SucessSvl.java
│ │ │ │ └── TsiteQuerySvl.java
│ │ │ ├── dao
│ │ │ │ ├── ActivityDao.java
│ │ │ │ ├── BaseDao.java
│ │ │ │ └── UserDao.java
│ │ │ ├── entity
│ │ │ │ ├── Role.java
│ │ │ │ ├── TActivity.java
│ │ │ │ ├── TCar.java
│ │ │ │ ├── TCity.java
│ │ │ │ ├── TFlows.java
│ │ │ │ ├── TGoodsType.java
│ │ │ │ ├── TLine.java
│ │ │ │ ├── TLineSite.java
│ │ │ │ ├── TOrder.java
│ │ │ │ ├── TReceiver.java
│ │ │ │ ├── TSite.java
│ │ │ │ └── TUser.java
│ │ │ ├── exception
│ │ │ │ ├── AccountNotPayExcption.java
│ │ │ │ └── EmptyInputException.java
│ │ │ └── util
│ │ │ ├── DbInfo.java
│ │ │ └── Log.java
│ │ ├── db.properties
│ │ └── log4j.properties
│ └── WebRoot
│ ├── about.jsp
│ ├── count.jsp
│ ├── css
│ │ ├── about.css
│ │ ├── back.css
│ │ ├── demo.css
│ │ ├── index.css
│ │ ├── layout.css
│ │ ├── login2.css
│ │ ├── main.css
│ │ ├── themes
│ │ │ ├── black
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── bootstrap
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── color.css
│ │ │ ├── default
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── gray
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── icon.css
│ │ │ ├── icons
│ │ │ │ ├── back.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── cancel.png
│ │ │ │ ├── clear.png
│ │ │ │ ├── cut.png
│ │ │ │ ├── edit_add.png
│ │ │ │ ├── edit_remove.png
│ │ │ │ ├── filesave.png
│ │ │ │ ├── filter.png
│ │ │ │ ├── help.png
│ │ │ │ ├── large_chart.png
│ │ │ │ ├── large_clipart.png
│ │ │ │ ├── large_picture.png
│ │ │ │ ├── large_shapes.png
│ │ │ │ ├── large_smartart.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── man.png
│ │ │ │ ├── mini_add.png
│ │ │ │ ├── mini_edit.png
│ │ │ │ ├── mini_refresh.png
│ │ │ │ ├── more.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
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.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_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ └── mobile.css
│ │ └── thems.css
│ ├── goods.jsp
│ ├── hint.jsp
│ ├── image
│ │ ├── 151150531ag4.jpg
│ │ ├── 16145719i3m2.jpg
│ │ ├── 200913308x4t.jpg
│ │ ├── 2210494737cz.jpg
│ │ ├── 31160051j31q.jpg
│ │ ├── background.jpg
│ │ ├── down-icon.png
│ │ ├── ht_bg2.jpg
│ │ ├── ht_bg.jpg
│ │ ├── icon15.png
│ │ ├── icon2.png
│ │ ├── icon6.jpg
│ │ ├── icon7.jpg
│ │ ├── icon8.jpg
│ │ ├── index_n.png
│ │ ├── index-y.png
│ │ ├── left.png
│ │ ├── more.png
│ │ ├── na_bg.png
│ │ └── right.png
│ ├── index.jsp
│ ├── js
│ │ ├── index.js
│ │ ├── jquery-1.6.4.min.js
│ │ ├── jquery-1.9.0.min.js
│ │ ├── jquery.easyui.min.js
│ │ ├── jquery.js
│ │ ├── jquery.min.js
│ │ ├── login.js
│ │ └── main.js
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── security.jsp
│ ├── send.jsp
│ ├── service.jsp
│ └── WEB-INF
│ ├── classes
│ │ ├── com
│ │ │ └── icss
│ │ │ ├── bean
│ │ │ │ └── T.class
│ │ │ ├── biz
│ │ │ │ ├── ActivityBiz.class
│ │ │ │ └── UserBiz.class
│ │ │ ├── control
│ │ │ │ ├── FlowGoodSvl.class
│ │ │ │ ├── LoginSvl.class
│ │ │ │ ├── LogoutSvl.class
│ │ │ │ ├── MainSvl.class
│ │ │ │ ├── OrderSvl.class
│ │ │ │ ├── RegistSvl.class
│ │ │ │ ├── SessionName.class
│ │ │ │ ├── SucessSvl.class
│ │ │ │ └── TsiteQuerySvl.class
│ │ │ ├── dao
│ │ │ │ ├── ActivityDao.class
│ │ │ │ ├── BaseDao.class
│ │ │ │ └── UserDao.class
│ │ │ ├── entity
│ │ │ │ ├── Role.class
│ │ │ │ ├── TActivity.class
│ │ │ │ ├── TCar.class
│ │ │ │ ├── TCity.class
│ │ │ │ ├── TFlows.class
│ │ │ │ ├── TGoodsType.class
│ │ │ │ ├── TLine.class
│ │ │ │ ├── TLineSite.class
│ │ │ │ ├── TOrder.class
│ │ │ │ ├── TReceiver.class
│ │ │ │ ├── TSite.class
│ │ │ │ └── TUser.class
│ │ │ ├── exception
│ │ │ │ ├── AccountNotPayExcption.class
│ │ │ │ └── EmptyInputException.class
│ │ │ └── util
│ │ │ ├── DbInfo.class
│ │ │ └── Log.class
│ │ ├── db.properties
│ │ └── log4j.properties
│ ├── error.jsp
│ ├── lib
│ │ ├── log4j-1.2.8.jar
│ │ └── ojdbc6.jar
│ ├── login2.jsp
│ ├── main
│ │ ├── main1.jsp
│ │ ├── main.jsp
│ │ ├── mhead.jsp
│ │ ├── order1.jsp
│ │ ├── order.jsp
│ │ ├── query.jsp
│ │ ├── regist.jsp
│ │ ├── show.jsp
│ │ └── site.jsp
│ └── web.xml
└── 数据库
├── Log.pdb
├── Log.pdm
└── 物流管理系统.sql
163 directories, 1306 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论