在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 基于Spring MVC+Spring+Mybatis+Mysql 客户关系管理系统 SSM毕业设计

基于Spring MVC+Spring+Mybatis+Mysql 客户关系管理系统 SSM毕业设计

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:24.79M
  • 下载次数:20
  • 浏览次数:154
  • 发布时间:2021-02-20
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
maven搭建的项目。使用Spring MVC+Spring+Mybatis+Mysql(包含SQL脚本),导入sql脚本后,项目可以正常运行。
【实例截图】
【核心代码】
16d0a91e-85aa-46f1-a383-6912db42550a
└── CRMlz
├── logs
│   └── ssm.log
├── pom.xml
├── src
│   ├── main
│   │   ├── java
│   │   │   └── com
│   │   │   └── lz
│   │   │   ├── controller
│   │   │   │   ├── CarController.java
│   │   │   │   ├── CarTypeController.java
│   │   │   │   ├── CustomerCareController.java
│   │   │   │   ├── CustomerConditionController.java
│   │   │   │   ├── CustomerController.java
│   │   │   │   ├── CustomerSourceController.java
│   │   │   │   ├── CustomerTypeController.java
│   │   │   │   ├── DepartmentController.java
│   │   │   │   ├── EmailController.java
│   │   │   │   ├── LinkManController.java
│   │   │   │   ├── LinkRecordController.java
│   │   │   │   ├── LoginController.java
│   │   │   │   ├── NoticeController.java
│   │   │   │   ├── ReportFormsController.java
│   │   │   │   ├── RoleController.java
│   │   │   │   ├── UserController.java
│   │   │   │   └── WorkController.java
│   │   │   ├── dao
│   │   │   │   ├── CustomerCareMapper.java
│   │   │   │   ├── CustomerCareMapper.xml
│   │   │   │   ├── CustomerConditionMapper.java
│   │   │   │   ├── CustomerConditionMapper.xml
│   │   │   │   ├── CustomerMapper.java
│   │   │   │   ├── CustomerMapper.xml
│   │   │   │   ├── CustomerSourceMapper.java
│   │   │   │   ├── CustomerSourceMapper.xml
│   │   │   │   ├── CustomerTypeMapper.java
│   │   │   │   ├── CustomerTypeMapper.xml
│   │   │   │   ├── DepartmentMapper.java
│   │   │   │   ├── DepartmentMapper.xml
│   │   │   │   ├── EmailMapper.java
│   │   │   │   ├── EmailMapper.xml
│   │   │   │   ├── HouseMapper.java
│   │   │   │   ├── HouseMapper.xml
│   │   │   │   ├── HouseTypeMapper.java
│   │   │   │   ├── HouseTypeMapper.xml
│   │   │   │   ├── LinkManMapper.java
│   │   │   │   ├── LinkManMapper.xml
│   │   │   │   ├── LinkRecordMapper.java
│   │   │   │   ├── LinkRecordMapper.xml
│   │   │   │   ├── LoginMapper.java
│   │   │   │   ├── LoginMapper.xml
│   │   │   │   ├── NoticeMapper.java
│   │   │   │   ├── NoticeMapper.xml
│   │   │   │   ├── ReportFormsMapper.java
│   │   │   │   ├── ReportFormsMapper.xml
│   │   │   │   ├── RoleMapper.java
│   │   │   │   ├── RoleMapper.xml
│   │   │   │   ├── UserMapper.java
│   │   │   │   ├── UserMapper.xml
│   │   │   │   ├── WorkMapper.java
│   │   │   │   └── WorkMapper.xml
│   │   │   ├── file
│   │   │   │   ├── DownloadServlet.java
│   │   │   │   ├── ListFileServlet.java
│   │   │   │   └── UploadServlet.java
│   │   │   ├── pojo
│   │   │   │   ├── CustomerCare.java
│   │   │   │   ├── CustomerCondition.java
│   │   │   │   ├── Customer.java
│   │   │   │   ├── CustomerSource.java
│   │   │   │   ├── CustomerType.java
│   │   │   │   ├── Department.java
│   │   │   │   ├── Email.java
│   │   │   │   ├── House.java
│   │   │   │   ├── HouseType.java
│   │   │   │   ├── LinkMan.java
│   │   │   │   ├── LinkRecord.java
│   │   │   │   ├── Login.java
│   │   │   │   ├── Notice.java
│   │   │   │   ├── Other.java
│   │   │   │   ├── ReportForms.java
│   │   │   │   ├── Role.java
│   │   │   │   ├── User.java
│   │   │   │   └── Work.java
│   │   │   ├── service
│   │   │   │   ├── CustomerCareService.java
│   │   │   │   ├── CustomerConditionService.java
│   │   │   │   ├── CustomerService.java
│   │   │   │   ├── CustomerSourceService.java
│   │   │   │   ├── CustomerTypeService.java
│   │   │   │   ├── DepartmentService.java
│   │   │   │   ├── EmailService.java
│   │   │   │   ├── HouseService.java
│   │   │   │   ├── HouseTypeService.java
│   │   │   │   ├── impl
│   │   │   │   │   ├── CustomerCareServiceImpl.java
│   │   │   │   │   ├── CustomerConditionServiceImpl.java
│   │   │   │   │   ├── CustomerServiceImpl.java
│   │   │   │   │   ├── CustomerSourceServiceImpl.java
│   │   │   │   │   ├── CustomerTypeServiceImpl.java
│   │   │   │   │   ├── DepartmentServiceImpl.java
│   │   │   │   │   ├── EmailServiceImpl.java
│   │   │   │   │   ├── HouseServiceImpl.java
│   │   │   │   │   ├── HouseTypeServiceImpl.java
│   │   │   │   │   ├── LinkManServiceImpl.java
│   │   │   │   │   ├── LinkRecordServiceImpl.java
│   │   │   │   │   ├── LoginServiceImpl.java
│   │   │   │   │   ├── NoticeServiceImpl.java
│   │   │   │   │   ├── ReportFormsServiceImpl.java
│   │   │   │   │   ├── RoleServiceImpl.java
│   │   │   │   │   ├── UserServiceImpl.java
│   │   │   │   │   └── WorkServiceImpl.java
│   │   │   │   ├── LinkManService.java
│   │   │   │   ├── LinkRecordService.java
│   │   │   │   ├── LoginService.java
│   │   │   │   ├── NoticeService.java
│   │   │   │   ├── ReportFormsService.java
│   │   │   │   ├── RoleService.java
│   │   │   │   ├── UserService.java
│   │   │   │   └── WorkService.java
│   │   │   └── util
│   │   │   ├── GetDate.java
│   │   │   └── TimeUtil.java
│   │   ├── resources
│   │   │   ├── crm.sql
│   │   │   ├── db.properties
│   │   │   ├── log4j.properties
│   │   │   ├── spring-mvc.xml
│   │   │   ├── spring-mybatis.xml
│   │   │   ├── spring-service.xml
│   │   │   └── SqlMapConfig.xml
│   │   └── webapp
│   │   ├── assets
│   │   │   ├── css
│   │   │   │   ├── reset.css
│   │   │   │   ├── style.css
│   │   │   │   └── supersized.css
│   │   │   ├── img
│   │   │   │   ├── backgrounds
│   │   │   │   │   ├── 1.jpg
│   │   │   │   │   ├── 2.jpg
│   │   │   │   │   └── 3.jpg
│   │   │   │   ├── facebook.png
│   │   │   │   ├── progress.gif
│   │   │   │   └── twitter.png
│   │   │   └── js
│   │   │   ├── jquery-1.8.2.min.js
│   │   │   ├── scripts.js
│   │   │   ├── supersized.3.2.7.min.js
│   │   │   └── supersized-init.js
│   │   ├── do
│   │   │   ├── assets
│   │   │   │   ├── css
│   │   │   │   │   ├── bui-min.css
│   │   │   │   │   ├── dpl-min.css
│   │   │   │   │   ├── main.css
│   │   │   │   │   ├── main-min.css
│   │   │   │   │   ├── page.css
│   │   │   │   │   ├── page-min.css
│   │   │   │   │   └── prettify.css
│   │   │   │   ├── img
│   │   │   │   │   ├── hide_list.png
│   │   │   │   │   ├── icon1.png
│   │   │   │   │   ├── icon2.png
│   │   │   │   │   ├── left-slib.gif
│   │   │   │   │   ├── main-nav-bg1.png
│   │   │   │   │   ├── main-nav-bg2.png
│   │   │   │   │   ├── main-nav-bg.png
│   │   │   │   │   ├── menu.jpg
│   │   │   │   │   ├── nav.jpg
│   │   │   │   │   ├── nav_selected.png
│   │   │   │   │   ├── resource.jpg
│   │   │   │   │   └── top.png
│   │   │   │   └── js
│   │   │   │   ├── bui.js
│   │   │   │   ├── bui-min.js
│   │   │   │   ├── common
│   │   │   │   │   ├── build.xml
│   │   │   │   │   ├── main.js
│   │   │   │   │   ├── main-min.js
│   │   │   │   │   ├── page.js
│   │   │   │   │   ├── page-min.js
│   │   │   │   │   ├── search.js
│   │   │   │   │   └── search-min.js
│   │   │   │   ├── config.js
│   │   │   │   ├── config-min.js
│   │   │   │   ├── editor-min.js
│   │   │   │   ├── jquery-1.8.1.min.js
│   │   │   │   ├── module
│   │   │   │   │   └── build.xml
│   │   │   │   ├── prettify.js
│   │   │   │   ├── toolbar-min.js
│   │   │   │   └── tree-min.js
│   │   │   ├── Css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-responsive.css
│   │   │   │   ├── bootstrap-responsive.min.css
│   │   │   │   └── style.css
│   │   │   ├── front
│   │   │   │   ├── Css
│   │   │   │   │   └── mobile_web.css
│   │   │   │   └── Image
│   │   │   │   ├── home4.jpg
│   │   │   │   ├── icon-address.png
│   │   │   │   └── icon-author.png
│   │   │   ├── Images
│   │   │   │   ├── add.gif
│   │   │   │   ├── button.png
│   │   │   │   ├── con_bg.png
│   │   │   │   ├── glyphicons-halflings.png
│   │   │   │   ├── glyphicons-halflings-white.png
│   │   │   │   ├── icon2.png
│   │   │   │   ├── icon.png
│   │   │   │   ├── input.png
│   │   │   │   ├── logo_820.jpg
│   │   │   │   ├── logo_jc.jpg
│   │   │   │   ├── logo_ym.jpg
│   │   │   │   ├── msg_bg.png
│   │   │   │   ├── msg_box.png
│   │   │   │   ├── nav.png
│   │   │   │   ├── nopic.jpg
│   │   │   │   ├── pic1.jpg
│   │   │   │   ├── progressbar_microsoft.gif
│   │   │   │   ├── x_bg.png
│   │   │   │   ├── z2.jpg
│   │   │   │   ├── z3.jpg
│   │   │   │   └── z4.jpg
│   │   │   ├── Js
│   │   │   │   ├── artDialog
│   │   │   │   │   ├── artDialog.js
│   │   │   │   │   ├── artDialog.source.js
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── jquery.artDialog.js
│   │   │   │   │   ├── jquery.artDialog.source.js
│   │   │   │   │   ├── license.txt
│   │   │   │   │   ├── plugins
│   │   │   │   │   │   ├── iframeTools.js
│   │   │   │   │   │   └── iframeTools.source.js
│   │   │   │   │   └── skins
│   │   │   │   │   ├── aero
│   │   │   │   │   │   ├── aero_s2.png
│   │   │   │   │   │   ├── aero_s.png
│   │   │   │   │   │   └── ie6
│   │   │   │   │   │   ├── aui_close.hover.png
│   │   │   │   │   │   ├── aui_close.png
│   │   │   │   │   │   ├── aui_e.png
│   │   │   │   │   │   ├── aui_ne.png
│   │   │   │   │   │   ├── aui_n.png
│   │   │   │   │   │   ├── aui_nw.png
│   │   │   │   │   │   ├── aui_se.png
│   │   │   │   │   │   ├── aui_s.png
│   │   │   │   │   │   ├── aui_sw.png
│   │   │   │   │   │   ├── aui_title_icon.png
│   │   │   │   │   │   └── aui_w.png
│   │   │   │   │   ├── aero.css
│   │   │   │   │   ├── black
│   │   │   │   │   │   ├── bg2.png
│   │   │   │   │   │   ├── bg_css3_2.png
│   │   │   │   │   │   ├── bg_css3.png
│   │   │   │   │   │   ├── bg.png
│   │   │   │   │   │   └── ie6
│   │   │   │   │   │   ├── close.hover.png
│   │   │   │   │   │   ├── close.png
│   │   │   │   │   │   ├── e.png
│   │   │   │   │   │   ├── ne.png
│   │   │   │   │   │   ├── n.png
│   │   │   │   │   │   ├── nw.png
│   │   │   │   │   │   ├── se.png
│   │   │   │   │   │   ├── s.png
│   │   │   │   │   │   ├── sw.png
│   │   │   │   │   │   └── w.png
│   │   │   │   │   ├── black.css
│   │   │   │   │   ├── blue
│   │   │   │   │   │   ├── bg2.png
│   │   │   │   │   │   ├── bg_css3_2.png
│   │   │   │   │   │   ├── bg_css3.png
│   │   │   │   │   │   ├── bg.png
│   │   │   │   │   │   └── ie6
│   │   │   │   │   │   ├── close.hover.png
│   │   │   │   │   │   ├── close.png
│   │   │   │   │   │   ├── e.png
│   │   │   │   │   │   ├── ne.png
│   │   │   │   │   │   ├── n.png
│   │   │   │   │   │   ├── nw.png
│   │   │   │   │   │   ├── se.png
│   │   │   │   │   │   ├── s.png
│   │   │   │   │   │   ├── sw.png
│   │   │   │   │   │   └── w.png
│   │   │   │   │   ├── blue.css
│   │   │   │   │   ├── chrome
│   │   │   │   │   │   ├── border.png
│   │   │   │   │   │   └── chrome_s.png
│   │   │   │   │   ├── chrome.css
│   │   │   │   │   ├── default.css
│   │   │   │   │   ├── green
│   │   │   │   │   │   ├── bg2.png
│   │   │   │   │   │   ├── bg_css3_2.png
│   │   │   │   │   │   ├── bg_css3.png
│   │   │   │   │   │   ├── bg.png
│   │   │   │   │   │   ├── color_bg.png
│   │   │   │   │   │   └── ie6
│   │   │   │   │   │   ├── close.hover.png
│   │   │   │   │   │   ├── close.png
│   │   │   │   │   │   ├── e.png
│   │   │   │   │   │   ├── ne.png
│   │   │   │   │   │   ├── n.png
│   │   │   │   │   │   ├── nw.png
│   │   │   │   │   │   ├── se.png
│   │   │   │   │   │   ├── s.png
│   │   │   │   │   │   ├── sw.png
│   │   │   │   │   │   └── w.png
│   │   │   │   │   ├── green.css
│   │   │   │   │   ├── icons
│   │   │   │   │   │   ├── error.png
│   │   │   │   │   │   ├── face-sad.png
│   │   │   │   │   │   ├── face-smile.png
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── question.png
│   │   │   │   │   │   ├── succeed.png
│   │   │   │   │   │   └── warning.png
│   │   │   │   │   ├── idialog
│   │   │   │   │   │   ├── idialog_s2.png
│   │   │   │   │   │   ├── idialog_s.png
│   │   │   │   │   │   └── ie6
│   │   │   │   │   │   ├── aui_close.hover.png
│   │   │   │   │   │   ├── aui_close.png
│   │   │   │   │   │   ├── aui_e.png
│   │   │   │   │   │   ├── aui_ne.png
│   │   │   │   │   │   ├── aui_n.png
│   │   │   │   │   │   ├── aui_nw.png
│   │   │   │   │   │   ├── aui_se.png
│   │   │   │   │   │   ├── aui_s.png
│   │   │   │   │   │   ├── aui_sw.png
│   │   │   │   │   │   └── aui_w.png
│   │   │   │   │   ├── idialog.css
│   │   │   │   │   ├── opera
│   │   │   │   │   │   ├── ie6
│   │   │   │   │   │   │   ├── aui_close.hover.png
│   │   │   │   │   │   │   ├── aui_close.png
│   │   │   │   │   │   │   ├── aui_e.png
│   │   │   │   │   │   │   ├── aui_ne.png
│   │   │   │   │   │   │   ├── aui_n.png
│   │   │   │   │   │   │   ├── aui_nw.png
│   │   │   │   │   │   │   ├── aui_se.png
│   │   │   │   │   │   │   ├── aui_s.png
│   │   │   │   │   │   │   ├── aui_sw.png
│   │   │   │   │   │   │   └── aui_w.png
│   │   │   │   │   │   ├── s1.png
│   │   │   │   │   │   └── s2.png
│   │   │   │   │   ├── opera.css
│   │   │   │   │   ├── simple.css
│   │   │   │   │   └── twitter.css
│   │   │   │   ├── bootstrap.file-input.js
│   │   │   │   ├── bootstrap.js
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   ├── ckform.js
│   │   │   │   ├── common.js
│   │   │   │   ├── formValidator.js
│   │   │   │   ├── formValidatorRegex.js
│   │   │   │   └── jquery.js
│   │   │   ├── Menu
│   │   │   │   ├── add.html
│   │   │   │   ├── edit.html
│   │   │   │   └── index.html
│   │   │   ├── Node
│   │   │   │   ├── add.html
│   │   │   │   ├── edit.html
│   │   │   │   └── index.html
│   │   │   ├── Public
│   │   │   │   └── login.html
│   │   │   ├── Role
│   │   │   │   ├── add.html
│   │   │   │   ├── edit.html
│   │   │   │   └── index.html
│   │   │   └── User
│   │   │   ├── add.html
│   │   │   ├── edit.html
│   │   │   └── index.html
│   │   ├── index.jsp
│   │   ├── listFile.jsp
│   │   ├── login.jsp
│   │   ├── message.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── resource
│   │   │   ├── crm.sql
│   │   │   ├── css
│   │   │   │   └── admin.css
│   │   │   ├── images
│   │   │   │   ├── 11.gif
│   │   │   │   ├── 22.gif
│   │   │   │   ├── 33.gif
│   │   │   │   ├── back.gif
│   │   │   │   ├── bg2.gif
│   │   │   │   ├── bg.gif
│   │   │   │   ├── del.gif
│   │   │   │   ├── dl.gif
│   │   │   │   ├── edt.gif
│   │   │   │   ├── first.gif
│   │   │   │   ├── go.gif
│   │   │   │   ├── last.gif
│   │   │   │   ├── left.gif
│   │   │   │   ├── login_03.gif
│   │   │   │   ├── login_05.gif
│   │   │   │   ├── login_06.gif
│   │   │   │   ├── login_07.gif
│   │   │   │   ├── login_08.gif
│   │   │   │   ├── main_03.gif
│   │   │   │   ├── main_04.gif
│   │   │   │   ├── main_05.gif
│   │   │   │   ├── main_07.gif
│   │   │   │   ├── main_09.gif
│   │   │   │   ├── main_11.gif
│   │   │   │   ├── main_12.gif
│   │   │   │   ├── main_14.gif
│   │   │   │   ├── main_16.gif
│   │   │   │   ├── main_18.gif
│   │   │   │   ├── main_20.gif
│   │   │   │   ├── main_21.gif
│   │   │   │   ├── main_22.gif
│   │   │   │   ├── main_29.gif
│   │   │   │   ├── main_30.gif
│   │   │   │   ├── main_31.gif
│   │   │   │   ├── main_32.gif
│   │   │   │   ├── main_34.gif
│   │   │   │   ├── main_36.gif
│   │   │   │   ├── main_37.gif
│   │   │   │   ├── main_39.gif
│   │   │   │   ├── main_40.gif
│   │   │   │   ├── main_41.gif
│   │   │   │   ├── main_45.gif
│   │   │   │   ├── main_47.gif
│   │   │   │   ├── main_48.gif
│   │   │   │   ├── main_51.gif
│   │   │   │   ├── main_52.gif
│   │   │   │   ├── main_58.gif
│   │   │   │   ├── main_59.gif
│   │   │   │   ├── main_61.gif
│   │   │   │   ├── main_62.gif
│   │   │   │   ├── next.gif
│   │   │   │   ├── tab_03.gif
│   │   │   │   ├── tab_05.gif
│   │   │   │   ├── tab_07.gif
│   │   │   │   ├── tab_12.gif
│   │   │   │   ├── tab_15.gif
│   │   │   │   ├── tab_17.gif
│   │   │   │   ├── tab_18.gif
│   │   │   │   ├── tab_19.gif
│   │   │   │   ├── tab_20.gif
│   │   │   │   └── tb.gif
│   │   │   └── js
│   │   │   ├── CheckForm.js
│   │   │   ├── echarts
│   │   │   │   ├── chart
│   │   │   │   │   ├── bar.js
│   │   │   │   │   ├── chord.js
│   │   │   │   │   ├── eventRiver.js
│   │   │   │   │   ├── force.js
│   │   │   │   │   ├── funnel.js
│   │   │   │   │   ├── gauge.js
│   │   │   │   │   ├── heatmap.js
│   │   │   │   │   ├── k.js
│   │   │   │   │   ├── line.js
│   │   │   │   │   ├── map.js
│   │   │   │   │   ├── pie.js
│   │   │   │   │   ├── radar.js
│   │   │   │   │   ├── scatter.js
│   │   │   │   │   ├── tree.js
│   │   │   │   │   ├── treemap.js
│   │   │   │   │   ├── venn.js
│   │   │   │   │   └── wordCloud.js
│   │   │   │   └── echarts.js
│   │   │   ├── FormValid.js
│   │   │   └── 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
│   │   │   │   ├── btnbg.jpg
│   │   │   │   ├── datepicker.css
│   │   │   │   ├── down.jpg
│   │   │   │   ├── left.gif
│   │   │   │   ├── navLeft.gif
│   │   │   │   ├── navRight.gif
│   │   │   │   ├── qs.jpg
│   │   │   │   ├── right.gif
│   │   │   │   └── up.jpg
│   │   │   └── WdatePicker.js
│   │   ├── upload.jsp
│   │   ├── view
│   │   │   ├── customer
│   │   │   │   ├── customer_add.jsp
│   │   │   │   ├── customer_admeasure.jsp
│   │   │   │   ├── customer_admeasure_save.jsp
│   │   │   │   ├── customer_admeasure_update.jsp
│   │   │   │   ├── customer_allAdmeasure_update.jsp
│   │   │   │   ├── customer_list.jsp
│   │   │   │   ├── customer_more.jsp
│   │   │   │   ├── customer_save.jsp
│   │   │   │   └── customer_update.jsp
│   │   │   ├── customerCare
│   │   │   │   ├── customerCare_add.jsp
│   │   │   │   ├── customerCare_list.jsp
│   │   │   │   ├── customerCare_save.jsp
│   │   │   │   └── customerCare_update.jsp
│   │   │   ├── customerCondition
│   │   │   │   ├── customerCondition_add.jsp
│   │   │   │   ├── customerCondition_list.jsp
│   │   │   │   └── customerCondition_save.jsp
│   │   │   ├── customerSource
│   │   │   │   ├── customerSource_add.jsp
│   │   │   │   ├── customerSource_list.jsp
│   │   │   │   └── customerSource_save.jsp
│   │   │   ├── customerType
│   │   │   │   ├── customerType_add.jsp
│   │   │   │   ├── customerType_list.jsp
│   │   │   │   └── customerType_save.jsp
│   │   │   ├── department
│   │   │   │   ├── department_add.jsp
│   │   │   │   ├── department_list.jsp
│   │   │   │   └── department_save.jsp
│   │   │   ├── email
│   │   │   │   ├── email_add.jsp
│   │   │   │   ├── email_draftbox.jsp
│   │   │   │   ├── email_outbox.jsp
│   │   │   │   ├── email_resend.jsp
│   │   │   │   ├── email_save.jsp
│   │   │   │   └── email_save_no_send.jsp
│   │   │   ├── fetion
│   │   │   │   ├── fetion_add1.jsp
│   │   │   │   ├── fetion_add.jsp
│   │   │   │   ├── fetion_save1.jsp
│   │   │   │   └── fetion_save.jsp
│   │   │   ├── frame
│   │   │   │   ├── center.jsp
│   │   │   │   ├── down.jsp
│   │   │   │   ├── left.jsp
│   │   │   │   ├── main.jsp
│   │   │   │   ├── reportForms.jsp
│   │   │   │   └── top.jsp
│   │   │   ├── house
│   │   │   │   ├── house_add.jsp
│   │   │   │   ├── house_list.jsp
│   │   │   │   ├── house_save.jsp
│   │   │   │   └── house_update.jsp
│   │   │   ├── houseType
│   │   │   │   ├── houseType_add.jsp
│   │   │   │   ├── houseType_list.jsp
│   │   │   │   └── houseType_save.jsp
│   │   │   ├── linkman
│   │   │   │   ├── linkman_add.jsp
│   │   │   │   ├── linkman_list.jsp
│   │   │   │   ├── linkman_save.jsp
│   │   │   │   └── linkman_update.jsp
│   │   │   ├── linkrecord
│   │   │   │   ├── linkrecord_add.jsp
│   │   │   │   ├── linkrecord_list.jsp
│   │   │   │   └── linkrecord_save.jsp
│   │   │   ├── main.jsp
│   │   │   ├── notice
│   │   │   │   ├── notice_add.jsp
│   │   │   │   ├── notice_list.jsp
│   │   │   │   └── notice_save.jsp
│   │   │   ├── reportForms
│   │   │   │   └── reportForms_list.jsp
│   │   │   ├── role
│   │   │   │   ├── role_add.jsp
│   │   │   │   ├── role_list.jsp
│   │   │   │   └── role_save.jsp
│   │   │   └── user
│   │   │   ├── user_add.jsp
│   │   │   ├── user_delete.jsp
│   │   │   ├── user_list.jsp
│   │   │   ├── user_more.jsp
│   │   │   ├── user_save.jsp
│   │   │   └── user_update.jsp
│   │   └── WEB-INF
│   │   └── web.xml
│   └── test
│   ├── java
│   │   └── com
│   │   └── lz
│   │   └── test
│   │   ├── dao
│   │   │   ├── CustomerCareDaoTest.java
│   │   │   ├── CustomerConditionDaoTest.java
│   │   │   ├── CustomerDaoTest.java
│   │   │   ├── CustomerSourceDaoTest.java
│   │   │   ├── CustomerTypeDaoTest.java
│   │   │   ├── DepartmentDaoTest.java
│   │   │   ├── EmailDaoTest.java
│   │   │   ├── HouseDaoTest.java
│   │   │   ├── HouseTypeDaoTest.java
│   │   │   ├── LinkManDaoTest.java
│   │   │   ├── LinkRecordDaoTest.java
│   │   │   ├── LoginDaoTest.java
│   │   │   ├── NoticeInfoDaoTest.java
│   │   │   ├── ReportFormsDaoTest.java
│   │   │   ├── RoleDaoTest.java
│   │   │   ├── UserDaoTest.java
│   │   │   └── WorkDaoTest.java
│   │   └── service
│   │   └── UserServiceTest.java
│   └── resources
│   └── problems
└── target
├── classes
│   ├── com
│   │   └── lz
│   │   ├── controller
│   │   │   ├── CarController.class
│   │   │   ├── CarTypeController.class
│   │   │   ├── CustomerCareController.class
│   │   │   ├── CustomerConditionController.class
│   │   │   ├── CustomerController.class
│   │   │   ├── CustomerSourceController.class
│   │   │   ├── CustomerTypeController.class
│   │   │   ├── DepartmentController.class
│   │   │   ├── EmailController.class
│   │   │   ├── LinkManController.class
│   │   │   ├── LinkRecordController.class
│   │   │   ├── LoginController.class
│   │   │   ├── NoticeController.class
│   │   │   ├── ReportFormsController.class
│   │   │   ├── RoleController.class
│   │   │   ├── UserController.class
│   │   │   └── WorkController.class
│   │   ├── dao
│   │   │   ├── CustomerCareMapper.class
│   │   │   ├── CustomerCareMapper.xml
│   │   │   ├── CustomerConditionMapper.class
│   │   │   ├── CustomerConditionMapper.xml
│   │   │   ├── CustomerMapper.class
│   │   │   ├── CustomerMapper.xml
│   │   │   ├── CustomerSourceMapper.class
│   │   │   ├── CustomerSourceMapper.xml
│   │   │   ├── CustomerTypeMapper.class
│   │   │   ├── CustomerTypeMapper.xml
│   │   │   ├── DepartmentMapper.class
│   │   │   ├── DepartmentMapper.xml
│   │   │   ├── EmailMapper.class
│   │   │   ├── EmailMapper.xml
│   │   │   ├── HouseMapper.class
│   │   │   ├── HouseMapper.xml
│   │   │   ├── HouseTypeMapper.class
│   │   │   ├── HouseTypeMapper.xml
│   │   │   ├── LinkManMapper.class
│   │   │   ├── LinkManMapper.xml
│   │   │   ├── LinkRecordMapper.class
│   │   │   ├── LinkRecordMapper.xml
│   │   │   ├── LoginMapper.class
│   │   │   ├── LoginMapper.xml
│   │   │   ├── NoticeMapper.class
│   │   │   ├── NoticeMapper.xml
│   │   │   ├── ReportFormsMapper.class
│   │   │   ├── ReportFormsMapper.xml
│   │   │   ├── RoleMapper.class
│   │   │   ├── RoleMapper.xml
│   │   │   ├── UserMapper.class
│   │   │   ├── UserMapper.xml
│   │   │   ├── WorkMapper.class
│   │   │   └── WorkMapper.xml
│   │   ├── file
│   │   │   ├── DownloadServlet.class
│   │   │   ├── ListFileServlet.class
│   │   │   ├── UploadServlet$1.class
│   │   │   └── UploadServlet.class
│   │   ├── pojo
│   │   │   ├── CustomerCare.class
│   │   │   ├── Customer.class
│   │   │   ├── CustomerCondition.class
│   │   │   ├── CustomerSource.class
│   │   │   ├── CustomerType.class
│   │   │   ├── Department.class
│   │   │   ├── Email.class
│   │   │   ├── House.class
│   │   │   ├── HouseType.class
│   │   │   ├── LinkMan.class
│   │   │   ├── LinkRecord.class
│   │   │   ├── Login.class
│   │   │   ├── Notice.class
│   │   │   ├── Other.class
│   │   │   ├── ReportForms.class
│   │   │   ├── Role.class
│   │   │   ├── User.class
│   │   │   └── Work.class
│   │   ├── service
│   │   │   ├── CustomerCareService.class
│   │   │   ├── CustomerConditionService.class
│   │   │   ├── CustomerService.class
│   │   │   ├── CustomerSourceService.class
│   │   │   ├── CustomerTypeService.class
│   │   │   ├── DepartmentService.class
│   │   │   ├── EmailService.class
│   │   │   ├── HouseService.class
│   │   │   ├── HouseTypeService.class
│   │   │   ├── impl
│   │   │   │   ├── CustomerCareServiceImpl.class
│   │   │   │   ├── CustomerConditionServiceImpl.class
│   │   │   │   ├── CustomerServiceImpl.class
│   │   │   │   ├── CustomerSourceServiceImpl.class
│   │   │   │   ├── CustomerTypeServiceImpl.class
│   │   │   │   ├── DepartmentServiceImpl.class
│   │   │   │   ├── EmailServiceImpl.class
│   │   │   │   ├── HouseServiceImpl.class
│   │   │   │   ├── HouseTypeServiceImpl.class
│   │   │   │   ├── LinkManServiceImpl.class
│   │   │   │   ├── LinkRecordServiceImpl.class
│   │   │   │   ├── LoginServiceImpl.class
│   │   │   │   ├── NoticeServiceImpl.class
│   │   │   │   ├── ReportFormsServiceImpl.class
│   │   │   │   ├── RoleServiceImpl.class
│   │   │   │   ├── UserServiceImpl.class
│   │   │   │   └── WorkServiceImpl.class
│   │   │   ├── LinkManService.class
│   │   │   ├── LinkRecordService.class
│   │   │   ├── LoginService.class
│   │   │   ├── NoticeService.class
│   │   │   ├── ReportFormsService.class
│   │   │   ├── RoleService.class
│   │   │   ├── UserService.class
│   │   │   └── WorkService.class
│   │   └── util
│   │   ├── GetDate.class
│   │   └── TimeUtil.class
│   ├── crm.sql
│   ├── db.properties
│   ├── log4j.properties
│   ├── spring-mvc.xml
│   ├── spring-mybatis.xml
│   ├── spring-service.xml
│   └── SqlMapConfig.xml
├── CRM-0.0.1-SNAPSHOT
│   ├── META-INF
│   │   └── MANIFEST.MF
│   └── WEB-INF
│   ├── classes
│   │   ├── jdbc.properties
│   │   ├── log4j.properties
│   │   └── spring-mybatis.xml
│   ├── lib
│   │   ├── activation-1.1.jar
│   │   ├── aopalliance-1.0.jar
│   │   ├── commons-codec-1.9.jar
│   │   ├── commons-dbcp-1.2.2.jar
│   │   ├── commons-fileupload-1.3.1.jar
│   │   ├── commons-io-2.4.jar
│   │   ├── commons-logging-1.1.3.jar
│   │   ├── commons-pool-1.3.jar
│   │   ├── fastjson-1.1.41.jar
│   │   ├── jackson-core-asl-1.9.13.jar
│   │   ├── jackson-mapper-asl-1.9.13.jar
│   │   ├── javaee-api-7.0.jar
│   │   ├── javax.mail-1.5.0.jar
│   │   ├── jstl-1.2.jar
│   │   ├── log4j-1.2.17.jar
│   │   ├── mybatis-3.2.6.jar
│   │   ├── mybatis-spring-1.2.2.jar
│   │   ├── mysql-connector-java-5.1.30.jar
│   │   ├── slf4j-api-1.7.7.jar
│   │   ├── slf4j-log4j12-1.7.7.jar
│   │   ├── spring-aop-4.0.2.RELEASE.jar
│   │   ├── spring-beans-4.0.2.RELEASE.jar
│   │   ├── spring-context-4.0.2.RELEASE.jar
│   │   ├── spring-context-support-4.0.2.RELEASE.jar
│   │   ├── spring-core-4.0.2.RELEASE.jar
│   │   ├── spring-expression-4.0.2.RELEASE.jar
│   │   ├── spring-jdbc-4.0.2.RELEASE.jar
│   │   ├── spring-oxm-4.0.2.RELEASE.jar
│   │   ├── spring-test-4.0.2.RELEASE.jar
│   │   ├── spring-tx-4.0.2.RELEASE.jar
│   │   ├── spring-web-4.0.2.RELEASE.jar
│   │   └── spring-webmvc-4.0.2.RELEASE.jar
│   └── web.xml
├── CRM-0.0.1-SNAPSHOT.war
├── m2e-wtp
│   └── web-resources
│   └── META-INF
│   ├── MANIFEST.MF
│   └── maven
│   └── com.lz
│   └── CRM
│   ├── pom.properties
│   └── pom.xml
├── maven-archiver
│   └── pom.properties
├── maven-status
│   └── maven-compiler-plugin
│   ├── compile
│   │   └── default-compile
│   │   ├── createdFiles.lst
│   │   └── inputFiles.lst
│   └── testCompile
│   └── default-testCompile
│   ├── createdFiles.lst
│   └── inputFiles.lst
├── surefire-reports
│   ├── com.lz.test.dao.CustomerConditionDaoTest.txt
│   ├── com.lz.test.dao.CustomerTypeDaoTest.txt
│   ├── com.lz.test.dao.DepartmentDaoTest.txt
│   ├── com.lz.test.dao.HouseDaoTest.txt
│   ├── com.lz.test.dao.HouseTypeDaoTest.txt
│   ├── com.lz.test.dao.LinkManDaoTest.txt
│   ├── com.lz.test.dao.LinkRecordDaoTest.txt
│   ├── com.lz.test.dao.LoginDaoTest.txt
│   ├── com.lz.test.dao.NoticeInfoDaoTest.txt
│   ├── com.lz.test.dao.ReportFormsDaoTest.txt
│   ├── com.lz.test.dao.RoleDaoTest.txt
│   ├── com.lz.test.dao.UserDaoTest.txt
│   ├── com.lz.test.service.UserServiceTest.txt
│   ├── TEST-com.lz.test.dao.CustomerConditionDaoTest.xml
│   ├── TEST-com.lz.test.dao.CustomerTypeDaoTest.xml
│   ├── TEST-com.lz.test.dao.DepartmentDaoTest.xml
│   ├── TEST-com.lz.test.dao.HouseDaoTest.xml
│   ├── TEST-com.lz.test.dao.HouseTypeDaoTest.xml
│   ├── TEST-com.lz.test.dao.LinkManDaoTest.xml
│   ├── TEST-com.lz.test.dao.LinkRecordDaoTest.xml
│   ├── TEST-com.lz.test.dao.LoginDaoTest.xml
│   ├── TEST-com.lz.test.dao.NoticeInfoDaoTest.xml
│   ├── TEST-com.lz.test.dao.ReportFormsDaoTest.xml
│   ├── TEST-com.lz.test.dao.RoleDaoTest.xml
│   ├── TEST-com.lz.test.dao.UserDaoTest.xml
│   └── TEST-com.lz.test.service.UserServiceTest.xml
└── test-classes
├── com
│   └── lz
│   └── test
│   ├── dao
│   │   ├── CustomerCareDaoTest.class
│   │   ├── CustomerConditionDaoTest.class
│   │   ├── CustomerDaoTest.class
│   │   ├── CustomerSourceDaoTest.class
│   │   ├── CustomerTypeDaoTest.class
│   │   ├── DepartmentDaoTest.class
│   │   ├── EmailDaoTest.class
│   │   ├── HouseDaoTest.class
│   │   ├── HouseTypeDaoTest.class
│   │   ├── LinkManDaoTest.class
│   │   ├── LinkRecordDaoTest.class
│   │   ├── LoginDaoTest.class
│   │   ├── NoticeInfoDaoTest.class
│   │   ├── ReportFormsDaoTest.class
│   │   ├── RoleDaoTest.class
│   │   ├── UserDaoTest.class
│   │   └── WorkDaoTest.class
│   └── service
│   └── UserServiceTest.class
└── problems

131 directories, 730 files

标签:

实例下载地址

基于Spring MVC+Spring+Mybatis+Mysql 客户关系管理系统 SSM毕业设计

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警