在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → java写的crm系统

java写的crm系统

一般编程问题

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

实例介绍

【实例简介】
使用java和bootstrap写的一个crm管理系统,适合有基础经验的人,里面使用到了过滤器、工厂模式、代理模式、
【实例截图】
【核心代码】
4744300845373928163.rar
└── wanhocrm
├── config
│   ├── bean.properties
│   ├── jdbc.properties
│   ├── log4j.properties
│   ├── net
│   │   └── wanho
│   │   └── mapper
│   │   ├── AdvancedLogMapper.xml
│   │   ├── BusinessMapper.xml
│   │   ├── BusinessSourceMapper.xml
│   │   ├── BusinessTypeMapper.xml
│   │   ├── CommentMapper.xml
│   │   ├── CustomerMapper.xml
│   │   ├── DailyRecordMapper.xml
│   │   ├── DepartmentMapper.xml
│   │   ├── EmmPositionMapper.xml
│   │   ├── EmployeeMapper.xml
│   │   ├── IndividualTaskMapper.xml
│   │   ├── InstationMailMapper.xml
│   │   ├── LinkManMapper.xml
│   │   ├── LogInMapper.xml
│   │   ├── MenuMapper.xml
│   │   ├── OrdersDetailMapper.xml
│   │   ├── OrdersMapper.xml
│   │   ├── PositionMenuRelationsMapper.xml
│   │   ├── ProcessMapper.xml
│   │   ├── ProductInventoryMapper.xml
│   │   ├── ProductMapper.xml
│   │   ├── ProductTypeMapper.xml
│   │   ├── SourceMapper.xml
│   │   ├── StoreMapper.xml
│   │   ├── TaskUserRelationsMapper.xml
│   │   └── WorkingFieldMapper.xml
│   └── SqlMapConfig.xml
├── src
│   ├── META-INF
│   │   └── MANIFEST.MF
│   └── net
│   └── wanho
│   ├── consts
│   │   ├── ConstMsg.java
│   │   └── ConstVal.java
│   ├── dto
│   │   ├── AdvanceLogDto.java
│   │   ├── BusinessDto.java
│   │   ├── CustomerDto.java
│   │   ├── EmployeeDto.java
│   │   ├── LinkManDto.java
│   │   └── PhoneAndEamil.java
│   ├── exception
│   │   ├── DaoException.java
│   │   └── ServiceException.java
│   ├── factory
│   │   └── ObjectFactory.java
│   ├── filter
│   │   └── EncodingFilter.java
│   ├── mapper
│   │   ├── AdvancedLogMapper.java
│   │   ├── BusinessMapper.java
│   │   ├── BusinessSourceMapper.java
│   │   ├── BusinessTypeMapper.java
│   │   ├── CommentMapper.java
│   │   ├── CustomerMapper.java
│   │   ├── DailyRecordMapper.java
│   │   ├── DepartmentMapper.java
│   │   ├── EmmPositionMapper.java
│   │   ├── EmployeeExample.java
│   │   ├── EmployeeMapper.java
│   │   ├── IndividualTaskMapper.java
│   │   ├── InstationMailMapper.java
│   │   ├── LinkManMapper.java
│   │   ├── LogInMapper.java
│   │   ├── MenuMapper.java
│   │   ├── OrdersDetailMapper.java
│   │   ├── OrdersMapper.java
│   │   ├── PositionMenuRelationsMapper.java
│   │   ├── ProcessMapper.java
│   │   ├── ProductInventoryMapper.java
│   │   ├── ProductMapper.java
│   │   ├── ProductTypeMapper.java
│   │   ├── SourceMapper.java
│   │   ├── StoreMapper.java
│   │   ├── TaskUserRelationsMapper.java
│   │   └── WorkingFieldMapper.java
│   ├── model
│   │   ├── AdvancedLogExample.java
│   │   ├── AdvancedLog.java
│   │   ├── BusinessExample.java
│   │   ├── Business.java
│   │   ├── BusinessSourceExample.java
│   │   ├── BusinessSource.java
│   │   ├── BusinessTypeExample.java
│   │   ├── BusinessType.java
│   │   ├── CommentExample.java
│   │   ├── Comment.java
│   │   ├── CustomerExample.java
│   │   ├── Customer.java
│   │   ├── DailyRecordExample.java
│   │   ├── DailyRecord.java
│   │   ├── DepartmentExample.java
│   │   ├── Department.java
│   │   ├── EmmPositionExample.java
│   │   ├── EmmPosition.java
│   │   ├── EmployeeExample.java
│   │   ├── Employee.java
│   │   ├── IndividualTaskExample.java
│   │   ├── IndividualTask.java
│   │   ├── InstationMailExample.java
│   │   ├── InstationMail.java
│   │   ├── LinkManExample.java
│   │   ├── LinkMan.java
│   │   ├── LogInExample.java
│   │   ├── LogIn.java
│   │   ├── MenuExample.java
│   │   ├── Menu.java
│   │   ├── OrdersDetailExample.java
│   │   ├── OrdersDetail.java
│   │   ├── OrdersExample.java
│   │   ├── Orders.java
│   │   ├── PositionMenuRelationsExample.java
│   │   ├── PositionMenuRelations.java
│   │   ├── ProcessExample.java
│   │   ├── Process.java
│   │   ├── ProductExample.java
│   │   ├── ProductInventoryExample.java
│   │   ├── ProductInventory.java
│   │   ├── Product.java
│   │   ├── ProductTypeExample.java
│   │   ├── ProductType.java
│   │   ├── SourceExample.java
│   │   ├── Source.java
│   │   ├── StoreExample.java
│   │   ├── Store.java
│   │   ├── TaskUserRelationsExample.java
│   │   ├── TaskUserRelations.java
│   │   ├── WorkingFieldExample.java
│   │   └── WorkingField.java
│   ├── proxy
│   │   └── TransactionProxy.java
│   ├── service
│   │   ├── advancedLog
│   │   │   ├── AdvancedLogServiceI.java
│   │   │   └── impl
│   │   │   └── AdvancedLogServiceImpl.java
│   │   ├── business
│   │   │   ├── BusinessServiceI.java
│   │   │   └── impl
│   │   │   └── BusinessServiceImpl.java
│   │   ├── customer
│   │   │   ├── CustomerServiceI.java
│   │   │   └── impl
│   │   │   └── CustomerServiceImpl.java
│   │   ├── linkMan
│   │   │   ├── impl
│   │   │   │   └── LinkManServiceImpl.java
│   │   │   └── LinkManServiceI.java
│   │   └── login
│   │   ├── impl
│   │   │   └── LoginServiceImpl.java
│   │   └── LoginServiceI.java
│   ├── servlet
│   │   ├── customer
│   │   │   ├── AdvanceLogServlet.java
│   │   │   ├── BuinessServlet.java
│   │   │   ├── CustomerServlet.java
│   │   │   └── LinkManServlet.java
│   │   ├── homePage
│   │   │   └── ControlServlet.java
│   │   ├── login
│   │   │   └── LoginServlet.java
│   │   └── systemMgr
│   │   ├── EmmPositionServlet.java
│   │   ├── EmployeeServlet.java
│   │   └── MenuServlet.java
│   ├── tag
│   │   └── PageTag.java
│   ├── test
│   │   └── Test01.java
│   ├── transaction
│   │   ├── impl
│   │   │   └── TransManagerImpl.java
│   │   └── TransManagerI.java
│   ├── util
│   │   ├── DateHelp.java
│   │   ├── MD5Util.java
│   │   └── MyBatisUtils.java
│   └── web
│   └── EncodingRequest.java
└── WebRoot
├── 404.jsp
├── common.jsp
├── commons
│   ├── common.jsp
│   └── queryCondition.jsp
├── css
│   ├── bootstrap-3.3.4.css
│   ├── bootstrap.css
│   ├── dataTables.bootstrap-1.10.13.css
│   ├── font-awesome.css
│   ├── google-fonts.css
│   ├── isotope.css
│   ├── login.css
│   └── style.css
├── fonts
│   ├── 1ywb1so8ye1lyjf12wniua.woff2
│   ├── dpj5r9gl3kk6ijoep1irsvy6323mhuzfjmgtvxag2ie.woff2
│   ├── efrpvglew31oiexbynx7y_eszw2xoq-xsnqo47m55da.woff2
│   ├── esvmc5un3kjyuhb9zeppwg.woff2
│   ├── fontawesome-webfontd41d.eot
│   ├── fontawesome-webfont.eot
│   ├── fontawesome-webfont.svg
│   ├── fontawesome-webfont.ttf
│   ├── fontawesome-webfont.woff
│   ├── glyphicons-halflings-regular.eot
│   ├── glyphicons-halflings-regular.svg
│   ├── glyphicons-halflings-regular.ttf
│   ├── glyphicons-halflings-regular.woff
│   ├── glyphicons-halflings-regular.woff2
│   ├── gtrkrntnri0g82cjkneb0q.woff2
│   ├── h2dmvhdlycm56knuatbjya.woff2
│   ├── obqr5xycoh0wbouxiayk3_y6323mhuzfjmgtvxag2ie.woff2
│   ├── se7end41d.eot
│   ├── se7en.eot
│   ├── se7en.svg
│   ├── se7en.ttf
│   ├── se7en.woff
│   └── uybmtlshkbkxelqf4x7vrq.woff2
├── images
│   ├── 404.png
│   ├── icon.png
│   ├── icon-search@2x.png
│   ├── icon-search.png
│   ├── info-data-sprite@2x.png
│   ├── info-data-sprite.png
│   ├── logo.png
│   ├── pw.png
│   ├── user.png
│   ├── wanho-logo.png
│   ├── weiboxs-logo@2x.png
│   └── weiboxs-logo.png
├── js
│   ├── angular.min.js
│   ├── bootstrap-3.3.4.js
│   ├── bootstrap.min.js
│   ├── dataTables.bootstrap-1.10.13.js
│   ├── jquery-3.0.0.js
│   ├── jquery.dataTables-1.10.13.js
│   ├── jquery-ui.js
│   ├── page.js
│   └── table.js
├── login.jsp
├── menu.jsp
├── META-INF
│   └── MANIFEST.MF
├── picture
│   ├── 1_avatar_middle.jpg
│   ├── 2_avatar_middle.jpg
│   ├── 4.png
│   └── check.png
├── updatepass.jsp
├── view
│   ├── personalOffice
│   │   ├── dailylog
│   │   │   ├── create.jsp
│   │   │   ├── index.jsp
│   │   │   └── view.jsp
│   │   ├── mail
│   │   │   ├── index.jsp
│   │   │   ├── view.jsp
│   │   │   └── write.jsp
│   │   └── task
│   │   ├── create.jsp
│   │   ├── index.jsp
│   │   └── view.jsp
│   └── productManage
│   ├── product
│   │   ├── create.jsp
│   │   ├── index.jsp
│   │   └── update.jsp
│   ├── product-category
│   │   └── index.jsp
│   ├── product-warehouse
│   │   └── index.jsp
│   ├── purchase
│   │   ├── create.jsp
│   │   └── index.jsp
│   ├── sales
│   │   ├── create.jsp
│   │   └── index.jsp
│   ├── stock
│   │   └── index.jsp
│   └── stock-detail
│   └── index.jsp
└── WEB-INF
├── classes
│   ├── bean.properties
│   ├── jdbc.properties
│   ├── log4j.properties
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── net
│   │   └── wanho
│   │   ├── consts
│   │   │   ├── ConstMsg.class
│   │   │   └── ConstVal.class
│   │   ├── dto
│   │   │   ├── AdvanceLogDto.class
│   │   │   ├── BusinessDto.class
│   │   │   ├── CustomerDto.class
│   │   │   ├── EmployeeDto.class
│   │   │   ├── LinkManDto.class
│   │   │   └── PhoneAndEamil.class
│   │   ├── exception
│   │   │   ├── DaoException.class
│   │   │   └── ServiceException.class
│   │   ├── factory
│   │   │   └── ObjectFactory.class
│   │   ├── filter
│   │   │   └── EncodingFilter.class
│   │   ├── mapper
│   │   │   ├── AdvancedLogMapper.class
│   │   │   ├── AdvancedLogMapper.xml
│   │   │   ├── BusinessMapper.class
│   │   │   ├── BusinessMapper.xml
│   │   │   ├── BusinessSourceMapper.class
│   │   │   ├── BusinessSourceMapper.xml
│   │   │   ├── BusinessTypeMapper.class
│   │   │   ├── BusinessTypeMapper.xml
│   │   │   ├── CommentMapper.class
│   │   │   ├── CommentMapper.xml
│   │   │   ├── CustomerMapper.class
│   │   │   ├── CustomerMapper.xml
│   │   │   ├── DailyRecordMapper.class
│   │   │   ├── DailyRecordMapper.xml
│   │   │   ├── DepartmentMapper.class
│   │   │   ├── DepartmentMapper.xml
│   │   │   ├── EmmPositionMapper.class
│   │   │   ├── EmmPositionMapper.xml
│   │   │   ├── EmployeeExample$Criteria.class
│   │   │   ├── EmployeeExample$Criterion.class
│   │   │   ├── EmployeeExample$GeneratedCriteria.class
│   │   │   ├── EmployeeExample.class
│   │   │   ├── EmployeeMapper.class
│   │   │   ├── EmployeeMapper.xml
│   │   │   ├── IndividualTaskMapper.class
│   │   │   ├── IndividualTaskMapper.xml
│   │   │   ├── InstationMailMapper.class
│   │   │   ├── InstationMailMapper.xml
│   │   │   ├── LinkManMapper.class
│   │   │   ├── LinkManMapper.xml
│   │   │   ├── LogInMapper.class
│   │   │   ├── LogInMapper.xml
│   │   │   ├── MenuMapper.class
│   │   │   ├── MenuMapper.xml
│   │   │   ├── OrdersDetailMapper.class
│   │   │   ├── OrdersDetailMapper.xml
│   │   │   ├── OrdersMapper.class
│   │   │   ├── OrdersMapper.xml
│   │   │   ├── PositionMenuRelationsMapper.class
│   │   │   ├── PositionMenuRelationsMapper.xml
│   │   │   ├── ProcessMapper.class
│   │   │   ├── ProcessMapper.xml
│   │   │   ├── ProductInventoryMapper.class
│   │   │   ├── ProductInventoryMapper.xml
│   │   │   ├── ProductMapper.class
│   │   │   ├── ProductMapper.xml
│   │   │   ├── ProductTypeMapper.class
│   │   │   ├── ProductTypeMapper.xml
│   │   │   ├── SourceMapper.class
│   │   │   ├── SourceMapper.xml
│   │   │   ├── StoreMapper.class
│   │   │   ├── StoreMapper.xml
│   │   │   ├── TaskUserRelationsMapper.class
│   │   │   ├── TaskUserRelationsMapper.xml
│   │   │   ├── WorkingFieldMapper.class
│   │   │   └── WorkingFieldMapper.xml
│   │   ├── model
│   │   │   ├── AdvancedLog.class
│   │   │   ├── AdvancedLogExample$Criteria.class
│   │   │   ├── AdvancedLogExample$Criterion.class
│   │   │   ├── AdvancedLogExample$GeneratedCriteria.class
│   │   │   ├── AdvancedLogExample.class
│   │   │   ├── Business.class
│   │   │   ├── BusinessExample$Criteria.class
│   │   │   ├── BusinessExample$Criterion.class
│   │   │   ├── BusinessExample$GeneratedCriteria.class
│   │   │   ├── BusinessExample.class
│   │   │   ├── BusinessSource.class
│   │   │   ├── BusinessSourceExample$Criteria.class
│   │   │   ├── BusinessSourceExample$Criterion.class
│   │   │   ├── BusinessSourceExample$GeneratedCriteria.class
│   │   │   ├── BusinessSourceExample.class
│   │   │   ├── BusinessType.class
│   │   │   ├── BusinessTypeExample$Criteria.class
│   │   │   ├── BusinessTypeExample$Criterion.class
│   │   │   ├── BusinessTypeExample$GeneratedCriteria.class
│   │   │   ├── BusinessTypeExample.class
│   │   │   ├── Comment.class
│   │   │   ├── CommentExample$Criteria.class
│   │   │   ├── CommentExample$Criterion.class
│   │   │   ├── CommentExample$GeneratedCriteria.class
│   │   │   ├── CommentExample.class
│   │   │   ├── Customer.class
│   │   │   ├── CustomerExample$Criteria.class
│   │   │   ├── CustomerExample$Criterion.class
│   │   │   ├── CustomerExample$GeneratedCriteria.class
│   │   │   ├── CustomerExample.class
│   │   │   ├── DailyRecord.class
│   │   │   ├── DailyRecordExample$Criteria.class
│   │   │   ├── DailyRecordExample$Criterion.class
│   │   │   ├── DailyRecordExample$GeneratedCriteria.class
│   │   │   ├── DailyRecordExample.class
│   │   │   ├── Department.class
│   │   │   ├── DepartmentExample$Criteria.class
│   │   │   ├── DepartmentExample$Criterion.class
│   │   │   ├── DepartmentExample$GeneratedCriteria.class
│   │   │   ├── DepartmentExample.class
│   │   │   ├── EmmPosition.class
│   │   │   ├── EmmPositionExample$Criteria.class
│   │   │   ├── EmmPositionExample$Criterion.class
│   │   │   ├── EmmPositionExample$GeneratedCriteria.class
│   │   │   ├── EmmPositionExample.class
│   │   │   ├── Employee.class
│   │   │   ├── EmployeeExample$Criteria.class
│   │   │   ├── EmployeeExample$Criterion.class
│   │   │   ├── EmployeeExample$GeneratedCriteria.class
│   │   │   ├── EmployeeExample.class
│   │   │   ├── IndividualTask.class
│   │   │   ├── IndividualTaskExample$Criteria.class
│   │   │   ├── IndividualTaskExample$Criterion.class
│   │   │   ├── IndividualTaskExample$GeneratedCriteria.class
│   │   │   ├── IndividualTaskExample.class
│   │   │   ├── InstationMail.class
│   │   │   ├── InstationMailExample$Criteria.class
│   │   │   ├── InstationMailExample$Criterion.class
│   │   │   ├── InstationMailExample$GeneratedCriteria.class
│   │   │   ├── InstationMailExample.class
│   │   │   ├── LinkMan.class
│   │   │   ├── LinkManExample$Criteria.class
│   │   │   ├── LinkManExample$Criterion.class
│   │   │   ├── LinkManExample$GeneratedCriteria.class
│   │   │   ├── LinkManExample.class
│   │   │   ├── LogIn.class
│   │   │   ├── LogInExample$Criteria.class
│   │   │   ├── LogInExample$Criterion.class
│   │   │   ├── LogInExample$GeneratedCriteria.class
│   │   │   ├── LogInExample.class
│   │   │   ├── Menu.class
│   │   │   ├── MenuExample$Criteria.class
│   │   │   ├── MenuExample$Criterion.class
│   │   │   ├── MenuExample$GeneratedCriteria.class
│   │   │   ├── MenuExample.class
│   │   │   ├── Orders.class
│   │   │   ├── OrdersDetail.class
│   │   │   ├── OrdersDetailExample$Criteria.class
│   │   │   ├── OrdersDetailExample$Criterion.class
│   │   │   ├── OrdersDetailExample$GeneratedCriteria.class
│   │   │   ├── OrdersDetailExample.class
│   │   │   ├── OrdersExample$Criteria.class
│   │   │   ├── OrdersExample$Criterion.class
│   │   │   ├── OrdersExample$GeneratedCriteria.class
│   │   │   ├── OrdersExample.class
│   │   │   ├── PositionMenuRelations.class
│   │   │   ├── PositionMenuRelationsExample$Criteria.class
│   │   │   ├── PositionMenuRelationsExample$Criterion.class
│   │   │   ├── PositionMenuRelationsExample$GeneratedCriteria.class
│   │   │   ├── PositionMenuRelationsExample.class
│   │   │   ├── Process.class
│   │   │   ├── ProcessExample$Criteria.class
│   │   │   ├── ProcessExample$Criterion.class
│   │   │   ├── ProcessExample$GeneratedCriteria.class
│   │   │   ├── ProcessExample.class
│   │   │   ├── Product.class
│   │   │   ├── ProductExample$Criteria.class
│   │   │   ├── ProductExample$Criterion.class
│   │   │   ├── ProductExample$GeneratedCriteria.class
│   │   │   ├── ProductExample.class
│   │   │   ├── ProductInventory.class
│   │   │   ├── ProductInventoryExample$Criteria.class
│   │   │   ├── ProductInventoryExample$Criterion.class
│   │   │   ├── ProductInventoryExample$GeneratedCriteria.class
│   │   │   ├── ProductInventoryExample.class
│   │   │   ├── ProductType.class
│   │   │   ├── ProductTypeExample$Criteria.class
│   │   │   ├── ProductTypeExample$Criterion.class
│   │   │   ├── ProductTypeExample$GeneratedCriteria.class
│   │   │   ├── ProductTypeExample.class
│   │   │   ├── Source.class
│   │   │   ├── SourceExample$Criteria.class
│   │   │   ├── SourceExample$Criterion.class
│   │   │   ├── SourceExample$GeneratedCriteria.class
│   │   │   ├── SourceExample.class
│   │   │   ├── Store.class
│   │   │   ├── StoreExample$Criteria.class
│   │   │   ├── StoreExample$Criterion.class
│   │   │   ├── StoreExample$GeneratedCriteria.class
│   │   │   ├── StoreExample.class
│   │   │   ├── TaskUserRelations.class
│   │   │   ├── TaskUserRelationsExample$Criteria.class
│   │   │   ├── TaskUserRelationsExample$Criterion.class
│   │   │   ├── TaskUserRelationsExample$GeneratedCriteria.class
│   │   │   ├── TaskUserRelationsExample.class
│   │   │   ├── WorkingField.class
│   │   │   ├── WorkingFieldExample$Criteria.class
│   │   │   ├── WorkingFieldExample$Criterion.class
│   │   │   ├── WorkingFieldExample$GeneratedCriteria.class
│   │   │   └── WorkingFieldExample.class
│   │   ├── proxy
│   │   │   ├── TransactionProxy$1.class
│   │   │   └── TransactionProxy.class
│   │   ├── service
│   │   │   ├── advancedLog
│   │   │   │   ├── AdvancedLogServiceI.class
│   │   │   │   └── impl
│   │   │   │   └── AdvancedLogServiceImpl.class
│   │   │   ├── business
│   │   │   │   ├── BusinessServiceI.class
│   │   │   │   └── impl
│   │   │   │   └── BusinessServiceImpl.class
│   │   │   ├── customer
│   │   │   │   ├── CustomerServiceI.class
│   │   │   │   └── impl
│   │   │   │   └── CustomerServiceImpl.class
│   │   │   ├── linkMan
│   │   │   │   ├── impl
│   │   │   │   │   └── LinkManServiceImpl.class
│   │   │   │   └── LinkManServiceI.class
│   │   │   └── login
│   │   │   ├── impl
│   │   │   │   └── LoginServiceImpl.class
│   │   │   └── LoginServiceI.class
│   │   ├── servlet
│   │   │   ├── customer
│   │   │   │   ├── AdvanceLogServlet.class
│   │   │   │   ├── BuinessServlet.class
│   │   │   │   ├── CustomerServlet.class
│   │   │   │   └── LinkManServlet.class
│   │   │   ├── homePage
│   │   │   │   └── ControlServlet.class
│   │   │   ├── login
│   │   │   │   └── LoginServlet.class
│   │   │   └── systemMgr
│   │   │   ├── EmmPositionServlet.class
│   │   │   ├── EmployeeServlet.class
│   │   │   └── MenuServlet.class
│   │   ├── tag
│   │   │   └── PageTag.class
│   │   ├── test
│   │   │   └── Test01.class
│   │   ├── transaction
│   │   │   ├── impl
│   │   │   │   └── TransManagerImpl.class
│   │   │   └── TransManagerI.class
│   │   ├── util
│   │   │   ├── DateHelp.class
│   │   │   ├── MD5Util.class
│   │   │   └── MyBatisUtils.class
│   │   └── web
│   │   └── EncodingRequest.class
│   └── SqlMapConfig.xml
├── index.jsp
├── lib
│   ├── commons-beanutils.jar
│   ├── commons-logging.jar
│   ├── dom4j-1.6.1.jar
│   ├── fastjson-1.2.28.jar
│   ├── jaxen-1.1-beta-6.jar
│   ├── jsp-api.jar
│   ├── jsqlparser-0.9.5.jar
│   ├── jstl-1.2.jar
│   ├── log4j-1.2.17.jar
│   ├── mybatis-3.2.7.jar
│   ├── mysql-connector-java-5.1.18-bin.jar
│   ├── pagehelper-4.2.1.jar
│   └── servlet-api.jar
├── tld
│   └── page.tld
├── view
│   ├── customerManage
│   │   ├── business
│   │   │   ├── create.jsp
│   │   │   ├── createTj.jsp
│   │   │   ├── index.jsp
│   │   │   ├── update.jsp
│   │   │   └── view.jsp
│   │   ├── contacts
│   │   │   ├── create.jsp
│   │   │   ├── index.jsp
│   │   │   ├── update.jsp
│   │   │   └── view.jsp
│   │   └── customer
│   │   ├── create.jsp
│   │   ├── index.jsp
│   │   ├── update.jsp
│   │   └── view.jsp
│   └── systemSettings
│   ├── manage
│   │   ├── create.jsp
│   │   ├── index.jsp
│   │   └── update.jsp
│   ├── menu
│   │   ├── create.jsp
│   │   ├── index.jsp
│   │   └── update.jsp
│   └── position
│   ├── create.jsp
│   ├── index.jsp
│   └── update.jsp
└── web.xml

106 directories, 504 files

标签:

实例下载地址

java写的crm系统

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警