在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例WEB/WAP应用开发 → 客户关系管理系统

客户关系管理系统

WEB/WAP应用开发

下载此实例
  • 开发语言:Java
  • 实例大小:20.21M
  • 下载次数:40
  • 浏览次数:210
  • 发布时间:2022-06-25
  • 实例类别:WEB/WAP应用开发
  • 发 布 人:橘子籽
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 客户关系管理系统

实例介绍

【实例简介】客户关系管理系统

客户关系管理系统

【实例截图】

from clipboard

from clipboard


【核心代码】

.
├── crm
│   ├── crm.iml
│   ├── pom.xml
│   ├── src
│   │   ├── main
│   │   │   ├── java
│   │   │   │   └── com
│   │   │   │       └── orange
│   │   │   │           └── crm
│   │   │   │               ├── commons
│   │   │   │               │   ├── contants
│   │   │   │               │   │   └── Constants.java
│   │   │   │               │   ├── domain
│   │   │   │               │   │   └── ReturnObject.java
│   │   │   │               │   └── utils
│   │   │   │               │       ├── DateUtils.java
│   │   │   │               │       ├── HSSFUtils.java
│   │   │   │               │       └── UUIDUtils.java
│   │   │   │               ├── settings
│   │   │   │               │   ├── domain
│   │   │   │               │   │   ├── DicType.java
│   │   │   │               │   │   ├── DicValue.java
│   │   │   │               │   │   └── User.java
│   │   │   │               │   ├── mapper
│   │   │   │               │   │   ├── DicTypeMapper.java
│   │   │   │               │   │   ├── DicTypeMapper.xml
│   │   │   │               │   │   ├── DicValueMapper.java
│   │   │   │               │   │   ├── DicValueMapper.xml
│   │   │   │               │   │   ├── UserMapper.java
│   │   │   │               │   │   └── UserMapper.xml
│   │   │   │               │   ├── service
│   │   │   │               │   │   ├── DicTypeService.java
│   │   │   │               │   │   ├── DicValueService.java
│   │   │   │               │   │   ├── UserService.java
│   │   │   │               │   │   └── impl
│   │   │   │               │   │       ├── DicTypeServiceImpl.java
│   │   │   │               │   │       ├── DicValueServiceImpl.java
│   │   │   │               │   │       └── UserServiceImpl.java
│   │   │   │               │   └── web
│   │   │   │               │       ├── controller
│   │   │   │               │       │   └── UserController.java
│   │   │   │               │       └── interceptor
│   │   │   │               │           └── LoginInterceptor.java
│   │   │   │               ├── web
│   │   │   │               │   └── controller
│   │   │   │               │       └── IndexController.java
│   │   │   │               └── workbench
│   │   │   │                   ├── domain
│   │   │   │                   │   ├── Activity.java
│   │   │   │                   │   ├── ActivityRemark.java
│   │   │   │                   │   ├── Clue.java
│   │   │   │                   │   ├── ClueActivityRelation.java
│   │   │   │                   │   ├── ClueRemark.java
│   │   │   │                   │   ├── Contacts.java
│   │   │   │                   │   ├── ContactsActivityRelation.java
│   │   │   │                   │   ├── ContactsRemark.java
│   │   │   │                   │   ├── Customer.java
│   │   │   │                   │   ├── CustomerRemark.java
│   │   │   │                   │   ├── FunnelVO.java
│   │   │   │                   │   ├── Tran.java
│   │   │   │                   │   ├── TranHistory.java
│   │   │   │                   │   └── TranRemark.java
│   │   │   │                   ├── mapper
│   │   │   │                   │   ├── ActivityMapper.java
│   │   │   │                   │   ├── ActivityMapper.xml
│   │   │   │                   │   ├── ActivityRemarkMapper.java
│   │   │   │                   │   ├── ActivityRemarkMapper.xml
│   │   │   │                   │   ├── ClueActivityRelationMapper.java
│   │   │   │                   │   ├── ClueActivityRelationMapper.xml
│   │   │   │                   │   ├── ClueMapper.java
│   │   │   │                   │   ├── ClueMapper.xml
│   │   │   │                   │   ├── ClueRemarkMapper.java
│   │   │   │                   │   ├── ClueRemarkMapper.xml
│   │   │   │                   │   ├── ContactsActivityRelationMapper.java
│   │   │   │                   │   ├── ContactsActivityRelationMapper.xml
│   │   │   │                   │   ├── ContactsMapper.java
│   │   │   │                   │   ├── ContactsMapper.xml
│   │   │   │                   │   ├── ContactsRemarkMapper.java
│   │   │   │                   │   ├── ContactsRemarkMapper.xml
│   │   │   │                   │   ├── CustomerMapper.java
│   │   │   │                   │   ├── CustomerMapper.xml
│   │   │   │                   │   ├── CustomerRemarkMapper.java
│   │   │   │                   │   ├── CustomerRemarkMapper.xml
│   │   │   │                   │   ├── TranHistoryMapper.java
│   │   │   │                   │   ├── TranHistoryMapper.xml
│   │   │   │                   │   ├── TranMapper.java
│   │   │   │                   │   ├── TranMapper.xml
│   │   │   │                   │   ├── TranRemarkMapper.java
│   │   │   │                   │   └── TranRemarkMapper.xml
│   │   │   │                   ├── service
│   │   │   │                   │   ├── ActivityRemarkService.java
│   │   │   │                   │   ├── ActivityService.java
│   │   │   │                   │   ├── ClueActivityRelationService.java
│   │   │   │                   │   ├── ClueRemarkService.java
│   │   │   │                   │   ├── ClueService.java
│   │   │   │                   │   ├── ContactsRemarkService.java
│   │   │   │                   │   ├── ContactsService.java
│   │   │   │                   │   ├── CustomerRemarkService.java
│   │   │   │                   │   ├── CustomerService.java
│   │   │   │                   │   ├── TranHistoryService.java
│   │   │   │                   │   ├── TranRemarkService.java
│   │   │   │                   │   ├── TranService.java
│   │   │   │                   │   └── impl
│   │   │   │                   │       ├── ActivityRemarkServiceImpl.java
│   │   │   │                   │       ├── ActivityServiceImpl.java
│   │   │   │                   │       ├── ClueActivityRelationServiceImpl.java
│   │   │   │                   │       ├── ClueRemarkServiceImpl.java
│   │   │   │                   │       ├── ClueServiceImpl.java
│   │   │   │                   │       ├── ContactsRemarkServiceImpl.java
│   │   │   │                   │       ├── ContactsServiceImpl.java
│   │   │   │                   │       ├── CustomerRemarkServiceImpl.java
│   │   │   │                   │       ├── CustomerServiceImpl.java
│   │   │   │                   │       ├── TranHistoryServiceImpl.java
│   │   │   │                   │       ├── TranRemarkServiceImpl.java
│   │   │   │                   │       └── TranServiceImpl.java
│   │   │   │                   └── web
│   │   │   │                       └── controller
│   │   │   │                           ├── ActivityController.java
│   │   │   │                           ├── ActivityRemarkController.java
│   │   │   │                           ├── ChartController.java
│   │   │   │                           ├── ClueController.java
│   │   │   │                           ├── ClueRemarkController.java
│   │   │   │                           ├── ContactsController.java
│   │   │   │                           ├── CustomerController.java
│   │   │   │                           ├── CustomerRemarkController.java
│   │   │   │                           ├── MainController.java
│   │   │   │                           ├── TranController.java
│   │   │   │                           ├── TranRemarkController.java
│   │   │   │                           └── WorkbenchIndexController.java
│   │   │   ├── resources
│   │   │   │   ├── applicationContext-datasource.xml
│   │   │   │   ├── applicationContext-mvc.xml
│   │   │   │   ├── applicationContext.xml
│   │   │   │   ├── mybatis-config.xml
│   │   │   │   └── possibility.properties
│   │   │   └── webapp
│   │   │       ├── WEB-INF
│   │   │       │   ├── pages
│   │   │       │   │   ├── index.jsp
│   │   │       │   │   ├── settings
│   │   │       │   │   │   ├── dictionary
│   │   │       │   │   │   │   ├── index.html
│   │   │       │   │   │   │   ├── type
│   │   │       │   │   │   │   │   ├── edit.html
│   │   │       │   │   │   │   │   ├── index.html
│   │   │       │   │   │   │   │   └── save.html
│   │   │       │   │   │   │   └── value
│   │   │       │   │   │   │       ├── edit.html
│   │   │       │   │   │   │       ├── index.html
│   │   │       │   │   │   │       └── save.html
│   │   │       │   │   │   ├── index.html
│   │   │       │   │   │   └── qx
│   │   │       │   │   │       ├── index.html
│   │   │       │   │   │       ├── permission
│   │   │       │   │   │       │   └── index.html
│   │   │       │   │   │       ├── role
│   │   │       │   │   │       │   ├── detail.html
│   │   │       │   │   │       │   └── index.html
│   │   │       │   │   │       └── user
│   │   │       │   │   │           ├── detail.html
│   │   │       │   │   │           ├── index.jsp
│   │   │       │   │   │           └── login.jsp
│   │   │       │   │   └── workbench
│   │   │       │   │       ├── activity
│   │   │       │   │       │   ├── detail.jsp
│   │   │       │   │       │   └── index.jsp
│   │   │       │   │       ├── chart
│   │   │       │   │       │   ├── activity
│   │   │       │   │       │   │   └── index.html
│   │   │       │   │       │   ├── clue
│   │   │       │   │       │   │   └── index.html
│   │   │       │   │       │   ├── customerAndContacts
│   │   │       │   │       │   │   └── index.html
│   │   │       │   │       │   └── transaction
│   │   │       │   │       │       └── index.jsp
│   │   │       │   │       ├── clue
│   │   │       │   │       │   ├── convert.jsp
│   │   │       │   │       │   ├── detail.jsp
│   │   │       │   │       │   └── index.jsp
│   │   │       │   │       ├── contacts
│   │   │       │   │       │   ├── detail.jsp
│   │   │       │   │       │   └── index.jsp
│   │   │       │   │       ├── customer
│   │   │       │   │       │   ├── detail.jsp
│   │   │       │   │       │   └── index.jsp
│   │   │       │   │       ├── index.jsp
│   │   │       │   │       ├── main
│   │   │       │   │       │   └── index.jsp
│   │   │       │   │       └── transaction
│   │   │       │   │           ├── detail.jsp
│   │   │       │   │           ├── edit.jsp
│   │   │       │   │           ├── index.jsp
│   │   │       │   │           └── save.jsp
│   │   │       │   └── web.xml
│   │   │       ├── datetimepickertest.jsp
│   │   │       ├── echartsTest.jsp
│   │   │       ├── echartsTest2.jsp
│   │   │       ├── filedownloadtest.jsp
│   │   │       ├── fileuploadtest.jsp
│   │   │       ├── image
│   │   │       │   ├── IMG_7114.JPG
│   │   │       │   ├── home.png
│   │   │       │   └── user-thumbnail.png
│   │   │       ├── index.jsp
│   │   │       ├── jquery
│   │   │       │   ├── bootstrap-datetimepicker-master
│   │   │       │   │   ├── css
│   │   │       │   │   │   └── bootstrap-datetimepicker.min.css
│   │   │       │   │   ├── js
│   │   │       │   │   │   ├── bootstrap-datetimepicker.js
│   │   │       │   │   │   └── bootstrap-datetimepicker.min.js
│   │   │       │   │   └── locale
│   │   │       │   │       └── bootstrap-datetimepicker.zh-CN.js
│   │   │       │   ├── bootstrap-datetimepicker-master_bak
│   │   │       │   │   ├── css
│   │   │       │   │   │   └── bootstrap-datetimepicker.min.css
│   │   │       │   │   ├── js
│   │   │       │   │   │   └── bootstrap-datetimepicker.min.js
│   │   │       │   │   └── locale
│   │   │       │   │       └── bootstrap-datetimepicker.zh-CN.js
│   │   │       │   ├── bootstrap_3.3.0
│   │   │       │   │   ├── css
│   │   │       │   │   │   ├── bootstrap-theme.min.css
│   │   │       │   │   │   └── bootstrap.min.css
│   │   │       │   │   ├── fonts
│   │   │       │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │       │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │       │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │       │   │   │   └── glyphicons-halflings-regular.woff
│   │   │       │   │   └── js
│   │   │       │   │       ├── bootstrap.min.js
│   │   │       │   │       └── npm.js
│   │   │       │   ├── bootstrap_3.3.0_bak
│   │   │       │   │   ├── css
│   │   │       │   │   │   ├── bootstrap-theme.min.css
│   │   │       │   │   │   └── bootstrap.min.css
│   │   │       │   │   ├── fonts
│   │   │       │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │       │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │       │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │       │   │   │   └── glyphicons-halflings-regular.woff
│   │   │       │   │   └── js
│   │   │       │   │       ├── bootstrap.min.js
│   │   │       │   │       └── npm.js
│   │   │       │   ├── bs_pagination-master
│   │   │       │   │   ├── css
│   │   │       │   │   │   └── jquery.bs_pagination.min.css
│   │   │       │   │   ├── js
│   │   │       │   │   │   └── jquery.bs_pagination.min.js
│   │   │       │   │   └── localization
│   │   │       │   │       ├── el.js
│   │   │       │   │       ├── el.min.js
│   │   │       │   │       ├── en.js
│   │   │       │   │       ├── en.min.js
│   │   │       │   │       ├── ru.js
│   │   │       │   │       └── ru.min.js
│   │   │       │   ├── bs_typeahead
│   │   │       │   │   └── bootstrap3-typeahead.min.js
│   │   │       │   ├── echars
│   │   │       │   │   └── echarts.min.js
│   │   │       │   ├── jquery-1.11.1-min.js
│   │   │       │   └── zTree_v3-master
│   │   │       │       ├── css
│   │   │       │       │   └── zTreeStyle
│   │   │       │       │       ├── img
│   │   │       │       │       │   ├── diy
│   │   │       │       │       │   │   ├── 1_close.png
│   │   │       │       │       │   │   ├── 1_open.png
│   │   │       │       │       │   │   ├── 2.png
│   │   │       │       │       │   │   ├── 3.png
│   │   │       │       │       │   │   ├── 4.png
│   │   │       │       │       │   │   ├── 5.png
│   │   │       │       │       │   │   ├── 6.png
│   │   │       │       │       │   │   ├── 7.png
│   │   │       │       │       │   │   ├── 8.png
│   │   │       │       │       │   │   └── 9.png
│   │   │       │       │       │   ├── line_conn.gif
│   │   │       │       │       │   ├── loading.gif
│   │   │       │       │       │   ├── zTreeStandard.gif
│   │   │       │       │       │   └── zTreeStandard.png
│   │   │       │       │       └── zTreeStyle.css
│   │   │       │       └── js
│   │   │       │           └── jquery.ztree.all.min.js
│   │   │       ├── paginationtest.jsp
│   │   │       ├── typeaheadtest.jsp
│   │   │       └── typeaheadtest2.jsp
│   │   └── test
│   │       ├── java
│   │       │   ├── CreateExcelTest.java
│   │       │   └── ParseExcelTest.java
│   │       └── rescources
│   └── target
│       ├── classes
│       │   ├── META-INF
│       │   │   └── crm.kotlin_module
│       │   ├── applicationContext-datasource.xml
│       │   ├── applicationContext-mvc.xml
│       │   ├── applicationContext.xml
│       │   ├── com
│       │   │   └── orange
│       │   │       └── crm
│       │   │           ├── commons
│       │   │           │   ├── contants
│       │   │           │   │   └── Constants.class
│       │   │           │   ├── domain
│       │   │           │   │   └── ReturnObject.class
│       │   │           │   └── utils
│       │   │           │       ├── DateUtils.class
│       │   │           │       ├── HSSFUtils.class
│       │   │           │       └── UUIDUtils.class
│       │   │           ├── settings
│       │   │           │   ├── domain
│       │   │           │   │   ├── DicType.class
│       │   │           │   │   ├── DicValue.class
│       │   │           │   │   └── User.class
│       │   │           │   ├── mapper
│       │   │           │   │   ├── DicTypeMapper.class
│       │   │           │   │   ├── DicTypeMapper.xml
│       │   │           │   │   ├── DicValueMapper.class
│       │   │           │   │   ├── DicValueMapper.xml
│       │   │           │   │   ├── UserMapper.class
│       │   │           │   │   └── UserMapper.xml
│       │   │           │   ├── service
│       │   │           │   │   ├── DicTypeService.class
│       │   │           │   │   ├── DicValueService.class
│       │   │           │   │   ├── UserService.class
│       │   │           │   │   └── impl
│       │   │           │   │       ├── DicTypeServiceImpl.class
│       │   │           │   │       ├── DicValueServiceImpl.class
│       │   │           │   │       └── UserServiceImpl.class
│       │   │           │   └── web
│       │   │           │       ├── controller
│       │   │           │       │   └── UserController.class
│       │   │           │       └── interceptor
│       │   │           │           └── LoginInterceptor.class
│       │   │           ├── web
│       │   │           │   └── controller
│       │   │           │       └── IndexController.class
│       │   │           └── workbench
│       │   │               ├── domain
│       │   │               │   ├── Activity.class
│       │   │               │   ├── ActivityRemark.class
│       │   │               │   ├── Clue.class
│       │   │               │   ├── ClueActivityRelation.class
│       │   │               │   ├── ClueRemark.class
│       │   │               │   ├── Contacts.class
│       │   │               │   ├── ContactsActivityRelation.class
│       │   │               │   ├── ContactsRemark.class
│       │   │               │   ├── Customer.class
│       │   │               │   ├── CustomerRemark.class
│       │   │               │   ├── FunnelVO.class
│       │   │               │   ├── Tran.class
│       │   │               │   ├── TranHistory.class
│       │   │               │   └── TranRemark.class
│       │   │               ├── mapper
│       │   │               │   ├── ActivityMapper.class
│       │   │               │   ├── ActivityMapper.xml
│       │   │               │   ├── ActivityRemarkMapper.class
│       │   │               │   ├── ActivityRemarkMapper.xml
│       │   │               │   ├── ClueActivityRelationMapper.class
│       │   │               │   ├── ClueActivityRelationMapper.xml
│       │   │               │   ├── ClueMapper.class
│       │   │               │   ├── ClueMapper.xml
│       │   │               │   ├── ClueRemarkMapper.class
│       │   │               │   ├── ClueRemarkMapper.xml
│       │   │               │   ├── ContactsActivityRelationMapper.class
│       │   │               │   ├── ContactsActivityRelationMapper.xml
│       │   │               │   ├── ContactsMapper.class
│       │   │               │   ├── ContactsMapper.xml
│       │   │               │   ├── ContactsRemarkMapper.class
│       │   │               │   ├── ContactsRemarkMapper.xml
│       │   │               │   ├── CustomerMapper.class
│       │   │               │   ├── CustomerMapper.xml
│       │   │               │   ├── CustomerRemarkMapper.class
│       │   │               │   ├── CustomerRemarkMapper.xml
│       │   │               │   ├── TranHistoryMapper.class
│       │   │               │   ├── TranHistoryMapper.xml
│       │   │               │   ├── TranMapper.class
│       │   │               │   ├── TranMapper.xml
│       │   │               │   ├── TranRemarkMapper.class
│       │   │               │   └── TranRemarkMapper.xml
│       │   │               ├── service
│       │   │               │   ├── ActivityRemarkService.class
│       │   │               │   ├── ActivityService.class
│       │   │               │   ├── ClueActivityRelationService.class
│       │   │               │   ├── ClueRemarkService.class
│       │   │               │   ├── ClueService.class
│       │   │               │   ├── ContactsRemarkService.class
│       │   │               │   ├── ContactsService.class
│       │   │               │   ├── CustomerRemarkService.class
│       │   │               │   ├── CustomerService.class
│       │   │               │   ├── TranHistoryService.class
│       │   │               │   ├── TranRemarkService.class
│       │   │               │   ├── TranService.class
│       │   │               │   └── impl
│       │   │               │       ├── ActivityRemarkServiceImpl.class
│       │   │               │       ├── ActivityServiceImpl.class
│       │   │               │       ├── ClueActivityRelationServiceImpl.class
│       │   │               │       ├── ClueRemarkServiceImpl.class
│       │   │               │       ├── ClueServiceImpl.class
│       │   │               │       ├── ContactsRemarkServiceImpl.class
│       │   │               │       ├── ContactsServiceImpl.class
│       │   │               │       ├── CustomerRemarkServiceImpl.class
│       │   │               │       ├── CustomerServiceImpl.class
│       │   │               │       ├── TranHistoryServiceImpl.class
│       │   │               │       ├── TranRemarkServiceImpl.class
│       │   │               │       └── TranServiceImpl.class
│       │   │               └── web
│       │   │                   └── controller
│       │   │                       ├── ActivityController.class
│       │   │                       ├── ActivityRemarkController.class
│       │   │                       ├── ChartController.class
│       │   │                       ├── ClueController.class
│       │   │                       ├── ClueRemarkController.class
│       │   │                       ├── ContactsController.class
│       │   │                       ├── CustomerController.class
│       │   │                       ├── CustomerRemarkController.class
│       │   │                       ├── MainController.class
│       │   │                       ├── TranController.class
│       │   │                       ├── TranRemarkController.class
│       │   │                       └── WorkbenchIndexController.class
│       │   ├── mybatis-config.xml
│       │   └── possibility.properties
│       ├── crm
│       │   ├── META-INF
│       │   │   └── MANIFEST.MF
│       │   ├── WEB-INF
│       │   │   ├── classes
│       │   │   │   ├── META-INF
│       │   │   │   │   └── crm.kotlin_module
│       │   │   │   ├── applicationContext-datasource.xml
│       │   │   │   ├── applicationContext-mvc.xml
│       │   │   │   ├── applicationContext.xml
│       │   │   │   ├── com
│       │   │   │   │   └── orange
│       │   │   │   │       └── crm
│       │   │   │   │           ├── commons
│       │   │   │   │           │   ├── contants
│       │   │   │   │           │   │   └── Constants.class
│       │   │   │   │           │   ├── domain
│       │   │   │   │           │   │   └── ReturnObject.class
│       │   │   │   │           │   └── utils
│       │   │   │   │           │       ├── DateUtils.class
│       │   │   │   │           │       ├── HSSFUtils.class
│       │   │   │   │           │       └── UUIDUtils.class
│       │   │   │   │           ├── settings
│       │   │   │   │           │   ├── domain
│       │   │   │   │           │   │   ├── DicType.class
│       │   │   │   │           │   │   ├── DicValue.class
│       │   │   │   │           │   │   └── User.class
│       │   │   │   │           │   ├── mapper
│       │   │   │   │           │   │   ├── DicTypeMapper.class
│       │   │   │   │           │   │   ├── DicTypeMapper.xml
│       │   │   │   │           │   │   ├── DicValueMapper.class
│       │   │   │   │           │   │   ├── DicValueMapper.xml
│       │   │   │   │           │   │   ├── UserMapper.class
│       │   │   │   │           │   │   └── UserMapper.xml
│       │   │   │   │           │   ├── service
│       │   │   │   │           │   │   ├── DicTypeService.class
│       │   │   │   │           │   │   ├── DicValueService.class
│       │   │   │   │           │   │   ├── UserService.class
│       │   │   │   │           │   │   └── impl
│       │   │   │   │           │   │       ├── DicTypeServiceImpl.class
│       │   │   │   │           │   │       ├── DicValueServiceImpl.class
│       │   │   │   │           │   │       └── UserServiceImpl.class
│       │   │   │   │           │   └── web
│       │   │   │   │           │       ├── controller
│       │   │   │   │           │       │   └── UserController.class
│       │   │   │   │           │       └── interceptor
│       │   │   │   │           │           └── LoginInterceptor.class
│       │   │   │   │           ├── web
│       │   │   │   │           │   ├── controller
│       │   │   │   │           │   │   ├── IndexController.class
│       │   │   │   │           │   │   └── interceptor
│       │   │   │   │           │   └── interceptor
│       │   │   │   │           └── workbench
│       │   │   │   │               ├── domain
│       │   │   │   │               │   ├── Activity.class
│       │   │   │   │               │   ├── ActivityRemark.class
│       │   │   │   │               │   ├── Clue.class
│       │   │   │   │               │   ├── ClueActivityRelation.class
│       │   │   │   │               │   ├── ClueRemark.class
│       │   │   │   │               │   ├── Contacts.class
│       │   │   │   │               │   ├── ContactsActivityRelation.class
│       │   │   │   │               │   ├── ContactsRemark.class
│       │   │   │   │               │   ├── Customer.class
│       │   │   │   │               │   ├── CustomerRemark.class
│       │   │   │   │               │   ├── FunnelVO.class
│       │   │   │   │               │   ├── Tran.class
│       │   │   │   │               │   ├── TranHistory.class
│       │   │   │   │               │   └── TranRemark.class
│       │   │   │   │               ├── mapper
│       │   │   │   │               │   ├── ActivityMapper.class
│       │   │   │   │               │   ├── ActivityMapper.xml
│       │   │   │   │               │   ├── ActivityRemarkMapper.class
│       │   │   │   │               │   ├── ActivityRemarkMapper.xml
│       │   │   │   │               │   ├── ClueActivityRelationMapper.class
│       │   │   │   │               │   ├── ClueActivityRelationMapper.xml
│       │   │   │   │               │   ├── ClueMapper.class
│       │   │   │   │               │   ├── ClueMapper.xml
│       │   │   │   │               │   ├── ClueRemarkMapper.class
│       │   │   │   │               │   ├── ClueRemarkMapper.xml
│       │   │   │   │               │   ├── ContactsActivityRelationMapper.class
│       │   │   │   │               │   ├── ContactsActivityRelationMapper.xml
│       │   │   │   │               │   ├── ContactsMapper.class
│       │   │   │   │               │   ├── ContactsMapper.xml
│       │   │   │   │               │   ├── ContactsRemarkMapper.class
│       │   │   │   │               │   ├── ContactsRemarkMapper.xml
│       │   │   │   │               │   ├── CustomerMapper.class
│       │   │   │   │               │   ├── CustomerMapper.xml
│       │   │   │   │               │   ├── CustomerRemarkMapper.class
│       │   │   │   │               │   ├── CustomerRemarkMapper.xml
│       │   │   │   │               │   ├── TranHistoryMapper.class
│       │   │   │   │               │   ├── TranHistoryMapper.xml
│       │   │   │   │               │   ├── TranMapper.class
│       │   │   │   │               │   ├── TranMapper.xml
│       │   │   │   │               │   ├── TranRemarkMapper.class
│       │   │   │   │               │   └── TranRemarkMapper.xml
│       │   │   │   │               ├── service
│       │   │   │   │               │   ├── ActivityRemarkService.class
│       │   │   │   │               │   ├── ActivityService.class
│       │   │   │   │               │   ├── ClueActivityRelationService.class
│       │   │   │   │               │   ├── ClueRemarkService.class
│       │   │   │   │               │   ├── ClueService.class
│       │   │   │   │               │   ├── ContactsRemarkService.class
│       │   │   │   │               │   ├── ContactsService.class
│       │   │   │   │               │   ├── CustomerRemarkService.class
│       │   │   │   │               │   ├── CustomerService.class
│       │   │   │   │               │   ├── TranHistoryService.class
│       │   │   │   │               │   ├── TranRemarkService.class
│       │   │   │   │               │   ├── TranService.class
│       │   │   │   │               │   └── impl
│       │   │   │   │               │       ├── ActivityRemarkServiceImpl.class
│       │   │   │   │               │       ├── ActivityServiceImpl.class
│       │   │   │   │               │       ├── ClueActivityRelationServiceImpl.class
│       │   │   │   │               │       ├── ClueRemarkServiceImpl.class
│       │   │   │   │               │       ├── ClueServiceImpl.class
│       │   │   │   │               │       ├── ContactsRemarkServiceImpl.class
│       │   │   │   │               │       ├── ContactsServiceImpl.class
│       │   │   │   │               │       ├── CustomerRemarkServiceImpl.class
│       │   │   │   │               │       ├── CustomerServiceImpl.class
│       │   │   │   │               │       ├── TranHistoryServiceImpl.class
│       │   │   │   │               │       ├── TranRemarkServiceImpl.class
│       │   │   │   │               │       └── TranServiceImpl.class
│       │   │   │   │               └── web
│       │   │   │   │                   └── controller
│       │   │   │   │                       ├── ActivityController.class
│       │   │   │   │                       ├── ActivityRemarkController.class
│       │   │   │   │                       ├── ChartController.class
│       │   │   │   │                       ├── ClueController.class
│       │   │   │   │                       ├── ClueRemarkController.class
│       │   │   │   │                       ├── ContactsController.class
│       │   │   │   │                       ├── CustomerController.class
│       │   │   │   │                       ├── CustomerRemarkController.class
│       │   │   │   │                       ├── MainController.class
│       │   │   │   │                       ├── TranController.class
│       │   │   │   │                       ├── TranRemarkController.class
│       │   │   │   │                       └── WorkbenchIndexController.class
│       │   │   │   ├── mybatis-config.xml
│       │   │   │   └── possibility.properties
│       │   │   ├── lib
│       │   │   │   ├── aspectjweaver-1.8.9.jar
│       │   │   │   ├── commons-codec-1.10.jar
│       │   │   │   ├── commons-collections4-4.1.jar
│       │   │   │   ├── commons-fileupload-1.3.1.jar
│       │   │   │   ├── commons-io-2.2.jar
│       │   │   │   ├── commons-logging-1.2.jar
│       │   │   │   ├── druid-1.1.1.jar
│       │   │   │   ├── jackson-annotations-2.7.3.jar
│       │   │   │   ├── jackson-core-2.7.3.jar
│       │   │   │   ├── jackson-databind-2.7.3.jar
│       │   │   │   ├── javax.servlet-api-3.1.0.jar
│       │   │   │   ├── jsp-api-2.1.jar
│       │   │   │   ├── jstl-api-1.2.jar
│       │   │   │   ├── log4j-api-2.3.jar
│       │   │   │   ├── log4j-core-2.3.jar
│       │   │   │   ├── log4j-jcl-2.3.jar
│       │   │   │   ├── mybatis-3.4.1.jar
│       │   │   │   ├── mybatis-spring-1.3.0.jar
│       │   │   │   ├── mysql-connector-java-5.1.43.jar
│       │   │   │   ├── poi-3.15.jar
│       │   │   │   ├── servlet-api-2.5.jar
│       │   │   │   ├── spring-aop-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-beans-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-context-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-core-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-expression-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-jdbc-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-oxm-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-tx-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-web-4.3.9.RELEASE.jar
│       │   │   │   ├── spring-webmvc-4.3.9.RELEASE.jar
│       │   │   │   ├── taglibs-standard-impl-1.2.1.jar
│       │   │   │   └── taglibs-standard-spec-1.2.1.jar
│       │   │   ├── pages
│       │   │   │   ├── index.jsp
│       │   │   │   ├── settings
│       │   │   │   │   ├── dictionary
│       │   │   │   │   │   ├── index.html
│       │   │   │   │   │   ├── type
│       │   │   │   │   │   │   ├── edit.html
│       │   │   │   │   │   │   ├── index.html
│       │   │   │   │   │   │   └── save.html
│       │   │   │   │   │   └── value
│       │   │   │   │   │       ├── edit.html
│       │   │   │   │   │       ├── index.html
│       │   │   │   │   │       └── save.html
│       │   │   │   │   ├── index.html
│       │   │   │   │   └── qx
│       │   │   │   │       ├── index.html
│       │   │   │   │       ├── permission
│       │   │   │   │       │   └── index.html
│       │   │   │   │       ├── role
│       │   │   │   │       │   ├── detail.html
│       │   │   │   │       │   └── index.html
│       │   │   │   │       └── user
│       │   │   │   │           ├── detail.html
│       │   │   │   │           ├── index.jsp
│       │   │   │   │           └── login.jsp
│       │   │   │   └── workbench
│       │   │   │       ├── activity
│       │   │   │       │   ├── detail.jsp
│       │   │   │       │   └── index.jsp
│       │   │   │       ├── chart
│       │   │   │       │   ├── activity
│       │   │   │       │   │   └── index.html
│       │   │   │       │   ├── clue
│       │   │   │       │   │   └── index.html
│       │   │   │       │   ├── customerAndContacts
│       │   │   │       │   │   └── index.html
│       │   │   │       │   └── transaction
│       │   │   │       │       └── index.jsp
│       │   │   │       ├── clue
│       │   │   │       │   ├── convert.jsp
│       │   │   │       │   ├── detail.jsp
│       │   │   │       │   └── index.jsp
│       │   │   │       ├── contacts
│       │   │   │       │   ├── detail.jsp
│       │   │   │       │   └── index.jsp
│       │   │   │       ├── customer
│       │   │   │       │   ├── detail.jsp
│       │   │   │       │   └── index.jsp
│       │   │   │       ├── index.jsp
│       │   │   │       ├── main
│       │   │   │       │   └── index.jsp
│       │   │   │       └── transaction
│       │   │   │           ├── detail.jsp
│       │   │   │           ├── edit.jsp
│       │   │   │           ├── index.jsp
│       │   │   │           └── save.jsp
│       │   │   └── web.xml
│       │   ├── datetimepickertest.jsp
│       │   ├── echartsTest.jsp
│       │   ├── echartsTest2.jsp
│       │   ├── filedownloadtest.jsp
│       │   ├── fileuploadtest.jsp
│       │   ├── image
│       │   │   ├── IMG_7114.JPG
│       │   │   ├── home.png
│       │   │   └── user-thumbnail.png
│       │   ├── index.jsp
│       │   ├── jquery
│       │   │   ├── bootstrap-datetimepicker-master
│       │   │   │   ├── css
│       │   │   │   │   └── bootstrap-datetimepicker.min.css
│       │   │   │   ├── js
│       │   │   │   │   ├── bootstrap-datetimepicker.js
│       │   │   │   │   └── bootstrap-datetimepicker.min.js
│       │   │   │   └── locale
│       │   │   │       └── bootstrap-datetimepicker.zh-CN.js
│       │   │   ├── bootstrap-datetimepicker-master_bak
│       │   │   │   ├── css
│       │   │   │   │   └── bootstrap-datetimepicker.min.css
│       │   │   │   ├── js
│       │   │   │   │   └── bootstrap-datetimepicker.min.js
│       │   │   │   └── locale
│       │   │   │       └── bootstrap-datetimepicker.zh-CN.js
│       │   │   ├── bootstrap_3.3.0
│       │   │   │   ├── css
│       │   │   │   │   ├── bootstrap-theme.min.css
│       │   │   │   │   └── bootstrap.min.css
│       │   │   │   ├── fonts
│       │   │   │   │   ├── glyphicons-halflings-regular.eot
│       │   │   │   │   ├── glyphicons-halflings-regular.svg
│       │   │   │   │   ├── glyphicons-halflings-regular.ttf
│       │   │   │   │   └── glyphicons-halflings-regular.woff
│       │   │   │   └── js
│       │   │   │       ├── bootstrap.min.js
│       │   │   │       └── npm.js
│       │   │   ├── bootstrap_3.3.0_bak
│       │   │   │   ├── css
│       │   │   │   │   ├── bootstrap-theme.min.css
│       │   │   │   │   └── bootstrap.min.css
│       │   │   │   ├── fonts
│       │   │   │   │   ├── glyphicons-halflings-regular.eot
│       │   │   │   │   ├── glyphicons-halflings-regular.svg
│       │   │   │   │   ├── glyphicons-halflings-regular.ttf
│       │   │   │   │   └── glyphicons-halflings-regular.woff
│       │   │   │   └── js
│       │   │   │       ├── bootstrap.min.js
│       │   │   │       └── npm.js
│       │   │   ├── bs_pagination-master
│       │   │   │   ├── css
│       │   │   │   │   └── jquery.bs_pagination.min.css
│       │   │   │   ├── js
│       │   │   │   │   └── jquery.bs_pagination.min.js
│       │   │   │   └── localization
│       │   │   │       ├── el.js
│       │   │   │       ├── el.min.js
│       │   │   │       ├── en.js
│       │   │   │       ├── en.min.js
│       │   │   │       ├── ru.js
│       │   │   │       └── ru.min.js
│       │   │   ├── bs_typeahead
│       │   │   │   └── bootstrap3-typeahead.min.js
│       │   │   ├── echars
│       │   │   │   └── echarts.min.js
│       │   │   ├── jquery-1.11.1-min.js
│       │   │   └── zTree_v3-master
│       │   │       ├── css
│       │   │       │   └── zTreeStyle
│       │   │       │       ├── img
│       │   │       │       │   ├── diy
│       │   │       │       │   │   ├── 1_close.png
│       │   │       │       │   │   ├── 1_open.png
│       │   │       │       │   │   ├── 2.png
│       │   │       │       │   │   ├── 3.png
│       │   │       │       │   │   ├── 4.png
│       │   │       │       │   │   ├── 5.png
│       │   │       │       │   │   ├── 6.png
│       │   │       │       │   │   ├── 7.png
│       │   │       │       │   │   ├── 8.png
│       │   │       │       │   │   └── 9.png
│       │   │       │       │   ├── line_conn.gif
│       │   │       │       │   ├── loading.gif
│       │   │       │       │   ├── zTreeStandard.gif
│       │   │       │       │   └── zTreeStandard.png
│       │   │       │       └── zTreeStyle.css
│       │   │       └── js
│       │   │           └── jquery.ztree.all.min.js
│       │   ├── paginationtest.jsp
│       │   ├── typeaheadtest.jsp
│       │   └── typeaheadtest2.jsp
│       ├── crm-1.0-SNAPSHOT
│       │   ├── META-INF
│       │   │   └── MANIFEST.MF
│       │   ├── WEB-INF
│       │   │   ├── classes
│       │   │   │   ├── META-INF
│       │   │   │   └── com
│       │   │   │       └── orange
│       │   │   │           ├── crm
│       │   │   │           │   ├── settings
│       │   │   │           │   │   └── web
│       │   │   │           │   │       └── controller
│       │   │   │           │   └── web
│       │   │   │           │       └── controller
│       │   │   │           └── web
│       │   │   │               └── controller
│       │   │   ├── lib
│       │   │   └── pages
│       │   │       ├── settings
│       │   │       │   ├── dictionary
│       │   │       │   │   ├── type
│       │   │       │   │   └── value
│       │   │       │   └── qx
│       │   │       │       ├── permission
│       │   │       │       ├── role
│       │   │       │       └── user
│       │   │       └── workbench
│       │   │           ├── activity
│       │   │           ├── chart
│       │   │           │   ├── activity
│       │   │           │   ├── clue
│       │   │           │   ├── customerAndContacts
│       │   │           │   └── transaction
│       │   │           ├── clue
│       │   │           ├── contacts
│       │   │           ├── customer
│       │   │           ├── main
│       │   │           └── transaction
│       │   ├── image
│       │   └── jquery
│       │       ├── bootstrap-datetimepicker-master
│       │       │   ├── css
│       │       │   ├── js
│       │       │   └── locale
│       │       ├── bootstrap-datetimepicker-master_bak
│       │       │   ├── css
│       │       │   ├── js
│       │       │   └── locale
│       │       ├── bootstrap_3.3.0
│       │       │   ├── css
│       │       │   ├── fonts
│       │       │   └── js
│       │       ├── bootstrap_3.3.0_bak
│       │       │   ├── css
│       │       │   ├── fonts
│       │       │   └── js
│       │       ├── bs_pagination-master
│       │       │   ├── css
│       │       │   ├── js
│       │       │   └── localization
│       │       ├── bs_typeahead
│       │       ├── echars
│       │       └── zTree_v3-master
│       │           ├── css
│       │           │   └── zTreeStyle
│       │           │       └── img
│       │           │           └── diy
│       │           └── js
│       ├── generated-sources
│       │   └── annotations
│       ├── generated-test-sources
│       │   └── test-annotations
│       └── test-classes
│           ├── CreateExcelTest.class
│           └── ParseExcelTest.class
├── crm-mybatis-generator
│   ├── crm-mybatis-generator.iml
│   ├── pom.xml
│   └── src
│       ├── main
│       │   ├── java
│       │   └── resources
│       │       ├── generator.properties
│       │       └── generatorConfig.xml
│       └── test
│           ├── java
│           └── resources
└── 客户关系管理系统.zip

275 directories, 556 files



实例下载地址

客户关系管理系统

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警