实例介绍
本资源是基于SSH的客户关系管理系统,是本人学习完SSH后做的一个案例,项目的特色是引入了权限管理。
【实例截图】
【核心代码】
khgxglxt-ssh
└── khgxglxt-ssh
└── gdpa-crm
├── build
│ └── classes
│ ├── bean1.xml
│ ├── cn
│ │ └── lyl
│ │ ├── action
│ │ │ ├── BasicAction.class
│ │ │ ├── CustomerAction.class
│ │ │ ├── DataInfoAction.class
│ │ │ ├── DepartmentAction.class
│ │ │ ├── EmployeeAction.class
│ │ │ ├── InfoItemAction.class
│ │ │ ├── LinkManAction.class
│ │ │ ├── LoginAction.class
│ │ │ ├── SystemLogAction.class
│ │ │ ├── UserRoleAction.class
│ │ │ └── WorkLogAction.class
│ │ ├── dao
│ │ │ ├── ICommonDao.class
│ │ │ ├── ICustomerDao.class
│ │ │ ├── IDataInfoDao.class
│ │ │ ├── IDepartmentDao.class
│ │ │ ├── IEmbasicinfoDao.class
│ │ │ ├── IEmployeeDao.class
│ │ │ ├── IEmworkeprDao.class
│ │ │ ├── IInfoItemDao.class
│ │ │ ├── ILinkManDao.class
│ │ │ ├── ISystemLogDao.class
│ │ │ ├── IUnusualDao.class
│ │ │ ├── IUserRoleDao.class
│ │ │ ├── IWorklogDao.class
│ │ │ ├── IWorkPlaneDao.class
│ │ │ ├── IWorkSummaryDao.class
│ │ │ └── IWorkTaskDao.class
│ │ ├── daoImpl
│ │ │ ├── CommonDaoImpl.class
│ │ │ ├── CustomerDaoImpl.class
│ │ │ ├── DataInfoDaoImpl.class
│ │ │ ├── DepartmentDaoImpl.class
│ │ │ ├── EmbasicinfoDaoImpl.class
│ │ │ ├── EmployeeDaoImpl.class
│ │ │ ├── EmworkeprDaoImpl.class
│ │ │ ├── InfoItemDaoImpl.class
│ │ │ ├── LinkManDaoImpl.class
│ │ │ ├── SystemLogDaoImpl.class
│ │ │ ├── UnusualDaoImpl.class
│ │ │ ├── UserRoleDaoImpl.class
│ │ │ ├── WorklogDaoImpl.class
│ │ │ ├── WorkPlaneDaoImpl.class
│ │ │ ├── WorkSummaryDaoImpl.class
│ │ │ └── WorkTaskDapImpl.class
│ │ ├── entity
│ │ │ ├── blank.hbm.xml
│ │ │ ├── Customer.class
│ │ │ ├── Customer.hbm.xml
│ │ │ ├── DataInfo.class
│ │ │ ├── DataInfo.hbm.xml
│ │ │ ├── Department.class
│ │ │ ├── Department.hbm.xml
│ │ │ ├── Embasicinfo.class
│ │ │ ├── Embasicinfo.hbm.xml
│ │ │ ├── Employee.class
│ │ │ ├── Employee.hbm.xml
│ │ │ ├── Emworkepr.class
│ │ │ ├── Emworkepr.hbm.xml
│ │ │ ├── InfoItem.class
│ │ │ ├── InfoItem.hbm.xml
│ │ │ ├── LinkMan.class
│ │ │ ├── LinkMan.hbm.xml
│ │ │ ├── SystemLog.class
│ │ │ ├── SystemLog.hbm.xml
│ │ │ ├── UserRole.class
│ │ │ ├── UserRole.hbm.xml
│ │ │ ├── Worklog.class
│ │ │ ├── Worklog.hbm.xml
│ │ │ ├── WorkPlane.class
│ │ │ ├── WorkPlane.hbm.xml
│ │ │ ├── WorkSummary.class
│ │ │ ├── WorkSummary.hbm.xml
│ │ │ ├── WorkTask.class
│ │ │ └── WorkTask.hbm.xml
│ │ ├── junit
│ │ │ ├── Test3.class
│ │ │ ├── TestAct.class
│ │ │ ├── TestDao.class
│ │ │ ├── TestServ.class
│ │ │ └── TestTime.class
│ │ ├── serviceImpl
│ │ │ ├── CustomerSevc.class
│ │ │ ├── DataInfoSevc.class
│ │ │ ├── DepartmentSevc.class
│ │ │ ├── EmbasicinfoSevc.class
│ │ │ ├── EmployeeSevc.class
│ │ │ ├── EmworkeprSevc.class
│ │ │ ├── InfoItemSevc.class
│ │ │ ├── LinkManSevc.class
│ │ │ ├── SystemSevc.class
│ │ │ ├── UserRoleSevc.class
│ │ │ ├── WorklogSevc.class
│ │ │ ├── WorkPlaneSevc.class
│ │ │ ├── WorkSummarySevc.class
│ │ │ └── WorkTaskSevc.class
│ │ └── tool
│ │ ├── Md5Encrypt.class
│ │ ├── MethodInterceptor.class
│ │ └── TestMd5.class
│ ├── hibernate.cfg.xml
│ ├── log4j.properties
│ └── struts.xml
├── src
│ ├── bean1.xml
│ ├── cn
│ │ └── lyl
│ │ ├── action
│ │ │ ├── BasicAction.java
│ │ │ ├── CustomerAction.java
│ │ │ ├── DataInfoAction.java
│ │ │ ├── DepartmentAction.java
│ │ │ ├── EmployeeAction.java
│ │ │ ├── InfoItemAction.java
│ │ │ ├── LinkManAction.java
│ │ │ ├── LoginAction.java
│ │ │ ├── SystemLogAction.java
│ │ │ ├── UserRoleAction.java
│ │ │ └── WorkLogAction.java
│ │ ├── dao
│ │ │ ├── ICommonDao.java
│ │ │ ├── ICustomerDao.java
│ │ │ ├── IDataInfoDao.java
│ │ │ ├── IDepartmentDao.java
│ │ │ ├── IEmbasicinfoDao.java
│ │ │ ├── IEmployeeDao.java
│ │ │ ├── IEmworkeprDao.java
│ │ │ ├── IInfoItemDao.java
│ │ │ ├── ILinkManDao.java
│ │ │ ├── ISystemLogDao.java
│ │ │ ├── IUnusualDao.java
│ │ │ ├── IUserRoleDao.java
│ │ │ ├── IWorklogDao.java
│ │ │ ├── IWorkPlaneDao.java
│ │ │ ├── IWorkSummaryDao.java
│ │ │ └── IWorkTaskDao.java
│ │ ├── daoImpl
│ │ │ ├── CommonDaoImpl.java
│ │ │ ├── CustomerDaoImpl.java
│ │ │ ├── DataInfoDaoImpl.java
│ │ │ ├── DepartmentDaoImpl.java
│ │ │ ├── EmbasicinfoDaoImpl.java
│ │ │ ├── EmployeeDaoImpl.java
│ │ │ ├── EmworkeprDaoImpl.java
│ │ │ ├── InfoItemDaoImpl.java
│ │ │ ├── LinkManDaoImpl.java
│ │ │ ├── SystemLogDaoImpl.java
│ │ │ ├── UnusualDaoImpl.java
│ │ │ ├── UserRoleDaoImpl.java
│ │ │ ├── WorklogDaoImpl.java
│ │ │ ├── WorkPlaneDaoImpl.java
│ │ │ ├── WorkSummaryDaoImpl.java
│ │ │ └── WorkTaskDapImpl.java
│ │ ├── entity
│ │ │ ├── blank.hbm.xml
│ │ │ ├── Customer.hbm.xml
│ │ │ ├── Customer.java
│ │ │ ├── DataInfo.hbm.xml
│ │ │ ├── DataInfo.java
│ │ │ ├── Department.hbm.xml
│ │ │ ├── Department.java
│ │ │ ├── Embasicinfo.hbm.xml
│ │ │ ├── Embasicinfo.java
│ │ │ ├── Employee.hbm.xml
│ │ │ ├── Employee.java
│ │ │ ├── Emworkepr.hbm.xml
│ │ │ ├── Emworkepr.java
│ │ │ ├── InfoItem.hbm.xml
│ │ │ ├── InfoItem.java
│ │ │ ├── LinkMan.hbm.xml
│ │ │ ├── LinkMan.java
│ │ │ ├── SystemLog.hbm.xml
│ │ │ ├── SystemLog.java
│ │ │ ├── UserRole.hbm.xml
│ │ │ ├── UserRole.java
│ │ │ ├── Worklog.hbm.xml
│ │ │ ├── Worklog.java
│ │ │ ├── WorkPlane.hbm.xml
│ │ │ ├── WorkPlane.java
│ │ │ ├── WorkSummary.hbm.xml
│ │ │ ├── WorkSummary.java
│ │ │ ├── WorkTask.hbm.xml
│ │ │ └── WorkTask.java
│ │ ├── junit
│ │ │ ├── Test3.java
│ │ │ ├── TestAct.java
│ │ │ ├── TestDao.java
│ │ │ ├── TestServ.java
│ │ │ └── TestTime.java
│ │ ├── serviceImpl
│ │ │ ├── CustomerSevc.java
│ │ │ ├── DataInfoSevc.java
│ │ │ ├── DepartmentSevc.java
│ │ │ ├── EmbasicinfoSevc.java
│ │ │ ├── EmployeeSevc.java
│ │ │ ├── EmworkeprSevc.java
│ │ │ ├── InfoItemSevc.java
│ │ │ ├── LinkManSevc.java
│ │ │ ├── SystemSevc.java
│ │ │ ├── UserRoleSevc.java
│ │ │ ├── WorklogSevc.java
│ │ │ ├── WorkPlaneSevc.java
│ │ │ ├── WorkSummarySevc.java
│ │ │ └── WorkTaskSevc.java
│ │ └── tool
│ │ ├── Md5Encrypt.java
│ │ ├── MethodInterceptor.java
│ │ └── TestMd5.java
│ ├── hibernate.cfg.xml
│ ├── log4j.properties
│ └── struts.xml
└── WebContent
├── 404.html
├── 500.html
├── crm.jsp
├── css
│ ├── app.css
│ ├── css_index.css
│ ├── icons-extra.css
│ ├── index.css
│ ├── mui.min.css
│ ├── yangshi11.css
│ ├── yangshi1.css
│ ├── yangshi22.css
│ └── yangshi2.css
├── DRcustomer.jsp
├── DRdatainfo.jsp
├── DRdepartment.jsp
├── DRemployee.jsp
├── DRinfoitem.jsp
├── DR.jsp
├── DRlinkman.jsp
├── DRsystemlog.jsp
├── DRuserrole.jsp
├── DRworklog.jsp
├── fonts
│ ├── mui-icons-extra.ttf
│ └── mui.ttf
├── head.jsp
├── images
│ ├── 20127251705451556.jpg
│ ├── 20127251715020800.jpg
│ ├── 20127251731536317.jpg
│ ├── 201281616534720869.jpg
│ ├── bangzhu.png
│ ├── cloud.jpg
│ ├── daohangbeijing.png
│ ├── duobianxing1.png
│ ├── duobianxing.jpg
│ ├── erweima.png
│ ├── hope.jpg
│ ├── hudongzhongxin.jpg
│ ├── newsback.jpg
│ ├── qingxiandenglu.png
│ ├── shangcheng.png
│ ├── shop.jpg
│ ├── shuzishidai1.png
│ ├── shuzishidai.jpg
│ ├── Thumbs.db
│ ├── xiazai.png
│ ├── xingkong1.png
│ ├── xingkong.jpg
│ ├── zhucechenggong.jpg
│ └── zizhu.png
├── img
│ ├── 404.png
│ ├── 500.png
│ ├── biaodan1.png
│ ├── biaodan.png
│ ├── ceping1.png
│ ├── ceping.png
│ ├── choujiang.jpg
│ ├── cuowu.jpg
│ ├── diaochadiaoyan1.png
│ ├── diaochadiaoyan.jpg
│ ├── diaochadiaoyan.png
│ ├── duoqudao.gif
│ ├── erweima.png
│ ├── Form-password.gif
│ ├── gedagaoxiao.png
│ ├── guangshihuawenjuanxing.jpg
│ ├── kaoshi1.png
│ ├── kaoshi.png
│ ├── laoshixuesheng.png
│ ├── logo.jpg
│ ├── pleaselogin.png
│ ├── qita.png
│ ├── shenghuoxiaofei.png
│ ├── shichangdiaocha.png
│ ├── timuleixing.gif
│ ├── toupiao1.png
│ ├── toupiao.png
│ ├── wenjuanluoji.gif
│ ├── yuangongceping1.png
│ ├── yuangongceping.png
│ ├── zhengque.png
│ └── zuobiantupian1.jpg
├── index.jsp
├── js
│ ├── 95516.js
│ ├── ad.js
│ ├── arttmpl.js
│ ├── beecloud.js
│ ├── changelog.txt
│ ├── city.data-3.js
│ ├── city.data.js
│ ├── demo
│ │ ├── accordion_通知类面板
│ │ │ ├── actions.html
│ │ │ ├── ajax.html
│ │ │ ├── basic.html
│ │ │ ├── datagrid_data1.json
│ │ │ ├── expandable.html
│ │ │ ├── fluid.html
│ │ │ ├── multiple.html
│ │ │ └── tools.html
│ │ ├── combobox_下拉列表
│ │ │ ├── actions.html
│ │ │ ├── basic.html
│ │ │ ├── combobox_data1.json
│ │ │ ├── combobox_data2.json
│ │ │ ├── customformat.html
│ │ │ ├── dynamicdata.html
│ │ │ ├── fluid.html
│ │ │ ├── group.html
│ │ │ ├── icons.html
│ │ │ ├── itemicon.html
│ │ │ ├── multiline.html
│ │ │ ├── multiple.html
│ │ │ ├── navigation.html
│ │ │ ├── remotedata.html
│ │ │ └── remotejsonp.html
│ │ ├── combogrid_下拉面板
│ │ │ ├── actions.html
│ │ │ ├── basic.html
│ │ │ ├── datagrid_data1.json
│ │ │ ├── fluid.html
│ │ │ ├── initvalue.html
│ │ │ ├── multiple.html
│ │ │ ├── navigation.html
│ │ │ └── setvalue.html
│ │ ├── combotreegrid_下拉面板
│ │ │ ├── basic.html
│ │ │ ├── multiple.html
│ │ │ └── treegrid_data1.json
│ │ ├── combotree_下拉列表
│ │ │ ├── actions.html
│ │ │ ├── basic.html
│ │ │ ├── fluid.html
│ │ │ ├── initvalue.html
│ │ │ ├── multiple.html
│ │ │ └── tree_data1.json
│ │ ├── combo_下拉列表
│ │ │ ├── animation.html
│ │ │ └── basic.html
│ │ ├── datagrid_各式表格
│ │ │ ├── aligncolumns.html
│ │ │ ├── basic.html
│ │ │ ├── cacheeditor.html
│ │ │ ├── cellediting.html
│ │ │ ├── cellstyle.html
│ │ │ ├── checkbox.html
│ │ │ ├── clientpagination.html
│ │ │ ├── columngroup.html
│ │ │ ├── complextoolbar.html
│ │ │ ├── contextmenu.html
│ │ │ ├── custompager.html
│ │ │ ├── datagrid_data1.json
│ │ │ ├── datagrid_data2.json
│ │ │ ├── fluid.html
│ │ │ ├── footer.html
│ │ │ ├── footer.html.bak
│ │ │ ├── formatcolumns.html
│ │ │ ├── frozencolumns.html
│ │ │ ├── frozenrows.html
│ │ │ ├── mergecells.html
│ │ │ ├── multisorting.html
│ │ │ ├── products.json
│ │ │ ├── rowborder.html
│ │ │ ├── rowediting.html
│ │ │ ├── rowstyle.html
│ │ │ ├── selection.html
│ │ │ ├── selection.html.bak
│ │ │ ├── simpletoolbar.html
│ │ │ └── transform.html
│ │ ├── datalist_面板
│ │ │ ├── basic.html
│ │ │ ├── checkbox.html
│ │ │ ├── checkbox.html.bak
│ │ │ ├── datalist_data1.json
│ │ │ ├── group.html
│ │ │ ├── multiselect.html
│ │ │ └── remotedata.html
│ │ ├── datebox_日历和输入框
│ │ │ ├── basic.html
│ │ │ ├── buttons.html
│ │ │ ├── clone.html
│ │ │ ├── dateformat.html
│ │ │ ├── events.html
│ │ │ ├── fluid.html
│ │ │ ├── restrict.html
│ │ │ ├── sharedcalendar.html
│ │ │ └── validate.html
│ │ ├── datetimebox_日历和输入框
│ │ │ ├── basic.html
│ │ │ ├── fluid.html
│ │ │ ├── initvalue.html
│ │ │ └── showseconds.html
│ │ ├── datetimespinner_日历输入框
│ │ │ ├── basic.html
│ │ │ ├── clearicon.html
│ │ │ ├── fluid.html
│ │ │ └── format.html
│ │ ├── demo.css
│ │ ├── dialog_各类对话框
│ │ │ ├── basic.html
│ │ │ ├── complextoolbar.html
│ │ │ ├── fluid.html
│ │ │ └── toolbarbuttons.html
│ │ ├── draggable_可拖动面板
│ │ │ ├── basic.html
│ │ │ ├── constrain.html
│ │ │ └── snap.html
│ │ ├── droppable_可上下拖动选项卡
│ │ │ ├── accept.html
│ │ │ ├── basic.html
│ │ │ └── sort.html
│ │ ├── easyloader_对话框和日历
│ │ │ └── basic.html
│ │ ├── filebox_文件选择器
│ │ │ ├── basic.html
│ │ │ ├── buttonalign.html
│ │ │ └── fluid.html
│ │ ├── form_表单模板
│ │ │ ├── basic.html
│ │ │ ├── form_data1.json
│ │ │ ├── load.html
│ │ │ └── validateonsubmit.html
│ │ ├── layout_网页布局模板
│ │ │ ├── addremove.html
│ │ │ ├── autoheight.html
│ │ │ ├── basic.html
│ │ │ ├── collapsetitle.html
│ │ │ ├── complex.html
│ │ │ ├── customcollapsetitle.html
│ │ │ ├── datagrid_data1.json
│ │ │ ├── fluid.html
│ │ │ ├── full.html
│ │ │ ├── nestedlayout.html
│ │ │ ├── nocollapsible.html
│ │ │ ├── propertygrid_data1.json
│ │ │ └── tree_data1.json
│ │ ├── linkbutton_各式按钮
│ │ │ ├── basic.html
│ │ │ ├── fluid.html
│ │ │ ├── group.html
│ │ │ ├── iconalign.html
│ │ │ ├── plain.html
│ │ │ ├── size.html
│ │ │ ├── style.html
│ │ │ └── toggle.html
│ │ ├── menubutton_导航类菜单
│ │ │ ├── actions.html
│ │ │ ├── alignment.html
│ │ │ ├── basic.html
│ │ │ └── nav.html
│ │ ├── menu_菜单和右键式菜单
│ │ │ ├── basic.html
│ │ │ ├── customitem.html
│ │ │ ├── events.html
│ │ │ ├── inline.html
│ │ │ └── nav.html
│ │ ├── messager_各式对话框
│ │ │ ├── alert.html
│ │ │ ├── basic.html
│ │ │ ├── interactive.html
│ │ │ └── position.html
│ │ ├── numberbox_数字输入框
│ │ │ ├── basic.html
│ │ │ ├── fluid.html
│ │ │ ├── format.html
│ │ │ └── range.html
│ │ ├── numberspinner_各式文本输入框
│ │ │ ├── align.html
│ │ │ ├── basic.html
│ │ │ ├── fluid.html
│ │ │ ├── increment.html
│ │ │ └── range.html
│ │ ├── pagination_分页条
│ │ │ ├── attaching.html
│ │ │ ├── basic.html
│ │ │ ├── custombuttons.html
│ │ │ ├── layout.html
│ │ │ ├── links.html
│ │ │ └── simple.html
│ │ ├── panel_各类面板
│ │ │ ├── basic.html
│ │ │ ├── _content.html
│ │ │ ├── customtools.html
│ │ │ ├── fluid.html
│ │ │ ├── footer.html
│ │ │ ├── loadcontent.html
│ │ │ ├── nestedpanel.html
│ │ │ └── paneltools.html
│ │ ├── passwordbox_用户名和密码输入框
│ │ │ ├── basic.html
│ │ │ ├── flash.html
│ │ │ └── validatepassword.html
│ │ ├── progressbar_进度条
│ │ │ ├── basic.html
│ │ │ └── fluid.html
│ │ ├── propertygrid_键值对表格
│ │ │ ├── basic.html
│ │ │ ├── customcolumns.html
│ │ │ ├── groupformat.html
│ │ │ └── propertygrid_data1.json
│ │ ├── resizable_可变小面板
│ │ │ └── basic.html
│ │ ├── searchbox_搜过框
│ │ │ ├── basic.html
│ │ │ ├── category.html
│ │ │ └── fluid.html
│ │ ├── slider_滑动条
│ │ │ ├── basic.html
│ │ │ ├── fluid.html
│ │ │ ├── formattip.html
│ │ │ ├── nonlinear.html
│ │ │ ├── range.html
│ │ │ ├── rule.html
│ │ │ └── vertical.html
│ │ ├── splitbutton_导航式按钮
│ │ │ ├── actions.html
│ │ │ └── basic.html
│ │ ├── switchbutton_可切换按钮
│ │ │ ├── action.html
│ │ │ └── basic.html
│ │ ├── tabs_动态选项卡
│ │ │ ├── autoheight.html
│ │ │ ├── basic.html
│ │ │ ├── _content.html
│ │ │ ├── dropdown.html
│ │ │ ├── fixedwidth.html
│ │ │ ├── fluid.html
│ │ │ ├── hover.html
│ │ │ ├── images
│ │ │ │ ├── modem.png
│ │ │ │ ├── pda.png
│ │ │ │ ├── scanner.png
│ │ │ │ └── tablet.png
│ │ │ ├── nestedtabs.html
│ │ │ ├── striptools.html
│ │ │ ├── style.html
│ │ │ ├── tabimage.html
│ │ │ ├── tabposition.html
│ │ │ ├── tabstools.html
│ │ │ └── tree_data1.json
│ │ ├── tagbox
│ │ │ ├── autocomplete.html
│ │ │ ├── basic.html
│ │ │ ├── button.html
│ │ │ ├── format.html
│ │ │ ├── style.html
│ │ │ ├── tagbox_data1.json
│ │ │ └── validate.html
│ │ ├── textbox_注册式表单
│ │ │ ├── basic.html
│ │ │ ├── button.html
│ │ │ ├── clearicon.html
│ │ │ ├── custom.html
│ │ │ ├── fluid.html
│ │ │ ├── icons.html
│ │ │ ├── multiline.html
│ │ │ └── size.html
│ │ ├── timespinner_获取日期
│ │ │ ├── actions.html
│ │ │ ├── basic.html
│ │ │ ├── fluid.html
│ │ │ └── range.html
│ │ ├── tooltip_弹窗式各类输入框
│ │ │ ├── ajax.html
│ │ │ ├── basic.html
│ │ │ ├── _content.html
│ │ │ ├── customcontent.html
│ │ │ ├── customstyle.html
│ │ │ ├── _dialog.html
│ │ │ ├── position.html
│ │ │ ├── toolbar.html
│ │ │ └── tooltipdialog.html
│ │ ├── treegrid_菜单式面板
│ │ │ ├── actions.html
│ │ │ ├── basic.html
│ │ │ ├── checkbox.html
│ │ │ ├── clientpagination.html
│ │ │ ├── clientpagination.html.bak
│ │ │ ├── contextmenu.html
│ │ │ ├── customcheckbox.html
│ │ │ ├── editable.html
│ │ │ ├── fluid.html
│ │ │ ├── footer.html
│ │ │ ├── lines.html
│ │ │ ├── reports.html
│ │ │ ├── treegrid_data1.json
│ │ │ ├── treegrid_data2.json
│ │ │ └── treegrid_data3.json
│ │ ├── tree_树形菜单
│ │ │ ├── actions.html
│ │ │ ├── animation.html
│ │ │ ├── basic.html
│ │ │ ├── basic.html.bak
│ │ │ ├── checkbox.html
│ │ │ ├── contextmenu.html
│ │ │ ├── customcheckbox.html
│ │ │ ├── dnd.html
│ │ │ ├── editable.html
│ │ │ ├── formatting.html
│ │ │ ├── icons.html
│ │ │ ├── lazyload.html
│ │ │ ├── lines.html
│ │ │ ├── tree_data1.json
│ │ │ └── tree_data2.json
│ │ ├── validatebox_表单式输入框
│ │ │ ├── basic.html
│ │ │ ├── customtooltip.html
│ │ │ ├── errorplacement.html
│ │ │ └── validateonblur.html
│ │ ├── window_弹窗
│ │ │ ├── basic.html
│ │ │ ├── borderstyle.html
│ │ │ ├── customtools.html
│ │ │ ├── fluid.html
│ │ │ ├── footer.html
│ │ │ ├── inlinewindow.html
│ │ │ ├── modalwindow.html
│ │ │ └── windowlayout.html
│ │ └── 日历
│ │ ├── basic.html
│ │ ├── custom.html
│ │ ├── disabledate.html
│ │ ├── firstday.html
│ │ ├── fluid.html
│ │ └── weeknumber.html
│ ├── easyloader.js
│ ├── feedback.js
│ ├── JQ_timer.js
│ ├── JQuery1.3.1.js
│ ├── jquery-1.4a2.min.js
│ ├── jquery-1.9.1.js
│ ├── jquery.easyui.min.js
│ ├── jquery.easyui.mobile.js
│ ├── jquery.KinSlideshow-1.2.1.min.js
│ ├── jquery.min.js
│ ├── locale
│ │ ├── easyui-lang-af.js
│ │ ├── easyui-lang-am.js
│ │ ├── easyui-lang-ar.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-el.js
│ │ ├── easyui-lang-en.js
│ │ ├── easyui-lang-es.js
│ │ ├── easyui-lang-fr.js
│ │ ├── easyui-lang-it.js
│ │ ├── easyui-lang-jp.js
│ │ ├── easyui-lang-ko.js
│ │ ├── easyui-lang-nl.js
│ │ ├── easyui-lang-pl.js
│ │ ├── easyui-lang-pt_BR.js
│ │ ├── easyui-lang-ru.js
│ │ ├── easyui-lang-sv_SE.js
│ │ ├── easyui-lang-tr.js
│ │ ├── easyui-lang-zh_CN.js
│ │ └── easyui-lang-zh_TW.js
│ ├── mui.dtpicker.js
│ ├── mui.imageViewer.js
│ ├── mui.indexedlist.js
│ ├── mui.js
│ ├── mui.lazyload.img.js
│ ├── mui.lazyload.js
│ ├── mui.listpicker.js
│ ├── mui.min.js
│ ├── mui.picker.all.js
│ ├── mui.picker.js
│ ├── mui.picker.min.js
│ ├── mui.poppicker.js
│ ├── mui.previewimage.js
│ ├── mui.pullToRefresh.js
│ ├── mui.pullToRefresh.material.js
│ ├── mui.view.js
│ ├── mui.zoom.js
│ ├── plugins
│ │ ├── jquery.accordion.js
│ │ ├── jquery.calendar.js
│ │ ├── jquery.combobox.js
│ │ ├── jquery.combogrid.js
│ │ ├── jquery.combo.js
│ │ ├── jquery.combotreegrid.js
│ │ ├── jquery.combotree.js
│ │ ├── jquery.datagrid.js
│ │ ├── jquery.datalist.js
│ │ ├── jquery.datebox.js
│ │ ├── jquery.datetimebox.js
│ │ ├── jquery.datetimespinner.js
│ │ ├── jquery.dialog.js
│ │ ├── jquery.draggable.js
│ │ ├── jquery.droppable.js
│ │ ├── jquery.filebox.js
│ │ ├── jquery.form.js
│ │ ├── jquery.layout.js
│ │ ├── jquery.linkbutton.js
│ │ ├── jquery.menubutton.js
│ │ ├── jquery.menu.js
│ │ ├── jquery.messager.js
│ │ ├── jquery.mobile.js
│ │ ├── jquery.numberbox.js
│ │ ├── jquery.numberspinner.js
│ │ ├── jquery.pagination.js
│ │ ├── jquery.panel.js
│ │ ├── jquery.parser.js
│ │ ├── jquery.passwordbox.js
│ │ ├── jquery.progressbar.js
│ │ ├── jquery.propertygrid.js
│ │ ├── jquery.resizable.js
│ │ ├── jquery.searchbox.js
│ │ ├── jquery.slider.js
│ │ ├── jquery.spinner.js
│ │ ├── jquery.splitbutton.js
│ │ ├── jquery.switchbutton.js
│ │ ├── jquery.tabs.js
│ │ ├── jquery.tagbox.js
│ │ ├── jquery.textbox.js
│ │ ├── jquery.timespinner.js
│ │ ├── jquery.tooltip.js
│ │ ├── jquery.treegrid.js
│ │ ├── jquery.tree.js
│ │ ├── jquery.validatebox.js
│ │ └── jquery.window.js
│ ├── src
│ │ ├── easyloader.js
│ │ ├── jquery.accordion.js
│ │ ├── jquery.calendar.js
│ │ ├── jquery.combobox.js
│ │ ├── jquery.datebox.js
│ │ ├── jquery.draggable.js
│ │ ├── jquery.droppable.js
│ │ ├── jquery.form.js
│ │ ├── jquery.linkbutton.js
│ │ ├── jquery.menu.js
│ │ ├── jquery.parser.js
│ │ ├── jquery.progressbar.js
│ │ ├── jquery.propertygrid.js
│ │ ├── jquery.resizable.js
│ │ ├── jquery.slider.js
│ │ ├── jquery.tabs.js
│ │ └── jquery.window.js
│ ├── themes
│ │ ├── black
│ │ │ ├── accordion.css
│ │ │ ├── calendar.css
│ │ │ ├── combobox.css
│ │ │ ├── combo.css
│ │ │ ├── datagrid.css
│ │ │ ├── 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
│ │ │ │ ├── passwordbox_close.png
│ │ │ │ ├── passwordbox_open.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tagbox_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── numberbox.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── passwordbox.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── switchbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── tagbox.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
│ │ │ │ ├── passwordbox_close.png
│ │ │ │ ├── passwordbox_open.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tagbox_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── numberbox.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── passwordbox.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── switchbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── tagbox.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
│ │ │ │ ├── passwordbox_close.png
│ │ │ │ ├── passwordbox_open.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tagbox_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── numberbox.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── passwordbox.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── switchbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── tagbox.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
│ │ │ │ ├── passwordbox_close.png
│ │ │ │ ├── passwordbox_open.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tagbox_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── numberbox.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── passwordbox.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── switchbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── tagbox.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
│ │ ├── material
│ │ │ ├── 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
│ │ │ │ ├── passwordbox_close.png
│ │ │ │ ├── passwordbox_open.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tagbox_icons.png
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── numberbox.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── passwordbox.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── switchbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── tagbox.css
│ │ │ ├── textbox.css
│ │ │ ├── tooltip.css
│ │ │ ├── tree.css
│ │ │ ├── validatebox.css
│ │ │ └── window.css
│ │ ├── 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
│ │ │ │ ├── passwordbox_close.png
│ │ │ │ ├── passwordbox_open.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tagbox_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── numberbox.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── passwordbox.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── switchbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── tagbox.css
│ │ │ ├── textbox.css
│ │ │ ├── tooltip.css
│ │ │ ├── tree.css
│ │ │ ├── validatebox.css
│ │ │ └── window.css
│ │ └── mobile.css
│ └── update.js
├── login.jsp
├── META-INF
│ └── MANIFEST.MF
├── pic
│ ├── caidan.png
│ ├── daohang.png
│ ├── head.png
│ ├── jibenxinxi.jpg
│ ├── jibenxinxi.png
│ ├── kehu.png
│ ├── renwu.png
│ ├── xitong.png
│ ├── yuangong.png
│ └── yuangongzhongxin.png
├── pleaselogin.html
├── register.jsp
├── systemset.jsp
├── UCcustomer.jsp
├── UCdatainfo.jsp
├── UCdepartment.jsp
├── UCemployee.jsp
├── UCinfoitem.jsp
├── UClinkman.jsp
├── UCuserrole.jsp
├── UCworklog.jsp
├── userrole.jsp
├── WEB-INF
│ ├── index2.jsp
│ ├── lib
│ │ ├── antlr-2.7.7.jar
│ │ ├── aopalliance-1.0.jar
│ │ ├── asm-3.3.jar
│ │ ├── asm-commons-3.3.jar
│ │ ├── asm-tree-3.3.jar
│ │ ├── aspectj.weaver-1.6.8.RELEASE.jar
│ │ ├── c3p0-0.9.1.jar
│ │ ├── cdi-api-1.1.jar
│ │ ├── classmate-1.3.0.jar
│ │ ├── commons-fileupload-1.3.2.jar
│ │ ├── commons-io-2.2.jar
│ │ ├── commons-lang3-3.2.jar
│ │ ├── commons-logging-1.1.3.jar
│ │ ├── dom4j-1.6.1.jar
│ │ ├── el-api-2.2.jar
│ │ ├── freemarker-2.3.22.jar
│ │ ├── geronimo-jta_1.1_spec-1.1.1.jar
│ │ ├── hibernate-commons-annotations-4.0.1.Final.jar
│ │ ├── hibernate-core-4.1.4.Final.jar
│ │ ├── hibernate-jpa-2.0-api-1.0.1.Final.jar
│ │ ├── hibernate-jpamodelgen-5.2.5.Final.jar
│ │ ├── jandex-2.0.3.Final.jar
│ │ ├── javassist-3.12.0.GA.jar
│ │ ├── javax.inject-1.jar
│ │ ├── jboss-interceptors-api_1.1_spec-1.0.0.Beta1.jar
│ │ ├── jboss-logging-3.3.0.Final.jar
│ │ ├── jsr250-api-1.0.jar
│ │ ├── jstl-1.2.jar
│ │ ├── log4j-1.2.16.jar
│ │ ├── log4j-api-2.3.jar
│ │ ├── log4j-api-2.7.jar
│ │ ├── log4j-core-2.3.jar
│ │ ├── mchange-commons-java-0.2.3.4.jar
│ │ ├── mysql-connector-java-5.1.6-bin.jar
│ │ ├── ognl-3.0.19.jar
│ │ ├── slf4j-api-1.6.1.jar
│ │ ├── slf4j-log4j12-1.7.2.jar
│ │ ├── spring-aop-3.2.0.RELEASE.jar
│ │ ├── spring-aop-4.1.6.RELEASE.jar
│ │ ├── spring-aspects-3.2.0.RELEASE.jar
│ │ ├── spring-beans-4.1.6.RELEASE.jar
│ │ ├── spring-context-4.1.6.RELEASE.jar
│ │ ├── spring-core-4.1.6.RELEASE.jar
│ │ ├── spring-expression-4.1.6.RELEASE.jar
│ │ ├── spring-jdbc-3.2.0.RELEASE.jar
│ │ ├── spring-orm-3.2.0.RELEASE.jar
│ │ ├── spring-orm-3.2.4.jar
│ │ ├── spring-orm-4.3.6.RELEASE.jar
│ │ ├── spring-tx-3.2.0.RELEASE.jar
│ │ ├── spring-web-3.2.0.RELEASE.jar
│ │ ├── struts2-core-2.3.31.jar
│ │ ├── struts2-spring-plugin-2.3.31.jar
│ │ └── xwork-core-2.3.31.jar
│ └── web.xml
└── 笔记
96 directories, 1134 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论