实例介绍
通过rfid读写器进行打卡的签到系统,源码java部份在:wlms\src\com\tfsp,wlms\src\com\tfsp\wlproduct\biz\rfid,jsp部分在:wlms\WebRoot\WEB-INF\view\rfid
【实例截图】
【核心代码】
wlms
└── wlms
├── src
│ ├── com
│ │ └── tfsp
│ │ ├── rfiddll
│ │ │ ├── EpcTest.java
│ │ │ └── JavaAndEpcDll.java
│ │ └── wlproduct
│ │ ├── biz
│ │ │ ├── contract
│ │ │ │ ├── service
│ │ │ │ │ ├── ContractService.java
│ │ │ │ │ └── impl
│ │ │ │ │ └── ContractServiceImpl.java
│ │ │ │ └── view
│ │ │ │ ├── ContractController.java
│ │ │ │ └── CustContract.java
│ │ │ ├── formula
│ │ │ │ ├── dto
│ │ │ │ │ ├── FormulaDto.java
│ │ │ │ │ └── ParameterDto.java
│ │ │ │ ├── service
│ │ │ │ │ ├── FormulaService.java
│ │ │ │ │ └── impl
│ │ │ │ │ └── FormulaServiceImpl.java
│ │ │ │ └── view
│ │ │ │ └── FormulaController.java
│ │ │ ├── rfid
│ │ │ │ ├── dto
│ │ │ │ │ ├── DepartmentDto.java
│ │ │ │ │ ├── EmployeeinfoDto.java
│ │ │ │ │ └── TimesheetsDto.java
│ │ │ │ ├── service
│ │ │ │ │ ├── EmployeeService.java
│ │ │ │ │ └── impl
│ │ │ │ │ └── EmployeeServiceImpl.java
│ │ │ │ └── view
│ │ │ │ ├── EmployeeAjax.java
│ │ │ │ ├── EmployeeController.java
│ │ │ │ ├── EmpOndutyAjax.java
│ │ │ │ └── RandomController.java
│ │ │ └── storage
│ │ │ ├── dto
│ │ │ │ ├── AreaPropertyDto.java
│ │ │ │ ├── Condition.java
│ │ │ │ └── TableDto.java
│ │ │ ├── service
│ │ │ │ ├── impl
│ │ │ │ │ └── StorageServiceImpl.java
│ │ │ │ └── StorageService.java
│ │ │ └── view
│ │ │ ├── StorageAjax.java
│ │ │ └── StorageController.java
│ │ ├── common
│ │ │ ├── aop
│ │ │ │ ├── ControllerAop.java
│ │ │ │ └── LoggerAop.java
│ │ │ ├── interceptor
│ │ │ │ ├── FormTokenInterceptor.java
│ │ │ │ ├── MyInject.java
│ │ │ │ └── ParameterArgumentResolver.java
│ │ │ ├── listener
│ │ │ │ └── ContextListener.java
│ │ │ ├── parameter
│ │ │ │ └── Constants.java
│ │ │ ├── tag
│ │ │ │ └── FormTokenTag.java
│ │ │ └── tools
│ │ │ ├── FileResolver.java
│ │ │ ├── TfspHql.java
│ │ │ └── ValidatorResolver.java
│ │ └── db
│ │ ├── dao
│ │ │ ├── BaseDao.java
│ │ │ ├── ContractDao.java
│ │ │ ├── DepartmentDao.java
│ │ │ ├── EmployeeinfoDao.java
│ │ │ ├── FormulaDao.java
│ │ │ ├── impl
│ │ │ │ ├── BaseDaoImpl.java
│ │ │ │ ├── ContractDaoImpl.java
│ │ │ │ ├── DepartmentDaoImpl.java
│ │ │ │ ├── EmployeeinfoDaoImpl.java
│ │ │ │ ├── FormulaDaoImpl.java
│ │ │ │ ├── StorageareaDaoImpl.java
│ │ │ │ ├── StorehouseDaoImpl.java
│ │ │ │ └── TimesheetsDaoImpl.java
│ │ │ ├── StorageareaDao.java
│ │ │ ├── StorehouseDao.java
│ │ │ └── TimesheetsDao.java
│ │ └── entity
│ │ ├── Contract.java
│ │ ├── ContractTemplate.java
│ │ ├── Department.java
│ │ ├── Employeeinfo.java
│ │ ├── Formula.java
│ │ ├── Parameter.java
│ │ ├── RfidManagement.java
│ │ ├── Storagearea.java
│ │ ├── Storehouse.java
│ │ ├── SysUserinfo.java
│ │ ├── TimeSheetCard.java
│ │ ├── Timesheets.java
│ │ └── Visitor.java
│ └── ValidationMessages_zh_CN.properties
├── WebRoot
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── web
│ │ ├── css
│ │ │ ├── common
│ │ │ │ └── jquery-easyui
│ │ │ │ └── themes
│ │ │ │ ├── default
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── accordion_collapse.png
│ │ │ │ │ │ ├── accordion_expand.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── button_a_bg.gif
│ │ │ │ │ │ ├── button_plain_hover.png
│ │ │ │ │ │ ├── button_span_bg.gif
│ │ │ │ │ │ ├── calendar_nextmonth.gif
│ │ │ │ │ │ ├── calendar_nextyear.gif
│ │ │ │ │ │ ├── calendar_prevmonth.gif
│ │ │ │ │ │ ├── calendar_prevyear.gif
│ │ │ │ │ │ ├── combo_arrow.gif
│ │ │ │ │ │ ├── datagrid_header_bg.gif
│ │ │ │ │ │ ├── datagrid_row_collapse.gif
│ │ │ │ │ │ ├── datagrid_row_expand.gif
│ │ │ │ │ │ ├── datagrid_sort_asc.gif
│ │ │ │ │ │ ├── datagrid_sort_desc.gif
│ │ │ │ │ │ ├── datagrid_title_bg.png
│ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ ├── layout_button_down.gif
│ │ │ │ │ │ ├── layout_button_left.gif
│ │ │ │ │ │ ├── layout_button_right.gif
│ │ │ │ │ │ ├── layout_button_up.gif
│ │ │ │ │ │ ├── menu_downarrow.png
│ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ ├── menu_rightarrow.png
│ │ │ │ │ │ ├── menu_sep.png
│ │ │ │ │ │ ├── menu_split_downarrow.png
│ │ │ │ │ │ ├── messager_error.gif
│ │ │ │ │ │ ├── messager_info.gif
│ │ │ │ │ │ ├── messager_question.gif
│ │ │ │ │ │ ├── messager_warning.gif
│ │ │ │ │ │ ├── pagination_first.gif
│ │ │ │ │ │ ├── pagination_last.gif
│ │ │ │ │ │ ├── pagination_loading.gif
│ │ │ │ │ │ ├── pagination_load.png
│ │ │ │ │ │ ├── pagination_next.gif
│ │ │ │ │ │ ├── pagination_prev.gif
│ │ │ │ │ │ ├── panel_loading.gif
│ │ │ │ │ │ ├── panel_title.png
│ │ │ │ │ │ ├── panel_tool_collapse.gif
│ │ │ │ │ │ ├── panel_tool_expand.gif
│ │ │ │ │ │ ├── panel_tools.gif
│ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ ├── spinner_arrow_down.gif
│ │ │ │ │ │ ├── spinner_arrow_up.gif
│ │ │ │ │ │ ├── tabs_active.png
│ │ │ │ │ │ ├── tabs_close.gif
│ │ │ │ │ │ ├── tabs_enabled.png
│ │ │ │ │ │ ├── tabs_leftarrow.png
│ │ │ │ │ │ ├── tabs_rightarrow.png
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── tree_arrows.gif
│ │ │ │ │ │ ├── tree_checkbox_0.gif
│ │ │ │ │ │ ├── tree_checkbox_1.gif
│ │ │ │ │ │ ├── tree_checkbox_2.gif
│ │ │ │ │ │ ├── tree_dnd_no.png
│ │ │ │ │ │ ├── tree_dnd_yes.png
│ │ │ │ │ │ ├── tree_file.gif
│ │ │ │ │ │ ├── tree_folder.gif
│ │ │ │ │ │ ├── tree_folder_open.gif
│ │ │ │ │ │ ├── tree_loading.gif
│ │ │ │ │ │ ├── validatebox_pointer.gif
│ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.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_collapse.png
│ │ │ │ │ │ ├── accordion_expand.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── button_a_bg.gif
│ │ │ │ │ │ ├── button_plain_hover.png
│ │ │ │ │ │ ├── button_span_bg.gif
│ │ │ │ │ │ ├── calendar_nextmonth.gif
│ │ │ │ │ │ ├── calendar_nextyear.gif
│ │ │ │ │ │ ├── calendar_prevmonth.gif
│ │ │ │ │ │ ├── calendar_prevyear.gif
│ │ │ │ │ │ ├── combo_arrow.gif
│ │ │ │ │ │ ├── datagrid_header_bg.gif
│ │ │ │ │ │ ├── datagrid_row_collapse.gif
│ │ │ │ │ │ ├── datagrid_row_expand.gif
│ │ │ │ │ │ ├── datagrid_sort_asc.gif
│ │ │ │ │ │ ├── datagrid_sort_desc.gif
│ │ │ │ │ │ ├── datagrid_title_bg.gif
│ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ ├── layout_button_down.gif
│ │ │ │ │ │ ├── layout_button_left.gif
│ │ │ │ │ │ ├── layout_button_right.gif
│ │ │ │ │ │ ├── layout_button_up.gif
│ │ │ │ │ │ ├── menu_downarrow.png
│ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ ├── menu_rightarrow.png
│ │ │ │ │ │ ├── menu_sep.png
│ │ │ │ │ │ ├── menu_split_downarrow.png
│ │ │ │ │ │ ├── messager_error.gif
│ │ │ │ │ │ ├── messager_info.gif
│ │ │ │ │ │ ├── messager_question.gif
│ │ │ │ │ │ ├── messager_warning.gif
│ │ │ │ │ │ ├── pagination_first.gif
│ │ │ │ │ │ ├── pagination_last.gif
│ │ │ │ │ │ ├── pagination_loading.gif
│ │ │ │ │ │ ├── pagination_load.png
│ │ │ │ │ │ ├── pagination_next.gif
│ │ │ │ │ │ ├── pagination_prev.gif
│ │ │ │ │ │ ├── panel_loading.gif
│ │ │ │ │ │ ├── panel_title.gif
│ │ │ │ │ │ ├── panel_tool_collapse.gif
│ │ │ │ │ │ ├── panel_tool_expand.gif
│ │ │ │ │ │ ├── panel_tools.gif
│ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ ├── spinner_arrow_down.gif
│ │ │ │ │ │ ├── spinner_arrow_up.gif
│ │ │ │ │ │ ├── tabs_close.gif
│ │ │ │ │ │ ├── tabs_enabled.gif
│ │ │ │ │ │ ├── tabs_leftarrow.png
│ │ │ │ │ │ ├── tabs_rightarrow.png
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── tree_arrows.gif
│ │ │ │ │ │ ├── tree_checkbox_0.gif
│ │ │ │ │ │ ├── tree_checkbox_1.gif
│ │ │ │ │ │ ├── tree_checkbox_2.gif
│ │ │ │ │ │ ├── tree_dnd_no.png
│ │ │ │ │ │ ├── tree_dnd_yes.png
│ │ │ │ │ │ ├── tree_file.gif
│ │ │ │ │ │ ├── tree_folder.gif
│ │ │ │ │ │ ├── tree_folder_open.gif
│ │ │ │ │ │ ├── tree_loading.gif
│ │ │ │ │ │ ├── validatebox_pointer.gif
│ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.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
│ │ │ └── formula
│ │ │ ├── dzsw.css
│ │ │ ├── global.css
│ │ │ ├── jquery.multiselect.css
│ │ │ ├── jquery.multiselect.filter.css
│ │ │ ├── jquery-ui-1.8.11.custom.css
│ │ │ ├── jquery-ui-1.8.6.custom.css
│ │ │ ├── jquery-ui.css
│ │ │ ├── jstree.css
│ │ │ ├── left.css
│ │ │ ├── login.css
│ │ │ ├── main.css
│ │ │ ├── select.htc
│ │ │ ├── side.css
│ │ │ ├── sjzl.css
│ │ │ ├── smoothDivScroll.css
│ │ │ ├── style.css
│ │ │ ├── tgfx.css
│ │ │ ├── Tooltip.css
│ │ │ ├── top.css
│ │ │ ├── ui.datetimepicker.css
│ │ │ ├── wrong.css
│ │ │ ├── wygl.css
│ │ │ ├── ywzx.css
│ │ │ ├── zncc.css
│ │ │ └── zTreeStyle.css
│ │ ├── images
│ │ │ ├── 3dmoblieshow
│ │ │ │ ├── 3d-mobile.jpg
│ │ │ │ └── 3dmouse.cur
│ │ │ ├── formula
│ │ │ │ ├── accept.png
│ │ │ │ ├── arrow_left.gif
│ │ │ │ ├── arrow_left.png
│ │ │ │ ├── arrow.png
│ │ │ │ ├── arrow_right.gif
│ │ │ │ ├── arrow_right.png
│ │ │ │ ├── banner_bg_normal.jpg
│ │ │ │ ├── banner_logo.jpg
│ │ │ │ ├── banner_right.jpg
│ │ │ │ ├── big_transparent.gif
│ │ │ │ ├── btn_fold.gif
│ │ │ │ ├── btn_fold_hover.gif
│ │ │ │ ├── btn_reset.jpg
│ │ │ │ ├── btn_search.jpg
│ │ │ │ ├── button2.gif
│ │ │ │ ├── button3.gif
│ │ │ │ ├── button-add.gif
│ │ │ │ ├── button-del.gif
│ │ │ │ ├── button.gif
│ │ │ │ ├── ckhz_report.jpg
│ │ │ │ ├── ck.jpg
│ │ │ │ ├── ck_sm_failed.jpg
│ │ │ │ ├── ck_sm_success.jpg
│ │ │ │ ├── cksq.jpg
│ │ │ │ ├── control.jpg
│ │ │ │ ├── cursors
│ │ │ │ │ ├── cursor_arrow_left.cur
│ │ │ │ │ ├── cursor_arrow_left.gif
│ │ │ │ │ ├── cursor_arrow_left.png
│ │ │ │ │ ├── cursor_arrow_right.cur
│ │ │ │ │ ├── cursor_arrow_right.gif
│ │ │ │ │ ├── cursor_arrow_right.png
│ │ │ │ │ └── Thumbs.db
│ │ │ │ ├── exclamation.png
│ │ │ │ ├── flow_current.jpg
│ │ │ │ ├── flow_normal.jpg
│ │ │ │ ├── h3-bg.gif
│ │ │ │ ├── icon
│ │ │ │ │ ├── data.png
│ │ │ │ │ ├── icon_add.gif
│ │ │ │ │ ├── icon_approval.gif
│ │ │ │ │ ├── icon_bl.gif
│ │ │ │ │ ├── icon_cancel.png
│ │ │ │ │ ├── icon_ckdxx.gif
│ │ │ │ │ ├── icon_copy.gif
│ │ │ │ │ ├── icon_cx.gif
│ │ │ │ │ ├── icon_cxsc.gif
│ │ │ │ │ ├── icon_czjl.gif
│ │ │ │ │ ├── icon_data.gif
│ │ │ │ │ ├── icon_data.png
│ │ │ │ │ ├── icon_delete.gif
│ │ │ │ │ ├── icon_detail.gif
│ │ │ │ │ ├── icon_edit.gif
│ │ │ │ │ ├── icon_fx.gif
│ │ │ │ │ ├── icon_green.gif
│ │ │ │ │ ├── icon_hzddsh.gif
│ │ │ │ │ ├── icon_jcht.gif
│ │ │ │ │ ├── icon_jf.gif
│ │ │ │ │ ├── icon_jfjl.gif
│ │ │ │ │ ├── icon_jfqr.gif
│ │ │ │ │ ├── icon_js.gif
│ │ │ │ │ ├── icon_jssh.gif
│ │ │ │ │ ├── icon_over.gif
│ │ │ │ │ ├── icon_package_get.gif
│ │ │ │ │ ├── icon_package.gif
│ │ │ │ │ ├── icon_package_yes.gif
│ │ │ │ │ ├── icon_pc.gif
│ │ │ │ │ ├── icon_printer.gif
│ │ │ │ │ ├── icon_red.gif
│ │ │ │ │ ├── icon_scckd.gif
│ │ │ │ │ ├── icon_scrkd.gif
│ │ │ │ │ ├── icon_scwzqrd.gif
│ │ │ │ │ ├── icon_scwzyyd.gif
│ │ │ │ │ ├── icon_shqr.gif
│ │ │ │ │ ├── icon_summary.gif
│ │ │ │ │ ├── icon_tc.gif
│ │ │ │ │ ├── icon_tj.gif
│ │ │ │ │ ├── icon_tpsp.gif
│ │ │ │ │ ├── icon_tpsq.gif
│ │ │ │ │ ├── icon_xq.gif
│ │ │ │ │ ├── icon_yellow.gif
│ │ │ │ │ ├── icon_yes.gif
│ │ │ │ │ ├── icon_ykhz.gif
│ │ │ │ │ ├── icon_yqsp.gif
│ │ │ │ │ ├── icon_zf.gif
│ │ │ │ │ ├── icon_zz.gif
│ │ │ │ │ └── Thumbs.db
│ │ │ │ ├── icon-401.jpg
│ │ │ │ ├── icon-401.png
│ │ │ │ ├── icon-404.jpg
│ │ │ │ ├── icon-404.png
│ │ │ │ ├── icon_breadcrumbs.gif
│ │ │ │ ├── icon_ff.jpg
│ │ │ │ ├── icon-r.gif
│ │ │ │ ├── icon_smy2.gif
│ │ │ │ ├── index_x_03.jpg
│ │ │ │ ├── index_x_04.jpg
│ │ │ │ ├── index_x_06.jpg
│ │ │ │ ├── kc_zb.jpg
│ │ │ │ ├── login_images
│ │ │ │ │ ├── login_01.jpg
│ │ │ │ │ ├── login_04.jpg
│ │ │ │ │ ├── login_07.jpg
│ │ │ │ │ ├── login_11.jpg
│ │ │ │ │ ├── login_13.jpg
│ │ │ │ │ ├── login_icon.jpg
│ │ │ │ │ └── Thumbs.db
│ │ │ │ ├── menu_bg.jpg
│ │ │ │ ├── menu-current-arrow2.gif
│ │ │ │ ├── menu-current-arrow.gif
│ │ │ │ ├── menu-current-arrow.jpg
│ │ │ │ ├── menu_current.jpg
│ │ │ │ ├── menu_hover.jpg
│ │ │ │ ├── menu_other.jpg
│ │ │ │ ├── month_report_detail_table.png
│ │ │ │ ├── nav_APROC.png
│ │ │ │ ├── nav_bg_light.jpg
│ │ │ │ ├── nav_e-commerce.png
│ │ │ │ ├── nav-gzt-1.gif
│ │ │ │ ├── nav_gzt_1.png
│ │ │ │ ├── nav-gzt-2.gif
│ │ │ │ ├── nav_gzt_2.png
│ │ │ │ ├── nav_line.jpg
│ │ │ │ ├── nav_merchant.png
│ │ │ │ ├── nav_sale.png
│ │ │ │ ├── nav_store.png
│ │ │ │ ├── nav_tenement.png
│ │ │ │ ├── NoName.jpg
│ │ │ │ ├── qq1.gif
│ │ │ │ ├── qq2.gif
│ │ │ │ ├── rck_gg_report.jpg
│ │ │ │ ├── rck_sj_report.jpg
│ │ │ │ ├── rkhz_report.jpg
│ │ │ │ ├── rk_sm_check_failed.png
│ │ │ │ ├── rk_sm_check_success.png
│ │ │ │ ├── rksq_table.jpg
│ │ │ │ ├── rk_table.jpg
│ │ │ │ ├── rk_wzqr_table.jpg
│ │ │ │ ├── rk_yy_table.jpg
│ │ │ │ ├── shangjia.jpg
│ │ │ │ ├── show_img.jpg
│ │ │ │ ├── style1-2_index4.jpg
│ │ │ │ ├── table_th.jpg
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── title_bg_01.jpg
│ │ │ │ ├── title_bg_02.jpg
│ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png
│ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ ├── ui-bg_flat_10_000000_40x100.png
│ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png
│ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png
│ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png
│ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_228ef1_256x240.png
│ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ │ ├── ui-icons_ef8c08_256x240.png
│ │ │ │ ├── ui-icons_ffd27a_256x240.png
│ │ │ │ ├── ui-icons_ffffff_256x240.png
│ │ │ │ ├── wel_03.jpg
│ │ │ │ ├── wrong.jpg
│ │ │ │ ├── wrong.png
│ │ │ │ └── zTreeIcon
│ │ │ │ ├── checkbox.png
│ │ │ │ ├── edit.png
│ │ │ │ ├── folder_Close.gif
│ │ │ │ ├── folder_Open.gif
│ │ │ │ ├── line_bottom.gif
│ │ │ │ ├── line_center.gif
│ │ │ │ ├── line_conn.gif
│ │ │ │ ├── line_top.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── minus_bottom.gif
│ │ │ │ ├── minus_center.gif
│ │ │ │ ├── minus_noLine.gif
│ │ │ │ ├── minus_root.gif
│ │ │ │ ├── minus_top.gif
│ │ │ │ ├── moveArrow.png
│ │ │ │ ├── page.gif
│ │ │ │ ├── plus_bottom.gif
│ │ │ │ ├── plus_center.gif
│ │ │ │ ├── plus_noLine.gif
│ │ │ │ ├── plus_root.gif
│ │ │ │ ├── plus_top.gif
│ │ │ │ ├── radio.png
│ │ │ │ ├── remove.png
│ │ │ │ └── Thumbs.db
│ │ │ └── rfidimage
│ │ │ ├── btn2.gif
│ │ │ ├── btn4.gif
│ │ │ ├── btn6.gif
│ │ │ ├── btnGo.gif
│ │ │ ├── cur.gif
│ │ │ ├── foot.jpg
│ │ │ ├── headerBg.jpg
│ │ │ ├── loginBg.png
│ │ │ ├── l_r6_c4.gif
│ │ │ ├── menuTitleBg.gif
│ │ │ ├── positionBg.gif
│ │ │ ├── tfsp.png
│ │ │ └── weixiao.gif
│ │ ├── js
│ │ │ ├── common
│ │ │ │ ├── commonJs.js
│ │ │ │ ├── company_autocomplete.js
│ │ │ │ ├── contract.js
│ │ │ │ ├── date.js
│ │ │ │ ├── easyui
│ │ │ │ │ ├── locale
│ │ │ │ │ │ ├── easyui-lang-af.js
│ │ │ │ │ │ ├── easyui-lang-bg.js
│ │ │ │ │ │ ├── easyui-lang-ca.js
│ │ │ │ │ │ ├── easyui-lang-cs.js
│ │ │ │ │ │ ├── easyui-lang-da.js
│ │ │ │ │ │ ├── easyui-lang-de.js
│ │ │ │ │ │ ├── easyui-lang-en.js
│ │ │ │ │ │ ├── easyui-lang-fr.js
│ │ │ │ │ │ ├── easyui-lang-nl.js
│ │ │ │ │ │ ├── easyui-lang-zh_CN.js
│ │ │ │ │ │ └── easyui-lang-zh_TW.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.propertygrid.js
│ │ │ │ │ │ ├── jquery.resizable.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
│ │ │ │ │ └── themes
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ ├── datagrid.css
│ │ │ │ │ │ ├── datebox.css
│ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ ├── easyui.css
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── accordion_collapse.png
│ │ │ │ │ │ │ ├── accordion_expand.png
│ │ │ │ │ │ │ ├── button_a_bg.gif
│ │ │ │ │ │ │ ├── button_plain_hover.png
│ │ │ │ │ │ │ ├── button_span_bg.gif
│ │ │ │ │ │ │ ├── calendar_nextmonth.gif
│ │ │ │ │ │ │ ├── calendar_nextyear.gif
│ │ │ │ │ │ │ ├── calendar_prevmonth.gif
│ │ │ │ │ │ │ ├── calendar_prevyear.gif
│ │ │ │ │ │ │ ├── combo_arrow.gif
│ │ │ │ │ │ │ ├── datagrid_header_bg.gif
│ │ │ │ │ │ │ ├── datagrid_row_collapse.gif
│ │ │ │ │ │ │ ├── datagrid_row_expand.gif
│ │ │ │ │ │ │ ├── datagrid_sort_asc.gif
│ │ │ │ │ │ │ ├── datagrid_sort_desc.gif
│ │ │ │ │ │ │ ├── datagrid_title_bg.png
│ │ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ │ ├── layout_button_down.gif
│ │ │ │ │ │ │ ├── layout_button_left.gif
│ │ │ │ │ │ │ ├── layout_button_right.gif
│ │ │ │ │ │ │ ├── layout_button_up.gif
│ │ │ │ │ │ │ ├── menu_downarrow.png
│ │ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ │ ├── menu_rightarrow.png
│ │ │ │ │ │ │ ├── menu_sep.png
│ │ │ │ │ │ │ ├── menu_split_downarrow.png
│ │ │ │ │ │ │ ├── messager_error.gif
│ │ │ │ │ │ │ ├── messager_info.gif
│ │ │ │ │ │ │ ├── messager_question.gif
│ │ │ │ │ │ │ ├── messager_warning.gif
│ │ │ │ │ │ │ ├── pagination_first.gif
│ │ │ │ │ │ │ ├── pagination_last.gif
│ │ │ │ │ │ │ ├── pagination_loading.gif
│ │ │ │ │ │ │ ├── pagination_load.png
│ │ │ │ │ │ │ ├── pagination_next.gif
│ │ │ │ │ │ │ ├── pagination_prev.gif
│ │ │ │ │ │ │ ├── panel_loading.gif
│ │ │ │ │ │ │ ├── panel_title.png
│ │ │ │ │ │ │ ├── panel_tool_collapse.gif
│ │ │ │ │ │ │ ├── panel_tool_expand.gif
│ │ │ │ │ │ │ ├── panel_tools.gif
│ │ │ │ │ │ │ ├── spinner_arrow_down.gif
│ │ │ │ │ │ │ ├── spinner_arrow_up.gif
│ │ │ │ │ │ │ ├── tabs_active.png
│ │ │ │ │ │ │ ├── tabs_close.gif
│ │ │ │ │ │ │ ├── tabs_enabled.png
│ │ │ │ │ │ │ ├── tabs_leftarrow.png
│ │ │ │ │ │ │ ├── tabs_rightarrow.png
│ │ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ │ ├── tree_arrows.gif
│ │ │ │ │ │ │ ├── tree_checkbox_0.gif
│ │ │ │ │ │ │ ├── tree_checkbox_1.gif
│ │ │ │ │ │ │ ├── tree_checkbox_2.gif
│ │ │ │ │ │ │ ├── tree_dnd_no.png
│ │ │ │ │ │ │ ├── tree_dnd_yes.png
│ │ │ │ │ │ │ ├── tree_file.gif
│ │ │ │ │ │ │ ├── tree_folder.gif
│ │ │ │ │ │ │ ├── tree_folder_open.gif
│ │ │ │ │ │ │ ├── tree_loading.gif
│ │ │ │ │ │ │ ├── validatebox_pointer.gif
│ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ ├── propertygrid.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_collapse.png
│ │ │ │ │ │ │ ├── accordion_expand.png
│ │ │ │ │ │ │ ├── button_a_bg.gif
│ │ │ │ │ │ │ ├── button_plain_hover.png
│ │ │ │ │ │ │ ├── button_span_bg.gif
│ │ │ │ │ │ │ ├── calendar_nextmonth.gif
│ │ │ │ │ │ │ ├── calendar_nextyear.gif
│ │ │ │ │ │ │ ├── calendar_prevmonth.gif
│ │ │ │ │ │ │ ├── calendar_prevyear.gif
│ │ │ │ │ │ │ ├── combo_arrow.gif
│ │ │ │ │ │ │ ├── datagrid_header_bg.gif
│ │ │ │ │ │ │ ├── datagrid_row_collapse.gif
│ │ │ │ │ │ │ ├── datagrid_row_expand.gif
│ │ │ │ │ │ │ ├── datagrid_sort_asc.gif
│ │ │ │ │ │ │ ├── datagrid_sort_desc.gif
│ │ │ │ │ │ │ ├── datagrid_title_bg.gif
│ │ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ │ ├── layout_button_down.gif
│ │ │ │ │ │ │ ├── layout_button_left.gif
│ │ │ │ │ │ │ ├── layout_button_right.gif
│ │ │ │ │ │ │ ├── layout_button_up.gif
│ │ │ │ │ │ │ ├── menu_downarrow.png
│ │ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ │ ├── menu_rightarrow.png
│ │ │ │ │ │ │ ├── menu_sep.png
│ │ │ │ │ │ │ ├── menu_split_downarrow.png
│ │ │ │ │ │ │ ├── messager_error.gif
│ │ │ │ │ │ │ ├── messager_info.gif
│ │ │ │ │ │ │ ├── messager_question.gif
│ │ │ │ │ │ │ ├── messager_warning.gif
│ │ │ │ │ │ │ ├── pagination_first.gif
│ │ │ │ │ │ │ ├── pagination_last.gif
│ │ │ │ │ │ │ ├── pagination_loading.gif
│ │ │ │ │ │ │ ├── pagination_load.png
│ │ │ │ │ │ │ ├── pagination_next.gif
│ │ │ │ │ │ │ ├── pagination_prev.gif
│ │ │ │ │ │ │ ├── panel_loading.gif
│ │ │ │ │ │ │ ├── panel_title.gif
│ │ │ │ │ │ │ ├── panel_tool_collapse.gif
│ │ │ │ │ │ │ ├── panel_tool_expand.gif
│ │ │ │ │ │ │ ├── panel_tools.gif
│ │ │ │ │ │ │ ├── spinner_arrow_down.gif
│ │ │ │ │ │ │ ├── spinner_arrow_up.gif
│ │ │ │ │ │ │ ├── tabs_close.gif
│ │ │ │ │ │ │ ├── tabs_enabled.gif
│ │ │ │ │ │ │ ├── tabs_leftarrow.png
│ │ │ │ │ │ │ ├── tabs_rightarrow.png
│ │ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ │ ├── tree_arrows.gif
│ │ │ │ │ │ │ ├── tree_checkbox_0.gif
│ │ │ │ │ │ │ ├── tree_checkbox_1.gif
│ │ │ │ │ │ │ ├── tree_checkbox_2.gif
│ │ │ │ │ │ │ ├── tree_dnd_no.png
│ │ │ │ │ │ │ ├── tree_dnd_yes.png
│ │ │ │ │ │ │ ├── tree_file.gif
│ │ │ │ │ │ │ ├── tree_folder.gif
│ │ │ │ │ │ │ ├── tree_folder_open.gif
│ │ │ │ │ │ │ ├── tree_loading.gif
│ │ │ │ │ │ │ ├── validatebox_pointer.gif
│ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ ├── propertygrid.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
│ │ │ │ │ ├── no.png
│ │ │ │ │ ├── ok.png
│ │ │ │ │ ├── pencil.png
│ │ │ │ │ ├── print.png
│ │ │ │ │ ├── redo.png
│ │ │ │ │ ├── reload.png
│ │ │ │ │ ├── search.png
│ │ │ │ │ ├── sum.png
│ │ │ │ │ └── undo.png
│ │ │ │ ├── errorTip.js
│ │ │ │ ├── framePrint.js
│ │ │ │ ├── jquery-1.3.2.min.js
│ │ │ │ ├── jquery-1.4.2.min.js
│ │ │ │ ├── jquery-1.5.1.min.js
│ │ │ │ ├── jquery-1.6.min.js
│ │ │ │ ├── jquery-1.7.1.min.js
│ │ │ │ ├── jquery.autocomplete.js
│ │ │ │ ├── jquery-easyui
│ │ │ │ │ ├── easyloader.js
│ │ │ │ │ ├── jquery.easyui.min.js
│ │ │ │ │ ├── locale
│ │ │ │ │ │ ├── easyui-lang-af.js
│ │ │ │ │ │ ├── easyui-lang-bg.js
│ │ │ │ │ │ ├── easyui-lang-ca.js
│ │ │ │ │ │ ├── easyui-lang-cs.js
│ │ │ │ │ │ ├── easyui-lang-cz.js
│ │ │ │ │ │ ├── easyui-lang-da.js
│ │ │ │ │ │ ├── easyui-lang-de.js
│ │ │ │ │ │ ├── easyui-lang-en.js
│ │ │ │ │ │ ├── easyui-lang-es.js
│ │ │ │ │ │ ├── easyui-lang-fr.js
│ │ │ │ │ │ ├── easyui-lang-nl.js
│ │ │ │ │ │ ├── easyui-lang-zh_CN.js
│ │ │ │ │ │ └── easyui-lang-zh_TW.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.spinner.js
│ │ │ │ │ ├── jquery.splitbutton.js
│ │ │ │ │ ├── jquery.tabs.js
│ │ │ │ │ ├── jquery.timespinner.js
│ │ │ │ │ ├── jquery.treegrid.js
│ │ │ │ │ ├── jquery.tree.js
│ │ │ │ │ ├── jquery.validatebox.js
│ │ │ │ │ └── jquery.window.js
│ │ │ │ ├── jquery.easyui.min.js
│ │ │ │ ├── jquery.form.js
│ │ │ │ ├── jquery.jstree.js
│ │ │ │ ├── jquery.maskedinput-1.2.2.js
│ │ │ │ ├── jquery.messager.js
│ │ │ │ ├── jquery.multiselect.filter.js
│ │ │ │ ├── jquery.multiselect.min.js
│ │ │ │ ├── jquery.smoothDivScroll-1.1.js
│ │ │ │ ├── jquery.smoothDivScroll-1.1-min.js
│ │ │ │ ├── jquery.tools.min.js
│ │ │ │ ├── jquery-ui-1.8.11.custom.min.js
│ │ │ │ ├── jquery-ui-1.8.6.custom.min.js
│ │ │ │ ├── jquery.ui.datepicker.min.js
│ │ │ │ ├── jquery.ui.datepicker-zh-CN.js
│ │ │ │ ├── jquery-ui-timepicker-addon.js
│ │ │ │ ├── jquery.validate.defaults.js
│ │ │ │ ├── jquery.validate.js
│ │ │ │ ├── jquery.validate.methods.js
│ │ │ │ ├── jquery.validate.methods.min.js
│ │ │ │ ├── jquery.validate.min.js
│ │ │ │ ├── jquery-ztree-2.5.js
│ │ │ │ ├── kindeditor
│ │ │ │ │ ├── kindeditor.js
│ │ │ │ │ ├── kindeditor-min.js
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ ├── anchor
│ │ │ │ │ │ │ └── anchor.js
│ │ │ │ │ │ ├── clearhtml
│ │ │ │ │ │ │ └── clearhtml.js
│ │ │ │ │ │ ├── code
│ │ │ │ │ │ │ ├── code.js
│ │ │ │ │ │ │ ├── prettify.css
│ │ │ │ │ │ │ └── prettify.js
│ │ │ │ │ │ ├── emoticons
│ │ │ │ │ │ │ ├── emoticons.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ │ ├── 100.gif
│ │ │ │ │ │ │ ├── 101.gif
│ │ │ │ │ │ │ ├── 102.gif
│ │ │ │ │ │ │ ├── 103.gif
│ │ │ │ │ │ │ ├── 104.gif
│ │ │ │ │ │ │ ├── 105.gif
│ │ │ │ │ │ │ ├── 106.gif
│ │ │ │ │ │ │ ├── 107.gif
│ │ │ │ │ │ │ ├── 108.gif
│ │ │ │ │ │ │ ├── 109.gif
│ │ │ │ │ │ │ ├── 10.gif
│ │ │ │ │ │ │ ├── 110.gif
│ │ │ │ │ │ │ ├── 111.gif
│ │ │ │ │ │ │ ├── 112.gif
│ │ │ │ │ │ │ ├── 113.gif
│ │ │ │ │ │ │ ├── 114.gif
│ │ │ │ │ │ │ ├── 115.gif
│ │ │ │ │ │ │ ├── 116.gif
│ │ │ │ │ │ │ ├── 117.gif
│ │ │ │ │ │ │ ├── 118.gif
│ │ │ │ │ │ │ ├── 119.gif
│ │ │ │ │ │ │ ├── 11.gif
│ │ │ │ │ │ │ ├── 120.gif
│ │ │ │ │ │ │ ├── 121.gif
│ │ │ │ │ │ │ ├── 122.gif
│ │ │ │ │ │ │ ├── 123.gif
│ │ │ │ │ │ │ ├── 124.gif
│ │ │ │ │ │ │ ├── 125.gif
│ │ │ │ │ │ │ ├── 126.gif
│ │ │ │ │ │ │ ├── 127.gif
│ │ │ │ │ │ │ ├── 128.gif
│ │ │ │ │ │ │ ├── 129.gif
│ │ │ │ │ │ │ ├── 12.gif
│ │ │ │ │ │ │ ├── 130.gif
│ │ │ │ │ │ │ ├── 131.gif
│ │ │ │ │ │ │ ├── 132.gif
│ │ │ │ │ │ │ ├── 133.gif
│ │ │ │ │ │ │ ├── 134.gif
│ │ │ │ │ │ │ ├── 13.gif
│ │ │ │ │ │ │ ├── 14.gif
│ │ │ │ │ │ │ ├── 15.gif
│ │ │ │ │ │ │ ├── 16.gif
│ │ │ │ │ │ │ ├── 17.gif
│ │ │ │ │ │ │ ├── 18.gif
│ │ │ │ │ │ │ ├── 19.gif
│ │ │ │ │ │ │ ├── 1.gif
│ │ │ │ │ │ │ ├── 20.gif
│ │ │ │ │ │ │ ├── 21.gif
│ │ │ │ │ │ │ ├── 22.gif
│ │ │ │ │ │ │ ├── 23.gif
│ │ │ │ │ │ │ ├── 24.gif
│ │ │ │ │ │ │ ├── 25.gif
│ │ │ │ │ │ │ ├── 26.gif
│ │ │ │ │ │ │ ├── 27.gif
│ │ │ │ │ │ │ ├── 28.gif
│ │ │ │ │ │ │ ├── 29.gif
│ │ │ │ │ │ │ ├── 2.gif
│ │ │ │ │ │ │ ├── 30.gif
│ │ │ │ │ │ │ ├── 31.gif
│ │ │ │ │ │ │ ├── 32.gif
│ │ │ │ │ │ │ ├── 33.gif
│ │ │ │ │ │ │ ├── 34.gif
│ │ │ │ │ │ │ ├── 35.gif
│ │ │ │ │ │ │ ├── 36.gif
│ │ │ │ │ │ │ ├── 37.gif
│ │ │ │ │ │ │ ├── 38.gif
│ │ │ │ │ │ │ ├── 39.gif
│ │ │ │ │ │ │ ├── 3.gif
│ │ │ │ │ │ │ ├── 40.gif
│ │ │ │ │ │ │ ├── 41.gif
│ │ │ │ │ │ │ ├── 42.gif
│ │ │ │ │ │ │ ├── 43.gif
│ │ │ │ │ │ │ ├── 44.gif
│ │ │ │ │ │ │ ├── 45.gif
│ │ │ │ │ │ │ ├── 46.gif
│ │ │ │ │ │ │ ├── 47.gif
│ │ │ │ │ │ │ ├── 48.gif
│ │ │ │ │ │ │ ├── 49.gif
│ │ │ │ │ │ │ ├── 4.gif
│ │ │ │ │ │ │ ├── 50.gif
│ │ │ │ │ │ │ ├── 51.gif
│ │ │ │ │ │ │ ├── 52.gif
│ │ │ │ │ │ │ ├── 53.gif
│ │ │ │ │ │ │ ├── 54.gif
│ │ │ │ │ │ │ ├── 55.gif
│ │ │ │ │ │ │ ├── 56.gif
│ │ │ │ │ │ │ ├── 57.gif
│ │ │ │ │ │ │ ├── 58.gif
│ │ │ │ │ │ │ ├── 59.gif
│ │ │ │ │ │ │ ├── 5.gif
│ │ │ │ │ │ │ ├── 60.gif
│ │ │ │ │ │ │ ├── 61.gif
│ │ │ │ │ │ │ ├── 62.gif
│ │ │ │ │ │ │ ├── 63.gif
│ │ │ │ │ │ │ ├── 64.gif
│ │ │ │ │ │ │ ├── 65.gif
│ │ │ │ │ │ │ ├── 66.gif
│ │ │ │ │ │ │ ├── 67.gif
│ │ │ │ │ │ │ ├── 68.gif
│ │ │ │ │ │ │ ├── 69.gif
│ │ │ │ │ │ │ ├── 6.gif
│ │ │ │ │ │ │ ├── 70.gif
│ │ │ │ │ │ │ ├── 71.gif
│ │ │ │ │ │ │ ├── 72.gif
│ │ │ │ │ │ │ ├── 73.gif
│ │ │ │ │ │ │ ├── 74.gif
│ │ │ │ │ │ │ ├── 75.gif
│ │ │ │ │ │ │ ├── 76.gif
│ │ │ │ │ │ │ ├── 77.gif
│ │ │ │ │ │ │ ├── 78.gif
│ │ │ │ │ │ │ ├── 79.gif
│ │ │ │ │ │ │ ├── 7.gif
│ │ │ │ │ │ │ ├── 80.gif
│ │ │ │ │ │ │ ├── 81.gif
│ │ │ │ │ │ │ ├── 82.gif
│ │ │ │ │ │ │ ├── 83.gif
│ │ │ │ │ │ │ ├── 84.gif
│ │ │ │ │ │ │ ├── 85.gif
│ │ │ │ │ │ │ ├── 86.gif
│ │ │ │ │ │ │ ├── 87.gif
│ │ │ │ │ │ │ ├── 88.gif
│ │ │ │ │ │ │ ├── 89.gif
│ │ │ │ │ │ │ ├── 8.gif
│ │ │ │ │ │ │ ├── 90.gif
│ │ │ │ │ │ │ ├── 91.gif
│ │ │ │ │ │ │ ├── 92.gif
│ │ │ │ │ │ │ ├── 93.gif
│ │ │ │ │ │ │ ├── 94.gif
│ │ │ │ │ │ │ ├── 95.gif
│ │ │ │ │ │ │ ├── 96.gif
│ │ │ │ │ │ │ ├── 97.gif
│ │ │ │ │ │ │ ├── 98.gif
│ │ │ │ │ │ │ ├── 99.gif
│ │ │ │ │ │ │ ├── 9.gif
│ │ │ │ │ │ │ └── static.gif
│ │ │ │ │ │ ├── filemanager
│ │ │ │ │ │ │ ├── filemanager.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── file-16.gif
│ │ │ │ │ │ │ ├── file-64.gif
│ │ │ │ │ │ │ ├── folder-16.gif
│ │ │ │ │ │ │ ├── folder-64.gif
│ │ │ │ │ │ │ └── go-up.gif
│ │ │ │ │ │ ├── flash
│ │ │ │ │ │ │ └── flash.js
│ │ │ │ │ │ ├── image
│ │ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── align_left.gif
│ │ │ │ │ │ │ ├── align_right.gif
│ │ │ │ │ │ │ ├── align_top.gif
│ │ │ │ │ │ │ └── refresh.gif
│ │ │ │ │ │ ├── insertfile
│ │ │ │ │ │ │ └── insertfile.js
│ │ │ │ │ │ ├── lineheight
│ │ │ │ │ │ │ └── lineheight.js
│ │ │ │ │ │ ├── link
│ │ │ │ │ │ │ └── link.js
│ │ │ │ │ │ ├── map
│ │ │ │ │ │ │ ├── map.html
│ │ │ │ │ │ │ └── map.js
│ │ │ │ │ │ ├── media
│ │ │ │ │ │ │ └── media.js
│ │ │ │ │ │ ├── pagebreak
│ │ │ │ │ │ │ └── pagebreak.js
│ │ │ │ │ │ ├── plainpaste
│ │ │ │ │ │ │ └── plainpaste.js
│ │ │ │ │ │ ├── preview
│ │ │ │ │ │ │ └── preview.js
│ │ │ │ │ │ ├── quickformat
│ │ │ │ │ │ │ └── quickformat.js
│ │ │ │ │ │ ├── table
│ │ │ │ │ │ │ └── table.js
│ │ │ │ │ │ ├── template
│ │ │ │ │ │ │ ├── html
│ │ │ │ │ │ │ │ ├── 1.html
│ │ │ │ │ │ │ │ ├── 2.html
│ │ │ │ │ │ │ │ └── 3.html
│ │ │ │ │ │ │ └── template.js
│ │ │ │ │ │ └── wordpaste
│ │ │ │ │ │ └── wordpaste.js
│ │ │ │ │ ├── themes
│ │ │ │ │ │ ├── common
│ │ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ ├── flash.gif
│ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ ├── media.gif
│ │ │ │ │ │ │ └── rm.gif
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ │ ├── default.css
│ │ │ │ │ │ │ └── default.png
│ │ │ │ │ │ └── simple
│ │ │ │ │ │ └── simple.css
│ │ │ │ │ └── zh_CN.js
│ │ │ │ ├── messages_cn.js
│ │ │ │ ├── mktSignup.js
│ │ │ │ ├── numberTools.js
│ │ │ │ ├── print_wygl.js
│ │ │ │ ├── privilegeCtrl.js
│ │ │ │ ├── simpla.jquery.configuration.js
│ │ │ │ ├── thickbox.js
│ │ │ │ ├── Tooltip.js
│ │ │ │ └── ui.datetimepicker.js
│ │ │ ├── My97DatePicker
│ │ │ │ ├── calendar.js
│ │ │ │ ├── jquery.js
│ │ │ │ ├── lang
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh-tw.js
│ │ │ │ ├── skin
│ │ │ │ │ ├── datePicker.gif
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ └── img.gif
│ │ │ │ │ ├── WdatePicker.css
│ │ │ │ │ └── whyGreen
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── img.gif
│ │ │ │ ├── WdatePicker.js
│ │ │ │ └── 开发包
│ │ │ │ ├── lang
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh-tw.js
│ │ │ │ ├── readme.txt
│ │ │ │ └── skin
│ │ │ │ ├── datePicker.gif
│ │ │ │ ├── default
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── img.gif
│ │ │ │ ├── WdatePicker.css
│ │ │ │ └── whyGreen
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── datepicker.css
│ │ │ │ └── img.gif
│ │ │ └── storage
│ │ │ └── colorpane.js
│ │ └── page
│ │ ├── index.jsp
│ │ └── Master.jsp
│ └── WEB-INF
│ ├── classes
│ │ ├── com
│ │ │ └── tfsp
│ │ │ ├── rfiddll
│ │ │ │ ├── EpcTest.class
│ │ │ │ └── JavaAndEpcDll.class
│ │ │ └── wlproduct
│ │ │ ├── biz
│ │ │ │ ├── contract
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── ContractService.class
│ │ │ │ │ │ └── impl
│ │ │ │ │ │ └── ContractServiceImpl.class
│ │ │ │ │ └── view
│ │ │ │ │ ├── ContractController.class
│ │ │ │ │ └── CustContract.class
│ │ │ │ ├── formula
│ │ │ │ │ ├── dto
│ │ │ │ │ │ ├── FormulaDto.class
│ │ │ │ │ │ └── ParameterDto.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── FormulaService.class
│ │ │ │ │ │ └── impl
│ │ │ │ │ │ └── FormulaServiceImpl.class
│ │ │ │ │ └── view
│ │ │ │ │ └── FormulaController.class
│ │ │ │ ├── rfid
│ │ │ │ │ ├── dto
│ │ │ │ │ │ ├── DepartmentDto.class
│ │ │ │ │ │ ├── EmployeeinfoDto.class
│ │ │ │ │ │ └── TimesheetsDto.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── EmployeeService.class
│ │ │ │ │ │ └── impl
│ │ │ │ │ │ └── EmployeeServiceImpl.class
│ │ │ │ │ └── view
│ │ │ │ │ ├── EmployeeAjax$1.class
│ │ │ │ │ ├── EmployeeAjax$2.class
│ │ │ │ │ ├── EmployeeAjax.class
│ │ │ │ │ ├── EmployeeController.class
│ │ │ │ │ ├── EmpOndutyAjax.class
│ │ │ │ │ └── RandomController.class
│ │ │ │ └── storage
│ │ │ │ ├── dto
│ │ │ │ │ ├── AreaPropertyDto.class
│ │ │ │ │ ├── Condition.class
│ │ │ │ │ └── TableDto.class
│ │ │ │ ├── service
│ │ │ │ │ ├── impl
│ │ │ │ │ │ └── StorageServiceImpl.class
│ │ │ │ │ └── StorageService.class
│ │ │ │ └── view
│ │ │ │ ├── StorageAjax.class
│ │ │ │ └── StorageController.class
│ │ │ ├── common
│ │ │ │ ├── aop
│ │ │ │ │ ├── ControllerAop.class
│ │ │ │ │ └── LoggerAop.class
│ │ │ │ ├── interceptor
│ │ │ │ │ ├── FormTokenInterceptor.class
│ │ │ │ │ ├── MyInject.class
│ │ │ │ │ └── ParameterArgumentResolver.class
│ │ │ │ ├── listener
│ │ │ │ │ └── ContextListener.class
│ │ │ │ ├── parameter
│ │ │ │ │ └── Constants.class
│ │ │ │ ├── tag
│ │ │ │ │ └── FormTokenTag.class
│ │ │ │ └── tools
│ │ │ │ ├── FileResolver.class
│ │ │ │ ├── TfspHql.class
│ │ │ │ └── ValidatorResolver.class
│ │ │ └── db
│ │ │ ├── dao
│ │ │ │ ├── BaseDao.class
│ │ │ │ ├── ContractDao.class
│ │ │ │ ├── DepartmentDao.class
│ │ │ │ ├── EmployeeinfoDao.class
│ │ │ │ ├── FormulaDao.class
│ │ │ │ ├── impl
│ │ │ │ │ ├── BaseDaoImpl.class
│ │ │ │ │ ├── ContractDaoImpl.class
│ │ │ │ │ ├── DepartmentDaoImpl.class
│ │ │ │ │ ├── EmployeeinfoDaoImpl.class
│ │ │ │ │ ├── FormulaDaoImpl.class
│ │ │ │ │ ├── StorageareaDaoImpl.class
│ │ │ │ │ ├── StorehouseDaoImpl.class
│ │ │ │ │ └── TimesheetsDaoImpl.class
│ │ │ │ ├── StorageareaDao.class
│ │ │ │ ├── StorehouseDao.class
│ │ │ │ └── TimesheetsDao.class
│ │ │ └── entity
│ │ │ ├── Contract.class
│ │ │ ├── ContractTemplate.class
│ │ │ ├── Department.class
│ │ │ ├── Employeeinfo.class
│ │ │ ├── Formula$1.class
│ │ │ ├── Formula.class
│ │ │ ├── Parameter.class
│ │ │ ├── RfidManagement.class
│ │ │ ├── Storagearea.class
│ │ │ ├── Storehouse.class
│ │ │ ├── SysUserinfo.class
│ │ │ ├── TimeSheetCard.class
│ │ │ ├── Timesheets.class
│ │ │ └── Visitor.class
│ │ └── ValidationMessages_zh_CN.properties
│ ├── config
│ │ ├── applicationContext.xml
│ │ └── component-scan.xml
│ ├── language
│ │ ├── Chinese
│ │ │ ├── Chinese_back.properties
│ │ │ └── Chinese_index.properties
│ │ ├── English
│ │ │ ├── English_back.properties
│ │ │ └── English_index.properties
│ │ └── viewlanaguage.xml
│ ├── lib
│ │ ├── antlr-2.7.7.jar
│ │ ├── aopalliance-1.0.jar
│ │ ├── asm-3.3.1.jar
│ │ ├── aspectjweaver.jar
│ │ ├── bonecp-0.7.1.RELEASE.jar
│ │ ├── bsh-2.0b4.jar
│ │ ├── cglib-2.2.2.jar
│ │ ├── commons-beanutils-1.7.0.jar
│ │ ├── commons-collections-3.2.1.jar
│ │ ├── commons-fileupload-1.2.1.jar
│ │ ├── commons-io-1.3.2.jar
│ │ ├── commons-lang-2.6.jar
│ │ ├── commons-logging-1.1.1.jar
│ │ ├── dom4j-1.6.1.jar
│ │ ├── dwr.jar
│ │ ├── ehcache-core-2.4.3.jar
│ │ ├── ezmorph-1.0.3.jar
│ │ ├── guava-r07.jar
│ │ ├── hibernate-commons-annotations-4.0.1.Final.jar
│ │ ├── hibernate-core-4.0.1.Final.jar
│ │ ├── hibernate-ehcache-4.0.1.Final.jar
│ │ ├── hibernate-jpa-2.0-api-1.0.1.Final.jar
│ │ ├── hibernate-validator-4.2.0.Final.jar
│ │ ├── hibernate-validator-annotation-processor-4.2.0.Final.jar
│ │ ├── javassist-3.15.0-GA.jar
│ │ ├── jboss-logging-3.1.0.CR2.jar
│ │ ├── jboss-transaction-api_1.1_spec-1.0.0.Final.jar
│ │ ├── jdom-1.1.3.jar
│ │ ├── json-lib-2.2.1-jdk15.jar
│ │ ├── jsoup-1.6.1.jar
│ │ ├── jstl-1.2.jar
│ │ ├── mysql-connector-java-5.1.18-bin.jar
│ │ ├── org.springframework.aop-3.1.0.RELEASE.jar
│ │ ├── org.springframework.asm-3.1.0.RELEASE.jar
│ │ ├── org.springframework.beans-3.1.0.RELEASE.jar
│ │ ├── org.springframework.context-3.1.0.RELEASE.jar
│ │ ├── org.springframework.context.support-3.1.0.RELEASE.jar
│ │ ├── org.springframework.core-3.1.0.RELEASE.jar
│ │ ├── org.springframework.expression-3.1.0.RELEASE.jar
│ │ ├── org.springframework.instrument.tomcat-3.1.0.RELEASE.jar
│ │ ├── org.springframework.jdbc-3.1.0.RELEASE.jar
│ │ ├── org.springframework.orm-3.1.0.RELEASE.jar
│ │ ├── org.springframework.transaction-3.1.0.RELEASE.jar
│ │ ├── org.springframework.web-3.1.0.RELEASE.jar
│ │ ├── org.springframework.web.portlet-3.1.0.RELEASE.jar
│ │ ├── org.springframework.web.servlet-3.1.0.RELEASE.jar
│ │ ├── slf4j-api-1.6.4.jar
│ │ └── validation-api-1.0.0.GA.jar
│ ├── properties
│ │ └── database.properties
│ ├── view
│ │ ├── common
│ │ │ └── token.tld
│ │ ├── contract
│ │ │ ├── index.jsp
│ │ │ ├── left.jsp
│ │ │ ├── _new.jsp
│ │ │ ├── show.jsp
│ │ │ └── template
│ │ │ ├── index.jsp
│ │ │ ├── _new.jsp
│ │ │ └── show.jsp
│ │ ├── formula
│ │ │ ├── edit.jsp
│ │ │ ├── error.jsp
│ │ │ ├── index.jsp
│ │ │ ├── left.jsp
│ │ │ ├── new.jsp
│ │ │ ├── result.jsp
│ │ │ └── test.jsp
│ │ ├── rfid
│ │ │ ├── addemp.jsp
│ │ │ ├── addfangke.jsp
│ │ │ ├── addtag.jsp
│ │ │ ├── dept.jsp
│ │ │ ├── employindex.jsp
│ │ │ ├── emptongji.jsp
│ │ │ ├── faka.jsp
│ │ │ ├── fangke.jsp
│ │ │ ├── fangkeRegistration.jsp
│ │ │ ├── findfangke.jsp
│ │ │ ├── frame.jsp
│ │ │ ├── index.jsp
│ │ │ ├── left.jsp
│ │ │ ├── loginIndex.jsp
│ │ │ ├── login.jsp
│ │ │ ├── qiandaoDemo.jsp
│ │ │ ├── rfid.jsp
│ │ │ ├── tag.jsp
│ │ │ ├── top.jsp
│ │ │ ├── updatePwd.jsp
│ │ │ ├── updemp.jsp
│ │ │ └── visitortongji.jsp
│ │ └── storage
│ │ ├── StorageConfirm.jsp
│ │ ├── StorageDraw.jsp
│ │ ├── StorageManage.jsp
│ │ └── StorageView.jsp
│ └── web.xml
├── wlms.sql
└── 仓储产品框架使用规范 .docx
163 directories, 1199 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论