嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
客户关系管理系统
客户关系管理系统
.
├── 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