实例介绍
本系统为考勤管理系统,涵盖八个模块,八张表的增删改查(Oracle范例,建库语句在webconten/db文件夹下)。
【实例截图】
【核心代码】
checkWork
└── checkWork
├── WebContent
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── WEB-INF
│ │ ├── lib
│ │ │ ├── fastjson-1.2.38.jar
│ │ │ ├── itcast-tools-1.4.jar
│ │ │ ├── jstl.jar
│ │ │ ├── ojdbc14.jar
│ │ │ └── standard.jar
│ │ └── web.xml
│ ├── attence.html
│ ├── checkWorkEmpower.html
│ ├── css
│ │ ├── 1.jpg
│ │ └── main.css
│ ├── db
│ │ └── 考勤系统.sql
│ ├── departmentAdd.html
│ ├── departmentManage.html
│ ├── departmentQuery.html
│ ├── empAdd.html
│ ├── empManage.html
│ ├── empQuery.html
│ ├── js
│ │ └── ligerUI
│ │ ├── grid
│ │ │ ├── AllOrdersData.js
│ │ │ ├── AllProductData.js
│ │ │ ├── CustomersData.js
│ │ │ ├── CustomersData2.js
│ │ │ ├── DepartmentData.js
│ │ │ ├── EmployeeData.js
│ │ │ ├── EmployeeData2.js
│ │ │ ├── ProductData.js
│ │ │ ├── TreeData.js
│ │ │ ├── TreeDeptData.js
│ │ │ └── example.css
│ │ ├── images
│ │ │ ├── loading.gif
│ │ │ ├── top.jpg
│ │ │ └── topicon.gif
│ │ ├── indexdata.js
│ │ ├── jquery
│ │ │ ├── jquery-1.3.2.min.js
│ │ │ ├── jquery-1.4.4.min.js
│ │ │ ├── jquery-1.5.2.min.js
│ │ │ └── jquery-1.9.0.min.js
│ │ ├── jquery-ui.css
│ │ ├── jquery-validation
│ │ │ ├── jquery.metadata.js
│ │ │ ├── jquery.validate.min.js
│ │ │ ├── messages_cn.js
│ │ │ └── version.txt
│ │ ├── jquery.cookie.js
│ │ ├── json2.js
│ │ ├── ligerUI
│ │ │ ├── js
│ │ │ │ ├── core
│ │ │ │ │ ├── base.js
│ │ │ │ │ └── inject.js
│ │ │ │ ├── ligerui.all.js
│ │ │ │ ├── ligerui.min.js
│ │ │ │ └── plugins
│ │ │ │ ├── ligerAccordion.js
│ │ │ │ ├── ligerButton.js
│ │ │ │ ├── ligerCheckBox.js
│ │ │ │ ├── ligerCheckBoxList.js
│ │ │ │ ├── ligerComboBox.js
│ │ │ │ ├── ligerDateEditor.js
│ │ │ │ ├── ligerDialog.js
│ │ │ │ ├── ligerDrag.js
│ │ │ │ ├── ligerEasyTab.js
│ │ │ │ ├── ligerFilter.js
│ │ │ │ ├── ligerForm.js
│ │ │ │ ├── ligerGrid.js
│ │ │ │ ├── ligerLayout.js
│ │ │ │ ├── ligerListBox.js
│ │ │ │ ├── ligerMenu.js
│ │ │ │ ├── ligerMenuBar.js
│ │ │ │ ├── ligerMessageBox.js
│ │ │ │ ├── ligerPanel.js
│ │ │ │ ├── ligerPopupEdit.js
│ │ │ │ ├── ligerPortal.js
│ │ │ │ ├── ligerRadio.js
│ │ │ │ ├── ligerRadioList.js
│ │ │ │ ├── ligerResizable.js
│ │ │ │ ├── ligerSpinner.js
│ │ │ │ ├── ligerTab.js
│ │ │ │ ├── ligerTextBox.js
│ │ │ │ ├── ligerTip.js
│ │ │ │ ├── ligerToolBar.js
│ │ │ │ ├── ligerTree.js
│ │ │ │ └── ligerWindow.js
│ │ │ └── skins
│ │ │ ├── Aqua
│ │ │ │ ├── css
│ │ │ │ │ ├── ligerui-all.css
│ │ │ │ │ ├── ligerui-common.css
│ │ │ │ │ ├── ligerui-dialog.css
│ │ │ │ │ ├── ligerui-form.css
│ │ │ │ │ ├── ligerui-grid.css
│ │ │ │ │ ├── ligerui-layout.css
│ │ │ │ │ ├── ligerui-menu.css
│ │ │ │ │ ├── ligerui-tab.css
│ │ │ │ │ └── ligerui-tree.css
│ │ │ │ └── images
│ │ │ │ ├── common
│ │ │ │ │ ├── bigloading.gif
│ │ │ │ │ ├── button-disabled.gif
│ │ │ │ │ ├── button-over.gif
│ │ │ │ │ ├── button.gif
│ │ │ │ │ ├── drop-icons.gif
│ │ │ │ │ ├── exclamation.gif
│ │ │ │ │ ├── invalid-line.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── table.png
│ │ │ │ │ └── toggle.gif
│ │ │ │ ├── controls
│ │ │ │ │ ├── bg-panel-title-over.gif
│ │ │ │ │ ├── bg-panel-title-pressed.gif
│ │ │ │ │ ├── bg-panel-title.gif
│ │ │ │ │ ├── bg-tab-title-over.gif
│ │ │ │ │ ├── bg-tab-title-pressed.gif
│ │ │ │ │ ├── bg-tab-title.gif
│ │ │ │ │ ├── bg-text.gif
│ │ │ │ │ ├── bg-trigger-over.gif
│ │ │ │ │ ├── bg-trigger-pressed.gif
│ │ │ │ │ ├── bg-trigger.gif
│ │ │ │ │ ├── btn-l.gif
│ │ │ │ │ ├── btn-r.gif
│ │ │ │ │ ├── btn.gif
│ │ │ │ │ ├── button-bg-over.gif
│ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ ├── checkbox.gif
│ │ │ │ │ ├── dateeditor-bar-bg.gif
│ │ │ │ │ ├── dateeditor-header-bg.gif
│ │ │ │ │ └── radio.gif
│ │ │ │ ├── dateeditor
│ │ │ │ │ ├── date.gif
│ │ │ │ │ ├── icon-first.gif
│ │ │ │ │ ├── icon-last.gif
│ │ │ │ │ ├── icon-next.gif
│ │ │ │ │ └── icon-prev.gif
│ │ │ │ ├── form
│ │ │ │ │ └── verify-corner.gif
│ │ │ │ ├── grid
│ │ │ │ │ ├── grid-checkbox-checked.gif
│ │ │ │ │ ├── grid-checkbox.gif
│ │ │ │ │ ├── grid-detail-close.gif
│ │ │ │ │ ├── grid-detail-open.gif
│ │ │ │ │ ├── grid-tree-close.gif
│ │ │ │ │ ├── grid-tree-open.gif
│ │ │ │ │ ├── header-bg-over.gif
│ │ │ │ │ ├── header-bg.gif
│ │ │ │ │ ├── header2-bg.jpg
│ │ │ │ │ ├── popup-line.gif
│ │ │ │ │ └── popup-row-over.gif
│ │ │ │ ├── icon
│ │ │ │ │ ├── bar-button-over.gif
│ │ │ │ │ ├── checkbox-checked.gif
│ │ │ │ │ ├── checkbox.gif
│ │ │ │ │ ├── cross.gif
│ │ │ │ │ ├── icon-close-over.gif
│ │ │ │ │ ├── icon-close.gif
│ │ │ │ │ ├── icon-down.gif
│ │ │ │ │ ├── icon-drop.gif
│ │ │ │ │ ├── icon-edited.gif
│ │ │ │ │ ├── icon-first.gif
│ │ │ │ │ ├── icon-last.gif
│ │ │ │ │ ├── icon-line.gif
│ │ │ │ │ ├── icon-load.gif
│ │ │ │ │ ├── icon-next.gif
│ │ │ │ │ ├── icon-prev.gif
│ │ │ │ │ ├── icon-select.gif
│ │ │ │ │ ├── icon-sort-asc.gif
│ │ │ │ │ ├── icon-sort-desc.gif
│ │ │ │ │ ├── icon-unselect.gif
│ │ │ │ │ ├── icon-up.gif
│ │ │ │ │ └── spr_icons.gif
│ │ │ │ ├── layout
│ │ │ │ │ ├── accordion-content.gif
│ │ │ │ │ ├── accordion-header-over.gif
│ │ │ │ │ ├── accordion-header.gif
│ │ │ │ │ ├── closeAll.gif
│ │ │ │ │ ├── layout-header-over.gif
│ │ │ │ │ ├── layout-header.gif
│ │ │ │ │ ├── layout-sidebar-header.gif
│ │ │ │ │ ├── mini-bottom.gif
│ │ │ │ │ ├── mini-left.gif
│ │ │ │ │ ├── mini-right.gif
│ │ │ │ │ ├── mini-top.gif
│ │ │ │ │ ├── panel-content.gif
│ │ │ │ │ ├── panel-header-over.gif
│ │ │ │ │ ├── panel-header.gif
│ │ │ │ │ ├── panel-header2.gif
│ │ │ │ │ ├── tabs-bg.gif
│ │ │ │ │ ├── tabs-item-bg.gif
│ │ │ │ │ ├── tabs-item-left-bg.gif
│ │ │ │ │ ├── tabs-item-over-bg.gif
│ │ │ │ │ ├── tabs-item-right-bg.gif
│ │ │ │ │ ├── tabs-tools.gif
│ │ │ │ │ └── togglebar.gif
│ │ │ │ ├── menu
│ │ │ │ │ ├── menu-item-arrow.gif
│ │ │ │ │ ├── menu-item-down.gif
│ │ │ │ │ ├── menu-item-over-l.gif
│ │ │ │ │ ├── menu-item-over-m.gif
│ │ │ │ │ ├── menu-item-over-r.gif
│ │ │ │ │ ├── menu-line-x.gif
│ │ │ │ │ └── menu-line-y.gif
│ │ │ │ ├── panel
│ │ │ │ │ ├── bar-bg.gif
│ │ │ │ │ ├── header-bg.gif
│ │ │ │ │ ├── header-bg.jpg
│ │ │ │ │ ├── header2-bg.jpg
│ │ │ │ │ ├── panel-btn-l.gif
│ │ │ │ │ ├── panel-btn-r.gif
│ │ │ │ │ ├── panel-btn.gif
│ │ │ │ │ ├── panel-header.gif
│ │ │ │ │ ├── panel-menu-item-down.gif
│ │ │ │ │ ├── panel-menu.gif
│ │ │ │ │ ├── panel-toolbar.gif
│ │ │ │ │ └── panel-tools.gif
│ │ │ │ ├── tree
│ │ │ │ │ ├── folder-open.gif
│ │ │ │ │ ├── folder.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── nodeloading.gif
│ │ │ │ │ ├── nodeloading2.gif
│ │ │ │ │ ├── nodeloading3.gif
│ │ │ │ │ ├── nodeloading4.gif
│ │ │ │ │ ├── tree-leaf.gif
│ │ │ │ │ ├── tree-level.gif
│ │ │ │ │ ├── tree-noline.gif
│ │ │ │ │ ├── tree-status-close.gif
│ │ │ │ │ ├── tree-status-open.gif
│ │ │ │ │ ├── tree-status.gif
│ │ │ │ │ └── tree.gif
│ │ │ │ ├── ui
│ │ │ │ │ ├── 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_highlight-soft_75_cccccc_1x100.png
│ │ │ │ └── win
│ │ │ │ ├── box-icons.gif
│ │ │ │ ├── box.gif
│ │ │ │ ├── dialog-bc.gif
│ │ │ │ ├── dialog-icons.gif
│ │ │ │ ├── dialog-tc.gif
│ │ │ │ ├── dialog-winbtns.gif
│ │ │ │ ├── dialog.gif
│ │ │ │ ├── dialogbtn.gif
│ │ │ │ ├── taskbar-task.gif
│ │ │ │ ├── taskbar.gif
│ │ │ │ ├── taskbar.png
│ │ │ │ └── taskicon.gif
│ │ │ ├── Gray
│ │ │ │ ├── css
│ │ │ │ │ ├── all.css
│ │ │ │ │ ├── common.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── form.css
│ │ │ │ │ ├── grid.css
│ │ │ │ │ ├── layout.css
│ │ │ │ │ └── tab.css
│ │ │ │ └── images
│ │ │ │ ├── layout
│ │ │ │ │ ├── accordion-header.gif
│ │ │ │ │ ├── icon-close-over.gif
│ │ │ │ │ ├── icon-close.gif
│ │ │ │ │ ├── layout-header.gif
│ │ │ │ │ ├── tabs-bg.gif
│ │ │ │ │ ├── tabs-item-bg.gif
│ │ │ │ │ ├── tabs-item-left-bg.gif
│ │ │ │ │ ├── tabs-item-left-selected.gif
│ │ │ │ │ ├── tabs-item-right-bg.gif
│ │ │ │ │ ├── tabs-item-right-selected.gif
│ │ │ │ │ ├── tabs-item-selected.gif
│ │ │ │ │ └── togglebar.gif
│ │ │ │ ├── ui
│ │ │ │ │ ├── btn.gif
│ │ │ │ │ ├── button-disabled.gif
│ │ │ │ │ ├── button-over.gif
│ │ │ │ │ ├── button.gif
│ │ │ │ │ ├── button1.gif
│ │ │ │ │ ├── button2.gif
│ │ │ │ │ ├── dateeditor-bar.gif
│ │ │ │ │ ├── dateeditor-btn-over.gif
│ │ │ │ │ ├── dateeditor-btn.gif
│ │ │ │ │ ├── dateeditor-thead.gif
│ │ │ │ │ ├── grid-detail-close.gif
│ │ │ │ │ ├── grid-detail-open.gif
│ │ │ │ │ ├── gridalt.gif
│ │ │ │ │ ├── gridbar.jpg
│ │ │ │ │ ├── grideditor.gif
│ │ │ │ │ ├── icon-down.gif
│ │ │ │ │ ├── icon-select.gif
│ │ │ │ │ ├── icon-unselect.gif
│ │ │ │ │ ├── icon-up.gif
│ │ │ │ │ ├── input.gif
│ │ │ │ │ ├── inputdisabled.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── loading2.gif
│ │ │ │ │ ├── loading3.gif
│ │ │ │ │ ├── loading4.gif
│ │ │ │ │ └── trigger.gif
│ │ │ │ └── win
│ │ │ │ ├── dialog-winbtns.gif
│ │ │ │ ├── dialogbtn.gif
│ │ │ │ └── dialogicon.gif
│ │ │ ├── Gray2014
│ │ │ │ ├── css
│ │ │ │ │ ├── all.css
│ │ │ │ │ ├── common.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── form.css
│ │ │ │ │ ├── grid.css
│ │ │ │ │ ├── layout.css
│ │ │ │ │ └── tab.css
│ │ │ │ └── images
│ │ │ │ ├── bigloading.gif
│ │ │ │ ├── gridheader.png
│ │ │ │ ├── layout
│ │ │ │ │ ├── accordion-header.gif
│ │ │ │ │ ├── icon-close-over.gif
│ │ │ │ │ ├── icon-close.gif
│ │ │ │ │ ├── layout-header.gif
│ │ │ │ │ ├── tabs-bg.gif
│ │ │ │ │ ├── tabs-item-bg.gif
│ │ │ │ │ ├── tabs-item-left-bg.gif
│ │ │ │ │ ├── tabs-item-left-selected.gif
│ │ │ │ │ ├── tabs-item-right-bg.gif
│ │ │ │ │ ├── tabs-item-right-selected.gif
│ │ │ │ │ ├── tabs-item-selected.gif
│ │ │ │ │ ├── tabswitch.gif
│ │ │ │ │ └── togglebar.gif
│ │ │ │ ├── tab_arrow_spr.png
│ │ │ │ ├── tab_close.png
│ │ │ │ ├── ui
│ │ │ │ │ ├── btn.gif
│ │ │ │ │ ├── button-disabled.gif
│ │ │ │ │ ├── button-over.gif
│ │ │ │ │ ├── button.gif
│ │ │ │ │ ├── button1.gif
│ │ │ │ │ ├── button2.gif
│ │ │ │ │ ├── date.gif
│ │ │ │ │ ├── dateeditor-bar.gif
│ │ │ │ │ ├── dateeditor-btn-over.gif
│ │ │ │ │ ├── dateeditor-btn.gif
│ │ │ │ │ ├── dateeditor-thead.gif
│ │ │ │ │ ├── grid-detail-close.gif
│ │ │ │ │ ├── grid-detail-open.gif
│ │ │ │ │ ├── gridalt.gif
│ │ │ │ │ ├── gridbar.jpg
│ │ │ │ │ ├── grideditor.gif
│ │ │ │ │ ├── icon-down.gif
│ │ │ │ │ ├── icon-select.gif
│ │ │ │ │ ├── icon-select2.gif
│ │ │ │ │ ├── icon-unselect.gif
│ │ │ │ │ ├── icon-up.gif
│ │ │ │ │ ├── input.gif
│ │ │ │ │ ├── inputdisabled.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── loading2.gif
│ │ │ │ │ ├── loading3.gif
│ │ │ │ │ ├── loading4.gif
│ │ │ │ │ ├── loadingl.gif
│ │ │ │ │ ├── panel-btn.gif
│ │ │ │ │ ├── spr_icons.gif
│ │ │ │ │ └── trigger.gif
│ │ │ │ └── win
│ │ │ │ ├── dialog-winbtns.gif
│ │ │ │ ├── dialogbtn.gif
│ │ │ │ └── dialogicon.gif
│ │ │ ├── Silvery
│ │ │ │ ├── css
│ │ │ │ │ ├── form.css
│ │ │ │ │ ├── grid.css
│ │ │ │ │ ├── layout.css
│ │ │ │ │ └── style.css
│ │ │ │ └── images
│ │ │ │ ├── form
│ │ │ │ │ ├── checkboxradio.gif
│ │ │ │ │ ├── icon-down-over.gif
│ │ │ │ │ ├── icon-down.gif
│ │ │ │ │ ├── icon-up-over.gif
│ │ │ │ │ ├── icon-up.gif
│ │ │ │ │ ├── invalid_line.gif
│ │ │ │ │ ├── text-date-icon.gif
│ │ │ │ │ ├── text-down-icon.gif
│ │ │ │ │ ├── text-focus.gif
│ │ │ │ │ ├── text-l-focus.gif
│ │ │ │ │ ├── text-l-over.gif
│ │ │ │ │ ├── text-l.gif
│ │ │ │ │ ├── text-over.gif
│ │ │ │ │ ├── text-r-focus.gif
│ │ │ │ │ ├── text-r-over.gif
│ │ │ │ │ ├── text-r.gif
│ │ │ │ │ └── text.gif
│ │ │ │ ├── grid
│ │ │ │ │ └── gridheaderbg.jpg
│ │ │ │ └── layout
│ │ │ │ ├── accordion-header-over.jpg
│ │ │ │ ├── accordion-header.jpg
│ │ │ │ ├── layout-header-over.jpg
│ │ │ │ ├── layout-header.jpg
│ │ │ │ ├── tabs-bg.jpg
│ │ │ │ ├── tabs-item-bg.jpg
│ │ │ │ ├── tabs-item-left-bg.gif
│ │ │ │ ├── tabs-item-over-bg.gif
│ │ │ │ ├── tabs-item-right-bg.gif
│ │ │ │ └── tabs-tools.gif
│ │ │ ├── Tab
│ │ │ │ ├── css
│ │ │ │ │ ├── all.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── form.css
│ │ │ │ │ ├── grid.css
│ │ │ │ │ └── tab.css
│ │ │ │ └── images
│ │ │ │ ├── gridheader.png
│ │ │ │ ├── layout
│ │ │ │ │ ├── accordion-header.gif
│ │ │ │ │ ├── icon-close-over.gif
│ │ │ │ │ ├── icon-close.gif
│ │ │ │ │ ├── layout-header.gif
│ │ │ │ │ ├── tabs-bg.gif
│ │ │ │ │ ├── tabs-item-bg.gif
│ │ │ │ │ ├── tabs-item-left-bg.gif
│ │ │ │ │ ├── tabs-item-left-selected.gif
│ │ │ │ │ ├── tabs-item-right-bg.gif
│ │ │ │ │ ├── tabs-item-right-selected.gif
│ │ │ │ │ ├── tabs-item-selected.gif
│ │ │ │ │ └── togglebar.gif
│ │ │ │ ├── tab_arrow_spr.png
│ │ │ │ ├── tab_close.png
│ │ │ │ ├── ui
│ │ │ │ │ ├── btn.gif
│ │ │ │ │ ├── button-disabled.gif
│ │ │ │ │ ├── button-over.gif
│ │ │ │ │ ├── button.gif
│ │ │ │ │ ├── button1.gif
│ │ │ │ │ ├── button2.gif
│ │ │ │ │ ├── date.gif
│ │ │ │ │ ├── dateeditor-bar.gif
│ │ │ │ │ ├── dateeditor-btn-over.gif
│ │ │ │ │ ├── dateeditor-btn.gif
│ │ │ │ │ ├── dateeditor-thead.gif
│ │ │ │ │ ├── grid-detail-close.gif
│ │ │ │ │ ├── grid-detail-open.gif
│ │ │ │ │ ├── gridalt.gif
│ │ │ │ │ ├── gridbar.jpg
│ │ │ │ │ ├── grideditor.gif
│ │ │ │ │ ├── icon-down.gif
│ │ │ │ │ ├── icon-select.gif
│ │ │ │ │ ├── icon-select2.gif
│ │ │ │ │ ├── icon-unselect.gif
│ │ │ │ │ ├── icon-up.gif
│ │ │ │ │ ├── input.gif
│ │ │ │ │ ├── inputdisabled.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── loading2.gif
│ │ │ │ │ ├── loading3.gif
│ │ │ │ │ ├── loading4.gif
│ │ │ │ │ ├── loadingl.gif
│ │ │ │ │ ├── spr_icons.gif
│ │ │ │ │ └── trigger.gif
│ │ │ │ └── win
│ │ │ │ ├── dialog-winbtns.gif
│ │ │ │ ├── dialogbtn.gif
│ │ │ │ └── dialogicon.gif
│ │ │ ├── icons
│ │ │ │ ├── add.gif
│ │ │ │ ├── archives.gif
│ │ │ │ ├── attibutes.gif
│ │ │ │ ├── back.gif
│ │ │ │ ├── bluebook.gif
│ │ │ │ ├── bookpen.gif
│ │ │ │ ├── busy.gif
│ │ │ │ ├── calendar.gif
│ │ │ │ ├── candle.gif
│ │ │ │ ├── coffee.gif
│ │ │ │ ├── comment.gif
│ │ │ │ ├── communication.gif
│ │ │ │ ├── config.gif
│ │ │ │ ├── customers.gif
│ │ │ │ ├── cut.gif
│ │ │ │ ├── database.gif
│ │ │ │ ├── delete.gif
│ │ │ │ ├── discuss.gif
│ │ │ │ ├── down.gif
│ │ │ │ ├── edit.gif
│ │ │ │ ├── graywarn.gif
│ │ │ │ ├── greenwarn.gif
│ │ │ │ ├── help.gif
│ │ │ │ ├── home.gif
│ │ │ │ ├── lock.gif
│ │ │ │ ├── logout.gif
│ │ │ │ ├── mailbox.gif
│ │ │ │ ├── memeber.gif
│ │ │ │ ├── modify.gif
│ │ │ │ ├── msn.gif
│ │ │ │ ├── myaccount.gif
│ │ │ │ ├── ok.gif
│ │ │ │ ├── outbox.gif
│ │ │ │ ├── pager.gif
│ │ │ │ ├── photograph.gif
│ │ │ │ ├── plus.gif
│ │ │ │ ├── prev.gif
│ │ │ │ ├── print.gif
│ │ │ │ ├── process.gif
│ │ │ │ ├── qq.gif
│ │ │ │ ├── refresh.gif
│ │ │ │ ├── right.gif
│ │ │ │ ├── role.gif
│ │ │ │ ├── save-disabled.gif
│ │ │ │ ├── save.gif
│ │ │ │ ├── search.gif
│ │ │ │ ├── search2.gif
│ │ │ │ ├── settings.gif
│ │ │ │ ├── true.gif
│ │ │ │ ├── up.gif
│ │ │ │ └── view.gif
│ │ │ └── ligerui-icons.css
│ │ └── showFilter.js
│ ├── login.html
│ ├── main.html
│ ├── manegeSonDept.html
│ ├── noteAdd.html
│ ├── noteManage.html
│ ├── noteUpdate.html
│ ├── positionAdd.html
│ ├── positionManage.html
│ ├── positionQuery.html
│ ├── recAdd.html
│ ├── static
│ │ ├── js
│ │ │ ├── jQuery.md5.js
│ │ │ ├── jquery-1.7.2.js
│ │ │ ├── jquery.cookie.js
│ │ │ └── jquery.tips.js
│ │ └── login
│ │ ├── bootstrap-responsive.min.css
│ │ ├── bootstrap.min.css
│ │ ├── css
│ │ │ └── camera.css
│ │ ├── font-awesome.css
│ │ ├── images
│ │ │ ├── banner_slide_01.jpg
│ │ │ ├── banner_slide_02.jpg
│ │ │ ├── banner_slide_03.jpg
│ │ │ ├── banner_slide_04.jpg
│ │ │ ├── banner_slide_05.jpg
│ │ │ ├── camera-loader.gif
│ │ │ └── camera_skins.png
│ │ ├── js
│ │ │ ├── ban.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── camera.min.js
│ │ │ ├── jQuery.md5.js
│ │ │ ├── jquery.easing.1.3.js
│ │ │ ├── jquery.mobile.customized.min.js
│ │ │ └── templatemo_script.js
│ │ ├── keypad
│ │ │ ├── css
│ │ │ │ └── framework
│ │ │ │ └── form.css
│ │ │ ├── images
│ │ │ │ └── formEle
│ │ │ │ ├── keyBg.jpg
│ │ │ │ ├── keyBg2.jpg
│ │ │ │ ├── keyBg3.jpg
│ │ │ │ └── keypad.gif
│ │ │ └── js
│ │ │ ├── form
│ │ │ │ └── keypad.js
│ │ │ ├── framework.js
│ │ │ └── jquery.js
│ │ ├── logo.png
│ │ ├── matrix-login.css
│ │ ├── suo.png
│ │ ├── user.png
│ │ └── yan.png
│ ├── sumary.html
│ ├── updatePwd.html
│ ├── userAdd.html
│ ├── userManage.html
│ ├── userQuery.html
│ └── welcomPage.html
├── build
│ └── classes
│ ├── com
│ │ └── ambow
│ │ ├── DAO
│ │ │ ├── deptDao.class
│ │ │ ├── empDao.class
│ │ │ ├── noteDao.class
│ │ │ ├── popDao.class
│ │ │ ├── positionDao.class
│ │ │ ├── recordDao.class
│ │ │ ├── typeDao.class
│ │ │ └── userDao.class
│ │ ├── DAOImp
│ │ │ ├── deptDAOImp.class
│ │ │ ├── empDAOImp.class
│ │ │ ├── noteDAOImp.class
│ │ │ ├── popDAOImp.class
│ │ │ ├── positionDAOImp.class
│ │ │ ├── recordDAOImp.class
│ │ │ ├── typeDAOImp.class
│ │ │ └── userDAOImp.class
│ │ ├── DB
│ │ │ └── DBConnection.class
│ │ ├── controller
│ │ │ ├── AttendancetypeController.class
│ │ │ ├── DepartmentController.class
│ │ │ ├── EmployeesController.class
│ │ │ ├── LoginController.class
│ │ │ ├── NoteController.class
│ │ │ ├── PopedomController.class
│ │ │ ├── PositionController.class
│ │ │ ├── RecordController.class
│ │ │ └── UserController.class
│ │ ├── entity
│ │ │ ├── Admin.class
│ │ │ ├── AdminPopedom.class
│ │ │ ├── AllTable.class
│ │ │ ├── AttendanceRecord.class
│ │ │ ├── AttendanceType.class
│ │ │ ├── Department.class
│ │ │ ├── Employees.class
│ │ │ ├── Notes.class
│ │ │ └── Position.class
│ │ ├── factory
│ │ │ ├── deptFactory.class
│ │ │ ├── empFactory.class
│ │ │ ├── noteFactory.class
│ │ │ ├── popFactory.class
│ │ │ ├── positionFactory.class
│ │ │ ├── recordFactory.class
│ │ │ ├── typeFactory.class
│ │ │ └── userFactory.class
│ │ ├── filter
│ │ │ ├── Encoding.class
│ │ │ └── LoginFilter.class
│ │ └── util
│ │ └── JSONUtil.class
│ └── db.properties
└── src
├── com
│ └── ambow
│ ├── DAO
│ │ ├── deptDao.java
│ │ ├── empDao.java
│ │ ├── noteDao.java
│ │ ├── popDao.java
│ │ ├── positionDao.java
│ │ ├── recordDao.java
│ │ ├── typeDao.java
│ │ └── userDao.java
│ ├── DAOImp
│ │ ├── deptDAOImp.java
│ │ ├── empDAOImp.java
│ │ ├── noteDAOImp.java
│ │ ├── popDAOImp.java
│ │ ├── positionDAOImp.java
│ │ ├── recordDAOImp.java
│ │ ├── typeDAOImp.java
│ │ └── userDAOImp.java
│ ├── DB
│ │ └── DBConnection.java
│ ├── controller
│ │ ├── AttendancetypeController.java
│ │ ├── DepartmentController.java
│ │ ├── EmployeesController.java
│ │ ├── LoginController.java
│ │ ├── NoteController.java
│ │ ├── PopedomController.java
│ │ ├── PositionController.java
│ │ ├── RecordController.java
│ │ └── UserController.java
│ ├── entity
│ │ ├── Admin.java
│ │ ├── AdminPopedom.java
│ │ ├── AllTable.java
│ │ ├── AttendanceRecord.java
│ │ ├── AttendanceType.java
│ │ ├── Department.java
│ │ ├── Employees.java
│ │ ├── Notes.java
│ │ └── Position.java
│ ├── factory
│ │ ├── deptFactory.java
│ │ ├── empFactory.java
│ │ ├── noteFactory.java
│ │ ├── popFactory.java
│ │ ├── positionFactory.java
│ │ ├── recordFactory.java
│ │ ├── typeFactory.java
│ │ └── userFactory.java
│ ├── filter
│ │ ├── Encoding.java
│ │ └── LoginFilter.java
│ └── util
│ └── JSONUtil.java
└── db.properties
94 directories, 616 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论