在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → java进销存管理系统源码

java进销存管理系统源码

一般编程问题

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

实例介绍

【实例简介】
Java企业进销存管理系统,部分代码需要自己调试
【实例截图】
【核心代码】
4744302543341292045.rar
└── java进销存管理系统源码
├── db
│   └── gspstore.sql
├── resources
│   ├── config.properties
│   ├── ehcache.xml
│   ├── jeecg
│   │   ├── jeecg_config.properties
│   │   ├── jeecg_database.properties
│   │   └── template
│   │   ├── actionOnetoMainTemplate.ftl
│   │   ├── actionTemplate.ftl
│   │   ├── entityTemplate.ftl
│   │   ├── include
│   │   │   ├── actionInclude.ftl
│   │   │   ├── pageInclude.ftl
│   │   │   ├── serviceImplInclude.ftl
│   │   │   └── serviceInclude.ftl
│   │   ├── jspLineFeedTemplate.ftl
│   │   ├── jspOnetoMainAddTemplate.ftl
│   │   ├── jspOnetoMainAddTemplate_tab.ftl
│   │   ├── jspOnetoMainEditTemplate.ftl
│   │   ├── jspOnetoMainEditTemplate_tab.ftl
│   │   ├── jspOneToManyTemplate.ftl
│   │   ├── jspRowEditTemplate.ftl
│   │   ├── pageEntityTemplate.ftl
│   │   ├── serviceImplOnetoMainTemplate.ftl
│   │   ├── serviceImplTemplate.ftl
│   │   ├── serviceIOnetoMainTemplate.ftl
│   │   ├── serviceITemplate.ftl
│   │   └── tree
│   │   ├── actionTreeTemplate.ftl
│   │   ├── comparatorTemplate.ftl
│   │   ├── entityTreeTemplate.ftl
│   │   ├── include
│   │   │   ├── entityTreeFKInclude.ftl
│   │   │   ├── entityTreeHeadInclude.ftl
│   │   │   └── pageTreeInclude.ftl
│   │   ├── jspTreeTemplate.ftl
│   │   ├── pageTreeTemplate.ftl
│   │   ├── serviceImplTreeTemplate.ftl
│   │   └── serviceItreeTemplate.ftl
│   ├── log4j.properties
│   ├── spring-hibernate.xml
│   ├── spring.xml
│   ├── struts.xml
│   └── xwork-conversion.properties
├── src
│   ├── business
│   │   ├── action
│   │   │   ├── accounter
│   │   │   │   └── AccounterAction.java
│   │   │   ├── area
│   │   │   │   └── AreaAction.java
│   │   │   ├── article
│   │   │   │   └── ArticleAction.java
│   │   │   ├── catelog
│   │   │   │   └── CatelogAction.java
│   │   │   ├── company
│   │   │   │   └── CompanyAction.java
│   │   │   ├── customer
│   │   │   │   └── CustomerAction.java
│   │   │   ├── customerprice
│   │   │   │   └── CustomerPriceAction.java
│   │   │   ├── depot
│   │   │   │   └── DepotAction.java
│   │   │   ├── fee
│   │   │   │   └── FeeAction.java
│   │   │   ├── sale
│   │   │   │   └── SaleAction.java
│   │   │   ├── saleback
│   │   │   │   └── SaleBackAction.java
│   │   │   ├── stock
│   │   │   │   ├── StockAction.java
│   │   │   │   └── StockCheckAction.java
│   │   │   ├── stockback
│   │   │   │   └── StockBackAction.java
│   │   │   ├── stockin
│   │   │   │   └── StockinAction.java
│   │   │   ├── subject
│   │   │   │   └── SubjectAction.java
│   │   │   └── supplier
│   │   │   └── SupplierAction.java
│   │   ├── comparator
│   │   │   └── catelog
│   │   │   └── CatelogComparator.java
│   │   ├── entity
│   │   │   ├── accounter
│   │   │   │   └── AccounterEntity.java
│   │   │   ├── area
│   │   │   │   └── AreaEntity.java
│   │   │   ├── article
│   │   │   │   └── ArticleEntity.java
│   │   │   ├── catelog
│   │   │   │   └── CatelogEntity.java
│   │   │   ├── company
│   │   │   │   └── CompanyEntity.java
│   │   │   ├── customer
│   │   │   │   └── CustomerEntity.java
│   │   │   ├── customerprice
│   │   │   │   └── CustomerPriceEntity.java
│   │   │   ├── depot
│   │   │   │   └── DepotEntity.java
│   │   │   ├── fee
│   │   │   │   └── FeeEntity.java
│   │   │   ├── sale
│   │   │   │   ├── SaleDetailEntity.java
│   │   │   │   └── SaleEntity.java
│   │   │   ├── saleback
│   │   │   │   ├── SaleBackDetailEntity.java
│   │   │   │   └── SaleBackEntity.java
│   │   │   ├── stock
│   │   │   │   ├── StockCheckEntity.java
│   │   │   │   └── StockEntity.java
│   │   │   ├── stockback
│   │   │   │   ├── StockBackDetailEntity.java
│   │   │   │   └── StockBackEntity.java
│   │   │   ├── stockin
│   │   │   │   ├── StockinDetailEntity.java
│   │   │   │   └── StockinEntity.java
│   │   │   ├── subject
│   │   │   │   └── SubjectEntity.java
│   │   │   └── supplier
│   │   │   └── SupplierEntity.java
│   │   ├── exception
│   │   │   ├── ExistReferenceException.java
│   │   │   └── StockLessBackNumException.java
│   │   ├── page
│   │   │   ├── accounter
│   │   │   │   └── AccounterPage.java
│   │   │   ├── area
│   │   │   │   └── AreaPage.java
│   │   │   ├── article
│   │   │   │   └── ArticlePage.java
│   │   │   ├── catelog
│   │   │   │   └── CatelogPage.java
│   │   │   ├── company
│   │   │   │   └── CompanyPage.java
│   │   │   ├── customer
│   │   │   │   └── CustomerPage.java
│   │   │   ├── customerprice
│   │   │   │   └── CustomerPricePage.java
│   │   │   ├── depot
│   │   │   │   └── DepotPage.java
│   │   │   ├── fee
│   │   │   │   └── FeePage.java
│   │   │   ├── report
│   │   │   │   └── ReportQueryForm.java
│   │   │   ├── sale
│   │   │   │   ├── SaleDetailPage.java
│   │   │   │   └── SalePage.java
│   │   │   ├── saleback
│   │   │   │   ├── SaleBackDetailPage.java
│   │   │   │   └── SaleBackPage.java
│   │   │   ├── stock
│   │   │   │   ├── StockCheckPage.java
│   │   │   │   └── StockPage.java
│   │   │   ├── stockback
│   │   │   │   ├── StockBackDetailPage.java
│   │   │   │   └── StockBackPage.java
│   │   │   ├── stockin
│   │   │   │   ├── StockinDetailPage.java
│   │   │   │   └── StockinPage.java
│   │   │   ├── subject
│   │   │   │   └── SubjectPage.java
│   │   │   └── supplier
│   │   │   └── SupplierPage.java
│   │   ├── service
│   │   │   ├── accounter
│   │   │   │   └── AccounterServiceI.java
│   │   │   ├── area
│   │   │   │   └── AreaServiceI.java
│   │   │   ├── article
│   │   │   │   └── ArticleServiceI.java
│   │   │   ├── catelog
│   │   │   │   └── CatelogServiceI.java
│   │   │   ├── company
│   │   │   │   └── CompanyServiceI.java
│   │   │   ├── customer
│   │   │   │   └── CustomerServiceI.java
│   │   │   ├── customerprice
│   │   │   │   └── CustomerPriceServiceI.java
│   │   │   ├── depot
│   │   │   │   └── DepotServiceI.java
│   │   │   ├── fee
│   │   │   │   └── FeeServiceI.java
│   │   │   ├── impl
│   │   │   │   ├── accounter
│   │   │   │   │   └── AccounterServiceImpl.java
│   │   │   │   ├── area
│   │   │   │   │   └── AreaServiceImpl.java
│   │   │   │   ├── article
│   │   │   │   │   └── ArticleServiceImpl.java
│   │   │   │   ├── catelog
│   │   │   │   │   └── CatelogServiceImpl.java
│   │   │   │   ├── company
│   │   │   │   │   └── CompanyServiceImpl.java
│   │   │   │   ├── customer
│   │   │   │   │   └── CustomerServiceImpl.java
│   │   │   │   ├── customerprice
│   │   │   │   │   └── CustomerPriceServiceImpl.java
│   │   │   │   ├── depot
│   │   │   │   │   └── DepotServiceImpl.java
│   │   │   │   ├── fee
│   │   │   │   │   └── FeeServiceImpl.java
│   │   │   │   ├── sale
│   │   │   │   │   ├── SaleDetailServiceImpl.java
│   │   │   │   │   └── SaleServiceImpl.java
│   │   │   │   ├── saleback
│   │   │   │   │   ├── SaleBackDetailServiceImpl.java
│   │   │   │   │   └── SaleBackServiceImpl.java
│   │   │   │   ├── stock
│   │   │   │   │   ├── StockCheckServiceImpl.java
│   │   │   │   │   └── StockServiceImpl.java
│   │   │   │   ├── stockback
│   │   │   │   │   ├── StockBackDetailServiceImpl.java
│   │   │   │   │   └── StockBackServiceImpl.java
│   │   │   │   ├── stockin
│   │   │   │   │   ├── StockinDetailServiceImpl.java
│   │   │   │   │   └── StockinServiceImpl.java
│   │   │   │   ├── subject
│   │   │   │   │   └── SubjectServiceImpl.java
│   │   │   │   └── supplier
│   │   │   │   └── SupplierServiceImpl.java
│   │   │   ├── sale
│   │   │   │   ├── SaleDetailServiceI.java
│   │   │   │   └── SaleServiceI.java
│   │   │   ├── saleback
│   │   │   │   ├── SaleBackDetailServiceI.java
│   │   │   │   └── SaleBackServiceI.java
│   │   │   ├── stock
│   │   │   │   ├── StockCheckServiceI.java
│   │   │   │   └── StockServiceI.java
│   │   │   ├── stockback
│   │   │   │   ├── StockBackDetailServiceI.java
│   │   │   │   └── StockBackServiceI.java
│   │   │   ├── stockin
│   │   │   │   ├── StockinDetailServiceI.java
│   │   │   │   └── StockinServiceI.java
│   │   │   ├── subject
│   │   │   │   └── SubjectServiceI.java
│   │   │   └── supplier
│   │   │   └── SupplierServiceI.java
│   │   └── util
│   │   ├── FormatUtil.java
│   │   └── MapUtil.java
│   ├── com
│   │   ├── codeGenerate
│   │   │   ├── JeecgDeleteUtil.java
│   │   │   ├── JeecgOneGUI.java
│   │   │   ├── JeecgOneToMainUtil.java
│   │   │   ├── JeecgOneToManyGUI.java
│   │   │   └── JeecgTreeUtil.java
│   │   ├── core
│   │   │   ├── annotation
│   │   │   │   └── Excel.java
│   │   │   ├── aop
│   │   │   │   ├── cache
│   │   │   │   │   ├── EhcacheAspect.java
│   │   │   │   │   └── Ehcache.java
│   │   │   │   └── HiberAspect.java
│   │   │   ├── base
│   │   │   │   └── BasePage.java
│   │   │   └── def
│   │   │   └── ConstantsDefs.java
│   │   ├── jeecg
│   │   │   ├── action
│   │   │   │   ├── AuthAction.java
│   │   │   │   ├── BaseAction.java
│   │   │   │   ├── BugAction.java
│   │   │   │   ├── DataSourceAction.java
│   │   │   │   ├── MenuAction.java
│   │   │   │   ├── OnlineAction.java
│   │   │   │   ├── RepairAction.java
│   │   │   │   ├── RoleAction.java
│   │   │   │   └── UserAction.java
│   │   │   ├── comparator
│   │   │   │   ├── AuthComparator.java
│   │   │   │   └── MenuComparator.java
│   │   │   ├── converter
│   │   │   │   ├── ClobConverter.java
│   │   │   │   └── DateConverter.java
│   │   │   ├── dao
│   │   │   │   ├── BaseDaoI.java
│   │   │   │   ├── hiber
│   │   │   │   ├── impl
│   │   │   │   │   └── BaseDaoImpl.java
│   │   │   │   └── jdbc
│   │   │   │   ├── JdbcDao.java
│   │   │   │   └── SimpleJdbcTemplate.java
│   │   │   ├── def
│   │   │   │   └── ConstantsSys.java
│   │   │   ├── filter
│   │   │   │   └── ErrorImgFilter.java
│   │   │   ├── interceptor
│   │   │   │   ├── AuthInterceptor.java
│   │   │   │   ├── EncodingInterceptor.java
│   │   │   │   ├── ExceptionInterceptor.java
│   │   │   │   ├── FileAuthInterceptor.java
│   │   │   │   ├── SessionInterceptor.java
│   │   │   │   └── UrlParamsInterceptor.java
│   │   │   ├── listener
│   │   │   │   ├── OgnlSecurityListener.java
│   │   │   │   ├── OnlineListener.java
│   │   │   │   └── RepairListener.java
│   │   │   ├── model
│   │   │   │   ├── BaseEntity.java
│   │   │   │   ├── Tauth.java
│   │   │   │   ├── Tbug.java
│   │   │   │   ├── Tmenu.java
│   │   │   │   ├── Tonline.java
│   │   │   │   ├── Trole.java
│   │   │   │   ├── Troletauth.java
│   │   │   │   ├── Tuser.java
│   │   │   │   └── Tusertrole.java
│   │   │   ├── pageModel
│   │   │   │   ├── Auth.java
│   │   │   │   ├── Bug.java
│   │   │   │   ├── DataGrid.java
│   │   │   │   ├── Json.java
│   │   │   │   ├── Menu.java
│   │   │   │   ├── Online.java
│   │   │   │   ├── RoleAuth.java
│   │   │   │   ├── Role.java
│   │   │   │   ├── SessionInfo.java
│   │   │   │   ├── TreeNode.java
│   │   │   │   ├── User.java
│   │   │   │   └── UserRole.java
│   │   │   ├── service
│   │   │   │   ├── AuthServiceI.java
│   │   │   │   ├── BaseServiceI.java
│   │   │   │   ├── BugServiceI.java
│   │   │   │   ├── impl
│   │   │   │   │   ├── AuthServiceImpl.java
│   │   │   │   │   ├── BaseServiceImpl.java
│   │   │   │   │   ├── BugServiceImpl.java
│   │   │   │   │   ├── MenuServiceImpl.java
│   │   │   │   │   ├── OnlineServiceImpl.java
│   │   │   │   │   ├── RepairServiceImpl.java
│   │   │   │   │   ├── RoleServiceImpl.java
│   │   │   │   │   └── UserServiceImpl.java
│   │   │   │   ├── MenuServiceI.java
│   │   │   │   ├── OnlineServiceI.java
│   │   │   │   ├── RepairServiceI.java
│   │   │   │   ├── RoleServiceI.java
│   │   │   │   └── UserServiceI.java
│   │   │   ├── tagjsp
│   │   │   │   └── AnchorTag.java
│   │   │   ├── timer
│   │   │   │   └── Job.java
│   │   │   └── util
│   │   │   ├── ClobUtil.java
│   │   │   ├── DateUtils.java
│   │   │   ├── Encrypt.java
│   │   │   ├── excel
│   │   │   │   ├── ExcelExportUtil.java
│   │   │   │   └── ExcelUtil.java
│   │   │   ├── ExceptionUtil.java
│   │   │   ├── FileUtil.java
│   │   │   ├── IpUtil.java
│   │   │   ├── JpaUtil.java
│   │   │   ├── ParserData.java
│   │   │   ├── RequestUtil.java
│   │   │   ├── ResourceUtil.java
│   │   │   ├── SendMailUtil.java
│   │   │   ├── SpringContextUtil.java
│   │   │   └── StringUtil.java
│   │   ├── sys
│   │   │   ├── action
│   │   │   │   └── base
│   │   │   │   ├── DictParamAction.java
│   │   │   │   ├── DuplicateCheckAction.java
│   │   │   │   ├── JeecgGroupAction.java
│   │   │   │   └── NoteAction.java
│   │   │   ├── entity
│   │   │   │   └── base
│   │   │   │   ├── DictParamEntity.java
│   │   │   │   ├── JeecgGroupEntity.java
│   │   │   │   └── NoteEntity.java
│   │   │   ├── page
│   │   │   │   └── base
│   │   │   │   ├── DictParamPage.java
│   │   │   │   ├── DuplicateCheckPage.java
│   │   │   │   ├── JeecgGroupPage.java
│   │   │   │   └── NotePage.java
│   │   │   └── service
│   │   │   ├── base
│   │   │   │   ├── DictParamServiceI.java
│   │   │   │   ├── JeecgGroupServiceI.java
│   │   │   │   └── NoteServiceI.java
│   │   │   └── impl
│   │   │   └── base
│   │   │   ├── DictParamServiceImpl.java
│   │   │   ├── JeecgGroupServiceImpl.java
│   │   │   └── NoteServiceImpl.java
│   │   └── util
│   │   ├── ClassReflectUtil.java
│   │   ├── dbcommon
│   │   │   └── SearchSqlGenerateUtil.java
│   │   ├── JeecgSqlUtil.java
│   │   ├── LogUtil.java
│   │   ├── MyBeanUtils.java
│   │   ├── MyStringUtils.java
│   │   └── TestCode.java
│   ├── demo
│   │   └── PinyingDemo.java
│   ├── initdata
│   │   └── excel
│   │   ├── ChnToPinYin.java
│   │   ├── DBManageMysql.java
│   │   ├── ExcelTool.java
│   │   └── JDBCForMySql.java
│   ├── sun
│   │   ├── action
│   │   │   ├── demo
│   │   │   ├── jeecg
│   │   │   │   ├── JeecgOneDemoAction.java
│   │   │   │   ├── JeecgOneRowAction.java
│   │   │   │   ├── JeecgOneTestAction.java
│   │   │   │   ├── JeecgOrderMainAction.java
│   │   │   │   └── JeecgOrderMainSingleAction.java
│   │   │   ├── order
│   │   │   │   └── GbuyOrderAction.java
│   │   │   └── test
│   │   │   ├── ChartsAction.java
│   │   │   ├── DemoAction.java
│   │   │   └── PersonAction.java
│   │   ├── comparator
│   │   ├── entity
│   │   │   ├── jeecg
│   │   │   │   ├── JeecgOneDemoEntity.java
│   │   │   │   ├── JeecgOneRowEntity.java
│   │   │   │   ├── JeecgOneTestEntity.java
│   │   │   │   ├── JeecgOrderCustomEntity.java
│   │   │   │   ├── JeecgOrderCustomSingleEntity.java
│   │   │   │   ├── JeecgOrderMainEntity.java
│   │   │   │   ├── JeecgOrderMainSingleEntity.java
│   │   │   │   ├── JeecgOrderProductEntity.java
│   │   │   │   └── JeecgOrderProductSingleEntity.java
│   │   │   ├── order
│   │   │   │   ├── GbuyOrderCustomEntity.java
│   │   │   │   ├── GbuyOrderEntity.java
│   │   │   │   └── GbuyOrderProductEntity.java
│   │   │   └── test
│   │   │   └── PersonEntity.java
│   │   ├── page
│   │   │   ├── jeecg
│   │   │   │   ├── JeecgOneDemoPage.java
│   │   │   │   ├── JeecgOneRowPage.java
│   │   │   │   ├── JeecgOneTestPage.java
│   │   │   │   ├── JeecgOrderCustomPage.java
│   │   │   │   ├── JeecgOrderCustomSinglePage.java
│   │   │   │   ├── JeecgOrderMainPage.java
│   │   │   │   ├── JeecgOrderMainSinglePage.java
│   │   │   │   ├── JeecgOrderProductPage.java
│   │   │   │   └── JeecgOrderProductSinglePage.java
│   │   │   ├── order
│   │   │   │   ├── GbuyOrderCustomPage.java
│   │   │   │   ├── GbuyOrderPage.java
│   │   │   │   └── GbuyOrderProductPage.java
│   │   │   └── test
│   │   │   ├── Data.java
│   │   │   ├── DemoPage.java
│   │   │   ├── PersonPage.java
│   │   │   └── Pie.java
│   │   ├── service
│   │   │   ├── impl
│   │   │   │   ├── jeecg
│   │   │   │   │   ├── JeecgOneDemoServiceImpl.java
│   │   │   │   │   ├── JeecgOneRowServiceImpl.java
│   │   │   │   │   ├── JeecgOneTestServiceImpl.java
│   │   │   │   │   ├── JeecgOrderCustomServiceImpl.java
│   │   │   │   │   ├── JeecgOrderCustomSingleServiceImpl.java
│   │   │   │   │   ├── JeecgOrderMainServiceImpl.java
│   │   │   │   │   ├── JeecgOrderMainSingleServiceImpl.java
│   │   │   │   │   ├── JeecgOrderProductServiceImpl.java
│   │   │   │   │   └── JeecgOrderProductSingleServiceImpl.java
│   │   │   │   ├── order
│   │   │   │   │   ├── GbuyOrderCustomServiceImpl.java
│   │   │   │   │   ├── GbuyOrderProductServiceImpl.java
│   │   │   │   │   └── GbuyOrderServiceImpl.java
│   │   │   │   └── test
│   │   │   │   ├── DemoServiceImpl.java
│   │   │   │   └── PersonServiceImpl.java
│   │   │   ├── jeecg
│   │   │   │   ├── JeecgOneDemoServiceI.java
│   │   │   │   ├── JeecgOneRowServiceI.java
│   │   │   │   ├── JeecgOneTestServiceI.java
│   │   │   │   ├── JeecgOrderCustomServiceI.java
│   │   │   │   ├── JeecgOrderCustomSingleServiceI.java
│   │   │   │   ├── JeecgOrderMainServiceI.java
│   │   │   │   ├── JeecgOrderMainSingleServiceI.java
│   │   │   │   ├── JeecgOrderProductServiceI.java
│   │   │   │   └── JeecgOrderProductSingleServiceI.java
│   │   │   ├── order
│   │   │   │   ├── GbuyOrderCustomServiceI.java
│   │   │   │   ├── GbuyOrderProductServiceI.java
│   │   │   │   └── GbuyOrderServiceI.java
│   │   │   └── test
│   │   │   ├── DemoServiceI.java
│   │   │   └── PersonServiceI.java
│   │   └── sql
│   │   └── test
│   │   └── DemoService_listAllByJdbc.sql
│   └── test
│   └── gspstore
│   ├── SpringTestBase.java
│   └── SupplierTest.java
└── WebRoot
├── business
│   ├── accounter
│   │   └── accounter.jsp
│   ├── area
│   │   └── area.jsp
│   ├── article
│   │   ├── article.jsp
│   │   ├── view-article-track-data.jsp
│   │   └── view-article-track.jsp
│   ├── catelog
│   │   └── catelog.jsp
│   ├── company
│   │   └── company.jsp
│   ├── customer
│   │   └── customer.jsp
│   ├── customerprice
│   │   └── customerPrice.jsp
│   ├── demo
│   │   └── combox.jsp
│   ├── depot
│   │   └── depot.jsp
│   ├── fee
│   │   ├── fee.jsp
│   │   ├── view-fee-total-data.jsp
│   │   └── view-fee-total.jsp
│   ├── sale
│   │   ├── sale.jsp
│   │   ├── sale-main-add.jsp
│   │   ├── sale-main-detail-bak.jsp
│   │   ├── sale-main-detail.jsp
│   │   ├── sale-main-edit.jsp
│   │   ├── view-sale-by-accounter-data-huizong.jsp
│   │   ├── view-sale-by-accounter-data-mingxi.jsp
│   │   ├── view-sale-by-accounter.jsp
│   │   ├── view-sale-detail-data.jsp
│   │   ├── view-sale-detail.jsp
│   │   ├── view-sale-total-data.jsp
│   │   └── view-sale-total.jsp
│   ├── saleback
│   │   ├── saleBack.jsp
│   │   ├── saleBack-main-add.jsp
│   │   ├── saleBack-main-detail-bak.jsp
│   │   ├── saleBack-main-detail.jsp
│   │   └── saleBack-main-edit.jsp
│   ├── stock
│   │   ├── stockCheck.jsp
│   │   ├── stock-detail.jsp
│   │   ├── stock-total.jsp
│   │   ├── view-stockcheck-data.jsp
│   │   └── view-stockcheck.jsp
│   ├── stockback
│   │   ├── stockBack.jsp
│   │   ├── stockBack-main-add.jsp
│   │   ├── stockBack-main-detail.jsp
│   │   ├── stockBack-main-edit_backup.jsp.backup
│   │   └── stockBack-main-edit.jsp
│   ├── stockin
│   │   ├── stockin.jsp
│   │   ├── stockin-main-add.jsp
│   │   ├── stockin-main-detail.jsp
│   │   ├── stockin-main-edit.jsp
│   │   ├── view-stockin-detail-data.jsp
│   │   ├── view-stockin-detail.jsp
│   │   ├── view-stockin-total-data.jsp
│   │   └── view-stockin-total.jsp
│   ├── subject
│   │   └── subject.jsp
│   └── supplier
│   └── supplier.jsp
├── com
│   ├── jeecg
│   │   ├── auth.jsp
│   │   ├── bug.jsp
│   │   ├── changeLog.jsp
│   │   ├── druidDataSource.jsp
│   │   ├── menu.jsp
│   │   ├── role.jsp
│   │   ├── sql.jsp
│   │   └── user.jsp
│   └── sys
│   └── base
│   ├── dictParam.jsp
│   ├── jeecgGroup.jsp
│   ├── note-add.jsp
│   ├── note-edit.jsp
│   └── note.jsp
├── css
│   ├── images
│   │   ├── blue_face
│   │   │   ├── bluefaces_01.png
│   │   │   ├── bluefaces_02.png
│   │   │   ├── bluefaces_03.png
│   │   │   ├── bluefaces_04.png
│   │   │   ├── bluefaces_05.png
│   │   │   ├── bluefaces_06.png
│   │   │   ├── bluefaces_07.png
│   │   │   ├── bluefaces_08.png
│   │   │   ├── bluefaces_09.png
│   │   │   ├── bluefaces_10.png
│   │   │   ├── bluefaces_11.png
│   │   │   ├── bluefaces_12.png
│   │   │   ├── bluefaces_13.png
│   │   │   ├── bluefaces_14.png
│   │   │   ├── bluefaces_15.png
│   │   │   ├── bluefaces_16.png
│   │   │   ├── bluefaces_17.png
│   │   │   ├── bluefaces_18.png
│   │   │   ├── bluefaces_19.png
│   │   │   ├── bluefaces_20.png
│   │   │   ├── bluefaces_21.png
│   │   │   ├── bluefaces_22.png
│   │   │   ├── bluefaces_23.png
│   │   │   ├── bluefaces_24.png
│   │   │   ├── bluefaces_25.png
│   │   │   ├── bluefaces_26.png
│   │   │   ├── bluefaces_27.png
│   │   │   ├── bluefaces_28.png
│   │   │   ├── bluefaces_29.png
│   │   │   ├── bluefaces_30.png
│   │   │   ├── bluefaces_31.png
│   │   │   ├── bluefaces_32.png
│   │   │   ├── bluefaces_33.png
│   │   │   ├── bluefaces_34.png
│   │   │   ├── bluefaces_35.png
│   │   │   ├── bluefaces_36.png
│   │   │   ├── bluefaces_37.png
│   │   │   ├── bluefaces_38.png
│   │   │   ├── bluefaces_39.png
│   │   │   ├── bluefaces_40.png
│   │   │   └── readme.html
│   │   ├── index
│   │   │   ├── bg.jpg
│   │   │   ├── line.jpg
│   │   │   ├── llogo.jpg
│   │   │   ├── llogo_old.jpg
│   │   │   ├── login.jpg
│   │   │   ├── ltitl-e.jpg
│   │   │   ├── ltitle.jpg
│   │   │   ├── ltitle_old.jpg
│   │   │   ├── ltop.jpg
│   │   │   └── reset.jpg
│   │   ├── jeecg.png
│   │   ├── loading1.gif
│   │   ├── loading.gif
│   │   ├── sshe.png
│   │   ├── toplogo_ok2.png
│   │   ├── toplogo_ok.png
│   │   ├── toplogo_old.png
│   │   └── toplogo.png
│   ├── main.css
│   ├── print.css
│   ├── report.css
│   └── syCss.css
├── deleteAndInit.jsp
├── error
│   ├── 404.jsp
│   ├── 500.jsp
│   ├── err.jsp
│   ├── globalError.jsp
│   ├── noAuth.jsp
│   ├── noFileAuth.jsp
│   ├── noSession.jsp
│   └── strutsException.jsp
├── error.htm
├── inc.jsp
├── index.jsp
├── init.jsp
├── isIe.jsp
├── js
│   └── py.js
├── jslib
│   ├── artDialog4.1.7
│   │   ├── artDialog.js
│   │   ├── artDialog.source.js
│   │   ├── _doc
│   │   │   ├── ajaxContent
│   │   │   │   ├── content.html
│   │   │   │   ├── content.json
│   │   │   │   ├── googleMaps.html
│   │   │   │   └── login.html
│   │   │   ├── API.html
│   │   │   ├── commercial_license.doc
│   │   │   ├── demo.css
│   │   │   ├── demo.js
│   │   │   ├── down.html
│   │   │   ├── frameset.html
│   │   │   ├── googleMaps.html
│   │   │   ├── helloWorld.html
│   │   │   ├── highlight
│   │   │   │   ├── AUTHORS.en.txt
│   │   │   │   ├── export.html
│   │   │   │   ├── highlight.js
│   │   │   │   ├── highlight.pack.js
│   │   │   │   ├── languages
│   │   │   │   │   └── javascript.js
│   │   │   │   ├── LICENSE
│   │   │   │   ├── readme.eng.txt
│   │   │   │   ├── styles
│   │   │   │   │   └── magula.css
│   │   │   │   └── test.html
│   │   │   ├── iframeA.html
│   │   │   ├── iframeB.html
│   │   │   ├── iframe_frameset.html
│   │   │   ├── iframe.html
│   │   │   ├── iframeTop.html
│   │   │   ├── images
│   │   │   │   ├── alipay.jpg
│   │   │   │   ├── bg.png
│   │   │   │   ├── bottom.png
│   │   │   │   ├── doc.png
│   │   │   │   ├── lixiaolong.png
│   │   │   │   ├── logo.png
│   │   │   │   ├── opensource.gif
│   │   │   │   ├── photo.jpg
│   │   │   │   └── text.png
│   │   │   ├── labs.html
│   │   │   ├── license.html
│   │   │   ├── log.html
│   │   │   ├── login_iframe_2.html
│   │   │   ├── login_iframe.html
│   │   │   ├── new.html
│   │   │   ├── plugin.iframe.html
│   │   │   ├── topFrame.html
│   │   │   └── upd.txt
│   │   ├── index.html
│   │   ├── jquery.artDialog.js
│   │   ├── jquery.artDialog.source.js
│   │   ├── license.txt
│   │   ├── plugins
│   │   │   ├── iframeTools.js
│   │   │   └── iframeTools.source.js
│   │   └── skins
│   │   ├── aero
│   │   │   ├── aero_s2.png
│   │   │   ├── aero_s.png
│   │   │   └── ie6
│   │   │   ├── aui_close.hover.png
│   │   │   ├── aui_close.png
│   │   │   ├── aui_e.png
│   │   │   ├── aui_ne.png
│   │   │   ├── aui_n.png
│   │   │   ├── aui_nw.png
│   │   │   ├── aui_se.png
│   │   │   ├── aui_s.png
│   │   │   ├── aui_sw.png
│   │   │   ├── aui_title_icon.png
│   │   │   └── aui_w.png
│   │   ├── aero.css
│   │   ├── black
│   │   │   ├── bg2.png
│   │   │   ├── bg_css3_2.png
│   │   │   ├── bg_css3.png
│   │   │   ├── bg.png
│   │   │   └── ie6
│   │   │   ├── close.hover.png
│   │   │   ├── close.png
│   │   │   ├── e.png
│   │   │   ├── ne.png
│   │   │   ├── n.png
│   │   │   ├── nw.png
│   │   │   ├── se.png
│   │   │   ├── s.png
│   │   │   ├── sw.png
│   │   │   └── w.png
│   │   ├── black.css
│   │   ├── blue
│   │   │   ├── bg2.png
│   │   │   ├── bg_css3_2.png
│   │   │   ├── bg_css3.png
│   │   │   ├── bg.png
│   │   │   └── ie6
│   │   │   ├── close.hover.png
│   │   │   ├── close.png
│   │   │   ├── e.png
│   │   │   ├── ne.png
│   │   │   ├── n.png
│   │   │   ├── nw.png
│   │   │   ├── se.png
│   │   │   ├── s.png
│   │   │   ├── sw.png
│   │   │   └── w.png
│   │   ├── blue.css
│   │   ├── chrome
│   │   │   ├── border.png
│   │   │   └── chrome_s.png
│   │   ├── chrome.css
│   │   ├── default.css
│   │   ├── green
│   │   │   ├── bg2.png
│   │   │   ├── bg_css3_2.png
│   │   │   ├── bg_css3.png
│   │   │   ├── bg.png
│   │   │   ├── color_bg.png
│   │   │   └── ie6
│   │   │   ├── close.hover.png
│   │   │   ├── close.png
│   │   │   ├── e.png
│   │   │   ├── ne.png
│   │   │   ├── n.png
│   │   │   ├── nw.png
│   │   │   ├── se.png
│   │   │   ├── s.png
│   │   │   ├── sw.png
│   │   │   └── w.png
│   │   ├── green.css
│   │   ├── icons
│   │   │   ├── error.png
│   │   │   ├── face-sad.png
│   │   │   ├── face-smile.png
│   │   │   ├── loading.gif
│   │   │   ├── question.png
│   │   │   ├── succeed.png
│   │   │   └── warning.png
│   │   ├── idialog
│   │   │   ├── idialog_s2.png
│   │   │   ├── idialog_s.png
│   │   │   └── ie6
│   │   │   ├── aui_close.hover.png
│   │   │   ├── aui_close.png
│   │   │   ├── aui_e.png
│   │   │   ├── aui_ne.png
│   │   │   ├── aui_n.png
│   │   │   ├── aui_nw.png
│   │   │   ├── aui_se.png
│   │   │   ├── aui_s.png
│   │   │   ├── aui_sw.png
│   │   │   └── aui_w.png
│   │   ├── idialog.css
│   │   ├── opera
│   │   │   ├── ie6
│   │   │   │   ├── aui_close.hover.png
│   │   │   │   ├── aui_close.png
│   │   │   │   ├── aui_e.png
│   │   │   │   ├── aui_ne.png
│   │   │   │   ├── aui_n.png
│   │   │   │   ├── aui_nw.png
│   │   │   │   ├── aui_se.png
│   │   │   │   ├── aui_s.png
│   │   │   │   ├── aui_sw.png
│   │   │   │   └── aui_w.png
│   │   │   ├── s1.png
│   │   │   └── s2.png
│   │   ├── opera.css
│   │   ├── simple.css
│   │   └── twitter.css
│   ├── datepicker
│   │   ├── calendar.js
│   │   ├── config.js
│   │   ├── lang
│   │   │   ├── en.js
│   │   │   ├── zh-cn.js
│   │   │   └── zh-tw.js
│   │   ├── My97DatePicker.htm
│   │   ├── skin
│   │   │   ├── datePicker.gif
│   │   │   ├── default
│   │   │   │   ├── datepicker.css
│   │   │   │   └── img.gif
│   │   │   ├── WdatePicker.css
│   │   │   └── whyGreen
│   │   │   ├── bg.jpg
│   │   │   ├── datepicker.css
│   │   │   └── img.gif
│   │   ├── vssver2.scc
│   │   └── WdatePicker.js
│   ├── install_lodop32.exe
│   ├── install_lodop64.exe
│   ├── jquery.cookie.js
│   ├── jquery-easyui-1.3
│   │   ├── changelog.txt
│   │   ├── demo
│   │   │   ├── accordion.html
│   │   │   ├── calendar.html
│   │   │   ├── combobox_data.json
│   │   │   ├── combobox.html
│   │   │   ├── combogrid.html
│   │   │   ├── combo.html
│   │   │   ├── combotree.html
│   │   │   ├── datagrid2.html
│   │   │   ├── datagrid3.html
│   │   │   ├── datagrid4.html
│   │   │   ├── datagrid5.html
│   │   │   ├── datagrid_data2.json
│   │   │   ├── datagrid_data3.json
│   │   │   ├── datagrid_data.json
│   │   │   ├── datagrid.html
│   │   │   ├── datebox.html
│   │   │   ├── datetimebox.html
│   │   │   ├── demo.css
│   │   │   ├── dialog.html
│   │   │   ├── draggable.html
│   │   │   ├── droppable1.html
│   │   │   ├── droppable2.html
│   │   │   ├── droppable.html
│   │   │   ├── easyloader.html
│   │   │   ├── form_data.json
│   │   │   ├── form.html
│   │   │   ├── layout1.html
│   │   │   ├── layout2.html
│   │   │   ├── layout.html
│   │   │   ├── linkbutton.html
│   │   │   ├── menubutton.html
│   │   │   ├── menu.html
│   │   │   ├── messager.html
│   │   │   ├── numberbox2.html
│   │   │   ├── numberbox.html
│   │   │   ├── numberspinner.html
│   │   │   ├── pagination.html
│   │   │   ├── panel2.html
│   │   │   ├── panel.html
│   │   │   ├── progressbar.html
│   │   │   ├── propertygrid_data.json
│   │   │   ├── propertygrid.html
│   │   │   ├── resizable.html
│   │   │   ├── searchbox.html
│   │   │   ├── slider.html
│   │   │   ├── splitbutton.html
│   │   │   ├── tabs_href_test.html
│   │   │   ├── tabs.html
│   │   │   ├── timespinner.html
│   │   │   ├── tree2.html
│   │   │   ├── tree_data.json
│   │   │   ├── treegrid2.html
│   │   │   ├── treegrid3.html
│   │   │   ├── treegrid_data2.json
│   │   │   ├── treegrid_data3.json
│   │   │   ├── treegrid_data.json
│   │   │   ├── treegrid.html
│   │   │   ├── treegrid_subdata.json
│   │   │   ├── tree.html
│   │   │   ├── validatebox.html
│   │   │   └── window.html
│   │   ├── easyloader.js
│   │   ├── jquery-1.8.0.min.js
│   │   ├── jquery.easyui.min.js
│   │   ├── licence_gpl.txt
│   │   ├── license_commercial.txt
│   │   ├── 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-it.js
│   │   │   ├── easyui-lang-nl.js
│   │   │   ├── easyui-lang-pt_BR.js
│   │   │   ├── easyui-lang-ru.js
│   │   │   ├── easyui-lang-tr.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.slider.js
│   │   │   ├── jquery.spinner.js
│   │   │   ├── jquery.splitbutton.js
│   │   │   ├── jquery.tabs.js
│   │   │   ├── jquery.timespinner.js
│   │   │   ├── jquery.treegrid.js
│   │   │   ├── jquery.tree.js
│   │   │   ├── jquery.validatebox.js
│   │   │   └── jquery.window.js
│   │   ├── readme.txt
│   │   ├── 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
│   │   ├── cupertino
│   │   │   ├── accordion.css
│   │   │   ├── calendar.css
│   │   │   ├── combobox.css
│   │   │   ├── combo.css
│   │   │   ├── datagrid.css
│   │   │   ├── datebox.css
│   │   │   ├── dialog.css
│   │   │   ├── easyui.css
│   │   │   ├── images
│   │   │   │   ├── blank.gif
│   │   │   │   ├── calendar_nextmonth.gif
│   │   │   │   ├── calendar_nextyear.gif
│   │   │   │   ├── calendar_prevmonth.gif
│   │   │   │   ├── calendar_prevyear.gif
│   │   │   │   ├── datagrid_row_collapse.gif
│   │   │   │   ├── datagrid_row_expand.gif
│   │   │   │   ├── datebox_arrow.png
│   │   │   │   ├── 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_loading.gif
│   │   │   │   ├── panel_loading.gif
│   │   │   │   ├── slider_handle.png
│   │   │   │   ├── tabs_close.gif
│   │   │   │   ├── tree_arrows.gif
│   │   │   │   ├── tree_checkbox_0.gif
│   │   │   │   ├── tree_checkbox_1.gif
│   │   │   │   ├── tree_checkbox_2.gif
│   │   │   │   ├── tree_dnd_no.png
│   │   │   │   ├── tree_dnd_yes.png
│   │   │   │   ├── tree_elbow.png
│   │   │   │   ├── tree_file.gif
│   │   │   │   ├── tree_folder.gif
│   │   │   │   ├── tree_folder_open.gif
│   │   │   │   ├── tree_loading.gif
│   │   │   │   ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png
│   │   │   │   ├── ui-bg_flat_15_cd0a0a_40x100.png
│   │   │   │   ├── ui-bg_glass_100_e4f1fb_1x400.png
│   │   │   │   ├── ui-bg_glass_50_3baae3_1x400.png
│   │   │   │   ├── ui-bg_glass_80_d7ebf9_1x400.png
│   │   │   │   ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png
│   │   │   │   ├── ui-bg_highlight-hard_70_000000_1x100.png
│   │   │   │   ├── ui-bg_highlight-soft_100_deedf7_1x100.png
│   │   │   │   ├── ui-bg_highlight-soft_25_ffef8f_1x100.png
│   │   │   │   ├── ui-icons_2694e8_256x240.png
│   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   ├── ui-icons_3d80b3_256x240.png
│   │   │   │   ├── ui-icons_72a7cf_256x240.png
│   │   │   │   ├── ui-icons_ffffff_256x240.png
│   │   │   │   ├── 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
│   │   │   ├── slider.css
│   │   │   ├── spinner.css
│   │   │   ├── splitbutton.css
│   │   │   ├── tabs.css
│   │   │   ├── tree.css
│   │   │   ├── validatebox.css
│   │   │   └── window.css
│   │   ├── dark-hive
│   │   │   ├── accordion.css
│   │   │   ├── calendar.css
│   │   │   ├── combobox.css
│   │   │   ├── combo.css
│   │   │   ├── datagrid.css
│   │   │   ├── datebox.css
│   │   │   ├── dialog.css
│   │   │   ├── easyui.css
│   │   │   ├── images
│   │   │   │   ├── blank.gif
│   │   │   │   ├── calendar_nextmonth.gif
│   │   │   │   ├── calendar_nextyear.gif
│   │   │   │   ├── calendar_prevmonth.gif
│   │   │   │   ├── calendar_prevyear.gif
│   │   │   │   ├── datagrid_row_collapse.gif
│   │   │   │   ├── datagrid_row_expand.gif
│   │   │   │   ├── datebox_arrow.png
│   │   │   │   ├── 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_loading.gif
│   │   │   │   ├── panel_loading.gif
│   │   │   │   ├── slider_handle.png
│   │   │   │   ├── tabs_close.gif
│   │   │   │   ├── tree_arrows.gif
│   │   │   │   ├── tree_checkbox_0.gif
│   │   │   │   ├── tree_checkbox_1.gif
│   │   │   │   ├── tree_checkbox_2.gif
│   │   │   │   ├── tree_dnd_no.png
│   │   │   │   ├── tree_dnd_yes.png
│   │   │   │   ├── tree_elbow.png
│   │   │   │   ├── tree_file.gif
│   │   │   │   ├── tree_folder.gif
│   │   │   │   ├── tree_folder_open.gif
│   │   │   │   ├── tree_loading.gif
│   │   │   │   ├── ui-bg_flat_30_cccccc_40x100.png
│   │   │   │   ├── ui-bg_flat_50_5c5c5c_40x100.png
│   │   │   │   ├── ui-bg_glass_40_ffc73d_1x400.png
│   │   │   │   ├── ui-bg_highlight-hard_20_0972a5_1x100.png
│   │   │   │   ├── ui-bg_highlight-soft_33_003147_1x100.png
│   │   │   │   ├── ui-bg_highlight-soft_35_222222_1x100.png
│   │   │   │   ├── ui-bg_highlight-soft_44_444444_1x100.png
│   │   │   │   ├── ui-bg_highlight-soft_80_eeeeee_1x100.png
│   │   │   │   ├── ui-bg_loop_25_000000_21x21.png
│   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   ├── ui-icons_4b8e0b_256x240.png
│   │   │   │   ├── ui-icons_a83300_256x240.png
│   │   │   │   ├── ui-icons_cccccc_256x240.png
│   │   │   │   ├── ui-icons_ffffff_256x240.png
│   │   │   │   ├── 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
│   │   │   ├── slider.css
│   │   │   ├── spinner.css
│   │   │   ├── splitbutton.css
│   │   │   ├── tabs.css
│   │   │   ├── tree.css
│   │   │   ├── validatebox.css
│   │   │   └── window.css
│   │   ├── default
│   │   │   ├── accordion.css
│   │   │   ├── calendar.css
│   │   │   ├── combobox.css
│   │   │   ├── combo.css
│   │   │   ├── datagrid.css
│   │   │   ├── datebox.css
│   │   │   ├── dialog.css
│   │   │   ├── easyui.css
│   │   │   ├── images
│   │   │   │   ├── accordion_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_arrows.png
│   │   │   │   ├── 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
│   │   │   │   ├── slider_handle.png
│   │   │   │   ├── spinner_arrow_down.gif
│   │   │   │   ├── spinner_arrow_up.gif
│   │   │   │   ├── tabs_active.png
│   │   │   │   ├── tabs_close.gif
│   │   │   │   ├── tabs_enabled.png
│   │   │   │   ├── tabs_leftarrow.png
│   │   │   │   ├── tabs_rightarrow.png
│   │   │   │   ├── tree_arrows.gif
│   │   │   │   ├── tree_checkbox_0.gif
│   │   │   │   ├── tree_checkbox_1.gif
│   │   │   │   ├── tree_checkbox_2.gif
│   │   │   │   ├── tree_dnd_no.png
│   │   │   │   ├── tree_dnd_yes.png
│   │   │   │   ├── tree_elbow.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
│   │   │   ├── slider.css
│   │   │   ├── spinner.css
│   │   │   ├── splitbutton.css
│   │   │   ├── tabs.css
│   │   │   ├── tree.css
│   │   │   ├── validatebox.css
│   │   │   └── window.css
│   │   ├── gray
│   │   │   ├── accordion.css
│   │   │   ├── calendar.css
│   │   │   ├── combobox.css
│   │   │   ├── combo.css
│   │   │   ├── datagrid.css
│   │   │   ├── datebox.css
│   │   │   ├── dialog.css
│   │   │   ├── easyui.css
│   │   │   ├── images
│   │   │   │   ├── accordion_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_arrows.png
│   │   │   │   ├── 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
│   │   │   │   ├── slider_handle.png
│   │   │   │   ├── spinner_arrow_down.gif
│   │   │   │   ├── spinner_arrow_up.gif
│   │   │   │   ├── tabs_close.gif
│   │   │   │   ├── tabs_enabled.gif
│   │   │   │   ├── tabs_leftarrow.png
│   │   │   │   ├── tabs_rightarrow.png
│   │   │   │   ├── tree_arrows.gif
│   │   │   │   ├── tree_checkbox_0.gif
│   │   │   │   ├── tree_checkbox_1.gif
│   │   │   │   ├── tree_checkbox_2.gif
│   │   │   │   ├── tree_dnd_no.png
│   │   │   │   ├── tree_dnd_yes.png
│   │   │   │   ├── tree_elbow.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
│   │   │   ├── slider.css
│   │   │   ├── spinner.css
│   │   │   ├── splitbutton.css
│   │   │   ├── tabs.css
│   │   │   ├── tree.css
│   │   │   ├── validatebox.css
│   │   │   └── window.css
│   │   ├── icon.css
│   │   ├── icons
│   │   │   ├── annex.png
│   │   │   ├── back.png
│   │   │   ├── bar.png
│   │   │   ├── bingtu.png
│   │   │   ├── blank.gif
│   │   │   ├── bluepad.png
│   │   │   ├── calculator.png
│   │   │   ├── calendar.png
│   │   │   ├── cancel.png
│   │   │   ├── ca.png
│   │   │   ├── config.png
│   │   │   ├── cut.png
│   │   │   ├── danren.png
│   │   │   ├── dingdan.png
│   │   │   ├── ding.png
│   │   │   ├── doll.png
│   │   │   ├── duotu.png
│   │   │   ├── earth.png
│   │   │   ├── edit_add.png
│   │   │   ├── edit_remove.png
│   │   │   ├── face.png
│   │   │   ├── filesave.png
│   │   │   ├── find.png
│   │   │   ├── golden.png
│   │   │   ├── goleft.png
│   │   │   ├── greenman.png
│   │   │   ├── group.png
│   │   │   ├── hard.png
│   │   │   ├── help.png
│   │   │   ├── hibox.png
│   │   │   ├── hi.png
│   │   │   ├── home.png
│   │   │   ├── ho.png
│   │   │   ├── hotel.png
│   │   │   ├── input.png
│   │   │   ├── key.png
│   │   │   ├── limit.png
│   │   │   ├── lock.png
│   │   │   ├── love.png
│   │   │   ├── man.png
│   │   │   ├── mini_add.png
│   │   │   ├── mini_edit.png
│   │   │   ├── mini_refresh3.png
│   │   │   ├── mini_refresh.png
│   │   │   ├── mouse.png
│   │   │   ├── newdan.png
│   │   │   ├── no.png
│   │   │   ├── offer.png
│   │   │   ├── ok.png
│   │   │   ├── order.png
│   │   │   ├── pass.png
│   │   │   ├── pencil_2.png
│   │   │   ├── pencil.png
│   │   │   ├── pen.png
│   │   │   ├── print_2.png
│   │   │   ├── print.png
│   │   │   ├── quxian.png
│   │   │   ├── redo.png
│   │   │   ├── reload.png
│   │   │   ├── rmb.png
│   │   │   ├── road.png
│   │   │   ├── sandian.png
│   │   │   ├── sealhui.png
│   │   │   ├── seal.png
│   │   │   ├── search.png
│   │   │   ├── sheek.png
│   │   │   ├── special.png
│   │   │   ├── star.png
│   │   │   ├── stgoup.png
│   │   │   ├── sum.png
│   │   │   ├── talk.png
│   │   │   ├── task.png
│   │   │   ├── tip.png
│   │   │   ├── undo.png
│   │   │   ├── users.png
│   │   │   ├── yi.png
│   │   │   ├── yuanadd.png
│   │   │   ├── zheng.png
│   │   │   ├── zhu.png
│   │   │   └── 复件 (2) calculator.png
│   │   ├── metro
│   │   │   ├── 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
│   │   │   │   ├── calendar_nextmonth.gif
│   │   │   │   ├── calendar_nextyear.gif
│   │   │   │   ├── calendar_prevmonth.gif
│   │   │   │   ├── calendar_prevyear.gif
│   │   │   │   ├── combo_arrow.gif
│   │   │   │   ├── datagrid_row_collapse.gif
│   │   │   │   ├── datagrid_row_expand.gif
│   │   │   │   ├── datagrid_sort_asc.gif
│   │   │   │   ├── datagrid_sort_desc.gif
│   │   │   │   ├── datebox_arrow.png
│   │   │   │   ├── layout_arrows.png
│   │   │   │   ├── menu_downarrow.png
│   │   │   │   ├── 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_tools.gif
│   │   │   │   ├── searchbox_button.png
│   │   │   │   ├── slider_handle.png
│   │   │   │   ├── tabs_close.gif
│   │   │   │   ├── tabs_leftarrow.png
│   │   │   │   ├── tabs_rightarrow.png
│   │   │   │   ├── tree_arrows.gif
│   │   │   │   ├── tree_checkbox_0.gif
│   │   │   │   ├── tree_checkbox_1.gif
│   │   │   │   ├── tree_checkbox_2.gif
│   │   │   │   ├── tree_dnd_no.png
│   │   │   │   ├── tree_dnd_yes.png
│   │   │   │   ├── tree_elbow.png
│   │   │   │   ├── tree_file.gif
│   │   │   │   ├── tree_folder.gif
│   │   │   │   ├── tree_folder_open.gif
│   │   │   │   ├── tree_loading.gif
│   │   │   │   └── validatebox_warning.png
│   │   │   ├── layout.css
│   │   │   ├── linkbutton.css
│   │   │   ├── menubutton.css
│   │   │   ├── menu.css
│   │   │   ├── messager.css
│   │   │   ├── pagination.css
│   │   │   ├── panel.css
│   │   │   ├── progressbar.css
│   │   │   ├── propertygrid.css
│   │   │   ├── searchbox.css
│   │   │   ├── slider.css
│   │   │   ├── splitbutton.css
│   │   │   ├── tabs.css
│   │   │   ├── tree.css
│   │   │   ├── validatebox.css
│   │   │   └── window.css
│   │   ├── pepper-grinder
│   │   │   ├── accordion.css
│   │   │   ├── calendar.css
│   │   │   ├── combobox.css
│   │   │   ├── combo.css
│   │   │   ├── datagrid.css
│   │   │   ├── datebox.css
│   │   │   ├── dialog.css
│   │   │   ├── easyui.css
│   │   │   ├── images
│   │   │   │   ├── blank.gif
│   │   │   │   ├── calendar_nextmonth.gif
│   │   │   │   ├── calendar_nextyear.gif
│   │   │   │   ├── calendar_prevmonth.gif
│   │   │   │   ├── calendar_prevyear.gif
│   │   │   │   ├── datagrid_row_collapse.gif
│   │   │   │   ├── datagrid_row_expand.gif
│   │   │   │   ├── datebox_arrow.png
│   │   │   │   ├── 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_loading.gif
│   │   │   │   ├── panel_loading.gif
│   │   │   │   ├── slider_handle.png
│   │   │   │   ├── tabs_close.gif
│   │   │   │   ├── tree_arrows.gif
│   │   │   │   ├── tree_checkbox_0.gif
│   │   │   │   ├── tree_checkbox_1.gif
│   │   │   │   ├── tree_checkbox_2.gif
│   │   │   │   ├── tree_dnd_no.png
│   │   │   │   ├── tree_dnd_yes.png
│   │   │   │   ├── tree_elbow.png
│   │   │   │   ├── tree_file.gif
│   │   │   │   ├── tree_folder.gif
│   │   │   │   ├── tree_folder_open.gif
│   │   │   │   ├── tree_loading.gif
│   │   │   │   ├── ui-bg_diagonal-maze_20_6e4f1c_10x10.png
│   │   │   │   ├── ui-bg_diagonal-maze_40_000000_10x10.png
│   │   │   │   ├── ui-bg_fine-grain_10_eceadf_60x60.png
│   │   │   │   ├── ui-bg_fine-grain_10_f8f7f6_60x60.png
│   │   │   │   ├── ui-bg_fine-grain_15_eceadf_60x60.png
│   │   │   │   ├── ui-bg_fine-grain_15_f7f3de_60x60.png
│   │   │   │   ├── ui-bg_fine-grain_15_ffffff_60x60.png
│   │   │   │   ├── ui-bg_fine-grain_65_654b24_60x60.png
│   │   │   │   ├── ui-bg_fine-grain_68_b83400_60x60.png
│   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   ├── ui-icons_3572ac_256x240.png
│   │   │   │   ├── ui-icons_8c291d_256x240.png
│   │   │   │   ├── ui-icons_b83400_256x240.png
│   │   │   │   ├── ui-icons_fbdb93_256x240.png
│   │   │   │   ├── ui-icons_ffffff_256x240.png
│   │   │   │   ├── 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
│   │   │   ├── slider.css
│   │   │   ├── spinner.css
│   │   │   ├── splitbutton.css
│   │   │   ├── tabs.css
│   │   │   ├── tree.css
│   │   │   ├── validatebox.css
│   │   │   └── window.css
│   │   └── sunny
│   │   ├── accordion.css
│   │   ├── calendar.css
│   │   ├── combobox.css
│   │   ├── combo.css
│   │   ├── datagrid.css
│   │   ├── datebox.css
│   │   ├── dialog.css
│   │   ├── easyui.css
│   │   ├── images
│   │   │   ├── blank.gif
│   │   │   ├── calendar_nextmonth.gif
│   │   │   ├── calendar_nextyear.gif
│   │   │   ├── calendar_prevmonth.gif
│   │   │   ├── calendar_prevyear.gif
│   │   │   ├── datagrid_row_collapse.gif
│   │   │   ├── datagrid_row_expand.gif
│   │   │   ├── datebox_arrow.png
│   │   │   ├── 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_loading.gif
│   │   │   ├── panel_loading.gif
│   │   │   ├── slider_handle.png
│   │   │   ├── tabs_close.gif
│   │   │   ├── tree_arrows.gif
│   │   │   ├── tree_checkbox_0.gif
│   │   │   ├── tree_checkbox_1.gif
│   │   │   ├── tree_checkbox_2.gif
│   │   │   ├── tree_dnd_no.png
│   │   │   ├── tree_dnd_yes.png
│   │   │   ├── tree_elbow.png
│   │   │   ├── tree_file.gif
│   │   │   ├── tree_folder.gif
│   │   │   ├── tree_folder_open.gif
│   │   │   ├── tree_loading.gif
│   │   │   ├── ui-bg_diagonals-medium_20_d34d17_40x40.png
│   │   │   ├── ui-bg_flat_30_cccccc_40x100.png
│   │   │   ├── ui-bg_flat_50_5c5c5c_40x100.png
│   │   │   ├── ui-bg_gloss-wave_45_817865_500x100.png
│   │   │   ├── ui-bg_gloss-wave_60_fece2f_500x100.png
│   │   │   ├── ui-bg_gloss-wave_70_ffdd57_500x100.png
│   │   │   ├── ui-bg_gloss-wave_90_fff9e5_500x100.png
│   │   │   ├── ui-bg_highlight-soft_100_feeebd_1x100.png
│   │   │   ├── ui-bg_inset-soft_30_ffffff_1x100.png
│   │   │   ├── ui-icons_3d3d3d_256x240.png
│   │   │   ├── ui-icons_bd7b00_256x240.png
│   │   │   ├── ui-icons_d19405_256x240.png
│   │   │   ├── ui-icons_eb990f_256x240.png
│   │   │   ├── ui-icons_ed9f26_256x240.png
│   │   │   ├── ui-icons_fadc7a_256x240.png
│   │   │   ├── ui-icons_ffe180_256x240.png
│   │   │   ├── 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
│   │   ├── slider.css
│   │   ├── spinner.css
│   │   ├── splitbutton.css
│   │   ├── tabs.css
│   │   ├── tree.css
│   │   ├── validatebox.css
│   │   └── window.css
│   ├── jquery-easyui-portal
│   │   ├── datagrid_data.json
│   │   ├── jquery.portal.js
│   │   ├── portal.css
│   │   └── portal.html
│   ├── LodopFuncs.js
│   ├── syUtil.js
│   ├── Validform_v5.3.1
│   │   ├── Validform_v5.3.1
│   │   │   ├── demo
│   │   │   │   ├── ajax_post.php
│   │   │   │   ├── css
│   │   │   │   │   ├── demo.css
│   │   │   │   │   ├── style.css
│   │   │   │   │   └── wp-syntax.css
│   │   │   │   ├── images
│   │   │   │   │   ├── arrow1.gif
│   │   │   │   │   ├── arrow2.gif
│   │   │   │   │   ├── error.png
│   │   │   │   │   ├── header-bg.gif
│   │   │   │   │   ├── navbg.gif
│   │   │   │   │   ├── onLoad.gif
│   │   │   │   │   ├── right.png
│   │   │   │   │   └── totop.png
│   │   │   │   ├── js
│   │   │   │   │   ├── jquery-1.9.1.min.js
│   │   │   │   │   ├── Validform_v5.3.1.js
│   │   │   │   │   ├── Validform_v5.3.1_min.js
│   │   │   │   │   └── Validform_v5.3.1_ncr_min.js
│   │   │   │   ├── plugin
│   │   │   │   │   ├── datePicker
│   │   │   │   │   │   ├── datePicker.css
│   │   │   │   │   │   ├── datePicker-min.css
│   │   │   │   │   │   ├── jquery.bgiframe.min.js
│   │   │   │   │   │   ├── jquery.datePicker.js
│   │   │   │   │   │   └── jquery.datePicker-min.js
│   │   │   │   │   ├── jqtransform
│   │   │   │   │   │   ├── img
│   │   │   │   │   │   │   ├── btn_left.gif
│   │   │   │   │   │   │   ├── btn_right.gif
│   │   │   │   │   │   │   ├── checkbox.gif
│   │   │   │   │   │   │   ├── input
│   │   │   │   │   │   │   │   ├── input_left-focus.gif
│   │   │   │   │   │   │   │   ├── input_left.gif
│   │   │   │   │   │   │   │   ├── input_left-hover.gif
│   │   │   │   │   │   │   │   ├── input_right-focus.gif
│   │   │   │   │   │   │   │   ├── input_right.gif
│   │   │   │   │   │   │   │   ├── input_right-hover.gif
│   │   │   │   │   │   │   │   ├── input_text_left.gif
│   │   │   │   │   │   │   │   └── input_text_right.gif
│   │   │   │   │   │   │   ├── radio.gif
│   │   │   │   │   │   │   ├── select_left.gif
│   │   │   │   │   │   │   ├── select_right.gif
│   │   │   │   │   │   │   └── textarea
│   │   │   │   │   │   │   ├── notneeded
│   │   │   │   │   │   │   │   ├── textarea-bl-focus.gif
│   │   │   │   │   │   │   │   ├── textarea-bl.gif
│   │   │   │   │   │   │   │   ├── textarea-bl-hover.gif
│   │   │   │   │   │   │   │   ├── textarea-bm-focus.gif
│   │   │   │   │   │   │   │   ├── textarea-bm.gif
│   │   │   │   │   │   │   │   ├── textarea-bm-hover.gif
│   │   │   │   │   │   │   │   ├── textarea-br-focus.gif
│   │   │   │   │   │   │   │   ├── textarea-br.gif
│   │   │   │   │   │   │   │   ├── textarea-br-hover.gif
│   │   │   │   │   │   │   │   ├── textarea-ml-focus.gif
│   │   │   │   │   │   │   │   ├── textarea-ml.gif
│   │   │   │   │   │   │   │   ├── textarea-ml-hover.gif
│   │   │   │   │   │   │   │   ├── textarea-mm-focus.gif
│   │   │   │   │   │   │   │   ├── textarea-mm.gif
│   │   │   │   │   │   │   │   ├── textarea-mm-hover.gif
│   │   │   │   │   │   │   │   ├── textarea-mr-focus.gif
│   │   │   │   │   │   │   │   ├── textarea-mr.gif
│   │   │   │   │   │   │   │   ├── textarea-mr-hover.gif
│   │   │   │   │   │   │   │   ├── textarea-tl-focus.gif
│   │   │   │   │   │   │   │   ├── textarea-tl.gif
│   │   │   │   │   │   │   │   ├── textarea-tl-hover.gif
│   │   │   │   │   │   │   │   ├── textarea-tm-focus.gif
│   │   │   │   │   │   │   │   ├── textarea-tm.gif
│   │   │   │   │   │   │   │   ├── textarea-tm-hover.gif
│   │   │   │   │   │   │   │   ├── textarea-tr-focus.gif
│   │   │   │   │   │   │   │   ├── textarea-tr.gif
│   │   │   │   │   │   │   │   └── textarea-tr-hover.gif
│   │   │   │   │   │   │   ├── textarea_bl.gif
│   │   │   │   │   │   │   ├── textarea_bm.gif
│   │   │   │   │   │   │   ├── textarea_br.gif
│   │   │   │   │   │   │   ├── textarea_ml.gif
│   │   │   │   │   │   │   ├── textarea-mm-focus.gif
│   │   │   │   │   │   │   ├── textarea-mm.gif
│   │   │   │   │   │   │   ├── textarea-mm-hover.gif
│   │   │   │   │   │   │   ├── textarea_mr.gif
│   │   │   │   │   │   │   ├── textarea_tl.gif
│   │   │   │   │   │   │   ├── textarea_tm.gif
│   │   │   │   │   │   │   └── textarea_tr.gif
│   │   │   │   │   │   ├── jqtransform.css
│   │   │   │   │   │   ├── jquery.jqtransform.js
│   │   │   │   │   │   └── jquery.jqtransform-min.js
│   │   │   │   │   ├── passwordStrength
│   │   │   │   │   │   ├── passwordStrength.js
│   │   │   │   │   │   └── passwordStrength-min.js
│   │   │   │   │   └── swfupload
│   │   │   │   │   ├── swfuploadbutton.swf
│   │   │   │   │   ├── swfupload.queue.js
│   │   │   │   │   ├── swfupload.queue-min.js
│   │   │   │   │   ├── swfupload.swf
│   │   │   │   │   ├── swfuploadv2.2.js
│   │   │   │   │   ├── swfuploadv2.2-min.js
│   │   │   │   │   ├── thanks.php
│   │   │   │   │   ├── upload.php
│   │   │   │   │   ├── Validform.swfupload.handler.js
│   │   │   │   │   ├── Validform.swfupload.handler-min.js
│   │   │   │   │   └── XPButtonUploadText_61x22.png
│   │   │   │   └── valid.php
│   │   │   ├── demo.html
│   │   │   ├── demo_normal_ajaxPost.html
│   │   │   ├── demo_normal_andeither.html
│   │   │   ├── demo_normal_autotip.html
│   │   │   ├── demo_normal_btnSubmit.html
│   │   │   ├── demo_normal_callback.html
│   │   │   ├── demo_normal_datatype_errormsg.html
│   │   │   ├── demo_normal_datatype.html
│   │   │   ├── demo_normal_datatype_idcard.html
│   │   │   ├── demo_normal_datatype_maxmin.html
│   │   │   ├── demo_normal_eitheror.html
│   │   │   ├── demo_normal_ignoreHidden.html
│   │   │   ├── demo_normal_ignore.html
│   │   │   ├── demo_normal_notable.html
│   │   │   ├── demo_normal_postonce.html
│   │   │   ├── demo_normal_recheck.html
│   │   │   ├── demo_normal_regexp.html
│   │   │   ├── demo_normal_showAllError.html
│   │   │   ├── demo_normal_tipmsg.html
│   │   │   ├── demo_normal_username.html
│   │   │   ├── demo_normal_validformObject.html
│   │   │   ├── demo_tiptype_fixPosition.html
│   │   │   ├── demo_tiptype_onfocusFadeIn.html
│   │   │   ├── demo_tiptype_onfocus.html
│   │   │   ├── demo_tiptype_pop.html
│   │   │   ├── demo_tiptype_sideNonePop.html
│   │   │   ├── demo_tiptype_sidetip.html
│   │   │   ├── demo_tiptype_tipCustom.html
│   │   │   ├── demo_usePlugin_datePickerCallback.html
│   │   │   ├── demo_usePlugin_datePickerDefault.html
│   │   │   ├── demo_usePlugin_jqtransformAssign.html
│   │   │   ├── demo_usePlugin_jqtransformDefault.html
│   │   │   ├── demo_usePlugin_strengthAlways.html
│   │   │   ├── demo_usePlugin_strengthNeeded.html
│   │   │   ├── demo_usePlugin_uploadAtOnce.html
│   │   │   ├── demo_usePlugin_uploadWhenValid.html
│   │   │   ├── document.html
│   │   │   └── help.html
│   │   ├── Validform_v5.3.1.css
│   │   ├── Validform_v5.3.1.js
│   │   ├── Validform_v5.3.1_min.js
│   │   └── Validform_v5.3.1_ncr_min.js
│   ├── wdScrollTab
│   │   ├── css
│   │   │   └── TabPanel.css
│   │   ├── docs
│   │   │   ├── css
│   │   │   │   ├── dbx.css
│   │   │   │   ├── dbx.js
│   │   │   │   ├── dbx-key.js
│   │   │   │   ├── geshi.css
│   │   │   │   ├── home-icon-trans.png
│   │   │   │   ├── iblog2.png
│   │   │   │   ├── navgrad-active.png
│   │   │   │   ├── navgrad-down.png
│   │   │   │   ├── navgrad-hover.png
│   │   │   │   ├── print.css
│   │   │   │   ├── shared.css
│   │   │   │   ├── style.css
│   │   │   │   └── treedata.js
│   │   │   └── index.htm
│   │   ├── image
│   │   │   ├── all.gif
│   │   │   ├── delete.gif
│   │   │   ├── edit.gif
│   │   │   ├── linked.gif
│   │   │   ├── new.gif
│   │   │   ├── read-n.gif
│   │   │   ├── read-y.gif
│   │   │   ├── role-setup.gif
│   │   │   ├── save.gif
│   │   │   ├── search.gif
│   │   │   ├── sended.gif
│   │   │   ├── send.gif
│   │   │   └── TabPanel
│   │   │   ├── scroll-left.gif
│   │   │   ├── scroll-right.gif
│   │   │   ├── tab-bg-active.gif
│   │   │   ├── tab-bg.gif
│   │   │   ├── tab-close.gif
│   │   │   └── tab-content-bg.gif
│   │   ├── lgpl.html
│   │   ├── readme
│   │   ├── sample.htm
│   │   └── src
│   │   ├── jquery.js
│   │   └── Plugins
│   │   ├── Fader.js
│   │   ├── Math.uuid.js
│   │   └── TabPanel.js
│   └── xheditor-1.1.14
│   ├── CHANGE.txt
│   ├── demos
│   │   ├── common.css
│   │   ├── demo01.html
│   │   ├── demo02.html
│   │   ├── demo03.html
│   │   ├── demo04.html
│   │   ├── demo05.html
│   │   ├── demo06.html
│   │   ├── demo07.html
│   │   ├── demo08.html
│   │   ├── demo09.html
│   │   ├── demo10.html
│   │   ├── demo11.html
│   │   ├── demo12.html
│   │   ├── googlemap
│   │   │   ├── googlemap.html
│   │   │   ├── googlemap.js
│   │   │   └── map.gif
│   │   ├── img
│   │   │   ├── plugin.gif
│   │   │   ├── tabbgl.gif
│   │   │   ├── tabbgr.gif
│   │   │   ├── xheditorbg.gif
│   │   │   └── xheditor.gif
│   │   ├── index.html
│   │   ├── mediaplayer
│   │   │   ├── flv.gif
│   │   │   └── player.swf
│   │   ├── prettify
│   │   │   ├── code.gif
│   │   │   ├── lang-apollo.js
│   │   │   ├── lang-hs.js
│   │   │   ├── lang-lisp.js
│   │   │   ├── lang-lua.js
│   │   │   ├── lang-ml.js
│   │   │   ├── lang-proto.js
│   │   │   ├── lang-scala.js
│   │   │   ├── lang-sql.js
│   │   │   ├── lang-vhdl.js
│   │   │   ├── lang-wiki.js
│   │   │   ├── lang-yaml.js
│   │   │   ├── prettify.css
│   │   │   └── prettify.js
│   │   ├── saveremoteimg.asp
│   │   ├── saveremoteimg.aspx
│   │   ├── saveremoteimg.php
│   │   ├── show.php
│   │   ├── showplugin.php
│   │   ├── showubb.asp
│   │   ├── showubb.php
│   │   ├── test.swf
│   │   ├── upload
│   │   ├── upload.asp
│   │   ├── upload.aspx
│   │   ├── uploadattach.php
│   │   ├── uploadembed.php
│   │   ├── uploadgui.php
│   │   ├── uploadguiupload.php
│   │   ├── upload.php
│   │   ├── uploadthumb.php
│   │   └── uptest.html
│   ├── jquery
│   │   ├── jquery-1.4.4.min.js
│   │   └── jquery-1.4.4.src.js
│   ├── LGPL-LICENSE.txt
│   ├── README.txt
│   ├── serverscript
│   │   ├── asp
│   │   │   └── ubb2html.asp
│   │   └── php
│   │   └── ubb2html.php
│   ├── src
│   │   ├── ubb.js
│   │   ├── xheditor-1.1.14-en.js
│   │   ├── xheditor-1.1.14-zh-cn.js
│   │   └── xheditor-1.1.14-zh-tw.js
│   ├── THANKS.txt
│   ├── wizard.html
│   ├── xheditor-1.1.14-en.min.js
│   ├── xheditor-1.1.14-zh-cn.min.js
│   ├── xheditor-1.1.14-zh-tw.min.js
│   ├── xheditor_emot
│   │   ├── default
│   │   │   ├── angry.gif
│   │   │   ├── awkward.gif
│   │   │   ├── bye.gif
│   │   │   ├── config.txt
│   │   │   ├── crazy.gif
│   │   │   ├── cry.gif
│   │   │   ├── curse.gif
│   │   │   ├── cute.gif
│   │   │   ├── despise.gif
│   │   │   ├── doubt.gif
│   │   │   ├── envy.gif
│   │   │   ├── fastcry.gif
│   │   │   ├── knock.gif
│   │   │   ├── laugh.gif
│   │   │   ├── mad.gif
│   │   │   ├── ohmy.gif
│   │   │   ├── panic.gif
│   │   │   ├── proud.gif
│   │   │   ├── quiet.gif
│   │   │   ├── sad.gif
│   │   │   ├── shutup.gif
│   │   │   ├── shy.gif
│   │   │   ├── sleep.gif
│   │   │   ├── smile.gif
│   │   │   ├── struggle.gif
│   │   │   ├── titter.gif
│   │   │   ├── tongue.gif
│   │   │   ├── wail.gif
│   │   │   └── wronged.gif
│   │   ├── ipb
│   │   │   ├── alien.gif
│   │   │   ├── angel.gif
│   │   │   ├── angry.gif
│   │   │   ├── bandit.gif
│   │   │   ├── biglaugh.gif
│   │   │   ├── blink.gif
│   │   │   ├── blush.gif
│   │   │   ├── config.txt
│   │   │   ├── cool.gif
│   │   │   ├── cry.gif
│   │   │   ├── depres.gif
│   │   │   ├── devil.gif
│   │   │   ├── glare.gif
│   │   │   ├── heart.gif
│   │   │   ├── joyful.gif
│   │   │   ├── kiss.gif
│   │   │   ├── laugh.gif
│   │   │   ├── magician.gif
│   │   │   ├── ninja.gif
│   │   │   ├── pinch.gif
│   │   │   ├── police.gif
│   │   │   ├── sad.gif
│   │   │   ├── sick.gif
│   │   │   ├── sideways.gif
│   │   │   ├── sleep.gif
│   │   │   ├── smile.gif
│   │   │   ├── surprised.gif
│   │   │   ├── tongue.gif
│   │   │   ├── unsure.gif
│   │   │   ├── w00t.gif
│   │   │   ├── whistling.gif
│   │   │   ├── wondering.gif
│   │   │   └── wub.gif
│   │   ├── msn
│   │   │   ├── 10.gif
│   │   │   ├── 11.gif
│   │   │   ├── 12.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
│   │   │   ├── 4.gif
│   │   │   ├── 5.gif
│   │   │   ├── 6.gif
│   │   │   ├── 7.gif
│   │   │   ├── 8.gif
│   │   │   └── 9.gif
│   │   └── pidgin
│   │   ├── angry.gif
│   │   ├── bad.gif
│   │   ├── blush.gif
│   │   ├── brokenheart.gif
│   │   ├── bye.gif
│   │   ├── coffee.gif
│   │   ├── config.txt
│   │   ├── cool.gif
│   │   ├── cry.gif
│   │   ├── curse.gif
│   │   ├── cute.gif
│   │   ├── devil.gif
│   │   ├── envy.gif
│   │   ├── gift.gif
│   │   ├── good.gif
│   │   ├── kiss.gif
│   │   ├── laugh.gif
│   │   ├── love.gif
│   │   ├── music.gif
│   │   ├── question.gif
│   │   ├── rose.gif
│   │   ├── sad.gif
│   │   ├── shocked.gif
│   │   ├── shout.gif
│   │   ├── sick.gif
│   │   ├── sleepy.gif
│   │   ├── smile.gif
│   │   ├── soccer.gif
│   │   ├── sweat.gif
│   │   ├── tired.gif
│   │   ├── tongue.gif
│   │   ├── victory.gif
│   │   └── wink.gif
│   ├── xheditor_plugins
│   │   ├── multiupload
│   │   │   ├── img
│   │   │   │   ├── add.gif
│   │   │   │   ├── bg1.gif
│   │   │   │   ├── bg2.gif
│   │   │   │   ├── btnbg.gif
│   │   │   │   ├── btnbgr.gif
│   │   │   │   ├── clear.gif
│   │   │   │   ├── progressbg.gif
│   │   │   │   └── start.gif
│   │   │   ├── multiupload.css
│   │   │   ├── multiupload.html
│   │   │   ├── multiupload.js
│   │   │   └── swfupload
│   │   │   ├── swfupload.js
│   │   │   └── swfupload.swf
│   │   └── ubb.min.js
│   └── xheditor_skin
│   ├── blank.gif
│   ├── default
│   │   ├── iframe.css
│   │   ├── img
│   │   │   ├── anchor.gif
│   │   │   ├── close.gif
│   │   │   ├── flash.gif
│   │   │   ├── icons.gif
│   │   │   ├── loading.gif
│   │   │   ├── progressbg.gif
│   │   │   ├── progress.gif
│   │   │   ├── tag-address.gif
│   │   │   ├── tag-div.gif
│   │   │   ├── tag-h1.gif
│   │   │   ├── tag-h2.gif
│   │   │   ├── tag-h3.gif
│   │   │   ├── tag-h4.gif
│   │   │   ├── tag-h5.gif
│   │   │   ├── tag-h6.gif
│   │   │   ├── tag-p.gif
│   │   │   ├── tag-pre.gif
│   │   │   ├── waiting.gif
│   │   │   ├── wmp.gif
│   │   │   └── wordimg.gif
│   │   └── ui.css
│   ├── nostyle
│   │   ├── iframe.css
│   │   ├── img
│   │   │   ├── anchor.gif
│   │   │   ├── close.gif
│   │   │   ├── flash.gif
│   │   │   ├── icons.gif
│   │   │   ├── loading.gif
│   │   │   ├── progressbg.gif
│   │   │   ├── progress.gif
│   │   │   ├── tag-address.gif
│   │   │   ├── tag-div.gif
│   │   │   ├── tag-h1.gif
│   │   │   ├── tag-h2.gif
│   │   │   ├── tag-h3.gif
│   │   │   ├── tag-h4.gif
│   │   │   ├── tag-h5.gif
│   │   │   ├── tag-h6.gif
│   │   │   ├── tag-p.gif
│   │   │   ├── tag-pre.gif
│   │   │   ├── waiting.gif
│   │   │   ├── wmp.gif
│   │   │   └── wordimg.gif
│   │   └── ui.css
│   ├── o2007blue
│   │   ├── iframe.css
│   │   ├── img
│   │   │   ├── anchor.gif
│   │   │   ├── buttonbg.gif
│   │   │   ├── close.gif
│   │   │   ├── flash.gif
│   │   │   ├── icons.gif
│   │   │   ├── loading.gif
│   │   │   ├── progressbg.gif
│   │   │   ├── progress.gif
│   │   │   ├── tag-address.gif
│   │   │   ├── tag-div.gif
│   │   │   ├── tag-h1.gif
│   │   │   ├── tag-h2.gif
│   │   │   ├── tag-h3.gif
│   │   │   ├── tag-h4.gif
│   │   │   ├── tag-h5.gif
│   │   │   ├── tag-h6.gif
│   │   │   ├── tag-p.gif
│   │   │   ├── tag-pre.gif
│   │   │   ├── waiting.gif
│   │   │   ├── wmp.gif
│   │   │   └── wordimg.gif
│   │   └── ui.css
│   ├── o2007silver
│   │   ├── iframe.css
│   │   ├── img
│   │   │   ├── anchor.gif
│   │   │   ├── buttonbg.gif
│   │   │   ├── close.gif
│   │   │   ├── flash.gif
│   │   │   ├── icons.gif
│   │   │   ├── loading.gif
│   │   │   ├── progressbg.gif
│   │   │   ├── progress.gif
│   │   │   ├── tag-address.gif
│   │   │   ├── tag-div.gif
│   │   │   ├── tag-h1.gif
│   │   │   ├── tag-h2.gif
│   │   │   ├── tag-h3.gif
│   │   │   ├── tag-h4.gif
│   │   │   ├── tag-h5.gif
│   │   │   ├── tag-h6.gif
│   │   │   ├── tag-p.gif
│   │   │   ├── tag-pre.gif
│   │   │   ├── waiting.gif
│   │   │   ├── wmp.gif
│   │   │   └── wordimg.gif
│   │   └── ui.css
│   └── vista
│   ├── iframe.css
│   ├── img
│   │   ├── anchor.gif
│   │   ├── buttonbg.gif
│   │   ├── close.gif
│   │   ├── flash.gif
│   │   ├── icons.gif
│   │   ├── loading.gif
│   │   ├── progressbg.gif
│   │   ├── progress.gif
│   │   ├── tag-address.gif
│   │   ├── tag-div.gif
│   │   ├── tag-h1.gif
│   │   ├── tag-h2.gif
│   │   ├── tag-h3.gif
│   │   ├── tag-h4.gif
│   │   ├── tag-h5.gif
│   │   ├── tag-h6.gif
│   │   ├── tag-p.gif
│   │   ├── tag-pre.gif
│   │   ├── titlebg.gif
│   │   ├── waiting.gif
│   │   ├── wmp.gif
│   │   └── wordimg.gif
│   └── ui.css
├── layout
│   ├── center.jsp
│   ├── east.jsp
│   ├── easyuiDemo.jsp
│   ├── north.jsp
│   ├── portal
│   │   ├── about2.jsp
│   │   ├── about.jsp
│   │   ├── link.jsp
│   │   ├── qun.jsp
│   │   ├── repair2.jsp
│   │   └── repair.jsp
│   ├── portal.jsp
│   ├── south.jsp
│   └── west.jsp
├── login.jsp
├── main
│   ├── backup
│   │   └── kit-old.js
│   ├── css
│   │   ├── button.css
│   │   ├── checkbox.css
│   │   ├── combobox.css
│   │   ├── fieldset.css
│   │   ├── form.css
│   │   ├── kit.css
│   │   ├── list.css
│   │   ├── radio.css
│   │   ├── select.css
│   │   ├── suggestselect.css
│   │   ├── tablelock.css
│   │   ├── textarea.css
│   │   ├── textbox.css
│   │   └── widget
│   │   ├── Audio
│   │   │   ├── audio-controls.png
│   │   │   ├── audio.css
│   │   │   └── loading.gif
│   │   ├── DatePicker
│   │   │   └── datepicker.css
│   │   ├── Dialog
│   │   │   └── dialog.css
│   │   ├── Gallery
│   │   │   ├── 3D-gallery.css
│   │   │   └── gallery.css
│   │   ├── LightBox
│   │   │   └── lightbox.css
│   │   ├── TagInput
│   │   │   └── tagInput.css
│   │   └── TextLoading
│   │   └── textloading.css
│   ├── image
│   │   ├── A_delete.gif
│   │   ├── admin_left_1.gif
│   │   ├── admin_left_3.gif
│   │   ├── admin_left_4.gif
│   │   ├── admin_left_5.gif
│   │   ├── admin_left_6.gif
│   │   ├── admin_left_7.gif
│   │   ├── admin_left_9.gif
│   │   ├── admin_title.gif
│   │   ├── alt.gif
│   │   ├── alt.png
│   │   ├── bao.png
│   │   ├── bg1.gif
│   │   ├── bg2.gif
│   │   ├── blue_dot.png
│   │   ├── bottombg.gif
│   │   ├── calendar.gif
│   │   ├── cancel_32.png
│   │   ├── close.gif
│   │   ├── clsall.gif
│   │   ├── cls.gif
│   │   ├── confirm_32.png
│   │   ├── curve_b_l.gif
│   │   ├── curve_b_r[1].gif
│   │   ├── curve_b_r.gif
│   │   ├── curve_center.gif
│   │   ├── curve_t_l[1].gif
│   │   ├── curve_t_r[1].gif
│   │   ├── curve_t_r.gif
│   │   ├── db.png
│   │   ├── down.gif
│   │   ├── dz.png
│   │   ├── Edit_2.gif
│   │   ├── error.png
│   │   ├── forum_footer.gif
│   │   ├── forumHeaderBackgroundAlternate.gif
│   │   ├── forumHeaderBackground.gif
│   │   ├── green_dot.png
│   │   ├── img.gif
│   │   ├── jm.png
│   │   ├── jt.png
│   │   ├── laba.gif
│   │   ├── lan0.gif
│   │   ├── lan12.gif
│   │   ├── lan1.gif
│   │   ├── left.gif
│   │   ├── lighthiliteleft.gif
│   │   ├── lighthilitemid.gif
│   │   ├── lighthiliteright.gif
│   │   ├── lightnormleft.gif
│   │   ├── lightnormmid.gif
│   │   ├── lightnormright.gif
│   │   ├── lightpressedleft.gif
│   │   ├── lightpressedmid[1].gif
│   │   ├── lightpressedright.gif
│   │   ├── loading.gif
│   │   ├── LOW_LEFT.GIF
│   │   ├── low_mid[1].gif
│   │   ├── LOW_MID.GIF
│   │   ├── low_right.gif
│   │   ├── main.gif
│   │   ├── MID_LEFT.GIF
│   │   ├── mid_right.gif
│   │   ├── navspacer.gif
│   │   ├── no_dot.png
│   │   ├── nofollow.gif
│   │   ├── noprt.gif
│   │   ├── notice.gif
│   │   ├── ok.gif
│   │   ├── open.gif
│   │   ├── orange_dot.png
│   │   ├── plus.gif
│   │   ├── purple_dot.png
│   │   ├── red_dot.png
│   │   ├── right.gif
│   │   ├── RTE_TB.GIF
│   │   ├── SBL_YLW.GIF
│   │   ├── SBM_YLW.GIF
│   │   ├── SBR_YLW.GIF
│   │   ├── sc.png
│   │   ├── spacer[1].gif
│   │   ├── SPACER.GIF
│   │   ├── star.gif
│   │   ├── stats_bg.gif
│   │   ├── tabs_m_tile.gif
│   │   ├── title_bg_quit.gif
│   │   ├── tj.png
│   │   ├── topbg.gif
│   │   ├── up.gif
│   │   ├── UP_LEFT.GIF
│   │   ├── UP_MID.GIF
│   │   ├── UP_RIGHT.GIF
│   │   └── yellow_dot.png
│   ├── img
│   │   ├── close.png
│   │   ├── cross.png
│   │   ├── dog.gif
│   │   ├── loading.gif
│   │   ├── loading.png
│   │   ├── planeblue.png
│   │   ├── planehui.png
│   │   ├── planered.png
│   │   └── tick.png
│   ├── include
│   │   ├── css
│   │   │   └── button-usr.css
│   │   └── js
│   │   ├── common.js
│   │   ├── excanvas.compiled.js
│   │   ├── exporting.js
│   │   ├── exporting.src.js
│   │   ├── form_valid.js
│   │   ├── highcharts.js
│   │   ├── highcharts.src.js
│   │   ├── jquery.min.js
│   │   ├── supplierselect.js
│   │   ├── validatebox-duplicate.js
│   │   └── validatebox-myrule.js
│   ├── js
│   │   ├── anim.js
│   │   ├── array.js
│   │   ├── basefunc.js
│   │   ├── cookie.js
│   │   ├── date.js
│   │   ├── dom.js
│   │   ├── event.js
│   │   ├── ieFix.js
│   │   ├── input-text.js
│   │   ├── io.js
│   │   ├── json.js
│   │   ├── kit.js
│   │   ├── LinkedHashMap.js
│   │   ├── localStorage.js
│   │   ├── math.js
│   │   ├── multithread.js
│   │   ├── require.js
│   │   ├── selection.js
│   │   ├── selector.js
│   │   ├── string.js
│   │   ├── suger.js
│   │   ├── tablelock.js
│   │   ├── template.js
│   │   ├── tool
│   │   │   └── dataformat.js
│   │   ├── TreeDict.js
│   │   ├── url.js
│   │   └── widget
│   │   ├── Audio
│   │   │   ├── audio.js
│   │   │   ├── audiojs.as
│   │   │   └── audiojs.swf
│   │   ├── CodeExample
│   │   │   ├── autowired.codeExample.js
│   │   │   └── codeExample.js
│   │   ├── DatePicker
│   │   │   ├── datepicker.js
│   │   │   └── datepicker-n-months.js
│   │   ├── Dialog
│   │   │   ├── dialog.js
│   │   │   ├── hoverTips.js
│   │   │   └── yesOrNo.js
│   │   ├── Editor
│   │   │   ├── editor.js
│   │   │   └── simpleeditor.js
│   │   ├── Form
│   │   │   ├── autowired.textarea.js
│   │   │   ├── combobox.js
│   │   │   ├── form.js
│   │   │   ├── list.js
│   │   │   ├── suggestselect.js
│   │   │   ├── textarea.js
│   │   │   └── timeinput.js
│   │   ├── Gallery
│   │   │   └── gallery.js
│   │   ├── LightBox
│   │   │   └── lightbox.js
│   │   ├── Log
│   │   │   ├── log.css
│   │   │   └── log.js
│   │   ├── Mask
│   │   │   └── mask.js
│   │   ├── Menu
│   │   │   └── menu.js
│   │   ├── SemitransparentLoading
│   │   │   └── semitransparentloading.js
│   │   ├── SlideBar
│   │   │   └── slidebar.js
│   │   ├── StarLevel
│   │   │   └── starlevel.js
│   │   ├── TabPanel
│   │   │   └── tabpanel.js
│   │   ├── TagInput
│   │   │   └── tagInput.js
│   │   ├── TextLoading
│   │   │   └── textloading.js
│   │   ├── Tree
│   │   │   └── treenode.js
│   │   ├── Upload
│   │   │   └── upload.js
│   │   ├── Validator
│   │   │   ├── autowired.validator.js
│   │   │   └── validator.js
│   │   └── Waterfall
│   │   └── waterfall.js
│   ├── labs
│   │   ├── array.js
│   │   ├── event.js
│   │   ├── iScroll
│   │   │   └── iscroll.js
│   │   └── Upload
│   │   ├── demo.htm
│   │   ├── do-nothing.htm
│   │   ├── fileuploader.css
│   │   ├── kitjs-connector.js
│   │   └── loading.gif
│   └── style
│   ├── skins
│   │   ├── body_background.png
│   │   ├── border_bg.png
│   │   ├── border_end.png
│   │   ├── boxover_bd.png
│   │   ├── btu_ok.png
│   │   ├── close.gif
│   │   ├── content_li_top.png
│   │   ├── default.css
│   │   ├── folder_bigbtu.png
│   │   ├── folder_bt1.png
│   │   ├── folder_bt2.png
│   │   ├── left_tabid_cnt_top.png
│   │   ├── left_tab_Selected.gif
│   │   ├── left_tab_Selectedno.gif
│   │   ├── line_2.gif
│   │   ├── logo.png
│   │   ├── logo.psd
│   │   ├── newmsg.gif
│   │   ├── open.gif
│   │   ├── print.css
│   │   ├── progress1.jpg
│   │   ├── progress.jpg
│   │   ├── quote.gif
│   │   ├── setting_TabPage2.png
│   │   ├── skin_onmouseout_bg.gif
│   │   ├── skin_onmouseout_bg.png
│   │   ├── skin_onmouseover_bg.gif
│   │   ├── skin_onmouseover_bg.png
│   │   ├── skinpic.png
│   │   ├── style1.css
│   │   ├── style.css
│   │   ├── tab.gif
│   │   ├── template_bg.png
│   │   ├── used.png
│   │   ├── user_btu_left.png
│   │   ├── user_btu_right.png
│   │   ├── user_dleft_tab7.png
│   │   ├── UserIco_bg.png
│   │   ├── user_post_input.png
│   │   ├── user_post_inputtxt1.png
│   │   ├── user_post_inputtxt.png
│   │   ├── user_post_title_bg.png
│   │   ├── user_post_top_bg.png
│   │   ├── user_setting_title_tab_bg.png
│   │   ├── user_team_bg.png
│   │   ├── user_team_top.png
│   │   └── win_top.png
│   └── style.css
├── META-INF
│   └── MANIFEST.MF
├── sun
│   ├── jeecg
│   │   ├── jeecgOneDemo-add.jsp
│   │   ├── jeecgOneDemo-edit.jsp
│   │   ├── jeecgOneDemo.jsp
│   │   ├── jeecgOneRow.jsp
│   │   ├── jeecgOneTest.jsp
│   │   ├── jeecgOrderMain.jsp
│   │   ├── jeecgOrderMain-main-add.jsp
│   │   ├── jeecgOrderMain-main-edit.jsp
│   │   ├── jeecgOrderMainSingle.jsp
│   │   ├── jeecgOrderMainSingle-main-add.jsp
│   │   └── jeecgOrderMainSingle-main-edit.jsp
│   ├── order
│   │   ├── gbuyOrder.jsp
│   │   ├── gbuyOrder-main-add.jsp
│   │   └── gbuyOrder-main-edit.jsp
│   └── test
│   ├── combobx-2level.jsp
│   ├── combobx-3level.jsp
│   ├── demo-jdbc.jsp
│   ├── demoline.jsp
│   ├── demopie.jsp
│   ├── dic-display.jsp
│   ├── excel-opt.jsp
│   ├── menuButton.jsp
│   ├── person.jsp
│   └── upload-input.jsp
├── upload
├── user
│   ├── loginAndReg.jsp
│   └── userInfo.jsp
└── WEB-INF
├── classes
│   ├── business
│   │   ├── action
│   │   │   ├── accounter
│   │   │   │   └── AccounterAction.class
│   │   │   ├── area
│   │   │   │   └── AreaAction.class
│   │   │   ├── article
│   │   │   │   └── ArticleAction.class
│   │   │   ├── catelog
│   │   │   │   └── CatelogAction.class
│   │   │   ├── company
│   │   │   │   └── CompanyAction.class
│   │   │   ├── customer
│   │   │   │   └── CustomerAction.class
│   │   │   ├── customerprice
│   │   │   │   └── CustomerPriceAction.class
│   │   │   ├── depot
│   │   │   │   └── DepotAction.class
│   │   │   ├── fee
│   │   │   │   └── FeeAction.class
│   │   │   ├── sale
│   │   │   │   └── SaleAction.class
│   │   │   ├── saleback
│   │   │   │   └── SaleBackAction.class
│   │   │   ├── stock
│   │   │   │   ├── StockAction.class
│   │   │   │   └── StockCheckAction.class
│   │   │   ├── stockback
│   │   │   │   └── StockBackAction.class
│   │   │   ├── stockin
│   │   │   │   └── StockinAction.class
│   │   │   ├── subject
│   │   │   │   └── SubjectAction.class
│   │   │   └── supplier
│   │   │   └── SupplierAction.class
│   │   ├── comparator
│   │   │   └── catelog
│   │   │   └── CatelogComparator.class
│   │   ├── entity
│   │   │   ├── accounter
│   │   │   │   └── AccounterEntity.class
│   │   │   ├── area
│   │   │   │   └── AreaEntity.class
│   │   │   ├── article
│   │   │   │   └── ArticleEntity.class
│   │   │   ├── catelog
│   │   │   │   └── CatelogEntity.class
│   │   │   ├── company
│   │   │   │   └── CompanyEntity.class
│   │   │   ├── customer
│   │   │   │   └── CustomerEntity.class
│   │   │   ├── customerprice
│   │   │   │   └── CustomerPriceEntity.class
│   │   │   ├── depot
│   │   │   │   └── DepotEntity.class
│   │   │   ├── fee
│   │   │   │   └── FeeEntity.class
│   │   │   ├── sale
│   │   │   │   ├── SaleDetailEntity.class
│   │   │   │   └── SaleEntity.class
│   │   │   ├── saleback
│   │   │   │   ├── SaleBackDetailEntity.class
│   │   │   │   └── SaleBackEntity.class
│   │   │   ├── stock
│   │   │   │   ├── StockCheckEntity.class
│   │   │   │   └── StockEntity.class
│   │   │   ├── stockback
│   │   │   │   ├── StockBackDetailEntity.class
│   │   │   │   └── StockBackEntity.class
│   │   │   ├── stockin
│   │   │   │   ├── StockinDetailEntity.class
│   │   │   │   └── StockinEntity.class
│   │   │   ├── subject
│   │   │   │   └── SubjectEntity.class
│   │   │   └── supplier
│   │   │   └── SupplierEntity.class
│   │   ├── exception
│   │   │   ├── ExistReferenceException.class
│   │   │   └── StockLessBackNumException.class
│   │   ├── page
│   │   │   ├── accounter
│   │   │   │   └── AccounterPage.class
│   │   │   ├── area
│   │   │   │   └── AreaPage.class
│   │   │   ├── article
│   │   │   │   └── ArticlePage.class
│   │   │   ├── catelog
│   │   │   │   └── CatelogPage.class
│   │   │   ├── company
│   │   │   │   └── CompanyPage.class
│   │   │   ├── customer
│   │   │   │   └── CustomerPage.class
│   │   │   ├── customerprice
│   │   │   │   └── CustomerPricePage.class
│   │   │   ├── depot
│   │   │   │   └── DepotPage.class
│   │   │   ├── fee
│   │   │   │   └── FeePage.class
│   │   │   ├── report
│   │   │   │   └── ReportQueryForm.class
│   │   │   ├── sale
│   │   │   │   ├── SaleDetailPage.class
│   │   │   │   └── SalePage.class
│   │   │   ├── saleback
│   │   │   │   ├── SaleBackDetailPage.class
│   │   │   │   └── SaleBackPage.class
│   │   │   ├── stock
│   │   │   │   ├── StockCheckPage.class
│   │   │   │   └── StockPage.class
│   │   │   ├── stockback
│   │   │   │   ├── StockBackDetailPage.class
│   │   │   │   └── StockBackPage.class
│   │   │   ├── stockin
│   │   │   │   ├── StockinDetailPage.class
│   │   │   │   └── StockinPage.class
│   │   │   ├── subject
│   │   │   │   └── SubjectPage.class
│   │   │   └── supplier
│   │   │   └── SupplierPage.class
│   │   ├── service
│   │   │   ├── accounter
│   │   │   │   └── AccounterServiceI.class
│   │   │   ├── area
│   │   │   │   └── AreaServiceI.class
│   │   │   ├── article
│   │   │   │   └── ArticleServiceI.class
│   │   │   ├── catelog
│   │   │   │   └── CatelogServiceI.class
│   │   │   ├── company
│   │   │   │   └── CompanyServiceI.class
│   │   │   ├── customer
│   │   │   │   └── CustomerServiceI.class
│   │   │   ├── customerprice
│   │   │   │   └── CustomerPriceServiceI.class
│   │   │   ├── depot
│   │   │   │   └── DepotServiceI.class
│   │   │   ├── fee
│   │   │   │   └── FeeServiceI.class
│   │   │   ├── impl
│   │   │   │   ├── accounter
│   │   │   │   │   └── AccounterServiceImpl.class
│   │   │   │   ├── area
│   │   │   │   │   └── AreaServiceImpl.class
│   │   │   │   ├── article
│   │   │   │   │   └── ArticleServiceImpl.class
│   │   │   │   ├── catelog
│   │   │   │   │   └── CatelogServiceImpl.class
│   │   │   │   ├── company
│   │   │   │   │   └── CompanyServiceImpl.class
│   │   │   │   ├── customer
│   │   │   │   │   └── CustomerServiceImpl.class
│   │   │   │   ├── customerprice
│   │   │   │   │   └── CustomerPriceServiceImpl.class
│   │   │   │   ├── depot
│   │   │   │   │   └── DepotServiceImpl.class
│   │   │   │   ├── fee
│   │   │   │   │   └── FeeServiceImpl.class
│   │   │   │   ├── sale
│   │   │   │   │   ├── SaleDetailServiceImpl.class
│   │   │   │   │   └── SaleServiceImpl.class
│   │   │   │   ├── saleback
│   │   │   │   │   ├── SaleBackDetailServiceImpl.class
│   │   │   │   │   └── SaleBackServiceImpl.class
│   │   │   │   ├── stock
│   │   │   │   │   ├── StockCheckServiceImpl.class
│   │   │   │   │   └── StockServiceImpl.class
│   │   │   │   ├── stockback
│   │   │   │   │   ├── StockBackDetailServiceImpl.class
│   │   │   │   │   └── StockBackServiceImpl.class
│   │   │   │   ├── stockin
│   │   │   │   │   ├── StockinDetailServiceImpl.class
│   │   │   │   │   └── StockinServiceImpl.class
│   │   │   │   ├── subject
│   │   │   │   │   └── SubjectServiceImpl.class
│   │   │   │   └── supplier
│   │   │   │   └── SupplierServiceImpl.class
│   │   │   ├── sale
│   │   │   │   ├── SaleDetailServiceI.class
│   │   │   │   └── SaleServiceI.class
│   │   │   ├── saleback
│   │   │   │   ├── SaleBackDetailServiceI.class
│   │   │   │   └── SaleBackServiceI.class
│   │   │   ├── stock
│   │   │   │   ├── StockCheckServiceI.class
│   │   │   │   └── StockServiceI.class
│   │   │   ├── stockback
│   │   │   │   ├── StockBackDetailServiceI.class
│   │   │   │   └── StockBackServiceI.class
│   │   │   ├── stockin
│   │   │   │   ├── StockinDetailServiceI.class
│   │   │   │   └── StockinServiceI.class
│   │   │   ├── subject
│   │   │   │   └── SubjectServiceI.class
│   │   │   └── supplier
│   │   │   └── SupplierServiceI.class
│   │   └── util
│   │   ├── FormatUtil.class
│   │   └── MapUtil.class
│   ├── com
│   │   ├── codeGenerate
│   │   │   ├── JeecgDeleteUtil.class
│   │   │   ├── JeecgOneGUI.class
│   │   │   ├── JeecgOneToMainUtil.class
│   │   │   ├── JeecgOneToManyGUI$1.class
│   │   │   ├── JeecgOneToManyGUI$2.class
│   │   │   ├── JeecgOneToManyGUI.class
│   │   │   └── JeecgTreeUtil.class
│   │   ├── core
│   │   │   ├── annotation
│   │   │   │   └── Excel.class
│   │   │   ├── aop
│   │   │   │   ├── cache
│   │   │   │   │   ├── EhcacheAspect.class
│   │   │   │   │   └── Ehcache.class
│   │   │   │   └── HiberAspect.class
│   │   │   ├── base
│   │   │   │   └── BasePage.class
│   │   │   └── def
│   │   │   └── ConstantsDefs.class
│   │   ├── jeecg
│   │   │   ├── action
│   │   │   │   ├── AuthAction.class
│   │   │   │   ├── BaseAction.class
│   │   │   │   ├── BugAction.class
│   │   │   │   ├── DataSourceAction.class
│   │   │   │   ├── MenuAction.class
│   │   │   │   ├── OnlineAction.class
│   │   │   │   ├── RepairAction.class
│   │   │   │   ├── RoleAction.class
│   │   │   │   └── UserAction.class
│   │   │   ├── comparator
│   │   │   │   ├── AuthComparator.class
│   │   │   │   └── MenuComparator.class
│   │   │   ├── converter
│   │   │   │   ├── ClobConverter.class
│   │   │   │   └── DateConverter.class
│   │   │   ├── dao
│   │   │   │   ├── BaseDaoI.class
│   │   │   │   ├── hiber
│   │   │   │   ├── impl
│   │   │   │   │   └── BaseDaoImpl.class
│   │   │   │   └── jdbc
│   │   │   │   ├── JdbcDao.class
│   │   │   │   └── SimpleJdbcTemplate.class
│   │   │   ├── def
│   │   │   │   └── ConstantsSys.class
│   │   │   ├── filter
│   │   │   │   └── ErrorImgFilter.class
│   │   │   ├── interceptor
│   │   │   │   ├── AuthInterceptor.class
│   │   │   │   ├── EncodingInterceptor.class
│   │   │   │   ├── ExceptionInterceptor.class
│   │   │   │   ├── FileAuthInterceptor.class
│   │   │   │   ├── SessionInterceptor.class
│   │   │   │   └── UrlParamsInterceptor.class
│   │   │   ├── listener
│   │   │   │   ├── OgnlSecurityListener.class
│   │   │   │   ├── OnlineListener.class
│   │   │   │   └── RepairListener.class
│   │   │   ├── model
│   │   │   │   ├── BaseEntity.class
│   │   │   │   ├── Tauth.class
│   │   │   │   ├── Tbug.class
│   │   │   │   ├── Tmenu.class
│   │   │   │   ├── Tonline.class
│   │   │   │   ├── Trole.class
│   │   │   │   ├── Troletauth.class
│   │   │   │   ├── Tuser.class
│   │   │   │   └── Tusertrole.class
│   │   │   ├── pageModel
│   │   │   │   ├── Auth.class
│   │   │   │   ├── Bug.class
│   │   │   │   ├── DataGrid.class
│   │   │   │   ├── Json.class
│   │   │   │   ├── Menu.class
│   │   │   │   ├── Online.class
│   │   │   │   ├── RoleAuth.class
│   │   │   │   ├── Role.class
│   │   │   │   ├── SessionInfo.class
│   │   │   │   ├── TreeNode.class
│   │   │   │   ├── User.class
│   │   │   │   └── UserRole.class
│   │   │   ├── service
│   │   │   │   ├── AuthServiceI.class
│   │   │   │   ├── BaseServiceI.class
│   │   │   │   ├── BugServiceI.class
│   │   │   │   ├── impl
│   │   │   │   │   ├── AuthServiceImpl.class
│   │   │   │   │   ├── BaseServiceImpl.class
│   │   │   │   │   ├── BugServiceImpl.class
│   │   │   │   │   ├── MenuServiceImpl.class
│   │   │   │   │   ├── OnlineServiceImpl.class
│   │   │   │   │   ├── RepairServiceImpl.class
│   │   │   │   │   ├── RoleServiceImpl.class
│   │   │   │   │   └── UserServiceImpl.class
│   │   │   │   ├── MenuServiceI.class
│   │   │   │   ├── OnlineServiceI.class
│   │   │   │   ├── RepairServiceI.class
│   │   │   │   ├── RoleServiceI.class
│   │   │   │   └── UserServiceI.class
│   │   │   ├── tagjsp
│   │   │   │   └── AnchorTag.class
│   │   │   ├── timer
│   │   │   │   └── Job.class
│   │   │   └── util
│   │   │   ├── ClobUtil.class
│   │   │   ├── DateUtils.class
│   │   │   ├── Encrypt.class
│   │   │   ├── excel
│   │   │   │   ├── ExcelExportUtil.class
│   │   │   │   └── ExcelUtil.class
│   │   │   ├── ExceptionUtil.class
│   │   │   ├── FileUtil.class
│   │   │   ├── IpUtil.class
│   │   │   ├── JpaUtil.class
│   │   │   ├── ParserData.class
│   │   │   ├── RequestUtil.class
│   │   │   ├── ResourceUtil.class
│   │   │   ├── SendMailUtil.class
│   │   │   ├── SpringContextUtil.class
│   │   │   └── StringUtil.class
│   │   ├── sys
│   │   │   ├── action
│   │   │   │   └── base
│   │   │   │   ├── DictParamAction.class
│   │   │   │   ├── DuplicateCheckAction.class
│   │   │   │   ├── JeecgGroupAction.class
│   │   │   │   └── NoteAction.class
│   │   │   ├── entity
│   │   │   │   └── base
│   │   │   │   ├── DictParamEntity.class
│   │   │   │   ├── JeecgGroupEntity.class
│   │   │   │   └── NoteEntity.class
│   │   │   ├── page
│   │   │   │   └── base
│   │   │   │   ├── DictParamPage.class
│   │   │   │   ├── DuplicateCheckPage.class
│   │   │   │   ├── JeecgGroupPage.class
│   │   │   │   └── NotePage.class
│   │   │   └── service
│   │   │   ├── base
│   │   │   │   ├── DictParamServiceI.class
│   │   │   │   ├── JeecgGroupServiceI.class
│   │   │   │   └── NoteServiceI.class
│   │   │   └── impl
│   │   │   └── base
│   │   │   ├── DictParamServiceImpl.class
│   │   │   ├── JeecgGroupServiceImpl.class
│   │   │   └── NoteServiceImpl.class
│   │   └── util
│   │   ├── ClassReflectUtil.class
│   │   ├── dbcommon
│   │   │   └── SearchSqlGenerateUtil.class
│   │   ├── JeecgSqlUtil.class
│   │   ├── LogUtil.class
│   │   ├── MyBeanUtils.class
│   │   ├── MyStringUtils.class
│   │   ├── person.class
│   │   └── TestCode.class
│   ├── config.properties
│   ├── demo
│   │   └── PinyingDemo.class
│   ├── ehcache.xml
│   ├── initdata
│   │   └── excel
│   │   ├── ChnToPinYin.class
│   │   ├── DBManageMysql.class
│   │   ├── ExcelTool.class
│   │   └── JDBCForMySql.class
│   ├── jeecg
│   │   ├── jeecg_config.properties
│   │   ├── jeecg_database.properties
│   │   └── template
│   │   ├── actionOnetoMainTemplate.ftl
│   │   ├── actionTemplate.ftl
│   │   ├── entityTemplate.ftl
│   │   ├── include
│   │   │   ├── actionInclude.ftl
│   │   │   ├── pageInclude.ftl
│   │   │   ├── serviceImplInclude.ftl
│   │   │   └── serviceInclude.ftl
│   │   ├── jspLineFeedTemplate.ftl
│   │   ├── jspOnetoMainAddTemplate.ftl
│   │   ├── jspOnetoMainAddTemplate_tab.ftl
│   │   ├── jspOnetoMainEditTemplate.ftl
│   │   ├── jspOnetoMainEditTemplate_tab.ftl
│   │   ├── jspOneToManyTemplate.ftl
│   │   ├── jspRowEditTemplate.ftl
│   │   ├── pageEntityTemplate.ftl
│   │   ├── serviceImplOnetoMainTemplate.ftl
│   │   ├── serviceImplTemplate.ftl
│   │   ├── serviceIOnetoMainTemplate.ftl
│   │   ├── serviceITemplate.ftl
│   │   └── tree
│   │   ├── actionTreeTemplate.ftl
│   │   ├── comparatorTemplate.ftl
│   │   ├── entityTreeTemplate.ftl
│   │   ├── include
│   │   │   ├── entityTreeFKInclude.ftl
│   │   │   ├── entityTreeHeadInclude.ftl
│   │   │   └── pageTreeInclude.ftl
│   │   ├── jspTreeTemplate.ftl
│   │   ├── pageTreeTemplate.ftl
│   │   ├── serviceImplTreeTemplate.ftl
│   │   └── serviceItreeTemplate.ftl
│   ├── log4j.properties
│   ├── spring-hibernate.xml
│   ├── spring.xml
│   ├── struts.xml
│   ├── sun
│   │   ├── action
│   │   │   ├── demo
│   │   │   ├── jeecg
│   │   │   │   ├── JeecgOneDemoAction.class
│   │   │   │   ├── JeecgOneRowAction.class
│   │   │   │   ├── JeecgOneTestAction.class
│   │   │   │   ├── JeecgOrderMainAction.class
│   │   │   │   └── JeecgOrderMainSingleAction.class
│   │   │   ├── order
│   │   │   │   └── GbuyOrderAction.class
│   │   │   └── test
│   │   │   ├── ChartsAction.class
│   │   │   ├── DemoAction.class
│   │   │   └── PersonAction.class
│   │   ├── comparator
│   │   ├── entity
│   │   │   ├── jeecg
│   │   │   │   ├── JeecgOneDemoEntity.class
│   │   │   │   ├── JeecgOneRowEntity.class
│   │   │   │   ├── JeecgOneTestEntity.class
│   │   │   │   ├── JeecgOrderCustomEntity.class
│   │   │   │   ├── JeecgOrderCustomSingleEntity.class
│   │   │   │   ├── JeecgOrderMainEntity.class
│   │   │   │   ├── JeecgOrderMainSingleEntity.class
│   │   │   │   ├── JeecgOrderProductEntity.class
│   │   │   │   └── JeecgOrderProductSingleEntity.class
│   │   │   ├── order
│   │   │   │   ├── GbuyOrderCustomEntity.class
│   │   │   │   ├── GbuyOrderEntity.class
│   │   │   │   └── GbuyOrderProductEntity.class
│   │   │   └── test
│   │   │   └── PersonEntity.class
│   │   ├── page
│   │   │   ├── jeecg
│   │   │   │   ├── JeecgOneDemoPage.class
│   │   │   │   ├── JeecgOneRowPage.class
│   │   │   │   ├── JeecgOneTestPage.class
│   │   │   │   ├── JeecgOrderCustomPage.class
│   │   │   │   ├── JeecgOrderCustomSinglePage.class
│   │   │   │   ├── JeecgOrderMainPage.class
│   │   │   │   ├── JeecgOrderMainSinglePage.class
│   │   │   │   ├── JeecgOrderProductPage.class
│   │   │   │   └── JeecgOrderProductSinglePage.class
│   │   │   ├── order
│   │   │   │   ├── GbuyOrderCustomPage.class
│   │   │   │   ├── GbuyOrderPage.class
│   │   │   │   └── GbuyOrderProductPage.class
│   │   │   └── test
│   │   │   ├── Data.class
│   │   │   ├── DemoPage.class
│   │   │   ├── PersonPage.class
│   │   │   └── Pie.class
│   │   ├── service
│   │   │   ├── impl
│   │   │   │   ├── jeecg
│   │   │   │   │   ├── JeecgOneDemoServiceImpl.class
│   │   │   │   │   ├── JeecgOneRowServiceImpl.class
│   │   │   │   │   ├── JeecgOneTestServiceImpl.class
│   │   │   │   │   ├── JeecgOrderCustomServiceImpl.class
│   │   │   │   │   ├── JeecgOrderCustomSingleServiceImpl.class
│   │   │   │   │   ├── JeecgOrderMainServiceImpl.class
│   │   │   │   │   ├── JeecgOrderMainSingleServiceImpl.class
│   │   │   │   │   ├── JeecgOrderProductServiceImpl.class
│   │   │   │   │   └── JeecgOrderProductSingleServiceImpl.class
│   │   │   │   ├── order
│   │   │   │   │   ├── GbuyOrderCustomServiceImpl.class
│   │   │   │   │   ├── GbuyOrderProductServiceImpl.class
│   │   │   │   │   └── GbuyOrderServiceImpl.class
│   │   │   │   └── test
│   │   │   │   ├── DemoServiceImpl.class
│   │   │   │   └── PersonServiceImpl.class
│   │   │   ├── jeecg
│   │   │   │   ├── JeecgOneDemoServiceI.class
│   │   │   │   ├── JeecgOneRowServiceI.class
│   │   │   │   ├── JeecgOneTestServiceI.class
│   │   │   │   ├── JeecgOrderCustomServiceI.class
│   │   │   │   ├── JeecgOrderCustomSingleServiceI.class
│   │   │   │   ├── JeecgOrderMainServiceI.class
│   │   │   │   ├── JeecgOrderMainSingleServiceI.class
│   │   │   │   ├── JeecgOrderProductServiceI.class
│   │   │   │   └── JeecgOrderProductSingleServiceI.class
│   │   │   ├── order
│   │   │   │   ├── GbuyOrderCustomServiceI.class
│   │   │   │   ├── GbuyOrderProductServiceI.class
│   │   │   │   └── GbuyOrderServiceI.class
│   │   │   └── test
│   │   │   ├── DemoServiceI.class
│   │   │   └── PersonServiceI.class
│   │   └── sql
│   │   └── test
│   │   └── DemoService_listAllByJdbc.sql
│   ├── test
│   │   └── gspstore
│   │   ├── SpringTestBase.class
│   │   └── SupplierTest.class
│   └── xwork-conversion.properties
├── lib
│   ├── activation.jar
│   ├── antlr-2.7.7.jar
│   ├── aopalliance-1.0.jar
│   ├── asm-3.3.jar
│   ├── asm-commons-3.3.jar
│   ├── asm-tree-3.3.jar
│   ├── aspectjrt.jar
│   ├── aspectjweaver-1.6.9.jar
│   ├── batik-all-1.7.jar
│   ├── cglib-2.2.jar
│   ├── cglib-nodep-2.2.jar
│   ├── commons-beanutils.jar
│   ├── commons-cg-2.1.jar
│   ├── commons-codec-1.6.jar
│   ├── commons-collections-3.1.jar
│   ├── commons-email-1.0.jar
│   ├── commons-fileupload-1.2.2.jar
│   ├── commons-httpclient-3.0.jar
│   ├── commons-io-2.0.1.jar
│   ├── commons-jg-2.1.jar
│   ├── commons-lang-2.1.jar
│   ├── commons-lang-2.4.jar
│   ├── commons-lang3-3.1.jar
│   ├── commons-logging-1.0.4.jar
│   ├── commons-logging-1.1.1.jar
│   ├── dom4j-1.6.1.jar
│   ├── druid-0.2.6-20120826.100305-70.jar
│   ├── druid-0.2.6-20120827.022638-74.jar
│   ├── ehcache-1.6.0.jar
│   ├── ezmorph-1.0.4.jar
│   ├── fastjson-1.1.24-20120814.043343-7.jar
│   ├── fop-transcoder.jar
│   ├── freemarker-2.3.19.jar
│   ├── hibernate-commons-annotations-4.0.1.Final.jar
│   ├── hibernate-core-4.1.5.SP1.jar
│   ├── hibernate-jpa-2.0-api-1.0.1.Final.jar
│   ├── javassist-3.15.0-GA.jar
│   ├── jboss-logging-3.1.0.GA.jar
│   ├── jboss-transaction-api_1.1_spec-1.0.0.Final.jar
│   ├── json-lib-2.2.2-jdk15.jar
│   ├── jstl.jar
│   ├── junit-4.6.jar
│   ├── log4j-1.2.17.jar
│   ├── mail.jar
│   ├── mysql-connector-java-5.1.21.jar
│   ├── ognl-3.0.5.jar
│   ├── ojdbc14-10.2.0.4.jar
│   ├── pdf-transcoder.jar
│   ├── pinyin4j-2.5.0.jar
│   ├── poi-3.6.jar
│   ├── servlet-api.jar
│   ├── slf4j-api-1.6.6.jar
│   ├── spring-aop-3.1.2.RELEASE.jar
│   ├── spring-asm-3.1.2.RELEASE.jar
│   ├── spring-beans-3.1.2.RELEASE.jar
│   ├── spring-context-3.1.2.RELEASE.jar
│   ├── spring-core-3.1.2.RELEASE.jar
│   ├── spring-expression-3.1.2.RELEASE.jar
│   ├── spring.jar
│   ├── spring-jdbc-3.1.2.RELEASE.jar
│   ├── spring-orm-3.1.2.RELEASE.jar
│   ├── spring-test-3.1.1.RELEASE.jar
│   ├── spring-tx-3.1.2.RELEASE.jar
│   ├── spring-web-3.1.2.RELEASE.jar
│   ├── standard.jar
│   ├── struts2-convention-plugin-2.3.4.jar
│   ├── struts2-core-2.3.4.jar
│   ├── struts2-spring-plugin-2.3.4.jar
│   ├── xml-apis-ext.jar
│   ├── xmlgraphics-commons-1.4.jar
│   └── xwork-core-2.3.4.jar
├── tlds
│   └── btn.tld
└── web.xml

531 directories, 2626 files

标签:

实例下载地址

java进销存管理系统源码

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警