在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 简单OA办公系统+Java源码+mysql数据库

简单OA办公系统+Java源码+mysql数据库

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:22.14M
  • 下载次数:10
  • 浏览次数:124
  • 发布时间:2020-09-03
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
OA办公系统包含了简单的代码设计,流程处理,个人可根据需要添加类似模块, 资源下载后,需要修改hibernate.cfg.xml配置文件,数据库+账号+密码改为个人所用。
【实例截图】
【核心代码】
OA_Office_System
└── OA_Office_System
├── sql
│   └── baseDB.sql
├── src
│   ├── applicationContext-security.xml
│   ├── applicationContext.xml
│   ├── com
│   │   └── fjsdfx
│   │   └── starerp
│   │   ├── annoucement
│   │   │   ├── action
│   │   │   │   └── AnnoucementAction.java
│   │   │   ├── conf
│   │   │   │   └── struts-annoucement.xml
│   │   │   ├── dao
│   │   │   │   ├── AnnoucementDao.java
│   │   │   │   └── impl
│   │   │   │   └── AnnoucementDaoImpl.java
│   │   │   ├── model
│   │   │   │   └── Annoucement.java
│   │   │   └── service
│   │   │   ├── AnnoucementService.java
│   │   │   └── impl
│   │   │   └── AnnoucementServiceImpl.java
│   │   ├── common
│   │   │   ├── bean
│   │   │   │   ├── FileUpload.java
│   │   │   │   ├── PagerFilter.java
│   │   │   │   ├── PagerInfo.java
│   │   │   │   └── PagerModel.java
│   │   │   ├── dao
│   │   │   │   ├── BaseDaoImpl.java
│   │   │   │   └── BaseDao.java
│   │   │   └── service
│   │   │   ├── BaseServiceImpl.java
│   │   │   ├── BaseService.java
│   │   │   └── CharacterFilter.java
│   │   ├── item
│   │   │   ├── action
│   │   │   │   ├── ItemAction.java
│   │   │   │   └── ItemTypeAction.java
│   │   │   ├── conf
│   │   │   │   └── struts-item.xml
│   │   │   ├── dao
│   │   │   │   ├── ControllerDao.java
│   │   │   │   ├── impl
│   │   │   │   │   ├── ControllerDaoImpl.java
│   │   │   │   │   ├── ItemDaoImpl.java
│   │   │   │   │   ├── ItemRelationDaoImpl.java
│   │   │   │   │   └── ItemTypeDaoImpl.java
│   │   │   │   ├── ItemDao.java
│   │   │   │   ├── ItemRelationDao.java
│   │   │   │   └── ItemTypeDao.java
│   │   │   ├── dto
│   │   │   │   └── ItemTypeInfo.java
│   │   │   ├── model
│   │   │   │   ├── ControllerunitInfo.java
│   │   │   │   ├── Controllerunit.java
│   │   │   │   ├── ItemCategory.java
│   │   │   │   ├── Item.java
│   │   │   │   ├── ItemRelation.java
│   │   │   │   └── ItemType.java
│   │   │   └── service
│   │   │   ├── ControllerService.java
│   │   │   ├── impl
│   │   │   │   ├── ControllerServiceImpl.java
│   │   │   │   ├── ItemRelationServiceImpl.java
│   │   │   │   ├── ItemServiceImpl.java
│   │   │   │   └── ItemTypeServiceImpl.java
│   │   │   ├── ItemRelationService.java
│   │   │   ├── ItemService.java
│   │   │   └── ItemTypeService.java
│   │   ├── menu
│   │   │   ├── action
│   │   │   │   └── MenuAction.java
│   │   │   ├── conf
│   │   │   │   └── struts-menu.xml
│   │   │   ├── dao
│   │   │   │   ├── impl
│   │   │   │   │   ├── MenuItemDaoImpl.java
│   │   │   │   │   └── NavDaoImpl.java
│   │   │   │   ├── MenuItemDao.java
│   │   │   │   └── NavDao.java
│   │   │   ├── model
│   │   │   │   ├── MenuImage.java
│   │   │   │   ├── MenuItem.java
│   │   │   │   ├── Menu.java
│   │   │   │   └── Nav.java
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   ├── MenuItemServiceImpl.java
│   │   │   │   └── MenuServiceImpl.java
│   │   │   ├── MenuItemService.java
│   │   │   └── MenuService.java
│   │   ├── persons
│   │   │   ├── action
│   │   │   │   ├── DepartmentAction.java
│   │   │   │   ├── EmployeeAction.java
│   │   │   │   ├── JobsAction.java
│   │   │   │   ├── RasmessageAction.java
│   │   │   │   ├── RecruitmentAction.java
│   │   │   │   ├── TrainingAction.java
│   │   │   │   └── YtrainplanAction.java
│   │   │   ├── conf
│   │   │   │   └── struts-persons.xml
│   │   │   ├── dao
│   │   │   │   ├── DepartmentDao.java
│   │   │   │   ├── EmployeeDao.java
│   │   │   │   ├── EmployeeRapDao.java
│   │   │   │   ├── Emp_TrainDao.java
│   │   │   │   ├── impl
│   │   │   │   │   ├── DepartmentDaoImpl.java
│   │   │   │   │   ├── EmployeeDaoImpl.java
│   │   │   │   │   ├── EmployeeRapDaoImpl.java
│   │   │   │   │   ├── Emp_TrainDaoImpl.java
│   │   │   │   │   ├── JobsDaoImpl.java
│   │   │   │   │   ├── RasmessageDaoImpl.java
│   │   │   │   │   ├── RecruitmentDaoImpl.java
│   │   │   │   │   ├── TrainingDaoImpl.java
│   │   │   │   │   ├── yplannameDaoImpl.java
│   │   │   │   │   ├── YrecruitmentDaoImpl.java
│   │   │   │   │   └── YtrainplanDaoImpl.java
│   │   │   │   ├── JobsDao.java
│   │   │   │   ├── RasmessageDao.java
│   │   │   │   ├── RecruitmentDao.java
│   │   │   │   ├── TrainingDao.java
│   │   │   │   ├── yplannameDao.java
│   │   │   │   ├── YrecruitmentDao.java
│   │   │   │   └── YtrainplanDao.java
│   │   │   ├── model
│   │   │   │   ├── Department.java
│   │   │   │   ├── Employee.java
│   │   │   │   ├── EmployeeRap.java
│   │   │   │   ├── Emp_Train.java
│   │   │   │   ├── Jobs.java
│   │   │   │   ├── Rasmessage.java
│   │   │   │   ├── Recruitment.java
│   │   │   │   ├── Training.java
│   │   │   │   ├── yplanname.java
│   │   │   │   ├── Yrecruitment.java
│   │   │   │   └── Ytrainplan.java
│   │   │   └── service
│   │   │   ├── DepartmentService.java
│   │   │   ├── EmployeeRapService.java
│   │   │   ├── EmployeeService.java
│   │   │   ├── Emp_TrainService.java
│   │   │   ├── impl
│   │   │   │   ├── DepartmentServiceImpl.java
│   │   │   │   ├── EmployeeRapServiceImpl.java
│   │   │   │   ├── EmployeeServiceImpl.java
│   │   │   │   ├── Emp_TrainServiceImpl.java
│   │   │   │   ├── JobsServiceImpl.java
│   │   │   │   ├── RasmessageServiceImpl.java
│   │   │   │   ├── RecruitmentServiceImpl.java
│   │   │   │   ├── TrainingServiceImpl.java
│   │   │   │   ├── yplannameServiceImpl.java
│   │   │   │   ├── YrecruitmentServiceImpl.java
│   │   │   │   └── YtrainplanServiceImpl.java
│   │   │   ├── JobsService.java
│   │   │   ├── RasmessageService.java
│   │   │   ├── RecruitmentService.java
│   │   │   ├── TrainingService.java
│   │   │   ├── yplannameService.java
│   │   │   ├── YrecruitmentService.java
│   │   │   └── YtrainplanService.java
│   │   ├── produce
│   │   │   ├── action
│   │   │   │   ├── DailyProductionAction.java
│   │   │   │   ├── DiscardverifyAction.java
│   │   │   │   ├── PreparationAction.java
│   │   │   │   ├── ProductionPlanAction.java
│   │   │   │   ├── ProductionSchdulAction.java
│   │   │   │   ├── RepairProductionAction.java
│   │   │   │   ├── ShortmAction.java
│   │   │   │   └── TrackingtestAction.java
│   │   │   ├── conf
│   │   │   │   └── struts-produce.xml
│   │   │   ├── dao
│   │   │   │   ├── AccreditionDao.java
│   │   │   │   ├── DailyproductionDao.java
│   │   │   │   ├── DailyproductionformDao.java
│   │   │   │   ├── DiscardproductionDao.java
│   │   │   │   ├── DiscardreviewfDao.java
│   │   │   │   ├── DiscardreviewsDao.java
│   │   │   │   ├── DiscardreviewtDao.java
│   │   │   │   ├── DiscardverifyDao.java
│   │   │   │   ├── DiscardverifyreviewsDao.java
│   │   │   │   ├── impl
│   │   │   │   │   ├── AccreditionDaoImpl.java
│   │   │   │   │   ├── DailyproductionDaoImpl.java
│   │   │   │   │   ├── DailyproductionformDaoImpl.java
│   │   │   │   │   ├── DiscardproductionDaoImpl.java
│   │   │   │   │   ├── DiscardreviewfDaoImpl.java
│   │   │   │   │   ├── DiscardreviewsDaoImpl.java
│   │   │   │   │   ├── DiscardreviewtDaoImpl.java
│   │   │   │   │   ├── DiscardverifyDaoImpl.java
│   │   │   │   │   ├── DiscardverifyreviewsDaoImpl.java
│   │   │   │   │   ├── PergoodDaoImpl.java
│   │   │   │   │   ├── PreparationDaoImpl.java
│   │   │   │   │   ├── ProductionSchdulDaoImpl.java
│   │   │   │   │   ├── Pro_scheduleDaoImpl.java
│   │   │   │   │   ├── ProsupDaoImpl.java
│   │   │   │   │   ├── PrscheckDaoImpl.java
│   │   │   │   │   ├── RepairproductionDaoImpl.java
│   │   │   │   │   ├── ShogoodDaoImpl.java
│   │   │   │   │   ├── ShortmDaoImpl.java
│   │   │   │   │   └── TrackingtestDaoImpl.java
│   │   │   │   ├── PergoodDao.java
│   │   │   │   ├── PreparationDao.java
│   │   │   │   ├── ProductionSchdulDao.java
│   │   │   │   ├── Pro_scheduleDao.java
│   │   │   │   ├── ProsupDao.java
│   │   │   │   ├── PrscheckDao.java
│   │   │   │   ├── RepairproductionDao.java
│   │   │   │   ├── ShogoodDao.java
│   │   │   │   ├── ShortmDao.java
│   │   │   │   └── TrackingtestDao.java
│   │   │   ├── dto
│   │   │   │   └── PrsListInfo.java
│   │   │   ├── model
│   │   │   │   ├── Accredition.java
│   │   │   │   ├── Dailyproductionform.java
│   │   │   │   ├── Dailyproduction.java
│   │   │   │   ├── Discardproduction.java
│   │   │   │   ├── Discardreviewf.java
│   │   │   │   ├── Discardreviews.java
│   │   │   │   ├── Discardreviewt.java
│   │   │   │   ├── Discardverify.java
│   │   │   │   ├── Pergood.java
│   │   │   │   ├── Preparation.java
│   │   │   │   ├── ProductionSchdul.java
│   │   │   │   ├── Pro_schedule.java
│   │   │   │   ├── Prosup.java
│   │   │   │   ├── Prscheck.java
│   │   │   │   ├── Repairproduction.java
│   │   │   │   ├── Shogood.java
│   │   │   │   ├── Shortm.java
│   │   │   │   └── Trackingtest.java
│   │   │   └── service
│   │   │   ├── AccreditionService.java
│   │   │   ├── DailyproductionformService.java
│   │   │   ├── DailyproductionService.java
│   │   │   ├── DiscardreviewfService.java
│   │   │   ├── DiscardreviewsService.java
│   │   │   ├── DiscardreviewtService.java
│   │   │   ├── DiscardverifyproductionService.java
│   │   │   ├── DiscardverifyreviewsService.java
│   │   │   ├── DiscardverifyService.java
│   │   │   ├── impl
│   │   │   │   ├── AccreditionServiceImpl.java
│   │   │   │   ├── DailyproductionformServiceImpl.java
│   │   │   │   ├── DailyproductionServiceImpl.java
│   │   │   │   ├── DiscardreviewfServiceImpl.java
│   │   │   │   ├── DiscardreviewsServiceImpl.java
│   │   │   │   ├── DiscardreviewtServiceImpl.java
│   │   │   │   ├── DiscardverifyproductionServiceImpl.java
│   │   │   │   ├── DiscardverifyreviewsServiceImpl.java
│   │   │   │   ├── DiscardverifyServiceImpl.java
│   │   │   │   ├── PergoodServiceImpl.java
│   │   │   │   ├── PreparationServiceImpl.java
│   │   │   │   ├── ProductionSchdulServiceImpl.java
│   │   │   │   ├── Pro_scheduleServiceImpl.java
│   │   │   │   ├── ProsupServiceImpl.java
│   │   │   │   ├── PrscheckServiceImpl.java
│   │   │   │   ├── RepairproductionServiceImpl.java
│   │   │   │   ├── ShogoodServiceImpl.java
│   │   │   │   ├── ShortmServiceImpl.java
│   │   │   │   └── TrackingtestServiceImpl.java
│   │   │   ├── PergoodService.java
│   │   │   ├── PreparationService.java
│   │   │   ├── ProductionSchdulService.java
│   │   │   ├── Pro_scheduleService.java
│   │   │   ├── ProsupService.java
│   │   │   ├── PrscheckService.java
│   │   │   ├── RepairproductionService.java
│   │   │   ├── ShogoodService.java
│   │   │   ├── ShortmService.java
│   │   │   └── TrackingtestService.java
│   │   ├── proreport
│   │   │   ├── action
│   │   │   │   ├── ProreportfiveAction.java
│   │   │   │   ├── ProreportoneAction.java
│   │   │   │   └── ProreportthreeAction.java
│   │   │   ├── conf
│   │   │   │   └── struts-proreport.xml
│   │   │   ├── dao
│   │   │   │   ├── impl
│   │   │   │   │   ├── ProreportfiveDaoImpl.java
│   │   │   │   │   ├── ProreportoneDaoImpl.java
│   │   │   │   │   └── ProreportthreeDaoImpl.java
│   │   │   │   ├── ProreportfiveDao.java
│   │   │   │   ├── ProreportoneDao.java
│   │   │   │   └── ProreportthreeDao.java
│   │   │   ├── model
│   │   │   │   ├── Proreportfive.java
│   │   │   │   ├── Proreportone.java
│   │   │   │   └── Proreportthree.java
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   ├── ProreportfiveServiceImpl.java
│   │   │   │   ├── ProreportoneServiceImpl.java
│   │   │   │   └── ProreportthreeServiceImpl.java
│   │   │   ├── ProreportfiveService.java
│   │   │   ├── ProreportoneService.java
│   │   │   └── ProreportthreeService.java
│   │   ├── purchase
│   │   │   ├── action
│   │   │   │   ├── PurorderAction.java
│   │   │   │   ├── QuaprolistAction.java
│   │   │   │   ├── RequisitionsAction.java
│   │   │   │   ├── SamidentifiedAction.java
│   │   │   │   ├── SpareAction.java
│   │   │   │   ├── SupidentifiedAction.java
│   │   │   │   ├── SupplierinfoAction.java
│   │   │   │   └── TestnotesAction.java
│   │   │   ├── conf
│   │   │   │   └── struts-purchase.xml
│   │   │   ├── dao
│   │   │   │   ├── impl
│   │   │   │   │   ├── PurgoodDaoImpl.java
│   │   │   │   │   ├── PurorderDaoImpl.java
│   │   │   │   │   ├── QuaprolistDaoImpl.java
│   │   │   │   │   ├── RequisitionsDaoImpl.java
│   │   │   │   │   ├── ResgoodDaoImpl.java
│   │   │   │   │   ├── SamidentifiedDaoImpl.java
│   │   │   │   │   ├── SpareDaoImpl.java
│   │   │   │   │   ├── SupidentifiedDaoImpl.java
│   │   │   │   │   ├── SupplierinfoDaoImpl.java
│   │   │   │   │   └── TestnotesDaoImpl.java
│   │   │   │   ├── PurgoodDao.java
│   │   │   │   ├── PurorderDao.java
│   │   │   │   ├── QuaprolistDao.java
│   │   │   │   ├── RequisitionsDao.java
│   │   │   │   ├── ResgoodDao.java
│   │   │   │   ├── SamidentifiedDao.java
│   │   │   │   ├── SpareDao.java
│   │   │   │   ├── SupidentifiedDao.java
│   │   │   │   ├── SupplierinfoDao.java
│   │   │   │   └── TestnotesDao.java
│   │   │   ├── model
│   │   │   │   ├── Asslevel.java
│   │   │   │   ├── Purgood.java
│   │   │   │   ├── Purorder.java
│   │   │   │   ├── Quaprolist.java
│   │   │   │   ├── Requisitions.java
│   │   │   │   ├── Resgood.java
│   │   │   │   ├── Samidentified.java
│   │   │   │   ├── Spare.java
│   │   │   │   ├── Supidentified.java
│   │   │   │   ├── Supplierinfo.java
│   │   │   │   └── Testnotes.java
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   ├── PurgoodServiceImpl.java
│   │   │   │   ├── PurorderServiceImpl.java
│   │   │   │   ├── QuaprolistServiceImpl.java
│   │   │   │   ├── RequisitionsServiceImpl.java
│   │   │   │   ├── ResgoodServiceImpl.java
│   │   │   │   ├── SamidentifiedServiceImpl.java
│   │   │   │   ├── SpareServiceImpl.java
│   │   │   │   ├── SupidentifiedServiceImpl.java
│   │   │   │   ├── SupplierinfoServiceImpl.java
│   │   │   │   └── TestnotesServiceImpl.java
│   │   │   ├── PurgoodService.java
│   │   │   ├── PurorderService.java
│   │   │   ├── QuaprolistService.java
│   │   │   ├── RequisitionsService.java
│   │   │   ├── ResgoodService.java
│   │   │   ├── SamidentifiedService.java
│   │   │   ├── SpareService.java
│   │   │   ├── SupidentifiedService.java
│   │   │   ├── SupplierinfoService.java
│   │   │   └── TestnotesService.java
│   │   ├── sales
│   │   │   ├── action
│   │   │   │   ├── QualityanalysisAction.java
│   │   │   │   ├── ReturnedAction.java
│   │   │   │   ├── RmtotalAction.java
│   │   │   │   ├── Shinote2Action.java
│   │   │   │   ├── Shippingnote1Action.java
│   │   │   │   └── UnqualifiedAction.java
│   │   │   ├── conf
│   │   │   │   └── struts-sales.xml
│   │   │   ├── dao
│   │   │   │   ├── impl
│   │   │   │   │   ├── QualityanalysisDaoImpl.java
│   │   │   │   │   ├── RetgoodDaoImpl.java
│   │   │   │   │   ├── ReturnedDaoImpl.java
│   │   │   │   │   ├── RmtotalDaoImpl.java
│   │   │   │   │   ├── Shi1goodDaoImpl.java
│   │   │   │   │   ├── Shi2goodDaoImpl.java
│   │   │   │   │   ├── Shinote2DaoImpl.java
│   │   │   │   │   ├── Shippingnote1DaoImpl.java
│   │   │   │   │   ├── TaxboardDaoImpl.java
│   │   │   │   │   ├── TaxstampingpartsDaoImpl.java
│   │   │   │   │   ├── UnqmessageDaoImpl.java
│   │   │   │   │   └── UnqualifiedDaoImpl.java
│   │   │   │   ├── QualityanalysisDao.java
│   │   │   │   ├── RetgoodDao.java
│   │   │   │   ├── ReturnedDao.java
│   │   │   │   ├── RmtotalDao.java
│   │   │   │   ├── Shi1goodDao.java
│   │   │   │   ├── Shi2goodDao.java
│   │   │   │   ├── Shinote2Dao.java
│   │   │   │   ├── Shippingnote1Dao.java
│   │   │   │   ├── TaxboardDao.java
│   │   │   │   ├── TaxstampingpartsDao.java
│   │   │   │   ├── UnqmessageDao.java
│   │   │   │   └── UnqualifiedDao.java
│   │   │   ├── model
│   │   │   │   ├── Qualityanalysis.java
│   │   │   │   ├── Retgood.java
│   │   │   │   ├── Returned.java
│   │   │   │   ├── Rmtotal.java
│   │   │   │   ├── Shi1good.java
│   │   │   │   ├── Shi2good.java
│   │   │   │   ├── Shinote2.java
│   │   │   │   ├── Shippingnote1.java
│   │   │   │   ├── Taxboard.java
│   │   │   │   ├── Taxstampingparts.java
│   │   │   │   ├── Unqmessage.java
│   │   │   │   └── Unqualified.java
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   ├── QualityanalysisServiceImpl.java
│   │   │   │   ├── RetgoodServiceImpl.java
│   │   │   │   ├── ReturnedServiceImpl.java
│   │   │   │   ├── RmtotalServiceImpl.java
│   │   │   │   ├── Shi1goodServiceImpl.java
│   │   │   │   ├── Shi2goodServiceImpl.java
│   │   │   │   ├── Shinote2ServiceImpl.java
│   │   │   │   ├── Shippingnote1ServiceImpl.java
│   │   │   │   ├── TaxboardServiceImpl.java
│   │   │   │   ├── TaxstampingpartsServiceImpl.java
│   │   │   │   ├── UnqmessageServiceImpl.java
│   │   │   │   └── UnqualifiedServiceImpl.java
│   │   │   ├── QualityanalysisService.java
│   │   │   ├── RetgoodService.java
│   │   │   ├── ReturnedService.java
│   │   │   ├── RmtotalService.java
│   │   │   ├── Shi1goodService.java
│   │   │   ├── Shi2goodService.java
│   │   │   ├── Shinote2Service.java
│   │   │   ├── Shippingnote1Service.java
│   │   │   ├── TaxboardService.java
│   │   │   ├── TaxstampingpartsService.java
│   │   │   ├── UnqmessageService.java
│   │   │   └── UnqualifiedService.java
│   │   ├── security
│   │   │   ├── action
│   │   │   │   ├── ResourceAction.java
│   │   │   │   ├── RoleAction.java
│   │   │   │   └── UserAction.java
│   │   │   ├── conf
│   │   │   │   └── struts-security.xml
│   │   │   ├── dao
│   │   │   │   ├── impl
│   │   │   │   │   ├── ResourceDaoImpl.java
│   │   │   │   │   ├── RoleDaoImpl.java
│   │   │   │   │   └── UserDaoImpl.java
│   │   │   │   ├── ResourceDao.java
│   │   │   │   ├── RoleDao.java
│   │   │   │   └── UserDao.java
│   │   │   ├── interceptor
│   │   │   │   └── SecureResourceFilterInvocationDefinitionSource.java
│   │   │   ├── model
│   │   │   │   ├── Resource.java
│   │   │   │   ├── Role.java
│   │   │   │   └── User.java
│   │   │   ├── service
│   │   │   │   ├── impl
│   │   │   │   │   ├── ResourceServiceImpl.java
│   │   │   │   │   ├── RoleServiceImpl.java
│   │   │   │   │   └── UserServiceImpl.java
│   │   │   │   ├── ResourceService.java
│   │   │   │   ├── RoleService.java
│   │   │   │   └── UserService.java
│   │   │   └── support
│   │   │   ├── SecurityManager.java
│   │   │   ├── SecurityManagerSupport.java
│   │   │   └── SecurityUserHolder.java
│   │   ├── warehouse
│   │   │   ├── action
│   │   │   │   ├── AuxmaterialAction.java
│   │   │   │   ├── FeedexamineAction.java
│   │   │   │   ├── InventoryAction.java
│   │   │   │   ├── MaccountingAction.java
│   │   │   │   ├── RequisitionAction.java
│   │   │   │   ├── RewinderAction.java
│   │   │   │   ├── StockAction.java
│   │   │   │   ├── StoreschedulingAction.java
│   │   │   │   ├── Supsendm3Action.java
│   │   │   │   ├── SupsendmAction.java
│   │   │   │   ├── VariationAction.java
│   │   │   │   └── WarehouseAction.java
│   │   │   ├── conf
│   │   │   │   └── struts-warehouse.xml
│   │   │   ├── dao
│   │   │   │   ├── AuxmaterialDao.java
│   │   │   │   ├── FeedexamineDao.java
│   │   │   │   ├── FeegoodDao.java
│   │   │   │   ├── impl
│   │   │   │   │   ├── AuxmaterialDaoImpl.java
│   │   │   │   │   ├── FeedexamineDaoImpl.java
│   │   │   │   │   ├── FeegoodDaoImpl.java
│   │   │   │   │   ├── InventoryDaoImpl.java
│   │   │   │   │   ├── MaccountingDaoImpl.java
│   │   │   │   │   ├── PicgoodDaoImpl.java
│   │   │   │   │   ├── RequisitionDaoImpl.java
│   │   │   │   │   ├── RewgoodDaoImpl.java
│   │   │   │   │   ├── RewinderDaoImpl.java
│   │   │   │   │   ├── StockDaoImpl.java
│   │   │   │   │   ├── StoreschedulingDaoImpl.java
│   │   │   │   │   ├── StoschgoodDaoImpl.java
│   │   │   │   │   ├── Supsendm3DaoImpl.java
│   │   │   │   │   ├── SupsendmDaoImpl.java
│   │   │   │   │   ├── Susgood3DaoImpl.java
│   │   │   │   │   ├── SusgoodDaoImpl.java
│   │   │   │   │   ├── VargoodDaoImpl.java
│   │   │   │   │   ├── VariationDaoImpl.java
│   │   │   │   │   └── WarehouseDaoImpl.java
│   │   │   │   ├── InventoryDao.java
│   │   │   │   ├── MaccountingDao.java
│   │   │   │   ├── PicgoodDao.java
│   │   │   │   ├── RequisitionDao.java
│   │   │   │   ├── RewgoodDao.java
│   │   │   │   ├── RewinderDao.java
│   │   │   │   ├── StockDao.java
│   │   │   │   ├── StoreschedulingDao.java
│   │   │   │   ├── StoschgoodDao.java
│   │   │   │   ├── Supsendm3Dao.java
│   │   │   │   ├── SupsendmDao.java
│   │   │   │   ├── Susgood3Dao.java
│   │   │   │   ├── SusgoodDao.java
│   │   │   │   ├── VargoodDao.java
│   │   │   │   ├── VariationDao.java
│   │   │   │   └── WarehouseDao.java
│   │   │   ├── model
│   │   │   │   ├── Auxmaterial.java
│   │   │   │   ├── Feedexamine.java
│   │   │   │   ├── Feegood.java
│   │   │   │   ├── Inventory.java
│   │   │   │   ├── Maccounting.java
│   │   │   │   ├── Picgood.java
│   │   │   │   ├── Requisition.java
│   │   │   │   ├── Rewgood.java
│   │   │   │   ├── Rewinder.java
│   │   │   │   ├── Stock.java
│   │   │   │   ├── Storescheduling.java
│   │   │   │   ├── Stoschgood.java
│   │   │   │   ├── Supsendm3.java
│   │   │   │   ├── Supsendm.java
│   │   │   │   ├── Susgood3.java
│   │   │   │   ├── Susgood.java
│   │   │   │   ├── Vargood.java
│   │   │   │   ├── Variation.java
│   │   │   │   └── Warehouse.java
│   │   │   └── service
│   │   │   ├── AuxmaterialService.java
│   │   │   ├── FeedexamineService.java
│   │   │   ├── FeegoodService.java
│   │   │   ├── impl
│   │   │   │   ├── AuxmaterialServiceImpl.java
│   │   │   │   ├── FeedexamineServiceImpl.java
│   │   │   │   ├── FeegoodServiceImpl.java
│   │   │   │   ├── InventoryServiceImpl.java
│   │   │   │   ├── MaccountingServiceImpl.java
│   │   │   │   ├── PicgoodServiceImpl.java
│   │   │   │   ├── RequisitionServiceImpl.java
│   │   │   │   ├── RewgoodServiceImpl.java
│   │   │   │   ├── RewinderServiceImpl.java
│   │   │   │   ├── StockServiceImpl.java
│   │   │   │   ├── StoreschedulingServiceImpl.java
│   │   │   │   ├── StoschgoodServiceImpl.java
│   │   │   │   ├── Supsendm3ServiceImpl.java
│   │   │   │   ├── SupsendmServiceImpl.java
│   │   │   │   ├── Susgood3ServiceImpl.java
│   │   │   │   ├── SusgoodServiceImpl.java
│   │   │   │   ├── VargoodServiceImpl.java
│   │   │   │   ├── VariationServiceImpl.java
│   │   │   │   └── WarehouseServiceImpl.java
│   │   │   ├── InventoryService.java
│   │   │   ├── MaccountingService.java
│   │   │   ├── PicgoodService.java
│   │   │   ├── RequisitionService.java
│   │   │   ├── RewgoodService.java
│   │   │   ├── RewinderService.java
│   │   │   ├── StockService.java
│   │   │   ├── StoreschedulingService.java
│   │   │   ├── StoschgoodService.java
│   │   │   ├── Supsendm3Service.java
│   │   │   ├── SupsendmService.java
│   │   │   ├── Susgood3Service.java
│   │   │   ├── SusgoodService.java
│   │   │   ├── VargoodService.java
│   │   │   ├── VariationService.java
│   │   │   └── WarehouseService.java
│   │   └── web
│   │   ├── loader
│   │   │   └── ServletContextLoaderListener.java
│   │   └── servlet
│   │   └── Index.java
│   ├── hibernate.cfg.xml
│   ├── log4j.properties
│   └── struts.xml
├── test
│   └── test
│   └── item
│   └── TestItem.java
└── WebRoot
├── 403.jsp
├── common
│   ├── common.txt
│   ├── pub_add_success.jsp
│   ├── pub_del_success.jsp
│   ├── pub_exception.jsp
│   └── pub_update_success.jsp
├── css
│   ├── admin.css
│   ├── all.css
│   ├── box_onfocus.css
│   ├── club
│   │   ├── head_bottom.css
│   │   ├── main.css
│   │   ├── product_exp.css
│   │   └── reg1.css
│   ├── comment
│   │   ├── debate.css
│   │   └── style.css
│   ├── css.css
│   ├── external
│   │   ├── normal.css
│   │   └── style.css
│   ├── foshanshop.css
│   ├── global
│   │   ├── 01.css
│   │   ├── ad.css
│   │   ├── address.css
│   │   ├── bottom.css
│   │   ├── component.css
│   │   ├── foot.css
│   │   ├── getpassword.css
│   │   ├── header01.css
│   │   ├── header.css
│   │   ├── news.css
│   │   ├── orderconfirm.css
│   │   ├── paymentway.css
│   │   ├── product.css
│   │   ├── reg.css
│   │   ├── topcommend.css
│   │   └── topsell.css
│   ├── help.css
│   ├── index.css
│   ├── lanrentuku.css
│   ├── new_cart.css
│   ├── normal.css
│   ├── product
│   │   ├── catalog.css
│   │   ├── list.css
│   │   └── product.css
│   ├── slide.css
│   ├── style.css
│   ├── vip.css
│   ├── your-account.css
│   └── zjm.css
├── fckeditor
│   ├── _documentation.html
│   ├── editor
│   │   ├── css
│   │   │   ├── behaviors
│   │   │   │   ├── disablehandles.htc
│   │   │   │   └── showtableborders.htc
│   │   │   ├── fck_editorarea.css
│   │   │   ├── fck_internal.css
│   │   │   ├── fck_showtableborders_gecko.css
│   │   │   └── images
│   │   │   ├── block_address.png
│   │   │   ├── block_blockquote.png
│   │   │   ├── block_div.png
│   │   │   ├── block_h1.png
│   │   │   ├── block_h2.png
│   │   │   ├── block_h3.png
│   │   │   ├── block_h4.png
│   │   │   ├── block_h5.png
│   │   │   ├── block_h6.png
│   │   │   ├── block_p.png
│   │   │   ├── block_pre.png
│   │   │   ├── fck_anchor.gif
│   │   │   ├── fck_flashlogo.gif
│   │   │   ├── fck_hiddenfield.gif
│   │   │   ├── fck_pagebreak.gif
│   │   │   └── fck_plugin.gif
│   │   ├── dialog
│   │   │   ├── common
│   │   │   │   ├── fck_dialog_common.css
│   │   │   │   ├── fck_dialog_common.js
│   │   │   │   └── images
│   │   │   │   ├── locked.gif
│   │   │   │   ├── reset.gif
│   │   │   │   └── unlocked.gif
│   │   │   ├── fck_about
│   │   │   │   ├── logo_fckeditor.gif
│   │   │   │   ├── logo_fredck.gif
│   │   │   │   └── sponsors
│   │   │   │   └── spellchecker_net.gif
│   │   │   ├── fck_about.html
│   │   │   ├── fck_anchor.html
│   │   │   ├── fck_button.html
│   │   │   ├── fck_checkbox.html
│   │   │   ├── fck_colorselector.html
│   │   │   ├── fck_div.html
│   │   │   ├── fck_docprops
│   │   │   │   └── fck_document_preview.html
│   │   │   ├── fck_docprops.html
│   │   │   ├── fck_flash
│   │   │   │   ├── fck_flash.js
│   │   │   │   └── fck_flash_preview.html
│   │   │   ├── fck_flash.html
│   │   │   ├── fck_form.html
│   │   │   ├── fck_hiddenfield.html
│   │   │   ├── fck_image
│   │   │   │   ├── fck_image.js
│   │   │   │   └── fck_image_preview.html
│   │   │   ├── fck_image.html
│   │   │   ├── fck_link
│   │   │   │   └── fck_link.js
│   │   │   ├── fck_link.html
│   │   │   ├── fck_listprop.html
│   │   │   ├── fck_paste.html
│   │   │   ├── fck_radiobutton.html
│   │   │   ├── fck_replace.html
│   │   │   ├── fck_scayt
│   │   │   │   └── scayt_dialog.css
│   │   │   ├── fck_scayt.html
│   │   │   ├── fck_select
│   │   │   │   └── fck_select.js
│   │   │   ├── fck_select.html
│   │   │   ├── fck_smiley.html
│   │   │   ├── fck_source.html
│   │   │   ├── fck_specialchar.html
│   │   │   ├── fck_spellerpages
│   │   │   │   └── spellerpages
│   │   │   │   ├── blank.html
│   │   │   │   ├── controls.html
│   │   │   │   ├── controlWindow.js
│   │   │   │   ├── server-scripts
│   │   │   │   │   ├── spellchecker.cfm
│   │   │   │   │   ├── spellchecker.php
│   │   │   │   │   └── spellchecker.pl
│   │   │   │   ├── spellchecker.html
│   │   │   │   ├── spellChecker.js
│   │   │   │   ├── spellerStyle.css
│   │   │   │   └── wordWindow.js
│   │   │   ├── fck_spellerpages.html
│   │   │   ├── fck_tablecell.html
│   │   │   ├── fck_table.html
│   │   │   ├── fck_template
│   │   │   │   └── images
│   │   │   │   ├── template1.gif
│   │   │   │   ├── template2.gif
│   │   │   │   └── template3.gif
│   │   │   ├── fck_template.html
│   │   │   ├── fck_textarea.html
│   │   │   └── fck_textfield.html
│   │   ├── dtd
│   │   │   ├── fck_dtd_test.html
│   │   │   ├── fck_xhtml10strict.js
│   │   │   └── fck_xhtml10transitional.js
│   │   ├── fckdebug.html
│   │   ├── fckdialog.html
│   │   ├── fckeditor.html
│   │   ├── fckeditor.original.html
│   │   ├── filemanager
│   │   │   ├── browser
│   │   │   │   └── default
│   │   │   │   ├── browser.css
│   │   │   │   ├── browser.html
│   │   │   │   ├── frmactualfolder.html
│   │   │   │   ├── frmcreatefolder.html
│   │   │   │   ├── frmfolders.html
│   │   │   │   ├── frmresourceslist.html
│   │   │   │   ├── frmresourcetype.html
│   │   │   │   ├── frmupload.html
│   │   │   │   ├── images
│   │   │   │   │   ├── ButtonArrow.gif
│   │   │   │   │   ├── Folder32.gif
│   │   │   │   │   ├── Folder.gif
│   │   │   │   │   ├── FolderOpened32.gif
│   │   │   │   │   ├── FolderOpened.gif
│   │   │   │   │   ├── FolderUp.gif
│   │   │   │   │   ├── icons
│   │   │   │   │   │   ├── 32
│   │   │   │   │   │   │   ├── ai.gif
│   │   │   │   │   │   │   ├── avi.gif
│   │   │   │   │   │   │   ├── bmp.gif
│   │   │   │   │   │   │   ├── cs.gif
│   │   │   │   │   │   │   ├── default.icon.gif
│   │   │   │   │   │   │   ├── dll.gif
│   │   │   │   │   │   │   ├── doc.gif
│   │   │   │   │   │   │   ├── exe.gif
│   │   │   │   │   │   │   ├── fla.gif
│   │   │   │   │   │   │   ├── gif.gif
│   │   │   │   │   │   │   ├── htm.gif
│   │   │   │   │   │   │   ├── html.gif
│   │   │   │   │   │   │   ├── jpg.gif
│   │   │   │   │   │   │   ├── js.gif
│   │   │   │   │   │   │   ├── mdb.gif
│   │   │   │   │   │   │   ├── mp3.gif
│   │   │   │   │   │   │   ├── pdf.gif
│   │   │   │   │   │   │   ├── png.gif
│   │   │   │   │   │   │   ├── ppt.gif
│   │   │   │   │   │   │   ├── rdp.gif
│   │   │   │   │   │   │   ├── swf.gif
│   │   │   │   │   │   │   ├── swt.gif
│   │   │   │   │   │   │   ├── txt.gif
│   │   │   │   │   │   │   ├── vsd.gif
│   │   │   │   │   │   │   ├── xls.gif
│   │   │   │   │   │   │   ├── xml.gif
│   │   │   │   │   │   │   └── zip.gif
│   │   │   │   │   │   ├── ai.gif
│   │   │   │   │   │   ├── avi.gif
│   │   │   │   │   │   ├── bmp.gif
│   │   │   │   │   │   ├── cs.gif
│   │   │   │   │   │   ├── default.icon.gif
│   │   │   │   │   │   ├── dll.gif
│   │   │   │   │   │   ├── doc.gif
│   │   │   │   │   │   ├── exe.gif
│   │   │   │   │   │   ├── fla.gif
│   │   │   │   │   │   ├── gif.gif
│   │   │   │   │   │   ├── htm.gif
│   │   │   │   │   │   ├── html.gif
│   │   │   │   │   │   ├── jpg.gif
│   │   │   │   │   │   ├── js.gif
│   │   │   │   │   │   ├── mdb.gif
│   │   │   │   │   │   ├── mp3.gif
│   │   │   │   │   │   ├── pdf.gif
│   │   │   │   │   │   ├── png.gif
│   │   │   │   │   │   ├── ppt.gif
│   │   │   │   │   │   ├── rdp.gif
│   │   │   │   │   │   ├── swf.gif
│   │   │   │   │   │   ├── swt.gif
│   │   │   │   │   │   ├── txt.gif
│   │   │   │   │   │   ├── vsd.gif
│   │   │   │   │   │   ├── xls.gif
│   │   │   │   │   │   ├── xml.gif
│   │   │   │   │   │   └── zip.gif
│   │   │   │   │   └── spacer.gif
│   │   │   │   └── js
│   │   │   │   ├── common.js
│   │   │   │   └── fckxml.js
│   │   │   └── connectors
│   │   │   ├── asp
│   │   │   │   ├── basexml.asp
│   │   │   │   ├── class_upload.asp
│   │   │   │   ├── commands.asp
│   │   │   │   ├── config.asp
│   │   │   │   ├── connector.asp
│   │   │   │   ├── io.asp
│   │   │   │   ├── upload.asp
│   │   │   │   └── util.asp
│   │   │   ├── aspx
│   │   │   │   ├── config.ascx
│   │   │   │   ├── connector.aspx
│   │   │   │   └── upload.aspx
│   │   │   ├── cfm
│   │   │   │   ├── cf5_connector.cfm
│   │   │   │   ├── cf5_upload.cfm
│   │   │   │   ├── cf_basexml.cfm
│   │   │   │   ├── cf_commands.cfm
│   │   │   │   ├── cf_connector.cfm
│   │   │   │   ├── cf_io.cfm
│   │   │   │   ├── cf_upload.cfm
│   │   │   │   ├── cf_util.cfm
│   │   │   │   ├── config.cfm
│   │   │   │   ├── connector.cfm
│   │   │   │   ├── image.cfc
│   │   │   │   ├── ImageObject.cfc
│   │   │   │   └── upload.cfm
│   │   │   ├── lasso
│   │   │   │   ├── config.lasso
│   │   │   │   ├── connector.lasso
│   │   │   │   └── upload.lasso
│   │   │   ├── perl
│   │   │   │   ├── basexml.pl
│   │   │   │   ├── commands.pl
│   │   │   │   ├── config.pl
│   │   │   │   ├── connector.cgi
│   │   │   │   ├── io.pl
│   │   │   │   ├── upload.cgi
│   │   │   │   ├── upload_fck.pl
│   │   │   │   └── util.pl
│   │   │   ├── php
│   │   │   │   ├── basexml.php
│   │   │   │   ├── commands.php
│   │   │   │   ├── config.php
│   │   │   │   ├── connector.php
│   │   │   │   ├── io.php
│   │   │   │   ├── phpcompat.php
│   │   │   │   ├── upload.php
│   │   │   │   └── util.php
│   │   │   ├── py
│   │   │   │   ├── config.py
│   │   │   │   ├── connector.py
│   │   │   │   ├── fckcommands.py
│   │   │   │   ├── fckconnector.py
│   │   │   │   ├── fckoutput.py
│   │   │   │   ├── fckutil.py
│   │   │   │   ├── htaccess.txt
│   │   │   │   ├── upload.py
│   │   │   │   ├── wsgi.py
│   │   │   │   └── zope.py
│   │   │   ├── test.html
│   │   │   └── uploadtest.html
│   │   ├── images
│   │   │   ├── anchor.gif
│   │   │   ├── arrow_ltr.gif
│   │   │   ├── arrow_rtl.gif
│   │   │   ├── smiley
│   │   │   │   └── msn
│   │   │   │   ├── angel_smile.gif
│   │   │   │   ├── angry_smile.gif
│   │   │   │   ├── broken_heart.gif
│   │   │   │   ├── cake.gif
│   │   │   │   ├── confused_smile.gif
│   │   │   │   ├── cry_smile.gif
│   │   │   │   ├── devil_smile.gif
│   │   │   │   ├── embaressed_smile.gif
│   │   │   │   ├── envelope.gif
│   │   │   │   ├── heart.gif
│   │   │   │   ├── kiss.gif
│   │   │   │   ├── lightbulb.gif
│   │   │   │   ├── omg_smile.gif
│   │   │   │   ├── regular_smile.gif
│   │   │   │   ├── sad_smile.gif
│   │   │   │   ├── shades_smile.gif
│   │   │   │   ├── teeth_smile.gif
│   │   │   │   ├── thumbs_down.gif
│   │   │   │   ├── thumbs_up.gif
│   │   │   │   ├── tounge_smile.gif
│   │   │   │   ├── whatchutalkingabout_smile.gif
│   │   │   │   └── wink_smile.gif
│   │   │   └── spacer.gif
│   │   ├── js
│   │   │   ├── fckadobeair.js
│   │   │   ├── fckeditorcode_gecko.js
│   │   │   └── fckeditorcode_ie.js
│   │   ├── lang
│   │   │   ├── af.js
│   │   │   ├── ar.js
│   │   │   ├── bg.js
│   │   │   ├── bn.js
│   │   │   ├── bs.js
│   │   │   ├── ca.js
│   │   │   ├── cs.js
│   │   │   ├── da.js
│   │   │   ├── de.js
│   │   │   ├── el.js
│   │   │   ├── en-au.js
│   │   │   ├── en-ca.js
│   │   │   ├── en.js
│   │   │   ├── en-uk.js
│   │   │   ├── eo.js
│   │   │   ├── es.js
│   │   │   ├── et.js
│   │   │   ├── eu.js
│   │   │   ├── fa.js
│   │   │   ├── fi.js
│   │   │   ├── fo.js
│   │   │   ├── fr-ca.js
│   │   │   ├── fr.js
│   │   │   ├── gl.js
│   │   │   ├── gu.js
│   │   │   ├── he.js
│   │   │   ├── hi.js
│   │   │   ├── hr.js
│   │   │   ├── hu.js
│   │   │   ├── is.js
│   │   │   ├── it.js
│   │   │   ├── ja.js
│   │   │   ├── km.js
│   │   │   ├── ko.js
│   │   │   ├── lt.js
│   │   │   ├── lv.js
│   │   │   ├── mn.js
│   │   │   ├── ms.js
│   │   │   ├── nb.js
│   │   │   ├── nl.js
│   │   │   ├── no.js
│   │   │   ├── pl.js
│   │   │   ├── pt-br.js
│   │   │   ├── pt.js
│   │   │   ├── ro.js
│   │   │   ├── ru.js
│   │   │   ├── sk.js
│   │   │   ├── sl.js
│   │   │   ├── sr.js
│   │   │   ├── sr-latn.js
│   │   │   ├── sv.js
│   │   │   ├── th.js
│   │   │   ├── _translationstatus.txt
│   │   │   ├── tr.js
│   │   │   ├── uk.js
│   │   │   ├── vi.js
│   │   │   ├── zh-cn.js
│   │   │   └── zh.js
│   │   ├── plugins
│   │   │   ├── autogrow
│   │   │   │   └── fckplugin.js
│   │   │   ├── bbcode
│   │   │   │   ├── fckplugin.js
│   │   │   │   └── _sample
│   │   │   │   ├── sample.config.js
│   │   │   │   └── sample.html
│   │   │   ├── dragresizetable
│   │   │   │   └── fckplugin.js
│   │   │   ├── placeholder
│   │   │   │   ├── fck_placeholder.html
│   │   │   │   ├── fckplugin.js
│   │   │   │   ├── lang
│   │   │   │   │   ├── de.js
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── es.js
│   │   │   │   │   ├── fr.js
│   │   │   │   │   ├── it.js
│   │   │   │   │   └── pl.js
│   │   │   │   └── placeholder.gif
│   │   │   ├── simplecommands
│   │   │   │   └── fckplugin.js
│   │   │   └── tablecommands
│   │   │   └── fckplugin.js
│   │   ├── skins
│   │   │   ├── default
│   │   │   │   ├── fck_dialog.css
│   │   │   │   ├── fck_dialog_ie6.js
│   │   │   │   ├── fck_editor.css
│   │   │   │   ├── fck_strip.gif
│   │   │   │   └── images
│   │   │   │   ├── dialog.sides.gif
│   │   │   │   ├── dialog.sides.png
│   │   │   │   ├── dialog.sides.rtl.png
│   │   │   │   ├── sprites.gif
│   │   │   │   ├── sprites.png
│   │   │   │   ├── toolbar.arrowright.gif
│   │   │   │   ├── toolbar.buttonarrow.gif
│   │   │   │   ├── toolbar.collapse.gif
│   │   │   │   ├── toolbar.end.gif
│   │   │   │   ├── toolbar.expand.gif
│   │   │   │   ├── toolbar.separator.gif
│   │   │   │   └── toolbar.start.gif
│   │   │   ├── _fckviewstrips.html
│   │   │   ├── office2003
│   │   │   │   ├── fck_dialog.css
│   │   │   │   ├── fck_dialog_ie6.js
│   │   │   │   ├── fck_editor.css
│   │   │   │   ├── fck_strip.gif
│   │   │   │   └── images
│   │   │   │   ├── dialog.sides.gif
│   │   │   │   ├── dialog.sides.png
│   │   │   │   ├── dialog.sides.rtl.png
│   │   │   │   ├── sprites.gif
│   │   │   │   ├── sprites.png
│   │   │   │   ├── toolbar.arrowright.gif
│   │   │   │   ├── toolbar.bg.gif
│   │   │   │   ├── toolbar.buttonarrow.gif
│   │   │   │   ├── toolbar.collapse.gif
│   │   │   │   ├── toolbar.end.gif
│   │   │   │   ├── toolbar.expand.gif
│   │   │   │   ├── toolbar.separator.gif
│   │   │   │   └── toolbar.start.gif
│   │   │   └── silver
│   │   │   ├── fck_dialog.css
│   │   │   ├── fck_dialog_ie6.js
│   │   │   ├── fck_editor.css
│   │   │   ├── fck_strip.gif
│   │   │   └── images
│   │   │   ├── dialog.sides.gif
│   │   │   ├── dialog.sides.png
│   │   │   ├── dialog.sides.rtl.png
│   │   │   ├── sprites.gif
│   │   │   ├── sprites.png
│   │   │   ├── toolbar.arrowright.gif
│   │   │   ├── toolbar.buttonarrow.gif
│   │   │   ├── toolbar.buttonbg.gif
│   │   │   ├── toolbar.collapse.gif
│   │   │   ├── toolbar.end.gif
│   │   │   ├── toolbar.expand.gif
│   │   │   ├── toolbar.separator.gif
│   │   │   └── toolbar.start.gif
│   │   ├── _source
│   │   │   ├── classes
│   │   │   │   ├── fckcontextmenu.js
│   │   │   │   ├── fckdataprocessor.js
│   │   │   │   ├── fckdocumentfragment_gecko.js
│   │   │   │   ├── fckdocumentfragment_ie.js
│   │   │   │   ├── fckdomrange_gecko.js
│   │   │   │   ├── fckdomrange_ie.js
│   │   │   │   ├── fckdomrangeiterator.js
│   │   │   │   ├── fckdomrange.js
│   │   │   │   ├── fckeditingarea.js
│   │   │   │   ├── fckelementpath.js
│   │   │   │   ├── fckenterkey.js
│   │   │   │   ├── fckevents.js
│   │   │   │   ├── fckhtmliterator.js
│   │   │   │   ├── fckicon.js
│   │   │   │   ├── fckiecleanup.js
│   │   │   │   ├── fckimagepreloader.js
│   │   │   │   ├── fckkeystrokehandler.js
│   │   │   │   ├── fckmenublock.js
│   │   │   │   ├── fckmenublockpanel.js
│   │   │   │   ├── fckmenuitem.js
│   │   │   │   ├── fckpanel.js
│   │   │   │   ├── fckplugin.js
│   │   │   │   ├── fckspecialcombo.js
│   │   │   │   ├── fckstyle.js
│   │   │   │   ├── fcktoolbarbreak_gecko.js
│   │   │   │   ├── fcktoolbarbreak_ie.js
│   │   │   │   ├── fcktoolbarbutton.js
│   │   │   │   ├── fcktoolbarbuttonui.js
│   │   │   │   ├── fcktoolbarfontformatcombo.js
│   │   │   │   ├── fcktoolbarfontscombo.js
│   │   │   │   ├── fcktoolbarfontsizecombo.js
│   │   │   │   ├── fcktoolbar.js
│   │   │   │   ├── fcktoolbarpanelbutton.js
│   │   │   │   ├── fcktoolbarspecialcombo.js
│   │   │   │   ├── fcktoolbarstylecombo.js
│   │   │   │   ├── fckw3crange.js
│   │   │   │   ├── fckxml_gecko.js
│   │   │   │   ├── fckxml_ie.js
│   │   │   │   └── fckxml.js
│   │   │   ├── commandclasses
│   │   │   │   ├── fckblockquotecommand.js
│   │   │   │   ├── fckcorestylecommand.js
│   │   │   │   ├── fckfitwindow.js
│   │   │   │   ├── fckindentcommands.js
│   │   │   │   ├── fckjustifycommands.js
│   │   │   │   ├── fcklistcommands.js
│   │   │   │   ├── fcknamedcommand.js
│   │   │   │   ├── fck_othercommands.js
│   │   │   │   ├── fckpasteplaintextcommand.js
│   │   │   │   ├── fckpastewordcommand.js
│   │   │   │   ├── fckremoveformatcommand.js
│   │   │   │   ├── fckshowblocks.js
│   │   │   │   ├── fckspellcheckcommand_gecko.js
│   │   │   │   ├── fckspellcheckcommand_ie.js
│   │   │   │   ├── fckstylecommand.js
│   │   │   │   ├── fcktablecommand.js
│   │   │   │   └── fcktextcolorcommand.js
│   │   │   ├── fckconstants.js
│   │   │   ├── fckeditorapi.js
│   │   │   ├── fckjscoreextensions.js
│   │   │   ├── fckscriptloader.js
│   │   │   └── internals
│   │   │   ├── fckbrowserinfo.js
│   │   │   ├── fckcodeformatter.js
│   │   │   ├── fckcommands.js
│   │   │   ├── fckconfig.js
│   │   │   ├── fck_contextmenu.js
│   │   │   ├── fckdebug_empty.js
│   │   │   ├── fckdebug.js
│   │   │   ├── fckdialog.js
│   │   │   ├── fckdocumentprocessor.js
│   │   │   ├── fckdomtools.js
│   │   │   ├── fck_gecko.js
│   │   │   ├── fck_ie.js
│   │   │   ├── fck.js
│   │   │   ├── fcklanguagemanager.js
│   │   │   ├── fcklisthandler.js
│   │   │   ├── fcklistslib.js
│   │   │   ├── fckplugins.js
│   │   │   ├── fckregexlib.js
│   │   │   ├── fckscayt.js
│   │   │   ├── fckselection_gecko.js
│   │   │   ├── fckselection_ie.js
│   │   │   ├── fckselection.js
│   │   │   ├── fckstyles.js
│   │   │   ├── fcktablehandler_gecko.js
│   │   │   ├── fcktablehandler_ie.js
│   │   │   ├── fcktablehandler.js
│   │   │   ├── fcktoolbaritems.js
│   │   │   ├── fcktoolbarset.js
│   │   │   ├── fcktools_gecko.js
│   │   │   ├── fcktools_ie.js
│   │   │   ├── fcktools.js
│   │   │   ├── fckundo.js
│   │   │   ├── fckurlparams.js
│   │   │   ├── fckxhtmlentities.js
│   │   │   ├── fckxhtml_gecko.js
│   │   │   ├── fckxhtml_ie.js
│   │   │   └── fckxhtml.js
│   │   └── wsc
│   │   ├── ciframe.html
│   │   ├── tmpFrameset.html
│   │   └── w.html
│   ├── fckconfig.js
│   ├── fckeditor.afp
│   ├── fckeditor.asp
│   ├── fckeditor.cfc
│   ├── fckeditor.cfm
│   ├── fckeditor.js
│   ├── fckeditor.lasso
│   ├── fckeditor.php
│   ├── fckeditor_php4.php
│   ├── fckeditor_php5.php
│   ├── fckeditor.pl
│   ├── fckeditor.py
│   ├── fckpackager.xml
│   ├── fckstyles.xml
│   ├── fcktemplates.xml
│   ├── fckutils.cfm
│   ├── license.txt
│   ├── _samples
│   │   ├── adobeair
│   │   │   ├── application.xml
│   │   │   ├── icons
│   │   │   │   ├── 128.png
│   │   │   │   ├── 16.png
│   │   │   │   ├── 32.png
│   │   │   │   └── 48.png
│   │   │   ├── package.bat
│   │   │   ├── run.bat
│   │   │   ├── sample01_cert.pfx
│   │   │   └── sample01.html
│   │   ├── afp
│   │   │   ├── fck.afpa
│   │   │   ├── fck.afpa.code
│   │   │   ├── sample01.afp
│   │   │   ├── sample02.afp
│   │   │   ├── sample03.afp
│   │   │   ├── sample04.afp
│   │   │   └── sampleposteddata.afp
│   │   ├── asp
│   │   │   ├── sample01.asp
│   │   │   ├── sample02.asp
│   │   │   ├── sample03.asp
│   │   │   ├── sample04.asp
│   │   │   └── sampleposteddata.asp
│   │   ├── cfm
│   │   │   ├── sample01.cfm
│   │   │   ├── sample01_mx.cfm
│   │   │   ├── sample02.cfm
│   │   │   ├── sample02_mx.cfm
│   │   │   ├── sample03.cfm
│   │   │   ├── sample03_mx.cfm
│   │   │   ├── sample04.cfm
│   │   │   ├── sample04_mx.cfm
│   │   │   └── sampleposteddata.cfm
│   │   ├── default.html
│   │   ├── html
│   │   │   ├── assets
│   │   │   │   ├── sample06.config.js
│   │   │   │   ├── sample11_frame.html
│   │   │   │   ├── sample14.config.js
│   │   │   │   ├── sample14.styles.css
│   │   │   │   ├── sample15.config.js
│   │   │   │   ├── sample16.config.js
│   │   │   │   ├── sample16.fla
│   │   │   │   ├── sample16.swf
│   │   │   │   └── swfobject.js
│   │   │   ├── sample01.html
│   │   │   ├── sample02.html
│   │   │   ├── sample03.html
│   │   │   ├── sample04.html
│   │   │   ├── sample05.html
│   │   │   ├── sample06.html
│   │   │   ├── sample07.html
│   │   │   ├── sample08.html
│   │   │   ├── sample09.html
│   │   │   ├── sample10.html
│   │   │   ├── sample11.html
│   │   │   ├── sample12.html
│   │   │   ├── sample13.html
│   │   │   ├── sample14.html
│   │   │   ├── sample15.html
│   │   │   └── sample16.html
│   │   ├── lasso
│   │   │   ├── sample01.lasso
│   │   │   ├── sample02.lasso
│   │   │   ├── sample03.lasso
│   │   │   ├── sample04.lasso
│   │   │   └── sampleposteddata.lasso
│   │   ├── perl
│   │   │   ├── sample01.cgi
│   │   │   ├── sample02.cgi
│   │   │   ├── sample03.cgi
│   │   │   ├── sample04.cgi
│   │   │   └── sampleposteddata.cgi
│   │   ├── php
│   │   │   ├── sample01.php
│   │   │   ├── sample02.php
│   │   │   ├── sample03.php
│   │   │   ├── sample04.php
│   │   │   └── sampleposteddata.php
│   │   ├── _plugins
│   │   │   ├── findreplace
│   │   │   │   ├── fckplugin.js
│   │   │   │   ├── find.gif
│   │   │   │   ├── find.html
│   │   │   │   ├── lang
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── fr.js
│   │   │   │   │   └── it.js
│   │   │   │   ├── replace.gif
│   │   │   │   └── replace.html
│   │   │   └── samples
│   │   │   └── fckplugin.js
│   │   ├── py
│   │   │   ├── sample01.py
│   │   │   └── sampleposteddata.py
│   │   ├── sample.css
│   │   └── sampleslist.html
│   ├── _upgrade.html
│   ├── _whatsnew_history.html
│   └── _whatsnew.html
├── flash
│   └── external
│   ├── 12.swf
│   └── 19.swf
├── images
│   ├── 1111111.jpg
│   ├── 20050423123030159s.gif
│   ├── 20050423123030161s.gif
│   ├── 20050423123030162s.gif
│   ├── 20050423123030163s.gif
│   ├── 3245.jpg
│   ├── ad
│   │   ├── jundao1.gif
│   │   └── sidebanner-1.gif
│   ├── add.png
│   ├── admin
│   │   ├── Admin_Login1.gif
│   │   ├── Admin_Login2.gif
│   │   └── Admin_Login3.gif
│   ├── admin.css
│   ├── admin_p.gif
│   ├── A.gif
│   ├── arrow_down.gif
│   ├── arrow.gif
│   ├── arrow_up.gif
│   ├── article_common.gif
│   ├── bg_btn.gif
│   ├── B.gif
│   ├── bg-mid.jpg
│   ├── bg-mid-under.jpg
│   ├── bg-mid-under - 副本.jpg
│   ├── bh07080924_360x190.jpg
│   ├── blue.jpg
│   ├── blue.png
│   ├── bt_login.gif
│   ├── btn3.png
│   ├── buy
│   │   ├── as-s-continus.gif
│   │   ├── az-by-split.gif
│   │   ├── az-dot.gif
│   │   ├── az-empty-shoppingcard.gif
│   │   ├── az-exit.gif
│   │   ├── az-go-button-gateway.gif
│   │   ├── az-info.gif
│   │   ├── az-pop-shopping-close.gif
│   │   ├── az-questionmark.gif
│   │   ├── az-s-apply.gif
│   │   ├── az-s-bottom-left-blue-corner.gif
│   │   ├── az-s-bottom-left-tan-corner.gif
│   │   ├── az-s-bottom-right-blue-corner.gif
│   │   ├── az-s-bottom-right-tan-corner.gif
│   │   ├── az-s-change.gif
│   │   ├── az-s-checkout-confirm-banne.gif
│   │   ├── az-s-checkout-payment-banne.gif
│   │   ├── az-s-checkout-shipping-bann.gif
│   │   ├── az-s-click-place-your-order.gif
│   │   ├── az-sfl-modify-over.gif
│   │   ├── az-sfl-shipping-to-this-boo.gif
│   │   ├── az-s-place-order_01.gif
│   │   ├── az-s-place-order_02.gif
│   │   ├── az-s-spc-tl-inside-drksnd.gif
│   │   ├── az-s-spc-tr-inside-drksnd.gif
│   │   ├── az-s-top-left-blue-corner.gif
│   │   ├── az-s-top-right-blue-corner.gif
│   │   ├── bank-ico-2.jpg
│   │   ├── delete.gif
│   │   ├── exclamation-error-red.gif
│   │   ├── green-pixel.gif
│   │   ├── onlinebankpayment.gif
│   │   ├── onlinepayment.gif
│   │   ├── pay_r2_c7.jpg
│   │   ├── pay_r3_c3.jpg
│   │   ├── pay_r7_c5.jpg
│   │   ├── setpnext.gif
│   │   ├── shop-cart-header-blue.gif
│   │   └── update-t-sm.gif
│   ├── camp.gif
│   ├── C.gif
│   ├── checked.gif
│   ├── clsfld.gif
│   ├── comment
│   │   ├── ccc.gif
│   │   ├── icon1.gif
│   │   ├── pic01.gif
│   │   ├── pic02_1_1.gif
│   │   ├── pic02_1_2.gif
│   │   ├── pic02_1_3.gif
│   │   ├── pic02_1_4.gif
│   │   ├── pic02_1_5.gif
│   │   ├── pic02_1_6.gif
│   │   ├── pic02_2_1.gif
│   │   ├── pic02_2_2.gif
│   │   ├── pic02_2_3.gif
│   │   ├── pic02_2_4.gif
│   │   ├── pic02_2_5.gif
│   │   ├── pic02_2_6.gif
│   │   ├── pic02_3_1.gif
│   │   ├── pic02_3_2.gif
│   │   ├── pic02_3_3.gif
│   │   ├── pic02_3_4.gif
│   │   ├── pic02_3_5.gif
│   │   ├── pic02_3_6.gif
│   │   ├── pic03.gif
│   │   ├── pic04.gif
│   │   ├── pic07.gif
│   │   ├── pic08.gif
│   │   ├── pic09.gif
│   │   ├── pic10.gif
│   │   └── pic11.gif
│   ├── customer
│   │   ├── az-1px.gif
│   │   ├── az-cancel-41.gif
│   │   ├── az-continue-arrow.gif
│   │   ├── az-dot.gif
│   │   ├── az-left-corner.gif
│   │   ├── az-rebuy.gif
│   │   ├── az-sky-top-left-round-corner.gif
│   │   ├── az-sky-top-right-round-corner.gif
│   │   ├── az-tan-bottom-left-round-corner.gif
│   │   ├── az-tan-bottom-right-round-corner.gif
│   │   ├── az-tan-top-left-round-corner.gif
│   │   ├── az-tan-top-right-round-cornr.gif
│   │   ├── az-transparent-pixel.gif
│   │   ├── canncel.gif
│   │   ├── receive.gif
│   │   └── return.gif
│   ├── dela.gif
│   ├── del.gif
│   ├── del.png
│   ├── doctemp.gif
│   ├── edit.gif
│   ├── error
│   │   ├── center_error.gif
│   │   ├── error_r1_c1.gif
│   │   ├── error_r2_c1.gif
│   │   ├── error_r2_c3.gif
│   │   └── error_r3_c2.gif
│   ├── error.gif
│   ├── examine_bg_gray.jpg
│   ├── examine_bg_green.jpg
│   ├── examine_bg_red.jpg
│   ├── exception.jpg
│   ├── external
│   │   ├── bg-mid.jpg
│   │   ├── bg-mid-under.jpg
│   │   ├── bg-mid-under - 副本.jpg
│   │   ├── logo.jpg
│   │   └── news_05.jpg
│   ├── global
│   │   ├── 06baihuo_daohang_11.gif
│   │   ├── 2j4.gif
│   │   ├── az-h4.gif
│   │   ├── az-h5.gif
│   │   ├── az-home_22.gif
│   │   ├── az-home_24.gif
│   │   ├── az-home_25.gif
│   │   ├── az-home_72.gif
│   │   ├── az-home_74.gif
│   │   ├── az-want-to-view-orders.gif
│   │   ├── bj_1.gif
│   │   ├── bj_2.gif
│   │   ├── bj_blue.gif
│   │   ├── bj_gray.gif
│   │   ├── bj_red.gif
│   │   ├── bj_top.gif
│   │   ├── cm_act_l.gif
│   │   ├── cm_act_r.gif
│   │   ├── cm_hov_l.gif
│   │   ├── cm_hov_r.gif
│   │   ├── cm_l.gif
│   │   ├── cm_r.gif
│   │   ├── dotted_line_h_r.gif
│   │   ├── forum_title_bg.gif
│   │   ├── header_mm_bk.gif
│   │   ├── header_mm_sep.gif
│   │   ├── help-dd_03.jpg
│   │   ├── help-dd_06.jpg
│   │   ├── help-dd_08.jpg
│   │   ├── icon_arrow_rb.gif
│   │   ├── init.gif
│   │   ├── ll060828_lanmu.gif
│   │   ├── lll_041109_jlr4_22.gif
│   │   ├── loginicon1.gif
│   │   ├── logo1.jpg
│   │   ├── logo2.gif
│   │   ├── logo.gif
│   │   ├── managelogo.gif
│   │   ├── news_wrapbg.gif
│   │   ├── nofind.gif
│   │   ├── ok.gif
│   │   ├── p_bj.jpg
│   │   ├── post.gif
│   │   ├── product_blank.gif
│   │   ├── product_blank.png
│   │   ├── regloginbutton2.jpg
│   │   ├── right_bar.jpg
│   │   ├── right_blank.gif
│   │   ├── sale.gif
│   │   ├── searchbox_tab_center.gif
│   │   ├── searchbox_tab_left01.gif
│   │   ├── searchbox_tab_left.gif
│   │   ├── searchimg.gif
│   │   ├── sorry.jpg
│   │   ├── standard_msg_ok_big.gif
│   │   ├── sy2.gif
│   │   ├── sy3a.gif
│   │   ├── sy4.jpg
│   │   ├── sy6.gif
│   │   ├── temp_wrapbg.gif
│   │   └── zoom+.gif
│   ├── header_bg.jpg
│   ├── header_left.jpg
│   ├── header_right.jpg
│   ├── jiantou-011.gif
│   ├── jtree
│   │   ├── base.gif
│   │   ├── cd.gif
│   │   ├── empty.gif
│   │   ├── folder.gif
│   │   ├── folderopen.gif
│   │   ├── joinbottom.gif
│   │   ├── join.gif
│   │   ├── line.gif
│   │   ├── minusBottom.gif
│   │   ├── minus.gif
│   │   ├── page.gif
│   │   ├── plusBottom.gif
│   │   └── plus.gif
│   ├── lastnodeline.gif
│   ├── list_line0.gif
│   ├── list_line1.gif
│   ├── list_line_end.gif
│   ├── lock.gif
│   ├── login
│   │   ├── az-continue-arrow.gif
│   │   ├── az-dot.gif
│   │   ├── az-finish.gif
│   │   ├── az-tan-bottom-left-round-corner.gif
│   │   ├── az-tan-bottom-right-round-corner.gif
│   │   ├── az-tan-top-left-round-corner.gif
│   │   ├── az-tan-top-right-round-corner.gif
│   │   ├── az-transparent-pixel.gif
│   │   ├── li_bk.gif
│   │   ├── login_03.jpg
│   │   ├── login_07.jpg
│   │   ├── login_10.jpg
│   │   ├── login_13.jpg
│   │   ├── login_18.jpg
│   │   ├── login_21.jpg
│   │   ├── login_33.jpg
│   │   ├── sd_gwg060925_13.gif
│   │   ├── standard_msg_error.gif
│   │   ├── standard_msg_ok.gif
│   │   ├── standard_msg_warning.gif
│   │   ├── title_bk.gif
│   │   ├── ul_bk.gif
│   │   └── zc.gif
│   ├── login_1.jpg
│   ├── login_2.jpg
│   ├── login_3.jpg
│   ├── login_4.jpg
│   ├── login_5.jpg
│   ├── login_6.gif
│   ├── loginbackground.png
│   ├── logo
│   │   ├── cjljc.png
│   │   ├── clrk.png
│   │   ├── clyjsb.png
│   │   ├── dbsj.png
│   │   ├── ddgl.png
│   │   ├── gfgl.png
│   │   ├── grxx.png
│   │   ├── gysxx.png
│   │   ├── jbsz.png
│   │   ├── jc.png
│   │   ├── jingcha.jpg
│   │   ├── jsqx.png
│   │   ├── kcbb.png
│   │   ├── kcpd.png
│   │   ├── kczj.png
│   │   ├── khxx.png
│   │   ├── kpjd.png
│   │   ├── order_logo.jpg
│   │   ├── produce_logo.jpg
│   │   ├── pxjh.png
│   │   ├── rwhz.png
│   │   ├── rwwczk.png
│   │   ├── scgl.png
│   │   ├── scpd.png
│   │   ├── scrw.png
│   │   ├── xhbb.png
│   │   ├── xtgg.png
│   │   ├── ygxx.png
│   │   ├── ysc.png
│   │   ├── ywudz.png
│   │   ├── zljc.png
│   │   ├── zyywdz.png
│   │   ├── 临时销售合同.png
│   │   ├── 修改口令.png
│   │   ├── 司机送货表.png
│   │   ├── 指定分配.png
│   │   ├── 指定配方.png
│   │   ├── 材料信息.png
│   │   ├── 材料管理.png
│   │   ├── 每车报表.png
│   │   ├── 用户管理.png
│   │   ├── 销售合同.png
│   │   └── 销售排行榜.png
│   ├── logo1.gif
│   ├── logo.gif
│   ├── logo.jpg
│   ├── menu_bg2.jpg
│   ├── menu_bg.jpg
│   ├── menu_bt.jpg
│   ├── menu_icon.gif
│   ├── midclosedfolder.gif
│   ├── midnodeline1.gif
│   ├── midnodeline.gif
│   ├── midopenedfolder.gif
│   ├── nav_bg.gif
│   ├── nav_l_bg.gif
│   ├── nav_li_current.gif
│   ├── nav_li_hover.gif
│   ├── nav_li_right.gif
│   ├── nav_r_bg.gif
│   ├── new_3.gif
│   ├── new-img2.jpg
│   ├── new-left-little.jpg
│   ├── news_04.jpg
│   ├── news_05.jpg
│   ├── notice_1.gif
│   ├── OAHeader_r1_c0_f2.gif
│   ├── OAHeader_r1_c0.gif
│   ├── OAHeader_r1_c11_f2.gif
│   ├── OAHeader_r1_c11.gif
│   ├── OAHeader_r1_c3_f2.gif
│   ├── OAHeader_r1_c3.gif
│   ├── OAHeader_r1_c5_f2.gif
│   ├── OAHeader_r1_c5.gif
│   ├── OAHeader_r1_c7_f2.gif
│   ├── OAHeader_r1_c7.gif
│   ├── OAHeader_r1_c9_f2.gif
│   ├── OAHeader_r1_c9.gif
│   ├── openfld.gif
│   ├── persons.jpg
│   ├── pic
│   │   ├── add.jpg
│   │   ├── checked.gif
│   │   ├── empty.gif
│   │   └── unchecked.gif
│   ├── right_blank.gif
│   ├── sale.gif
│   ├── shadow_bg.jpg
│   ├── success.jpg
│   ├── temp_icolist2.gif
│   ├── title_bg1.jpg
│   ├── title_bg2.jpg
│   ├── top_bg6.jpg
│   ├── top_toolbar.gif
│   ├── vertline.gif
│   ├── welcome.jpg
│   ├── www.jpg
│   └── 默认头像.jpg
├── index.jsp
├── js
│   ├── addTableAlign.js
│   ├── addTableAlignPur.js
│   ├── annoucement.js
│   ├── autoAddRow.js
│   ├── examine.js
│   ├── examineOnly.js
│   ├── highLight.js
│   ├── item.js
│   ├── jquery
│   │   ├── jquery.js
│   │   └── jquery.md5.js
│   ├── jquery-1.4.js
│   ├── jquery.easing.1.3.js
│   ├── menu.js
│   ├── oddEvenColor.js
│   ├── persons.js
│   ├── produce.js
│   ├── proreport.js
│   ├── public.js
│   ├── purchase.js
│   ├── resource.js
│   ├── sales.js
│   ├── security.js
│   ├── shuaxin.js
│   ├── stock.js
│   ├── supsendm3.js
│   ├── textRightLeft.js
│   ├── uploadPreview.js
│   ├── warehouse.js
│   ├── xixi.js
│   └── zjm.js
├── login2.jsp
├── login.jsp
├── menu
│   ├── menu.jsp
│   ├── personalCenter.jsp
│   ├── personalmanage.jsp
│   ├── procurement.jsp
│   ├── product.html
│   ├── product.jsp
│   ├── qualitycontrol.jsp
│   ├── systemmanage.jsp
│   └── warehouse.jsp
├── META-INF
│   └── MANIFEST.MF
├── My97DatePicker
│   ├── 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
│   └── WdatePicker.js
├── party
│   ├── add_person.html
│   ├── personlist.html
│   └── query_person.html
├── upload
│   └── 2011
│   └── 05
│   └── 05
│   └── Koala.jpg
├── user.jsp
└── WEB-INF
├── annoucement
│   ├── add_annoucement.jsp
│   ├── annoucementlist.jsp
│   ├── edit_annoucement.jsp
│   ├── Rasmessage
│   │   ├── rasmessage_add.jsp
│   │   ├── rasmessage_list.jsp
│   │   ├── rasmessage_replay.jsp
│   │   ├── rasmessage_show.jsp
│   │   └── sended_list.jsp
│   ├── show_annoucement.jsp
│   └── tset.jsp
├── classes
│   ├── applicationContext-security.xml
│   ├── applicationContext.xml
│   ├── com
│   │   └── fjsdfx
│   │   └── starerp
│   │   ├── annoucement
│   │   │   ├── action
│   │   │   │   └── AnnoucementAction.class
│   │   │   ├── conf
│   │   │   │   └── struts-annoucement.xml
│   │   │   ├── dao
│   │   │   │   ├── AnnoucementDao.class
│   │   │   │   └── impl
│   │   │   │   └── AnnoucementDaoImpl.class
│   │   │   ├── model
│   │   │   │   └── Annoucement.class
│   │   │   └── service
│   │   │   ├── AnnoucementService.class
│   │   │   └── impl
│   │   │   └── AnnoucementServiceImpl.class
│   │   ├── common
│   │   │   ├── bean
│   │   │   │   ├── FileUpload.class
│   │   │   │   ├── PagerFilter.class
│   │   │   │   ├── PagerInfo.class
│   │   │   │   └── PagerModel.class
│   │   │   ├── dao
│   │   │   │   ├── BaseDao.class
│   │   │   │   └── BaseDaoImpl.class
│   │   │   └── service
│   │   │   ├── BaseService.class
│   │   │   ├── BaseServiceImpl.class
│   │   │   ├── CharacterFilter$ParameterRequestWrapper.class
│   │   │   └── CharacterFilter.class
│   │   ├── item
│   │   │   ├── action
│   │   │   │   ├── ItemAction.class
│   │   │   │   └── ItemTypeAction.class
│   │   │   ├── conf
│   │   │   │   └── struts-item.xml
│   │   │   ├── dao
│   │   │   │   ├── ControllerDao.class
│   │   │   │   ├── impl
│   │   │   │   │   ├── ControllerDaoImpl.class
│   │   │   │   │   ├── ItemDaoImpl.class
│   │   │   │   │   ├── ItemRelationDaoImpl.class
│   │   │   │   │   └── ItemTypeDaoImpl.class
│   │   │   │   ├── ItemDao.class
│   │   │   │   ├── ItemRelationDao.class
│   │   │   │   └── ItemTypeDao.class
│   │   │   ├── dto
│   │   │   │   └── ItemTypeInfo.class
│   │   │   ├── model
│   │   │   │   ├── Controllerunit.class
│   │   │   │   ├── ControllerunitInfo$1.class
│   │   │   │   ├── ControllerunitInfo$2.class
│   │   │   │   ├── ControllerunitInfo$3.class
│   │   │   │   ├── ControllerunitInfo$4.class
│   │   │   │   ├── ControllerunitInfo$5.class
│   │   │   │   ├── ControllerunitInfo$6.class
│   │   │   │   ├── ControllerunitInfo$7.class
│   │   │   │   ├── ControllerunitInfo.class
│   │   │   │   ├── ItemCategory$1.class
│   │   │   │   ├── ItemCategory$2.class
│   │   │   │   ├── ItemCategory$3.class
│   │   │   │   ├── ItemCategory.class
│   │   │   │   ├── Item.class
│   │   │   │   ├── ItemRelation.class
│   │   │   │   └── ItemType.class
│   │   │   └── service
│   │   │   ├── ControllerService.class
│   │   │   ├── impl
│   │   │   │   ├── ControllerServiceImpl.class
│   │   │   │   ├── ItemRelationServiceImpl.class
│   │   │   │   ├── ItemServiceImpl.class
│   │   │   │   └── ItemTypeServiceImpl.class
│   │   │   ├── ItemRelationService.class
│   │   │   ├── ItemService.class
│   │   │   └── ItemTypeService.class
│   │   ├── menu
│   │   │   ├── action
│   │   │   │   └── MenuAction.class
│   │   │   ├── conf
│   │   │   │   └── struts-menu.xml
│   │   │   ├── dao
│   │   │   │   ├── impl
│   │   │   │   │   ├── MenuItemDaoImpl.class
│   │   │   │   │   └── NavDaoImpl.class
│   │   │   │   ├── MenuItemDao.class
│   │   │   │   └── NavDao.class
│   │   │   ├── model
│   │   │   │   ├── Menu.class
│   │   │   │   ├── MenuImage.class
│   │   │   │   ├── MenuItem.class
│   │   │   │   └── Nav.class
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   ├── MenuItemServiceImpl.class
│   │   │   │   └── MenuServiceImpl.class
│   │   │   ├── MenuItemService.class
│   │   │   └── MenuService.class
│   │   ├── persons
│   │   │   ├── action
│   │   │   │   ├── DepartmentAction.class
│   │   │   │   ├── EmployeeAction.class
│   │   │   │   ├── JobsAction.class
│   │   │   │   ├── RasmessageAction.class
│   │   │   │   ├── RecruitmentAction.class
│   │   │   │   ├── TrainingAction.class
│   │   │   │   └── YtrainplanAction.class
│   │   │   ├── conf
│   │   │   │   └── struts-persons.xml
│   │   │   ├── dao
│   │   │   │   ├── DepartmentDao.class
│   │   │   │   ├── EmployeeDao.class
│   │   │   │   ├── EmployeeRapDao.class
│   │   │   │   ├── Emp_TrainDao.class
│   │   │   │   ├── impl
│   │   │   │   │   ├── DepartmentDaoImpl.class
│   │   │   │   │   ├── EmployeeDaoImpl.class
│   │   │   │   │   ├── EmployeeRapDaoImpl.class
│   │   │   │   │   ├── Emp_TrainDaoImpl.class
│   │   │   │   │   ├── JobsDaoImpl.class
│   │   │   │   │   ├── RasmessageDaoImpl.class
│   │   │   │   │   ├── RecruitmentDaoImpl.class
│   │   │   │   │   ├── TrainingDaoImpl.class
│   │   │   │   │   ├── yplannameDaoImpl.class
│   │   │   │   │   ├── YrecruitmentDaoImpl.class
│   │   │   │   │   └── YtrainplanDaoImpl.class
│   │   │   │   ├── JobsDao.class
│   │   │   │   ├── RasmessageDao.class
│   │   │   │   ├── RecruitmentDao.class
│   │   │   │   ├── TrainingDao.class
│   │   │   │   ├── yplannameDao.class
│   │   │   │   ├── YrecruitmentDao.class
│   │   │   │   └── YtrainplanDao.class
│   │   │   ├── model
│   │   │   │   ├── Department.class
│   │   │   │   ├── Employee.class
│   │   │   │   ├── EmployeeRap.class
│   │   │   │   ├── Emp_Train.class
│   │   │   │   ├── Jobs.class
│   │   │   │   ├── Rasmessage.class
│   │   │   │   ├── Recruitment.class
│   │   │   │   ├── Training.class
│   │   │   │   ├── yplanname.class
│   │   │   │   ├── Yrecruitment.class
│   │   │   │   └── Ytrainplan.class
│   │   │   └── service
│   │   │   ├── DepartmentService.class
│   │   │   ├── EmployeeRapService.class
│   │   │   ├── EmployeeService.class
│   │   │   ├── Emp_TrainService.class
│   │   │   ├── impl
│   │   │   │   ├── DepartmentServiceImpl.class
│   │   │   │   ├── EmployeeRapServiceImpl.class
│   │   │   │   ├── EmployeeServiceImpl.class
│   │   │   │   ├── Emp_TrainServiceImpl.class
│   │   │   │   ├── JobsServiceImpl.class
│   │   │   │   ├── RasmessageServiceImpl.class
│   │   │   │   ├── RecruitmentServiceImpl.class
│   │   │   │   ├── TrainingServiceImpl.class
│   │   │   │   ├── yplannameServiceImpl.class
│   │   │   │   ├── YrecruitmentServiceImpl.class
│   │   │   │   └── YtrainplanServiceImpl.class
│   │   │   ├── JobsService.class
│   │   │   ├── RasmessageService.class
│   │   │   ├── RecruitmentService.class
│   │   │   ├── TrainingService.class
│   │   │   ├── yplannameService.class
│   │   │   ├── YrecruitmentService.class
│   │   │   └── YtrainplanService.class
│   │   ├── produce
│   │   │   ├── action
│   │   │   │   ├── DailyProductionAction.class
│   │   │   │   ├── DiscardverifyAction.class
│   │   │   │   ├── PreparationAction.class
│   │   │   │   ├── ProductionPlanAction.class
│   │   │   │   ├── ProductionSchdulAction.class
│   │   │   │   ├── RepairProductionAction.class
│   │   │   │   ├── ShortmAction.class
│   │   │   │   └── TrackingtestAction.class
│   │   │   ├── conf
│   │   │   │   └── struts-produce.xml
│   │   │   ├── dao
│   │   │   │   ├── AccreditionDao.class
│   │   │   │   ├── DailyproductionDao.class
│   │   │   │   ├── DailyproductionformDao.class
│   │   │   │   ├── DiscardproductionDao.class
│   │   │   │   ├── DiscardreviewfDao.class
│   │   │   │   ├── DiscardreviewsDao.class
│   │   │   │   ├── DiscardreviewtDao.class
│   │   │   │   ├── DiscardverifyDao.class
│   │   │   │   ├── DiscardverifyreviewsDao.class
│   │   │   │   ├── impl
│   │   │   │   │   ├── AccreditionDaoImpl.class
│   │   │   │   │   ├── DailyproductionDaoImpl.class
│   │   │   │   │   ├── DailyproductionformDaoImpl.class
│   │   │   │   │   ├── DiscardproductionDaoImpl.class
│   │   │   │   │   ├── DiscardreviewfDaoImpl.class
│   │   │   │   │   ├── DiscardreviewsDaoImpl.class
│   │   │   │   │   ├── DiscardreviewtDaoImpl.class
│   │   │   │   │   ├── DiscardverifyDaoImpl.class
│   │   │   │   │   ├── DiscardverifyreviewsDaoImpl.class
│   │   │   │   │   ├── PergoodDaoImpl.class
│   │   │   │   │   ├── PreparationDaoImpl.class
│   │   │   │   │   ├── ProductionSchdulDaoImpl.class
│   │   │   │   │   ├── Pro_scheduleDaoImpl.class
│   │   │   │   │   ├── ProsupDaoImpl.class
│   │   │   │   │   ├── PrscheckDaoImpl.class
│   │   │   │   │   ├── RepairproductionDaoImpl.class
│   │   │   │   │   ├── ShogoodDaoImpl.class
│   │   │   │   │   ├── ShortmDaoImpl.class
│   │   │   │   │   └── TrackingtestDaoImpl.class
│   │   │   │   ├── PergoodDao.class
│   │   │   │   ├── PreparationDao.class
│   │   │   │   ├── ProductionSchdulDao.class
│   │   │   │   ├── Pro_scheduleDao.class
│   │   │   │   ├── ProsupDao.class
│   │   │   │   ├── PrscheckDao.class
│   │   │   │   ├── RepairproductionDao.class
│   │   │   │   ├── ShogoodDao.class
│   │   │   │   ├── ShortmDao.class
│   │   │   │   └── TrackingtestDao.class
│   │   │   ├── dto
│   │   │   │   └── PrsListInfo.class
│   │   │   ├── model
│   │   │   │   ├── Accredition.class
│   │   │   │   ├── Dailyproduction.class
│   │   │   │   ├── Dailyproductionform.class
│   │   │   │   ├── Discardproduction.class
│   │   │   │   ├── Discardreviewf.class
│   │   │   │   ├── Discardreviews.class
│   │   │   │   ├── Discardreviewt.class
│   │   │   │   ├── Discardverify.class
│   │   │   │   ├── Pergood.class
│   │   │   │   ├── Preparation.class
│   │   │   │   ├── ProductionSchdul.class
│   │   │   │   ├── Pro_schedule.class
│   │   │   │   ├── Prosup.class
│   │   │   │   ├── Prscheck.class
│   │   │   │   ├── Repairproduction.class
│   │   │   │   ├── Shogood.class
│   │   │   │   ├── Shortm.class
│   │   │   │   └── Trackingtest.class
│   │   │   └── service
│   │   │   ├── AccreditionService.class
│   │   │   ├── DailyproductionformService.class
│   │   │   ├── DailyproductionService.class
│   │   │   ├── DiscardreviewfService.class
│   │   │   ├── DiscardreviewsService.class
│   │   │   ├── DiscardreviewtService.class
│   │   │   ├── DiscardverifyproductionService.class
│   │   │   ├── DiscardverifyreviewsService.class
│   │   │   ├── DiscardverifyService.class
│   │   │   ├── impl
│   │   │   │   ├── AccreditionServiceImpl.class
│   │   │   │   ├── DailyproductionformServiceImpl.class
│   │   │   │   ├── DailyproductionServiceImpl.class
│   │   │   │   ├── DiscardreviewfServiceImpl.class
│   │   │   │   ├── DiscardreviewsServiceImpl.class
│   │   │   │   ├── DiscardreviewtServiceImpl.class
│   │   │   │   ├── DiscardverifyproductionServiceImpl.class
│   │   │   │   ├── DiscardverifyreviewsServiceImpl.class
│   │   │   │   ├── DiscardverifyServiceImpl.class
│   │   │   │   ├── PergoodServiceImpl.class
│   │   │   │   ├── PreparationServiceImpl.class
│   │   │   │   ├── ProductionSchdulServiceImpl.class
│   │   │   │   ├── Pro_scheduleServiceImpl.class
│   │   │   │   ├── ProsupServiceImpl.class
│   │   │   │   ├── PrscheckServiceImpl.class
│   │   │   │   ├── RepairproductionServiceImpl.class
│   │   │   │   ├── ShogoodServiceImpl.class
│   │   │   │   ├── ShortmServiceImpl.class
│   │   │   │   └── TrackingtestServiceImpl.class
│   │   │   ├── PergoodService.class
│   │   │   ├── PreparationService.class
│   │   │   ├── ProductionSchdulService.class
│   │   │   ├── Pro_scheduleService.class
│   │   │   ├── ProsupService.class
│   │   │   ├── PrscheckService.class
│   │   │   ├── RepairproductionService.class
│   │   │   ├── ShogoodService.class
│   │   │   ├── ShortmService.class
│   │   │   └── TrackingtestService.class
│   │   ├── proreport
│   │   │   ├── action
│   │   │   │   ├── ProreportfiveAction.class
│   │   │   │   ├── ProreportoneAction.class
│   │   │   │   └── ProreportthreeAction.class
│   │   │   ├── conf
│   │   │   │   └── struts-proreport.xml
│   │   │   ├── dao
│   │   │   │   ├── impl
│   │   │   │   │   ├── ProreportfiveDaoImpl.class
│   │   │   │   │   ├── ProreportoneDaoImpl.class
│   │   │   │   │   └── ProreportthreeDaoImpl.class
│   │   │   │   ├── ProreportfiveDao.class
│   │   │   │   ├── ProreportoneDao.class
│   │   │   │   └── ProreportthreeDao.class
│   │   │   ├── model
│   │   │   │   ├── Proreportfive.class
│   │   │   │   ├── Proreportone.class
│   │   │   │   └── Proreportthree.class
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   ├── ProreportfiveServiceImpl.class
│   │   │   │   ├── ProreportoneServiceImpl.class
│   │   │   │   └── ProreportthreeServiceImpl.class
│   │   │   ├── ProreportfiveService.class
│   │   │   ├── ProreportoneService.class
│   │   │   └── ProreportthreeService.class
│   │   ├── purchase
│   │   │   ├── action
│   │   │   │   ├── PurorderAction.class
│   │   │   │   ├── QuaprolistAction.class
│   │   │   │   ├── RequisitionsAction.class
│   │   │   │   ├── SamidentifiedAction.class
│   │   │   │   ├── SpareAction.class
│   │   │   │   ├── SupidentifiedAction.class
│   │   │   │   ├── SupplierinfoAction.class
│   │   │   │   └── TestnotesAction.class
│   │   │   ├── conf
│   │   │   │   └── struts-purchase.xml
│   │   │   ├── dao
│   │   │   │   ├── impl
│   │   │   │   │   ├── PurgoodDaoImpl.class
│   │   │   │   │   ├── PurorderDaoImpl.class
│   │   │   │   │   ├── QuaprolistDaoImpl.class
│   │   │   │   │   ├── RequisitionsDaoImpl.class
│   │   │   │   │   ├── ResgoodDaoImpl.class
│   │   │   │   │   ├── SamidentifiedDaoImpl.class
│   │   │   │   │   ├── SpareDaoImpl.class
│   │   │   │   │   ├── SupidentifiedDaoImpl.class
│   │   │   │   │   ├── SupplierinfoDaoImpl.class
│   │   │   │   │   └── TestnotesDaoImpl.class
│   │   │   │   ├── PurgoodDao.class
│   │   │   │   ├── PurorderDao.class
│   │   │   │   ├── QuaprolistDao.class
│   │   │   │   ├── RequisitionsDao.class
│   │   │   │   ├── ResgoodDao.class
│   │   │   │   ├── SamidentifiedDao.class
│   │   │   │   ├── SpareDao.class
│   │   │   │   ├── SupidentifiedDao.class
│   │   │   │   ├── SupplierinfoDao.class
│   │   │   │   └── TestnotesDao.class
│   │   │   ├── model
│   │   │   │   ├── Asslevel$1.class
│   │   │   │   ├── Asslevel$2.class
│   │   │   │   ├── Asslevel$3.class
│   │   │   │   ├── Asslevel$4.class
│   │   │   │   ├── Asslevel.class
│   │   │   │   ├── Purgood.class
│   │   │   │   ├── Purorder.class
│   │   │   │   ├── Quaprolist.class
│   │   │   │   ├── Requisitions.class
│   │   │   │   ├── Resgood.class
│   │   │   │   ├── Samidentified.class
│   │   │   │   ├── Spare.class
│   │   │   │   ├── Supidentified.class
│   │   │   │   ├── Supplierinfo.class
│   │   │   │   └── Testnotes.class
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   ├── PurgoodServiceImpl.class
│   │   │   │   ├── PurorderServiceImpl.class
│   │   │   │   ├── QuaprolistServiceImpl.class
│   │   │   │   ├── RequisitionsServiceImpl.class
│   │   │   │   ├── ResgoodServiceImpl.class
│   │   │   │   ├── SamidentifiedServiceImpl.class
│   │   │   │   ├── SpareServiceImpl.class
│   │   │   │   ├── SupidentifiedServiceImpl.class
│   │   │   │   ├── SupplierinfoServiceImpl.class
│   │   │   │   └── TestnotesServiceImpl.class
│   │   │   ├── PurgoodService.class
│   │   │   ├── PurorderService.class
│   │   │   ├── QuaprolistService.class
│   │   │   ├── RequisitionsService.class
│   │   │   ├── ResgoodService.class
│   │   │   ├── SamidentifiedService.class
│   │   │   ├── SpareService.class
│   │   │   ├── SupidentifiedService.class
│   │   │   ├── SupplierinfoService.class
│   │   │   └── TestnotesService.class
│   │   ├── sales
│   │   │   ├── action
│   │   │   │   ├── QualityanalysisAction.class
│   │   │   │   ├── ReturnedAction.class
│   │   │   │   ├── RmtotalAction.class
│   │   │   │   ├── Shinote2Action.class
│   │   │   │   ├── Shippingnote1Action.class
│   │   │   │   └── UnqualifiedAction.class
│   │   │   ├── conf
│   │   │   │   └── struts-sales.xml
│   │   │   ├── dao
│   │   │   │   ├── impl
│   │   │   │   │   ├── QualityanalysisDaoImpl.class
│   │   │   │   │   ├── RetgoodDaoImpl.class
│   │   │   │   │   ├── ReturnedDaoImpl.class
│   │   │   │   │   ├── RmtotalDaoImpl.class
│   │   │   │   │   ├── Shi1goodDaoImpl.class
│   │   │   │   │   ├── Shi2goodDaoImpl.class
│   │   │   │   │   ├── Shinote2DaoImpl.class
│   │   │   │   │   ├── Shippingnote1DaoImpl.class
│   │   │   │   │   ├── TaxboardDaoImpl.class
│   │   │   │   │   ├── TaxstampingpartsDaoImpl.class
│   │   │   │   │   ├── UnqmessageDaoImpl.class
│   │   │   │   │   └── UnqualifiedDaoImpl.class
│   │   │   │   ├── QualityanalysisDao.class
│   │   │   │   ├── RetgoodDao.class
│   │   │   │   ├── ReturnedDao.class
│   │   │   │   ├── RmtotalDao.class
│   │   │   │   ├── Shi1goodDao.class
│   │   │   │   ├── Shi2goodDao.class
│   │   │   │   ├── Shinote2Dao.class
│   │   │   │   ├── Shippingnote1Dao.class
│   │   │   │   ├── TaxboardDao.class
│   │   │   │   ├── TaxstampingpartsDao.class
│   │   │   │   ├── UnqmessageDao.class
│   │   │   │   └── UnqualifiedDao.class
│   │   │   ├── model
│   │   │   │   ├── Qualityanalysis.class
│   │   │   │   ├── Retgood.class
│   │   │   │   ├── Returned.class
│   │   │   │   ├── Rmtotal.class
│   │   │   │   ├── Shi1good.class
│   │   │   │   ├── Shi2good.class
│   │   │   │   ├── Shinote2.class
│   │   │   │   ├── Shippingnote1.class
│   │   │   │   ├── Taxboard.class
│   │   │   │   ├── Taxstampingparts.class
│   │   │   │   ├── Unqmessage.class
│   │   │   │   └── Unqualified.class
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   ├── QualityanalysisServiceImpl.class
│   │   │   │   ├── RetgoodServiceImpl.class
│   │   │   │   ├── ReturnedServiceImpl.class
│   │   │   │   ├── RmtotalServiceImpl.class
│   │   │   │   ├── Shi1goodServiceImpl.class
│   │   │   │   ├── Shi2goodServiceImpl.class
│   │   │   │   ├── Shinote2ServiceImpl.class
│   │   │   │   ├── Shippingnote1ServiceImpl.class
│   │   │   │   ├── TaxboardServiceImpl.class
│   │   │   │   ├── TaxstampingpartsServiceImpl.class
│   │   │   │   ├── UnqmessageServiceImpl.class
│   │   │   │   └── UnqualifiedServiceImpl.class
│   │   │   ├── QualityanalysisService.class
│   │   │   ├── RetgoodService.class
│   │   │   ├── ReturnedService.class
│   │   │   ├── RmtotalService.class
│   │   │   ├── Shi1goodService.class
│   │   │   ├── Shi2goodService.class
│   │   │   ├── Shinote2Service.class
│   │   │   ├── Shippingnote1Service.class
│   │   │   ├── TaxboardService.class
│   │   │   ├── TaxstampingpartsService.class
│   │   │   ├── UnqmessageService.class
│   │   │   └── UnqualifiedService.class
│   │   ├── security
│   │   │   ├── action
│   │   │   │   ├── ResourceAction.class
│   │   │   │   ├── RoleAction.class
│   │   │   │   └── UserAction.class
│   │   │   ├── conf
│   │   │   │   └── struts-security.xml
│   │   │   ├── dao
│   │   │   │   ├── impl
│   │   │   │   │   ├── ResourceDaoImpl.class
│   │   │   │   │   ├── RoleDaoImpl.class
│   │   │   │   │   └── UserDaoImpl.class
│   │   │   │   ├── ResourceDao.class
│   │   │   │   ├── RoleDao.class
│   │   │   │   └── UserDao.class
│   │   │   ├── interceptor
│   │   │   │   └── SecureResourceFilterInvocationDefinitionSource.class
│   │   │   ├── model
│   │   │   │   ├── Resource.class
│   │   │   │   ├── Role.class
│   │   │   │   └── User.class
│   │   │   ├── service
│   │   │   │   ├── impl
│   │   │   │   │   ├── ResourceServiceImpl.class
│   │   │   │   │   ├── RoleServiceImpl.class
│   │   │   │   │   └── UserServiceImpl.class
│   │   │   │   ├── ResourceService.class
│   │   │   │   ├── RoleService.class
│   │   │   │   └── UserService.class
│   │   │   └── support
│   │   │   ├── SecurityManager.class
│   │   │   ├── SecurityManagerSupport.class
│   │   │   └── SecurityUserHolder.class
│   │   ├── warehouse
│   │   │   ├── action
│   │   │   │   ├── AuxmaterialAction.class
│   │   │   │   ├── FeedexamineAction.class
│   │   │   │   ├── InventoryAction.class
│   │   │   │   ├── MaccountingAction.class
│   │   │   │   ├── RequisitionAction.class
│   │   │   │   ├── RewinderAction.class
│   │   │   │   ├── StockAction.class
│   │   │   │   ├── StoreschedulingAction.class
│   │   │   │   ├── Supsendm3Action.class
│   │   │   │   ├── SupsendmAction.class
│   │   │   │   ├── VariationAction.class
│   │   │   │   └── WarehouseAction.class
│   │   │   ├── conf
│   │   │   │   └── struts-warehouse.xml
│   │   │   ├── dao
│   │   │   │   ├── AuxmaterialDao.class
│   │   │   │   ├── FeedexamineDao.class
│   │   │   │   ├── FeegoodDao.class
│   │   │   │   ├── impl
│   │   │   │   │   ├── AuxmaterialDaoImpl.class
│   │   │   │   │   ├── FeedexamineDaoImpl.class
│   │   │   │   │   ├── FeegoodDaoImpl.class
│   │   │   │   │   ├── InventoryDaoImpl.class
│   │   │   │   │   ├── MaccountingDaoImpl.class
│   │   │   │   │   ├── PicgoodDaoImpl.class
│   │   │   │   │   ├── RequisitionDaoImpl.class
│   │   │   │   │   ├── RewgoodDaoImpl.class
│   │   │   │   │   ├── RewinderDaoImpl.class
│   │   │   │   │   ├── StockDaoImpl.class
│   │   │   │   │   ├── StoreschedulingDaoImpl.class
│   │   │   │   │   ├── StoschgoodDaoImpl.class
│   │   │   │   │   ├── Supsendm3DaoImpl.class
│   │   │   │   │   ├── SupsendmDaoImpl.class
│   │   │   │   │   ├── Susgood3DaoImpl.class
│   │   │   │   │   ├── SusgoodDaoImpl.class
│   │   │   │   │   ├── VargoodDaoImpl.class
│   │   │   │   │   ├── VariationDaoImpl.class
│   │   │   │   │   └── WarehouseDaoImpl.class
│   │   │   │   ├── InventoryDao.class
│   │   │   │   ├── MaccountingDao.class
│   │   │   │   ├── PicgoodDao.class
│   │   │   │   ├── RequisitionDao.class
│   │   │   │   ├── RewgoodDao.class
│   │   │   │   ├── RewinderDao.class
│   │   │   │   ├── StockDao.class
│   │   │   │   ├── StoreschedulingDao.class
│   │   │   │   ├── StoschgoodDao.class
│   │   │   │   ├── Supsendm3Dao.class
│   │   │   │   ├── SupsendmDao.class
│   │   │   │   ├── Susgood3Dao.class
│   │   │   │   ├── SusgoodDao.class
│   │   │   │   ├── VargoodDao.class
│   │   │   │   ├── VariationDao.class
│   │   │   │   └── WarehouseDao.class
│   │   │   ├── model
│   │   │   │   ├── Auxmaterial.class
│   │   │   │   ├── Feedexamine.class
│   │   │   │   ├── Feegood.class
│   │   │   │   ├── Inventory.class
│   │   │   │   ├── Maccounting.class
│   │   │   │   ├── Picgood.class
│   │   │   │   ├── Requisition.class
│   │   │   │   ├── Rewgood.class
│   │   │   │   ├── Rewinder.class
│   │   │   │   ├── Stock.class
│   │   │   │   ├── Storescheduling.class
│   │   │   │   ├── Stoschgood.class
│   │   │   │   ├── Supsendm3.class
│   │   │   │   ├── Supsendm.class
│   │   │   │   ├── Susgood3.class
│   │   │   │   ├── Susgood.class
│   │   │   │   ├── Vargood.class
│   │   │   │   ├── Variation.class
│   │   │   │   └── Warehouse.class
│   │   │   └── service
│   │   │   ├── AuxmaterialService.class
│   │   │   ├── FeedexamineService.class
│   │   │   ├── FeegoodService.class
│   │   │   ├── impl
│   │   │   │   ├── AuxmaterialServiceImpl.class
│   │   │   │   ├── FeedexamineServiceImpl.class
│   │   │   │   ├── FeegoodServiceImpl.class
│   │   │   │   ├── InventoryServiceImpl.class
│   │   │   │   ├── MaccountingServiceImpl.class
│   │   │   │   ├── PicgoodServiceImpl.class
│   │   │   │   ├── RequisitionServiceImpl.class
│   │   │   │   ├── RewgoodServiceImpl.class
│   │   │   │   ├── RewinderServiceImpl.class
│   │   │   │   ├── StockServiceImpl.class
│   │   │   │   ├── StoreschedulingServiceImpl.class
│   │   │   │   ├── StoschgoodServiceImpl.class
│   │   │   │   ├── Supsendm3ServiceImpl.class
│   │   │   │   ├── SupsendmServiceImpl.class
│   │   │   │   ├── Susgood3ServiceImpl.class
│   │   │   │   ├── SusgoodServiceImpl.class
│   │   │   │   ├── VargoodServiceImpl.class
│   │   │   │   ├── VariationServiceImpl.class
│   │   │   │   └── WarehouseServiceImpl.class
│   │   │   ├── InventoryService.class
│   │   │   ├── MaccountingService.class
│   │   │   ├── PicgoodService.class
│   │   │   ├── RequisitionService.class
│   │   │   ├── RewgoodService.class
│   │   │   ├── RewinderService.class
│   │   │   ├── StockService.class
│   │   │   ├── StoreschedulingService.class
│   │   │   ├── StoschgoodService.class
│   │   │   ├── Supsendm3Service.class
│   │   │   ├── SupsendmService.class
│   │   │   ├── Susgood3Service.class
│   │   │   ├── SusgoodService.class
│   │   │   ├── VargoodService.class
│   │   │   ├── VariationService.class
│   │   │   └── WarehouseService.class
│   │   └── web
│   │   ├── loader
│   │   │   └── ServletContextLoaderListener.class
│   │   └── servlet
│   │   └── Index.class
│   ├── hibernate.cfg.xml
│   ├── log4j.properties
│   ├── struts.xml
│   └── test
│   └── item
│   └── TestItem.class
├── controlcenter
│   ├── button.jsp
│   ├── header.jsp
│   ├── index.jsp
│   ├── login.htm
│   ├── main.jsp
│   ├── menu.htm
│   ├── navigate.jsp
│   └── personalCenter.htm
├── external
│   ├── external.jsp
│   └── show_annoucement.jsp
├── item
│   ├── add_item.jsp
│   ├── add_itemtype.jsp
│   ├── edit_item.jsp
│   ├── edit_itemtype.jsp
│   ├── itemlist.jsp
│   ├── itemtypelist.jsp
│   ├── itemtypeshow.jsp
│   ├── select_item.jsp
│   └── select_itemtype.jsp
├── lib
│   ├── antlr-2.7.6.jar
│   ├── aspectjrt.jar
│   ├── aspectjweaver.jar
│   ├── c3p0-0.9.1.jar
│   ├── cglib-nodep-2.1_3.jar
│   ├── common-annotations.jar
│   ├── commons-codec-1.4.jar
│   ├── commons-collections-3.1.jar
│   ├── commons-dbcp.jar
│   ├── commons-fileupload-1.2.1.jar
│   ├── commons-io-1.3.2.jar
│   ├── commons-lang-2.5.jar
│   ├── commons-logging-1.1.jar
│   ├── commons-pool.jar
│   ├── dom4j-1.6.1.jar
│   ├── ehcache.jar
│   ├── ejb3-persistence.jar
│   ├── fckeditor-java-core-2.6.jar
│   ├── freemarker-2.3.13.jar
│   ├── hibernate3.jar
│   ├── hibernate-annotations.jar
│   ├── hibernate-commons-annotations.jar
│   ├── javassist-3.9.0.GA.jar
│   ├── jsonplugin-0.34.jar
│   ├── jstl.jar
│   ├── jta-1.1.jar
│   ├── junit-4.5.jar
│   ├── log4j-1.2.15.jar
│   ├── mysql-connector-java-5.1.12-bin.jar
│   ├── ognl-2.6.11.jar
│   ├── oscache-2.4.1.jar
│   ├── pager-taglib-utf8.jar
│   ├── slf4j-api-1.5.10.jar
│   ├── slf4j-log4j12-1.5.10.jar
│   ├── spring.jar
│   ├── spring-security-acl-2.0.5.RELEASE.jar
│   ├── spring-security-cas-client-2.0.5.RELEASE.jar
│   ├── spring-security-core-2.0.5.RELEASE.jar
│   ├── spring-security-core-tiger-2.0.5.RELEASE.jar
│   ├── spring-security-ntlm-2.0.5.RELEASE.jar
│   ├── spring-security-openid-2.0.5.RELEASE.jar
│   ├── spring-security-portlet-2.0.5.RELEASE.jar
│   ├── spring-security-taglibs-2.0.5.RELEASE.jar
│   ├── standard.jar
│   ├── struts2-core-2.1.6.jar
│   ├── struts2-dojo-plugin-2.1.6.jar
│   ├── struts2-spring-plugin-2.1.6.jar
│   └── xwork-2.1.2.jar
├── persons
│   ├── department
│   │   ├── department_addinfo.jsp
│   │   ├── department_editinfo.jsp
│   │   └── department_info.jsp
│   ├── employee
│   │   ├── employee_addinfo.jsp
│   │   ├── employee_editinfo.jsp
│   │   ├── employee_info.jsp
│   │   ├── employeeRap_addinfo.jsp
│   │   ├── employeeRap_editinfo.jsp
│   │   ├── employeeRap_info.jsp
│   │   ├── employee_showinfo.jsp
│   │   ├── _notes
│   │   │   └── employeeRap_info.jsp.mno
│   │   └── select_employee.jsp
│   ├── jobs
│   │   ├── jobs_addinfo.jsp
│   │   ├── jobs_editinfo.jsp
│   │   └── jobs_info.jsp
│   ├── recruitment
│   │   ├── _notes
│   │   │   └── yrecruitment_list.jsp.mno
│   │   ├── recruitment_addinfo.jsp
│   │   ├── recruitment_checkeditinfo.jsp
│   │   ├── recruitment_editinfo.jsp
│   │   ├── recruitment_info.jsp
│   │   ├── recruitment_listcheckInfo.jsp
│   │   ├── select_recruitment.jsp
│   │   ├── yrecruitment_add.jsp
│   │   ├── yrecruitment_edite.jsp
│   │   ├── yrecruitment_list.jsp
│   │   └── yrecruitment_show.jsp
│   ├── training
│   │   ├── _notes
│   │   │   ├── select_training.jsp.mno
│   │   │   └── training_info.jsp.mno
│   │   ├── select_training.jsp
│   │   ├── training_addinfo.jsp
│   │   ├── training_editinfo.jsp
│   │   └── training_info.jsp
│   ├── web.xml
│   └── ytrainplan
│   ├── ytrainplan_addinfo.jsp
│   ├── ytrainplan_editeinfo.jsp
│   ├── ytrainplan_info.jsp
│   └── ytrainplan_show.jsp
├── produce
│   ├── add_preparation.jsp
│   ├── confimation_preparation.jsp
│   ├── dailyproduction
│   │   ├── dailyproductionadd.jsp
│   │   ├── dailyproductionformlist.jsp
│   │   └── dailyproductionlist.jsp
│   ├── discardverify
│   │   ├── discardverify_applicationlist.jsp
│   │   ├── discardverify_applicationonelist.jsp
│   │   ├── discardverify_applicationthreelist.jsp
│   │   ├── discardverify_applicationtwolist.jsp
│   │   ├── discardverify_examinelist.jsp
│   │   ├── discardverifylist.jsp
│   │   └── discardverify_zjlist.jsp
│   ├── edit_preparation.jsp
│   ├── fulfill_preparation.jsp
│   ├── preparation_examine.jsp
│   ├── preparation_examinelist_insideOrder.jsp
│   ├── preparation_examinelist.jsp
│   ├── preparationlist.jsp
│   ├── preparation_pingongexamineInside.jsp
│   ├── preparation_pingongexamine.jsp
│   ├── preparation_produceexamineInside.jsp
│   ├── preparation_produceexamine.jsp
│   ├── produceschdul
│   │   ├── add_produceschdul.jsp
│   │   ├── edit_produceschdul.jsp
│   │   ├── examinechange_produceschdul.jsp
│   │   ├── examine_produceschdul.jsp
│   │   ├── examinesent_produceschdul.jsp
│   │   ├── list_produceschdul.jsp
│   │   ├── listware_proware.jsp
│   │   ├── producelist_produceschdul.jsp
│   │   ├── show_produceschdul.jsp
│   │   ├── showsupsendm3_produceschdul.jsp
│   │   ├── showsupsendm_produceschdul.jsp
│   │   ├── supsendm3list.jsp
│   │   ├── supsendmlist.jsp
│   │   └── supsendm_produceschdul.jsp
│   ├── productionplan
│   │   ├── addproductionplan.jsp
│   │   ├── goods_askingfor_lists.jsp
│   │   ├── goods_askingfor_single.jsp
│   │   ├── monthlyproplanapproveAgain.jsp
│   │   ├── monthlyproplanapprove.jsp
│   │   ├── monthlyproplan_show.jsp
│   │   ├── productionplanlist.jsp
│   │   ├── productplanchecklist.jsp
│   │   └── updateproductionplan.jsp
│   ├── productionrepair
│   │   ├── add_repairproduction.jsp
│   │   ├── edit_repairproduction.jsp
│   │   └── repairproductionlist.jsp
│   ├── productplan.jsp
│   ├── shortm
│   │   ├── shogood_editlist.jsp
│   │   ├── shortm_approve.jsp
│   │   ├── shortm_checklist.jsp
│   │   ├── shortm_editlist.jsp
│   │   ├── shortm_list.jsp
│   │   ├── shortm_makelist.jsp
│   │   └── shortm_register.jsp
│   ├── show_preparation.jsp
│   └── trackingtest
│   ├── addtrackingtest.jsp
│   ├── testtrackingauditlist.jsp
│   ├── testtrackinglist.jsp
│   ├── testtrackingwsaudit.jsp
│   ├── trackingtestproaudit.jsp
│   ├── trackingtestquaaudit.jsp
│   ├── trackingtestshow.jsp
│   ├── trackingtestupdate.jsp
│   └── trackingtestwsshow.jsp
├── proreport
│   ├── proreportfive_addinfo.jsp
│   ├── proreportfive_editinfo.jsp
│   ├── proreportfive.jsp
│   ├── proreportone_addinfo.jsp
│   ├── proreportone_editinfo.jsp
│   ├── proreportone.jsp
│   ├── proreportthree_addinfo.jsp
│   ├── proreportthree_editinfo.jsp
│   └── proreportthree.jsp
├── purchase
│   ├── quaprolist
│   │   ├── add_quaprolist.jsp
│   │   ├── edit_quaprolist.jsp
│   │   ├── quaprolist.jsp
│   │   ├── select_quaprolist.jsp
│   │   └── show_quaprolist.jsp
│   ├── requisitions
│   │   ├── add_purorder.jsp
│   │   ├── add_requisitions.jsp
│   │   ├── edit_purorder.jsp
│   │   ├── edit_requisitions.jsp
│   │   ├── enter_purorder.jsp
│   │   ├── enter_requisitions.jsp
│   │   ├── examine_purorder.jsp
│   │   ├── examine_requisitions.jsp
│   │   ├── purorderlist.jsp
│   │   ├── requisitionslist.jsp
│   │   ├── show_purorder.jsp
│   │   └── show_requisitions.jsp
│   ├── samidentified
│   │   ├── add_samidentified.jsp
│   │   ├── edit_samidentified.jsp
│   │   ├── examine_samidentified.jsp
│   │   ├── examine_samidentified_list.jsp
│   │   ├── resperexam_samidentified.jsp
│   │   ├── samidentifiedlist.jsp
│   │   ├── show_samidentified.jsp
│   │   └── show_samidentified_test.jsp
│   ├── spare
│   │   ├── add_spare.jsp
│   │   ├── edit_spare.jsp
│   │   └── sparelist.jsp
│   ├── supidentified
│   │   ├── add_supidentified.jsp
│   │   ├── edit_supidentified.jsp
│   │   ├── examine_supidentified.jsp
│   │   ├── examine_supidentified_list.jsp
│   │   ├── purexamine_supidentified.jsp
│   │   ├── samidentified_supidentified_show.jsp
│   │   ├── show_supidentified.jsp
│   │   ├── supidentifiedlist.jsp
│   │   └── toadd_supidentifiedlist.jsp
│   ├── supplierinfo
│   │   ├── add_supplierinfo.jsp
│   │   ├── edit_supplierinfo.jsp
│   │   ├── examine_supplierinfo.jsp
│   │   ├── select_supplierinfo.jsp
│   │   ├── show_supplierinfo.jsp
│   │   └── supplierinfolist.jsp
│   └── testnotes
│   ├── add_testnotes.jsp
│   ├── edit_testnotes.jsp
│   ├── examine_testnotes.jsp
│   ├── examine_testnotes_list.jsp
│   ├── purexam_testnotes.jsp
│   ├── show_testnotes.jsp
│   ├── testnotesaddtrackingtest.jsp
│   ├── testnoteslist.jsp
│   ├── testnotes_samidentified_list.jsp
│   ├── trackingtest_addlist.jsp
│   └── 采购流程2.jpg
├── sales
│   ├── qualityanalysis
│   │   ├── edit_qualityanalysis.jsp
│   │   ├── qualityanalysis.jsp
│   │   └── qualityanalysis_list.jsp
│   ├── return
│   │   ├── edit_returned.jsp
│   │   ├── returned_examinelist.jsp
│   │   ├── returned.jsp
│   │   ├── returnedlist.jsp
│   │   ├── returned_qualityexamine.jsp
│   │   ├── returned_qualitylist.jsp
│   │   ├── returned_whexamine.jsp
│   │   ├── rmtotal.jsp
│   │   └── show_returned.jsp
│   ├── rmtotal
│   │   ├── edit_rmtotal.jsp
│   │   ├── rmtotal.jsp
│   │   └── rmtotal_list.jsp
│   ├── shipment
│   │   ├── delivery_shippingnote1.jsp
│   │   ├── edit_shinote2.jsp
│   │   ├── edit_shippingnote1.jsp
│   │   ├── edit_taxboard.jsp
│   │   ├── edit_taxstampingparts.jsp
│   │   ├── quality_list.jsp
│   │   ├── shi1good_examinelist.jsp
│   │   ├── shi1good_list.jsp
│   │   ├── shinote2_examine.jsp
│   │   ├── shinote2_examinelist.jsp
│   │   ├── shinote2.jsp
│   │   ├── shinote2list.jsp
│   │   ├── shippingnote1_examine.jsp
│   │   ├── shippingnote1_examinelist.jsp
│   │   ├── shippingnote1.jsp
│   │   ├── shippingnote1list.jsp
│   │   ├── show_shinote2.jsp
│   │   ├── show_shippingnote1.jsp
│   │   ├── taxboard.jsp
│   │   └── taxstampingparts.jsp
│   └── unqualified
│   ├── recheckpgb_unqualified.jsp
│   ├── recheck_unqualified.jsp
│   ├── show_unqualified.jsp
│   ├── unqualified.jsp
│   └── unqualified_list.jsp
├── security
│   ├── add_resource.jsp
│   ├── add_role.jsp
│   ├── add_user.jsp
│   ├── allresourcelist.jsp
│   ├── edit_password.jsp
│   ├── edit_resource.jsp
│   ├── edit_role.jsp
│   ├── edit_user.jsp
│   ├── password_save_error.jsp
│   ├── password_save_success.jsp
│   ├── resource_del_exception.jsp
│   ├── role_del_exception.jsp
│   ├── rolelist.jsp
│   ├── select_user.jsp
│   ├── server_restart.jsp
│   ├── showresource.jsp
│   └── userlist.jsp
├── warehouse
│   ├── auxmaterial
│   │   ├── add_auxmaterial.jsp
│   │   └── auxmateriallist.jsp
│   ├── feedexamine
│   │   ├── add_feedexamine.jsp
│   │   ├── add_feedexaminepur.jsp
│   │   ├── confirm_feedexamine.jsp
│   │   ├── edit_feedexamine.jsp
│   │   ├── feedexamine_examine.jsp
│   │   ├── feedexamine_examinelist.jsp
│   │   ├── feedexaminelist.jsp
│   │   ├── feedexamine_unqualifylist.jsp
│   │   └── show_feedexamine.jsp
│   ├── inventory
│   │   └── inventorylist.jsp
│   ├── maccounting
│   │   └── maccountinglist.jsp
│   ├── requisition
│   │   ├── add_requisition.jsp
│   │   ├── edit_requisition.jsp
│   │   ├── requisition_examine.jsp
│   │   ├── requisition_examinelist.jsp
│   │   ├── requisitionlist.jsp
│   │   └── show_requisition.jsp
│   ├── rewinder
│   │   ├── add_rewinder.jsp
│   │   ├── add_rewinderpur.jsp
│   │   ├── add_rewinderreq.jsp
│   │   ├── edit_rewinder.jsp
│   │   ├── rewinder_examine.jsp
│   │   ├── rewinder_examinelist.jsp
│   │   ├── rewinderlist.jsp
│   │   ├── rewinder_unqualifylist.jsp
│   │   └── show_rewinder.jsp
│   ├── stock
│   │   ├── stockbondedlist.jsp
│   │   └── stockgenerallist.jsp
│   ├── storescheduling
│   │   ├── add_stoschfeedexamine.jsp
│   │   ├── add_stoschrewinder.jsp
│   │   └── add_stoschwarehouse.jsp
│   ├── supsendm
│   │   ├── addsupsendm3.jsp
│   │   ├── addsupsendm.jsp
│   │   ├── editsupsendm3.jsp
│   │   ├── editsupsendm.jsp
│   │   ├── preparation3.jsp
│   │   ├── preparation.jsp
│   │   ├── preparationlist.jsp
│   │   ├── supsendm3confirmInput.jsp
│   │   ├── supsendm3list.jsp
│   │   └── supsendmlist.jsp
│   ├── variation
│   │   ├── add_variation.jsp
│   │   ├── audit_variationlist.jsp
│   │   ├── pgdpt_audit_variation.jsp
│   │   ├── Showchangesure_variation.jsp
│   │   ├── Showchange_variation.jsp
│   │   ├── variationchange_list.jsp
│   │   └── variationlist.jsp
│   └── warehouse
│   ├── add_productionwarehouse.jsp
│   ├── edit_productionwarehouse.jsp
│   ├── productionwarehouse_examine.jsp
│   ├── productionwarehouse_examinelist.jsp
│   ├── productionwarehouselist.jsp
│   └── show_productionwarehouse.jsp
└── web.xml

366 directories, 2416 files

标签:

实例下载地址

简单OA办公系统+Java源码+mysql数据库

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警