java中的crm的搭建,java写的crm项目适合初学者

这个项目是一个使用前端Bootstrap和jQuery框架,后端采用MyBatis的CRM系统。它包含了多个模块,如客户、业务、员工等的增删改查功能,并使用了第三方分页库进行分页。源码中包含了数据库配置、模型、Mapper、Service、Servlet等关键组件,以及对应的XML映射文件。项目还涉及到了一些简单的前端交互和样式设计。
摘要由CSDN通过智能技术生成

【实例简介】

,前端使用bootstrap和juery框架,后端用的是mybatis框架,分为两个模块,都是一些简单的增删改查,分页用的是一个github上面的框架

【实例截图】

【核心代码】

e3417d21-84c1-4cd2-b2e5-3deab0edeb9f

└── 二阶段项目

├── Java考试资料

│   ├── 0310测试补考.doc

│   ├── 0310测试补考答案.doc

│   ├── 2016史上最全Java面试大全.doc

│   ├── jsp servlet复习.docx

│   ├── jspservlet笔试题目.docx

│   ├── jsp试卷大全.rar

│   ├── 第二阶段 万和JAVA面试题

│   │   ├── JAVA面试题.docx

│   │   ├── JQUERY面试题.docx

│   │   ├── oracle面试题目.docx

│   │   └── Struts+Hibernate+Spring面试题合集及答案.doc

│   ├── 第二阶段 万和必会的问题和操作

│   │   ├── J2se必会操作.doc

│   │   ├── J2se必会问题答案.doc

│   │   ├── JavaWeb必会操作.doc

│   │   ├── JavaWeb必会问题答案.doc

│   │   ├── Oracle基本操作.doc

│   │   └── Oracle必会问题答案.doc

│   └── 考试试卷.doc

├── 初始资料

│   ├── ~$CRM_设计.pptx

│   ├── ~$CRM_需求.pptx

│   ├── ~$CRM_项目架构.pptx

│   ├── crm_for_92stu_sql.sql

│   ├── CRM_设计.pptx

│   ├── CRM_需求.pptx

│   ├── CRM_项目架构.pptx

│   ├── demo

│   │   ├── build

│   │   │   └── classes

│   │   │   ├── a.txt

│   │   │   ├── bean.properties

│   │   │   ├── jdbc.properties

│   │   │   ├── log4j.properties

│   │   │   ├── net

│   │   │   │   └── wanho

│   │   │   │   ├── consts

│   │   │   │   │   ├── ConstMsg.class

│   │   │   │   │   └── ConstVal.class

│   │   │   │   ├── dto

│   │   │   │   │   └── StudentDto.class

│   │   │   │   ├── exception

│   │   │   │   │   ├── DaoException.class

│   │   │   │   │   └── ServiceException.class

│   │   │   │   ├── factory

│   │   │   │   │   ├── ObjectFactory.class

│   │   │   │   │   └── ReadFileUtil.class

│   │   │   │   ├── filter

│   │   │   │   │   └── EncodingFilter.class

│   │   │   │   ├── mapper

│   │   │   │   │   ├── GradeMapper.class

│   │   │   │   │   ├── GradeMapper.xml

│   │   │   │   │   ├── StudentMapper.class

│   │   │   │   │   ├── StudentMapper.xml

│   │   │   │   │   └── Test.class

│   │   │   │   ├── model

│   │   │   │   │   ├── Grade.class

│   │   │   │   │   ├── Student.class

│   │   │   │   │   ├── StudentExample$Criteria.class

│   │   │   │   │   ├── StudentExample$Criterion.class

│   │   │   │   │   ├── StudentExample$GeneratedCriteria.class

│   │   │   │   │   └── StudentExample.class

│   │   │   │   ├── proxy

│   │   │   │   │   ├── TransactionProxy$1.class

│   │   │   │   │   └── TransactionProxy.class

│   │   │   │   ├── service

│   │   │   │   │   ├── GradeServiceI.class

│   │   │   │   │   ├── impl

│   │   │   │   │   │   ├── GradeServiceImpl.class

│   │   │   │   │   │   └── StudentServiceImpl.class

│   │   │   │   │   └── StudentServiceI.class

│   │   │   │   ├── servlet

│   │   │   │   │   └── StudentServlet.class

│   │   │   │   ├── tag

│   │   │   │   │   └── PageTag.class

│   │   │   │   ├── transaction

│   │   │   │   │   ├── impl

│   │   │   │   │   │   └── TransManagerImpl.class

│   │   │   │   │   └── TransManagerI.class

│   │   │   │   ├── util

│   │   │   │   │   ├── MD5Util.class

│   │   │   │   │   └── MyBatisUtils.class

│   │   │   │   └── web

│   │   │   │   └── EncodingRequest.class

│   │   │   ├── readme.txt

│   │   │   └── SqlMapConfig.xml

│   │   ├── config

│   │   │   ├── a.txt

│   │   │   ├── bean.properties

│   │   │   ├── jdbc.properties

│   │   │   ├── log4j.properties

│   │   │   ├── net

│   │   │   │   └── wanho

│   │   │   │   └── mapper

│   │   │   │   ├── GradeMapper.xml

│   │   │   │   └── StudentMapper.xml

│   │   │   └── SqlMapConfig.xml

│   │   ├── demo.iml

│   │   ├── pom.xml

│   │   ├── src

│   │   │   ├── net

│   │   │   │   └── wanho

│   │   │   │   ├── consts

│   │   │   │   │   ├── ConstMsg.java

│   │   │   │   │   └── ConstVal.java

│   │   │   │   ├── dto

│   │   │   │   │   └── StudentDto.java

│   │   │   │   ├── exception

│   │   │   │   │   ├── DaoException.java

│   │   │   │   │   └── ServiceException.java

│   │   │   │   ├── factory

│   │   │   │   │   ├── ObjectFactory.java

│   │   │   │   │   └── ReadFileUtil.java

│   │   │   │   ├── filter

│   │   │   │   │   └── EncodingFilter.java

│   │   │   │   ├── mapper

│   │   │   │   │   ├── GradeMapper.java

│   │   │   │   │   └── StudentMapper.java

│   │   │   │   ├── model

│   │   │   │   │   ├── Grade.java

│   │   │   │   │   ├── StudentExample.java

│   │   │   │   │   └── Student.java

│   │   │   │   ├── proxy

│   │   │   │   │   └── TransactionProxy.java

│   │   │   │   ├── service

│   │   │   │   │   ├── GradeServiceI.java

│   │   │   │   │   ├── impl

│   │   │   │   │   │   ├── GradeServiceImpl.java

│   │   │   │   │   │   └── StudentServiceImpl.java

│   │   │   │   │   └── StudentServiceI.java

│   │   │   │   ├── servlet

│   │   │   │   │   └── StudentServlet.java

│   │   │   │   ├── tag

│   │   │   │   │   └── PageTag.java

│   │   │   │   ├── transaction

│   │   │   │   │   ├── impl

│   │   │   │   │   │   └── TransManagerImpl.java

│   │   │   │   │   └── TransManagerI.java

│   │   │   │   ├── util

│   │   │   │   │   ├── MD5Util.java

│   │   │   │   │   └── MyBatisUtils.java

│   │   │   │   └── web

│   │   │   │   └── EncodingRequest.java

│   │   │   └── readme.txt

│   │   ├── test

│   │   │   └── net

│   │   │   └── wanho

│   │   │   └── mapper

│   │   │   └── Test.java

│   │   ├── test.sql

│   │   ├── wanho.log

│   │   └── WebContent

│   │   ├── add.jsp

│   │   ├── commons

│   │   │   └── common.jsp

│   │   ├── error.jsp

│   │   ├── index.jsp

│   │   ├── js

│   │   │   ├── jquery-1.7.2.min.js

│   │   │   └── page.js

│   │   ├── list.jsp

│   │   ├── login.jsp

│   │   ├── META-INF

│   │   │   └── MANIFEST.MF

│   │   ├── subquery.jsp

│   │   ├── success.jsp

│   │   └── WEB-INF

│   │   ├── lib

│   │   │   ├── commons-beanutils.jar

│   │   │   ├── commons-logging.jar

│   │   │   ├── dom4j-1.6.1.jar

│   │   │   ├── jaxen-1.1-beta-6.jar

│   │   │   ├── jsqlparser-0.9.5.jar

│   │   │   ├── jstl-1.2.jar

│   │   │   ├── log4j-1.2.17.jar

│   │   │   ├── mybatis-3.2.7.jar

│   │   │   ├── mysql-connector-java-5.1.18-bin.jar

│   │   │   └── pagehelper-4.2.1.jar

│   │   ├── tld

│   │   │   └── page.tld

│   │   └── web.xml

│   ├── modelAndMapper

│   │   ├── mapper

│   │   │   ├── AdvancedLogMapper.java

│   │   │   ├── AdvancedLogMapper.xml

│   │   │   ├── BusinessMapper.java

│   │   │   ├── BusinessMapper.xml

│   │   │   ├── BusinessSourceMapper.java

│   │   │   ├── BusinessSourceMapper.xml

│   │   │   ├── BusinessTypeMapper.java

│   │   │   ├── BusinessTypeMapper.xml

│   │   │   ├── CommentMapper.java

│   │   │   ├── CommentMapper.xml

│   │   │   ├── CustomerMapper.java

│   │   │   ├── CustomerMapper.xml

│   │   │   ├── DailyRecordMapper.java

│   │   │   ├── DailyRecordMapper.xml

│   │   │   ├── DepartmentMapper.java

│   │   │   ├── DepartmentMapper.xml

│   │   │   ├── EmmPositionMapper.java

│   │   │   ├── EmmPositionMapper.xml

│   │   │   ├── EmployeeMapper.java

│   │   │   ├── EmployeeMapper.xml

│   │   │   ├── IndividualTaskMapper.java

│   │   │   ├── IndividualTaskMapper.xml

│   │   │   ├── InstationMailMapper.java

│   │   │   ├── InstationMailMapper.xml

│   │   │   ├── LinkManMapper.java

│   │   │   ├── LinkManMapper.xml

│   │   │   ├── LogInMapper.java

│   │   │   ├── LogInMapper.xml

│   │   │   ├── MenuMapper.java

│   │   │   ├── MenuMapper.xml

│   │   │   ├── OrdersDetailMapper.java

│   │   │   ├── OrdersDetailMapper.xml

│   │   │   ├── OrdersMapper.java

│   │   │   ├── OrdersMapper.xml

│   │   │   ├── PositionMenuRelationsMapper.java

│   │   │   ├── PositionMenuRelationsMapper.xml

│   │   │   ├── ProcessMapper.java

│   │   │   ├── ProcessMapper.xml

│   │   │   ├── ProductInventoryMapper.java

│   │   │   ├── ProductInventoryMapper.xml

│   │   │   ├── ProductMapper.java

│   │   │   ├── ProductMapper.xml

│   │   │   ├── ProductTypeMapper.java

│   │   │   ├── ProductTypeMapper.xml

│   │   │   ├── SourceMapper.java

│   │   │   ├── SourceMapper.xml

│   │   │   ├── StoreMapper.java

│   │   │   ├── StoreMapper.xml

│   │   │   ├── TaskUserRelationsMapper.java

│   │   │   ├── TaskUserRelationsMapper.xml

│   │   │   ├── WorkingFieldMapper.java

│   │   │   └── WorkingFieldMapper.xml

│   │   ├── model

│   │   │   ├── AdvancedLogExample.java

│   │   │   ├── AdvancedLog.java

│   │   │   ├── BusinessExample.java

│   │   │   ├── Business.java

│   │   │   ├── BusinessSourceExample.java

│   │   │   ├── BusinessSource.java

│   │   │   ├── BusinessTypeExample.java

│   │   │   ├── BusinessType.java

│   │   │   ├── CommentExample.java

│   │   │   ├── Comment.java

│   │   │   ├── CustomerExample.java

│   │   │   ├── Customer.java

│   │   │   ├── DailyRecordExample.java

│   │   │   ├── DailyRecord.java

│   │   │   ├── DepartmentExample.java

│   │   │   ├── Department.java

│   │   │   ├── EmmPositionExample.java

│   │   │   ├── EmmPosition.java

│   │   │   ├── EmployeeExample.java

│   │   │   ├── Employee.java

│   │   │   ├── IndividualTaskExample.java

│   │   │   ├── IndividualTask.java

│   │   │   ├── InstationMailExample.java

│   │   │   ├── InstationMail.java

│   │   │   ├── LinkManExample.java

│   │   │   ├── LinkMan.java

│   │   │   ├── LogInExample.java

│   │   │   ├── LogIn.java

│   │   │   ├── MenuExample.java

│   │   │   ├── Menu.java

│   │   │   ├── OrdersDetailExample.java

│   │   │   ├── OrdersDetail.java

│   │   │   ├── OrdersExample.java

│   │   │   ├── Orders.java

│   │   │   ├── PositionMenuRelationsExample.java

│   │   │   ├── PositionMenuRelations.java

│   │   │   ├── ProcessExample.java

│   │   │   ├── Process.java

│   │   │   ├── ProductExample.java

│   │   │   ├── ProductInventoryExample.java

│   │   │   ├── ProductInventory.java

│   │   │   ├── Product.java

│   │   │   ├── ProductTypeExample.java

│   │   │   ├── ProductType.java

│   │   │   ├── SourceExample.java

│   │   │   ├── Source.java

│   │   │   ├── StoreExample.java

│   │   │   ├── Store.java

│   │   │   ├── TaskUserRelationsExample.java

│   │   │   ├── TaskUserRelations.java

│   │   │   ├── WorkingFieldExample.java

│   │   │   └── WorkingField.java

│   │   └── 补充一张表.txt

│   ├── mybaitsgenerator

│   │   ├── bb.xml

│   │   ├── bin

│   │   │   ├── ArugmentTest$IntA.class

│   │   │   ├── ArugmentTest.class

│   │   │   ├── Car.class

│   │   │   ├── jdbc.properties

│   │   │   ├── MyBatisUtils.class

│   │   │   ├── net

│   │   │   │   └── wanho

│   │   │   │   ├── mapper

│   │   │   │   │   ├── AdvancedLogMapper.class

│   │   │   │   │   ├── AdvancedLogMapper.xml

│   │   │   │   │   ├── BusinessMapper.class

│   │   │   │   │   ├── BusinessMapper.xml

│   │   │   │   │   ├── Business_SourceMapper.class

│   │   │   │   │   ├── Business_SourceMapper.xml

│   │   │   │   │   ├── Business_TypeMapper.class

│   │   │   │   │   ├── Business_TypeMapper.xml

│   │   │   │   │   ├── CommentMapper.class

│   │   │   │   │   └── CommentMapper.xml

│   │   │   │   └── model

│   │   │   │   ├── AdvancedLog.class

│   │   │   │   ├── AdvancedLogExample$Criteria.class

│   │   │   │   ├── AdvancedLogExample$Criterion.class

│   │   │   │   ├── AdvancedLogExample$GeneratedCriteria.class

│   │   │   │   ├── AdvancedLogExample.class

│   │   │   │   ├── Business.class

│   │   │   │   ├── BusinessExample$Criteria.class

│   │   │   │   ├── BusinessExample$Criterion.class

│   │   │   │   ├── BusinessExample$GeneratedCriteria.class

│   │   │   │   ├── BusinessExample.class

│   │   │   │   ├── Business_Source.class

│   │   │   │   ├── Business_SourceExample$Criteria.class

│   │   │   │   ├── Business_SourceExample$Criterion.class

│   │   │   │   ├── Business_SourceExample$GeneratedCriteria.class

│   │   │   │   ├── Business_SourceExample.class

│   │   │   │   ├── Business_Type.class

│   │   │   │   ├── Business_TypeExample$Criteria.class

│   │   │   │   ├── Business_TypeExample$Criterion.class

│   │   │   │   ├── Business_TypeExample$GeneratedCriteria.class

│   │   │   │   ├── Business_TypeExample.class

│   │   │   │   ├── Comment.class

│   │   │   │   ├── CommentExample$Criteria.class

│   │   │   │   ├── CommentExample$Criterion.class

│   │   │   │   ├── CommentExample$GeneratedCriteria.class

│   │   │   │   └── CommentExample.class

│   │   │   ├── SqlMapConfig.xml

│   │   │   ├── Test.class

│   │   │   ├── TestMain.class

│   │   │   └── Vehicle.class

│   │   ├── cas.xml

│   │   ├── mybaitsgenerator.iml

│   │   ├── mybatis-generator-core-1.3.1

│   │   │   ├── doc

│   │   │   │   ├── html

│   │   │   │   │   ├── afterRunning.html

│   │   │   │   │   ├── configreference

│   │   │   │   │   │   ├── classPathEntry.html

│   │   │   │   │   │   ├── columnOverride.html

│   │   │   │   │   │   ├── columnRenamingRule.html

│   │   │   │   │   │   ├── commentGenerator.html

│   │   │   │   │   │   ├── context.html

│   │   │   │   │   │   ├── generatedKey.html

│   │   │   │   │   │   ├── generatorConfiguration.html

│   │   │   │   │   │   ├── ignoreColumn.html

│   │   │   │   │   │   ├── javaClientGenerator.html

│   │   │   │   │   │   ├── javaModelGenerator.html

│   │   │   │   │   │   ├── javaTypeResolver.html

│   │   │   │   │   │   ├── jdbcConnection.html

│   │   │   │   │   │   ├── plugin.html

│   │   │   │   │   │   ├── properties.html

│   │   │   │   │   │   ├── property.html

│   │   │   │   │   │   ├── sqlMapGenerator.html

│   │   │   │   │   │   ├── table.html

│   │   │   │   │   │   └── xmlconfig.html

│   │   │   │   │   ├── generatedobjects

│   │   │   │   │   │   ├── exampleClassUsage.html

│   │   │   │   │   │   ├── extendingExampleClass.html

│   │   │   │   │   │   ├── javaclient.html

│   │   │   │   │   │   ├── javamodel.html

│   │   │   │   │   │   ├── results.html

│   │   │   │   │   │   └── sqlmap.html

│   │   │   │   │   ├── index.html

│   │   │   │   │   ├── intro.html

│   │   │   │   │   ├── license.html

│   │   │   │   │   ├── menu.html

│   │   │   │   │   ├── migratingFromAbator.html

│   │   │   │   │   ├── migratingFromIbator.html

│   │   │   │   │   ├── philosophy.html

│   │   │   │   │   ├── quickstart.html

│   │   │   │   │   ├── reference

│   │   │   │   │   │   ├── building.html

│   │   │   │   │   │   ├── extending.html

│   │   │   │   │   │   ├── intro.html

│   │   │   │   │   │   ├── logging.html

│   │   │   │   │   │   └── pluggingIn.html

│   │   │   │   │   ├── running

│   │   │   │   │   │   ├── runningFromCmdLine.html

│   │   │   │   │   │   ├── running.html

│   │   │   │   │   │   ├── runningWithAnt.html

│   │   │   │   │   │   ├── runningWithJava.html

│   │   │   │   │   │   └── runningWithMaven.html

│   │   │   │   │   ├── style.css

│   │   │   │   │   ├── usage

│   │   │   │   │   │   ├── db2.html

│   │   │   │   │   │   ├── intro.html

│   │   │   │   │   │   ├── mysql.html

│   │   │   │   │   │   ├── oracle.html

│   │   │   │   │   │   └── postgresql.html

│   │   │   │   │   └── whatsNew.html

│   │   │   │   ├── ReleaseNotes.txt

│   │   │   │   ├── releasing.txt

│   │   │   │   └── todo.txt

│   │   │   ├── lib

│   │   │   │   ├── mybatis-3.0.5.jar

│   │   │   │   ├── mybatis-generator-core-1.3.1.jar

│   │   │   │   ├── mybatis-generator-core-1.3.1-javadoc.jar

│   │   │   │   ├── mybatis-generator-core-1.3.1-sources.jar

│   │   │   │   ├── mybatis-spring-1.0.2-SNAPSHOT.jar

│   │   │   │   ├── mysql-connector-java-5.1.34.jar

│   │   │   │   ├── ojdbc14.jar

│   │   │   │   └── org.springframework.jdbc-3.0.6.RELEASE.jar

│   │   │   ├── LICENSE

│   │   │   ├── NOTICE

│   │   │   └── README.txt

│   │   ├── mysql-connector-java-5.1.34.jar

│   │   ├── NewFile.xml

│   │   ├── ojdbc14.jar

│   │   ├── out

│   │   │   └── production

│   │   │   └── mybaitsgenerator

│   │   │   ├── Test01.class

│   │   │   ├── Test.class

│   │   │   └── TestMain.class

│   │   ├── smeshiro.xml

│   │   └── src

│   │   ├── ArugmentTest.java

│   │   ├── Car.java

│   │   ├── jdbc.properties

│   │   ├── MyBatisUtils.java

│   │   ├── net

│   │   │   └── wanho

│   │   │   ├── mapper

│   │   │   │   ├── AdvancedLogMapper.java

│   │   │   │   ├── AdvancedLogMapper.xml

│   │   │   │   ├── BusinessMapper.java

│   │   │   │   ├── BusinessMapper.xml

│   │   │   │   ├── Business_SourceMapper.java

│   │   │   │   ├── Business_SourceMapper.xml

│   │   │   │   ├── Business_TypeMapper.java

│   │   │   │   ├── Business_TypeMapper.xml

│   │   │   │   ├── CommentMapper.java

│   │   │   │   └── CommentMapper.xml

│   │   │   └── model

│   │   │   ├── AdvancedLogExample.java

│   │   │   ├── AdvancedLog.java

│   │   │   ├── BusinessExample.java

│   │   │   ├── Business.java

│   │   │   ├── Business_SourceExample.java

│   │   │   ├── Business_Source.java

│   │   │   ├── Business_TypeExample.java

│   │   │   ├── Business_Type.java

│   │   │   ├── CommentExample.java

│   │   │   └── Comment.java

│   │   ├── SqlMapConfig.xml

│   │   ├── Test.java

│   │   ├── TestMain.java

│   │   └── Vehicle.java

│   ├── newwanhocrm.pdm

│   └── wanhocrm_12

│   ├── config

│   │   ├── bean.properties

│   │   ├── jdbc.properties

│   │   ├── log4j.properties

│   │   ├── net

│   │   │   └── wanho

│   │   │   └── mapper

│   │   │   ├── AdvancedLogMapper.xml

│   │   │   ├── BusinessMapper.xml

│   │   │   ├── BusinessSourceMapper.xml

│   │   │   ├── BusinessTypeMapper.xml

│   │   │   ├── CommentMapper.xml

│   │   │   ├── CustomerMapper.xml

│   │   │   ├── DailyRecordMapper.xml

│   │   │   ├── DepartmentMapper.xml

│   │   │   ├── EmmPositionMapper.xml

│   │   │   ├── EmployeeMapper.xml

│   │   │   ├── IndividualTaskMapper.xml

│   │   │   ├── InstationMailMapper.xml

│   │   │   ├── LinkManMapper.xml

│   │   │   ├── LogInMapper.xml

│   │   │   ├── MenuMapper.xml

│   │   │   ├── OrdersDetailMapper.xml

│   │   │   ├── OrdersMapper.xml

│   │   │   ├── PositionMenuRelationsMapper.xml

│   │   │   ├── ProcessMapper.xml

│   │   │   ├── ProductInventoryMapper.xml

│   │   │   ├── ProductMapper.xml

│   │   │   ├── ProductTypeMapper.xml

│   │   │   ├── SourceMapper.xml

│   │   │   ├── StoreMapper.xml

│   │   │   ├── TaskUserRelationsMapper.xml

│   │   │   └── WorkingFieldMapper.xml

│   │   └── SqlMapConfig.xml

│   ├── src

│   │   ├── META-INF

│   │   │   ├── MANIFEST.MF

│   │   │   └── persistence.xml

│   │   └── net

│   │   └── wanho

│   │   ├── consts

│   │   │   ├── ConstMsg.java

│   │   │   └── ConstVal.java

│   │   ├── dto

│   │   │   ├── EmpDto.java

│   │   │   ├── EmployeeReq.java

│   │   │   └── PageDto.java

│   │   ├── exception

│   │   │   ├── DaoException.java

│   │   │   └── ServiceException.java

│   │   ├── factory

│   │   │   └── ObjectFactory.java

│   │   ├── filter

│   │   │   └── EncodingFilter.java

│   │   ├── mapper

│   │   │   ├── AdvancedLogMapper.java

│   │   │   ├── BusinessMapper.java

│   │   │   ├── BusinessSourceMapper.java

│   │   │   ├── BusinessTypeMapper.java

│   │   │   ├── CommentMapper.java

│   │   │   ├── CustomerMapper.java

│   │   │   ├── DailyRecordMapper.java

│   │   │   ├── DepartmentMapper.java

│   │   │   ├── EmmPositionMapper.java

│   │   │   ├── EmployeeMapper.java

│   │   │   ├── IndividualTaskMapper.java

│   │   │   ├── InstationMailMapper.java

│   │   │   ├── LinkManMapper.java

│   │   │   ├── LogInMapper.java

│   │   │   ├── MenuMapper.java

│   │   │   ├── OrdersDetailMapper.java

│   │   │   ├── OrdersMapper.java

│   │   │   ├── PositionMenuRelationsMapper.java

│   │   │   ├── ProcessMapper.java

│   │   │   ├── ProductInventoryMapper.java

│   │   │   ├── ProductMapper.java

│   │   │   ├── ProductTypeMapper.java

│   │   │   ├── SourceMapper.java

│   │   │   ├── StoreMapper.java

│   │   │   ├── TaskUserRelationsMapper.java

│   │   │   └── WorkingFieldMapper.java

│   │   ├── model

│   │   │   ├── AdvancedLogExample.java

│   │   │   ├── AdvancedLog.java

│   │   │   ├── BusinessExample.java

│   │   │   ├── Business.java

│   │   │   ├── BusinessSourceExample.java

│   │   │   ├── BusinessSource.java

│   │   │   ├── BusinessTypeExample.java

│   │   │   ├── BusinessType.java

│   │   │   ├── CommentExample.java

│   │   │   ├── Comment.java

│   │   │   ├── CustomerExample.java

│   │   │   ├── Customer.java

│   │   │   ├── DailyRecordExample.java

│   │   │   ├── DailyRecord.java

│   │   │   ├── DepartmentExample.java

│   │   │   ├── Department.java

│   │   │   ├── EmmPositionExample.java

│   │   │   ├── EmmPosition.java

│   │   │   ├── EmployeeExample.java

│   │   │   ├── Employee.java

│   │   │   ├── IndividualTaskExample.java

│   │   │   ├── IndividualTask.java

│   │   │   ├── InstationMailExample.java

│   │   │   ├── InstationMail.java

│   │   │   ├── LinkManExample.java

│   │   │   ├── LinkMan.java

│   │   │   ├── LogInExample.java

│   │   │   ├── LogIn.java

│   │   │   ├── MenuExample.java

│   │   │   ├── Menu.java

│   │   │   ├── OrdersDetailExample.java

│   │   │   ├── OrdersDetail.java

│   │   │   ├── OrdersExample.java

│   │   │   ├── Orders.java

│   │   │   ├── PositionMenuRelationsExample.java

│   │   │   ├── PositionMenuRelations.java

│   │   │   ├── ProcessExample.java

│   │   │   ├── Process.java

│   │   │   ├── ProductExample.java

│   │   │   ├── ProductInventoryExample.java

│   │   │   ├── ProductInventory.java

│   │   │   ├── Product.java

│   │   │   ├── ProductTypeExample.java

│   │   │   ├── ProductType.java

│   │   │   ├── SourceExample.java

│   │   │   ├── Source.java

│   │   │   ├── StoreExample.java

│   │   │   ├── Store.java

│   │   │   ├── TaskUserRelationsExample.java

│   │   │   ├── TaskUserRelations.java

│   │   │   ├── WorkingFieldExample.java

│   │   │   └── WorkingField.java

│   │   ├── proxy

│   │   │   └── TransactionProxy.java

│   │   ├── service

│   │   │   ├── DepServiceI.java

│   │   │   ├── EmpServiceI.java

│   │   │   ├── impl

│   │   │   │   ├── DepServiceImpl.java

│   │   │   │   ├── EmpServiceImpl.java

│   │   │   │   └── LoginServiceImpls.java

│   │   │   └── LoginServiceI.java

│   │   ├── servlet

│   │   │   ├── customer

│   │   │   │   ├── AdvanceLogServlet.java

│   │   │   │   ├── BuinessServlet.java

│   │   │   │   ├── CustomerServlet.java

│   │   │   │   └── LinkManServlet.java

│   │   │   ├── homePage

│   │   │   │   └── ControlServlet.java

│   │   │   ├── login

│   │   │   │   └── LoginServlet.java

│   │   │   └── systemMgr

│   │   │   ├── EmmPositionServlet.java

│   │   │   ├── EmployeeServlet.java

│   │   │   └── MenuServlet.java

│   │   ├── tag

│   │   │   └── PageTag.java

│   │   ├── transaction

│   │   │   ├── impl

│   │   │   │   └── TransManagerImpl.java

│   │   │   └── TransManagerI.java

│   │   ├── util

│   │   │   ├── MD5Util.java

│   │   │   └── MyBatisUtils.java

│   │   └── web

│   │   └── EncodingRequest.java

│   └── WebRoot

│   ├── 404.jsp

│   ├── common.jsp

│   ├── commons

│   │   ├── common.jsp

│   │   └── queryCondition.jsp

│   ├── css

│   │   ├── bootstrap-3.3.4.css

│   │   ├── bootstrap.css

│   │   ├── dataTables.bootstrap-1.10.13.css

│   │   ├── font-awesome.css

│   │   ├── google-fonts.css

│   │   ├── isotope.css

│   │   ├── login.css

│   │   └── style.css

│   ├── fonts

│   │   ├── 1ywb1so8ye1lyjf12wniua.woff2

│   │   ├── dpj5r9gl3kk6ijoep1irsvy6323mhuzfjmgtvxag2ie.woff2

│   │   ├── efrpvglew31oiexbynx7y_eszw2xoq-xsnqo47m55da.woff2

│   │   ├── esvmc5un3kjyuhb9zeppwg.woff2

│   │   ├── fontawesome-webfontd41d.eot

│   │   ├── fontawesome-webfont.eot

│   │   ├── fontawesome-webfont.svg

│   │   ├── fontawesome-webfont.ttf

│   │   ├── fontawesome-webfont.woff

│   │   ├── glyphicons-halflings-regular.eot

│   │   ├── glyphicons-halflings-regular.svg

│   │   ├── glyphicons-halflings-regular.ttf

│   │   ├── glyphicons-halflings-regular.woff

│   │   ├── glyphicons-halflings-regular.woff2

│   │   ├── gtrkrntnri0g82cjkneb0q.woff2

│   │   ├── h2dmvhdlycm56knuatbjya.woff2

│   │   ├── obqr5xycoh0wbouxiayk3_y6323mhuzfjmgtvxag2ie.woff2

│   │   ├── se7end41d.eot

│   │   ├── se7en.eot

│   │   ├── se7en.svg

│   │   ├── se7en.ttf

│   │   ├── se7en.woff

│   │   └── uybmtlshkbkxelqf4x7vrq.woff2

│   ├── images

│   │   ├── 404.png

│   │   ├── icon.png

│   │   ├── icon-search@2x.png

│   │   ├── icon-search.png

│   │   ├── info-data-sprite@2x.png

│   │   ├── info-data-sprite.png

│   │   ├── logo.png

│   │   ├── pw.png

│   │   ├── user.png

│   │   ├── wanho-logo.png

│   │   ├── weiboxs-logo@2x.png

│   │   └── weiboxs-logo.png

│   ├── js

│   │   ├── angular.min.js

│   │   ├── bootstrap-3.3.4.js

│   │   ├── bootstrap.min.js

│   │   ├── dataTables.bootstrap-1.10.13.js

│   │   ├── jquery-3.0.0.js

│   │   ├── jquery.dataTables-1.10.13.js

│   │   ├── jquery-ui.js

│   │   ├── page.js

│   │   └── table.js

│   ├── login.jsp

│   ├── menu.jsp

│   ├── META-INF

│   │   └── MANIFEST.MF

│   ├── picture

│   │   ├── 1_avatar_middle.jpg

│   │   ├── 2_avatar_middle.jpg

│   │   ├── 4.png

│   │   └── check.png

│   ├── updatepass.jsp

│   ├── view

│   │   ├── personalOffice

│   │   │   ├── dailylog

│   │   │   │   ├── create.jsp

│   │   │   │   ├── index.jsp

│   │   │   │   └── view.jsp

│   │   │   ├── mail

│   │   │   │   ├── index.jsp

│   │   │   │   ├── view.jsp

│   │   │   │   └── write.jsp

│   │   │   └── task

│   │   │   ├── create.jsp

│   │   │   ├── index.jsp

│   │   │   └── view.jsp

│   │   └── productManage

│   │   ├── product

│   │   │   ├── create.jsp

│   │   │   ├── index.jsp

│   │   │   └── update.jsp

│   │   ├── product-category

│   │   │   └── index.jsp

│   │   ├── product-warehouse

│   │   │   └── index.jsp

│   │   ├── purchase

│   │   │   ├── create.jsp

│   │   │   └── index.jsp

│   │   ├── sales

│   │   │   ├── create.jsp

│   │   │   └── index.jsp

│   │   ├── stock

│   │   │   └── index.jsp

│   │   └── stock-detail

│   │   └── index.jsp

│   └── WEB-INF

│   ├── index.jsp

│   ├── lib

│   │   ├── commons-beanutils.jar

│   │   ├── commons-logging.jar

│   │   ├── dom4j-1.6.1.jar

│   │   ├── fastjson-1.2.28.jar

│   │   ├── jaxen-1.1-beta-6.jar

│   │   ├── jsp-api.jar

│   │   ├── jsqlparser-0.9.5.jar

│   │   ├── jstl-1.2.jar

│   │   ├── log4j-1.2.17.jar

│   │   ├── mybatis-3.2.7.jar

│   │   ├── mysql-connector-java-5.1.18-bin.jar

│   │   ├── pagehelper-4.2.1.jar

│   │   └── servlet-api.jar

│   ├── tld

│   │   └── page.tld

│   ├── view

│   │   ├── customerManage

│   │   │   ├── business

│   │   │   │   ├── create.jsp

│   │   │   │   ├── createTj.jsp

│   │   │   │   ├── index.jsp

│   │   │   │   ├── update.jsp

│   │   │   │   └── view.jsp

│   │   │   ├── contacts

│   │   │   │   ├── create.jsp

│   │   │   │   ├── index.jsp

│   │   │   │   ├── update.jsp

│   │   │   │   └── view.jsp

│   │   │   └── customer

│   │   │   ├── create.jsp

│   │   │   ├── index.jsp

│   │   │   ├── update.jsp

│   │   │   └── view.jsp

│   │   └── systemSettings

│   │   ├── manage

│   │   │   ├── create.jsp

│   │   │   ├── index.jsp

│   │   │   └── update.jsp

│   │   ├── menu

│   │   │   ├── create.jsp

│   │   │   ├── index.jsp

│   │   │   └── update.jsp

│   │   └── position

│   │   ├── create.jsp

│   │   ├── index.jsp

│   │   └── update.jsp

│   └── web.xml

├── 周勇

│   └── crm

│   ├── crm.sql

│   └── wanhocrm

│   ├── config

│   │   ├── bean.properties

│   │   ├── jdbc.properties

│   │   ├── log4j.properties

│   │   ├── net

│   │   │   └── wanho

│   │   │   └── mapper

│   │   │   ├── AdvancedLogMapper.xml

│   │   │   ├── BusinessMapper.xml

│   │   │   ├── BusinessSourceMapper.xml

│   │   │   ├── BusinessTypeMapper.xml

│   │   │   ├── CommentMapper.xml

│   │   │   ├── CustomerMapper.xml

│   │   │   ├── DailyRecordMapper.xml

│   │   │   ├── DepartmentMapper.xml

│   │   │   ├── EmmPositionMapper.xml

│   │   │   ├── EmployeeMapper.xml

│   │   │   ├── IndividualTaskMapper.xml

│   │   │   ├── InstationMailMapper.xml

│   │   │   ├── LinkManMapper.xml

│   │   │   ├── LogInMapper.xml

│   │   │   ├── MenuMapper.xml

│   │   │   ├── OrdersDetailMapper.xml

│   │   │   ├── OrdersMapper.xml

│   │   │   ├── PositionMenuRelationsMapper.xml

│   │   │   ├── ProcessMapper.xml

│   │   │   ├── ProductInventoryMapper.xml

│   │   │   ├── ProductMapper.xml

│   │   │   ├── ProductTypeMapper.xml

│   │   │   ├── SourceMapper.xml

│   │   │   ├── StoreMapper.xml

│   │   │   ├── TaskUserRelationsMapper.xml

│   │   │   └── WorkingFieldMapper.xml

│   │   └── SqlMapConfig.xml

│   ├── src

│   │   ├── META-INF

│   │   │   └── MANIFEST.MF

│   │   └── net

│   │   └── wanho

│   │   ├── consts

│   │   │   ├── ConstMsg.java

│   │   │   └── ConstVal.java

│   │   ├── dto

│   │   │   ├── AdvancelogDto.java

│   │   │   ├── BusinessDto.java

│   │   │   ├── BusinessLikeDto.java

│   │   │   ├── CustomerDto.java

│   │   │   ├── CustomerLikeDto.java

│   │   │   ├── EmailOrPhone.java

│   │   │   ├── Employees.java

│   │   │   └── LinkmanDto.java

│   │   ├── exception

│   │   │   ├── DaoException.java

│   │   │   └── ServiceException.java

│   │   ├── factory

│   │   │   └── ObjectFactory.java

│   │   ├── filter

│   │   │   └── EncodingFilter.java

│   │   ├── mapper

│   │   │   ├── AdvancedLogMapper.java

│   │   │   ├── BusinessMapper.java

│   │   │   ├── BusinessSourceMapper.java

│   │   │   ├── BusinessTypeMapper.java

│   │   │   ├── CommentMapper.java

│   │   │   ├── CustomerMapper.java

│   │   │   ├── DailyRecordMapper.java

│   │   │   ├── DepartmentMapper.java

│   │   │   ├── EmmPositionMapper.java

│   │   │   ├── EmployeeMapper.java

│   │   │   ├── IndividualTaskMapper.java

│   │   │   ├── InstationMailMapper.java

│   │   │   ├── LinkManMapper.java

│   │   │   ├── LogInMapper.java

│   │   │   ├── MenuMapper.java

│   │   │   ├── OrdersDetailMapper.java

│   │   │   ├── OrdersMapper.java

│   │   │   ├── PositionMenuRelationsMapper.java

│   │   │   ├── ProcessMapper.java

│   │   │   ├── ProductInventoryMapper.java

│   │   │   ├── ProductMapper.java

│   │   │   ├── ProductTypeMapper.java

│   │   │   ├── SourceMapper.java

│   │   │   ├── StoreMapper.java

│   │   │   ├── TaskUserRelationsMapper.java

│   │   │   └── WorkingFieldMapper.java

│   │   ├── model

│   │   │   ├── AdvancedLogExample.java

│   │   │   ├── AdvancedLog.java

│   │   │   ├── BusinessExample.java

│   │   │   ├── Business.java

│   │   │   ├── BusinessSourceExample.java

│   │   │   ├── BusinessSource.java

│   │   │   ├── BusinessTypeExample.java

│   │   │   ├── BusinessType.java

│   │   │   ├── CommentExample.java

│   │   │   ├── Comment.java

│   │   │   ├── CustomerExample.java

│   │   │   ├── Customer.java

│   │   │   ├── DailyRecordExample.java

│   │   │   ├── DailyRecord.java

│   │   │   ├── DepartmentExample.java

│   │   │   ├── Department.java

│   │   │   ├── EmmPositionExample.java

│   │   │   ├── EmmPosition.java

│   │   │   ├── EmployeeExample.java

│   │   │   ├── Employee.java

│   │   │   ├── IndividualTaskExample.java

│   │   │   ├── IndividualTask.java

│   │   │   ├── InstationMailExample.java

│   │   │   ├── InstationMail.java

│   │   │   ├── LinkManExample.java

│   │   │   ├── LinkMan.java

│   │   │   ├── LogInExample.java

│   │   │   ├── LogIn.java

│   │   │   ├── MenuExample.java

│   │   │   ├── Menu.java

│   │   │   ├── OrdersDetailExample.java

│   │   │   ├── OrdersDetail.java

│   │   │   ├── OrdersExample.java

│   │   │   ├── Orders.java

│   │   │   ├── PositionMenuRelationsExample.java

│   │   │   ├── PositionMenuRelations.java

│   │   │   ├── ProcessExample.java

│   │   │   ├── Process.java

│   │   │   ├── ProductExample.java

│   │   │   ├── ProductInventoryExample.java

│   │   │   ├── ProductInventory.java

│   │   │   ├── Product.java

│   │   │   ├── ProductTypeExample.java

│   │   │   ├── ProductType.java

│   │   │   ├── SourceExample.java

│   │   │   ├── Source.java

│   │   │   ├── StoreExample.java

│   │   │   ├── Store.java

│   │   │   ├── TaskUserRelationsExample.java

│   │   │   ├── TaskUserRelations.java

│   │   │   ├── WorkingFieldExample.java

│   │   │   └── WorkingField.java

│   │   ├── proxy

│   │   │   └── TransactionProxy.java

│   │   ├── service

│   │   │   ├── customer

│   │   │   │   ├── BusinessServiceI.java

│   │   │   │   ├── BusinessServiceImpl.java

│   │   │   │   ├── CustomerServiceI.java

│   │   │   │   ├── CustomerServiceImpl.java

│   │   │   │   ├── LinkmanServiceI.java

│   │   │   │   └── LinkmanServiceImpl.java

│   │   │   ├── employee

│   │   │   │   ├── EmployeeServiceI.java

│   │   │   │   └── EmployeeServiceImpl.java

│   │   │   ├── login

│   │   │   │   ├── LoginServiceI.java

│   │   │   │   └── LoginServiceImpl.java

│   │   │   ├── source

│   │   │   │   ├── SourceServiceI.java

│   │   │   │   └── SourceServiceImpl.java

│   │   │   └── workField

│   │   │   ├── WorkFieldServiceI.java

│   │   │   └── WorkFieldServiceImpl.java

│   │   ├── servlet

│   │   │   ├── customer

│   │   │   │   ├── AdvanceLogServlet.java

│   │   │   │   ├── BuinessServlet.java

│   │   │   │   ├── CustomerServlet.java

│   │   │   │   └── LinkManServlet.java

│   │   │   ├── homePage

│   │   │   │   └── ControlServlet.java

│   │   │   ├── login

│   │   │   │   └── LoginServlet.java

│   │   │   └── systemMgr

│   │   │   ├── EmmPositionServlet.java

│   │   │   ├── EmployeeServlet.java

│   │   │   └── MenuServlet.java

│   │   ├── tag

│   │   │   └── PageTag.java

│   │   ├── transaction

│   │   │   ├── impl

│   │   │   │   └── TransManagerImpl.java

│   │   │   └── TransManagerI.java

│   │   ├── util

│   │   │   ├── DateUtil.java

│   │   │   ├── MD5Util.java

│   │   │   └── MyBatisUtils.java

│   │   └── web

│   │   └── EncodingRequest.java

│   ├── test

│   │   └── wanhocrm

│   │   └── TestQ.java

│   └── WebRoot

│   ├── 404.jsp

│   ├── common.jsp

│   ├── commons

│   │   ├── common.jsp

│   │   └── queryCondition.jsp

│   ├── css

│   │   ├── bootstrap-3.3.4.css

│   │   ├── bootstrap.css

│   │   ├── dataTables.bootstrap-1.10.13.css

│   │   ├── font-awesome.css

│   │   ├── google-fonts.css

│   │   ├── isotope.css

│   │   ├── login.css

│   │   └── style.css

│   ├── fonts

│   │   ├── 1ywb1so8ye1lyjf12wniua.woff2

│   │   ├── dpj5r9gl3kk6ijoep1irsvy6323mhuzfjmgtvxag2ie.woff2

│   │   ├── efrpvglew31oiexbynx7y_eszw2xoq-xsnqo47m55da.woff2

│   │   ├── esvmc5un3kjyuhb9zeppwg.woff2

│   │   ├── fontawesome-webfontd41d.eot

│   │   ├── fontawesome-webfont.eot

│   │   ├── fontawesome-webfont.svg

│   │   ├── fontawesome-webfont.ttf

│   │   ├── fontawesome-webfont.woff

│   │   ├── glyphicons-halflings-regular.eot

│   │   ├── glyphicons-halflings-regular.svg

│   │   ├── glyphicons-halflings-regular.ttf

│   │   ├── glyphicons-halflings-regular.woff

│   │   ├── glyphicons-halflings-regular.woff2

│   │   ├── gtrkrntnri0g82cjkneb0q.woff2

│   │   ├── h2dmvhdlycm56knuatbjya.woff2

│   │   ├── obqr5xycoh0wbouxiayk3_y6323mhuzfjmgtvxag2ie.woff2

│   │   ├── se7end41d.eot

│   │   ├── se7en.eot

│   │   ├── se7en.svg

│   │   ├── se7en.ttf

│   │   ├── se7en.woff

│   │   └── uybmtlshkbkxelqf4x7vrq.woff2

│   ├── images

│   │   ├── 404.png

│   │   ├── icon.png

│   │   ├── icon-search@2x.png

│   │   ├── icon-search.png

│   │   ├── info-data-sprite@2x.png

│   │   ├── info-data-sprite.png

│   │   ├── logo.png

│   │   ├── pw.png

│   │   ├── user.png

│   │   ├── wanho-logo.png

│   │   ├── weiboxs-logo@2x.png

│   │   └── weiboxs-logo.png

│   ├── js

│   │   ├── angular.min.js

│   │   ├── bootstrap-3.3.4.js

│   │   ├── bootstrap.min.js

│   │   ├── dataTables.bootstrap-1.10.13.js

│   │   ├── jquery-1.7.2.min.js

│   │   ├── jquery-3.0.0.js

│   │   ├── jquery.dataTables-1.10.13.js

│   │   ├── jquery-ui.js

│   │   ├── page.js

│   │   └── table.js

│   ├── login.jsp

│   ├── menu.jsp

│   ├── META-INF

│   │   └── MANIFEST.MF

│   ├── picture

│   │   ├── 1_avatar_middle.jpg

│   │   ├── 2_avatar_middle.jpg

│   │   ├── 4.png

│   │   └── check.png

│   ├── updatepass.jsp

│   ├── view

│   │   ├── personalOffice

│   │   │   ├── dailylog

│   │   │   │   ├── create.jsp

│   │   │   │   ├── index.jsp

│   │   │   │   └── view.jsp

│   │   │   ├── mail

│   │   │   │   ├── index.jsp

│   │   │   │   ├── view.jsp

│   │   │   │   └── write.jsp

│   │   │   └── task

│   │   │   ├── create.jsp

│   │   │   ├── index.jsp

│   │   │   └── view.jsp

│   │   └── productManage

│   │   ├── product

│   │   │   ├── create.jsp

│   │   │   ├── index.jsp

│   │   │   └── update.jsp

│   │   ├── product-category

│   │   │   └── index.jsp

│   │   ├── product-warehouse

│   │   │   └── index.jsp

│   │   ├── purchase

│   │   │   ├── create.jsp

│   │   │   └── index.jsp

│   │   ├── sales

│   │   │   ├── create.jsp

│   │   │   └── index.jsp

│   │   ├── stock

│   │   │   └── index.jsp

│   │   └── stock-detail

│   │   └── index.jsp

│   └── WEB-INF

│   ├── classes

│   │   ├── bean.properties

│   │   ├── jdbc.properties

│   │   ├── log4j.properties

│   │   ├── META-INF

│   │   │   └── MANIFEST.MF

│   │   ├── net

│   │   │   └── wanho

│   │   │   ├── consts

│   │   │   │   ├── ConstMsg.class

│   │   │   │   └── ConstVal.class

│   │   │   ├── dto

│   │   │   │   ├── AdvancelogDto.class

│   │   │   │   ├── BusinessDto.class

│   │   │   │   ├── BusinessLikeDto.class

│   │   │   │   ├── CustomerDto.class

│   │   │   │   ├── CustomerLikeDto.class

│   │   │   │   ├── EmailOrPhone.class

│   │   │   │   ├── Employees.class

│   │   │   │   └── LinkmanDto.class

│   │   │   ├── exception

│   │   │   │   ├── DaoException.class

│   │   │   │   └── ServiceException.class

│   │   │   ├── factory

│   │   │   │   └── ObjectFactory.class

│   │   │   ├── filter

│   │   │   │   └── EncodingFilter.class

│   │   │   ├── mapper

│   │   │   │   ├── AdvancedLogMapper.class

│   │   │   │   ├── AdvancedLogMapper.xml

│   │   │   │   ├── BusinessMapper.class

│   │   │   │   ├── BusinessMapper.xml

│   │   │   │   ├── BusinessSourceMapper.class

│   │   │   │   ├── BusinessSourceMapper.xml

│   │   │   │   ├── BusinessTypeMapper.class

│   │   │   │   ├── BusinessTypeMapper.xml

│   │   │   │   ├── CommentMapper.class

│   │   │   │   ├── CommentMapper.xml

│   │   │   │   ├── CustomerMapper.class

│   │   │   │   ├── CustomerMapper.xml

│   │   │   │   ├── DailyRecordMapper.class

│   │   │   │   ├── DailyRecordMapper.xml

│   │   │   │   ├── DepartmentMapper.class

│   │   │   │   ├── DepartmentMapper.xml

│   │   │   │   ├── EmmPositionMapper.class

│   │   │   │   ├── EmmPositionMapper.xml

│   │   │   │   ├── EmployeeMapper.class

│   │   │   │   ├── EmployeeMapper.xml

│   │   │   │   ├── IndividualTaskMapper.class

│   │   │   │   ├── IndividualTaskMapper.xml

│   │   │   │   ├── InstationMailMapper.class

│   │   │   │   ├── InstationMailMapper.xml

│   │   │   │   ├── LinkManMapper.class

│   │   │   │   ├── LinkManMapper.xml

│   │   │   │   ├── LogInMapper.class

│   │   │   │   ├── LogInMapper.xml

│   │   │   │   ├── MenuMapper.class

│   │   │   │   ├── MenuMapper.xml

│   │   │   │   ├── OrdersDetailMapper.class

│   │   │   │   ├── OrdersDetailMapper.xml

│   │   │   │   ├── OrdersMapper.class

│   │   │   │   ├── OrdersMapper.xml

│   │   │   │   ├── PositionMenuRelationsMapper.class

│   │   │   │   ├── PositionMenuRelationsMapper.xml

│   │   │   │   ├── ProcessMapper.class

│   │   │   │   ├── ProcessMapper.xml

│   │   │   │   ├── ProductInventoryMapper.class

│   │   │   │   ├── ProductInventoryMapper.xml

│   │   │   │   ├── ProductMapper.class

│   │   │   │   ├── ProductMapper.xml

│   │   │   │   ├── ProductTypeMapper.class

│   │   │   │   ├── ProductTypeMapper.xml

│   │   │   │   ├── SourceMapper.class

│   │   │   │   ├── SourceMapper.xml

│   │   │   │   ├── StoreMapper.class

│   │   │   │   ├── StoreMapper.xml

│   │   │   │   ├── TaskUserRelationsMapper.class

│   │   │   │   ├── TaskUserRelationsMapper.xml

│   │   │   │   ├── WorkingFieldMapper.class

│   │   │   │   └── WorkingFieldMapper.xml

│   │   │   ├── model

│   │   │   │   ├── AdvancedLog.class

│   │   │   │   ├── AdvancedLogExample$Criteria.class

│   │   │   │   ├── AdvancedLogExample$Criterion.class

│   │   │   │   ├── AdvancedLogExample$GeneratedCriteria.class

│   │   │   │   ├── AdvancedLogExample.class

│   │   │   │   ├── Business.class

│   │   │   │   ├── BusinessExample$Criteria.class

│   │   │   │   ├── BusinessExample$Criterion.class

│   │   │   │   ├── BusinessExample$GeneratedCriteria.class

│   │   │   │   ├── BusinessExample.class

│   │   │   │   ├── BusinessSource.class

│   │   │   │   ├── BusinessSourceExample$Criteria.class

│   │   │   │   ├── BusinessSourceExample$Criterion.class

│   │   │   │   ├── BusinessSourceExample$GeneratedCriteria.class

│   │   │   │   ├── BusinessSourceExample.class

│   │   │   │   ├── BusinessType.class

│   │   │   │   ├── BusinessTypeExample$Criteria.class

│   │   │   │   ├── BusinessTypeExample$Criterion.class

│   │   │   │   ├── BusinessTypeExample$GeneratedCriteria.class

│   │   │   │   ├── BusinessTypeExample.class

│   │   │   │   ├── Comment.class

│   │   │   │   ├── CommentExample$Criteria.class

│   │   │   │   ├── CommentExample$Criterion.class

│   │   │   │   ├── CommentExample$GeneratedCriteria.class

│   │   │   │   ├── CommentExample.class

│   │   │   │   ├── Customer.class

│   │   │   │   ├── CustomerExample$Criteria.class

│   │   │   │   ├── CustomerExample$Criterion.class

│   │   │   │   ├── CustomerExample$GeneratedCriteria.class

│   │   │   │   ├── CustomerExample.class

│   │   │   │   ├── DailyRecord.class

│   │   │   │   ├── DailyRecordExample$Criteria.class

│   │   │   │   ├── DailyRecordExample$Criterion.class

│   │   │   │   ├── DailyRecordExample$GeneratedCriteria.class

│   │   │   │   ├── DailyRecordExample.class

│   │   │   │   ├── Department.class

│   │   │   │   ├── DepartmentExample$Criteria.class

│   │   │   │   ├── DepartmentExample$Criterion.class

│   │   │   │   ├── DepartmentExample$GeneratedCriteria.class

│   │   │   │   ├── DepartmentExample.class

│   │   │   │   ├── EmmPosition.class

│   │   │   │   ├── EmmPositionExample$Criteria.class

│   │   │   │   ├── EmmPositionExample$Criterion.class

│   │   │   │   ├── EmmPositionExample$GeneratedCriteria.class

│   │   │   │   ├── EmmPositionExample.class

│   │   │   │   ├── Employee.class

│   │   │   │   ├── EmployeeExample$Criteria.class

│   │   │   │   ├── EmployeeExample$Criterion.class

│   │   │   │   ├── EmployeeExample$GeneratedCriteria.class

│   │   │   │   ├── EmployeeExample.class

│   │   │   │   ├── IndividualTask.class

│   │   │   │   ├── IndividualTaskExample$Criteria.class

│   │   │   │   ├── IndividualTaskExample$Criterion.class

│   │   │   │   ├── IndividualTaskExample$GeneratedCriteria.class

│   │   │   │   ├── IndividualTaskExample.class

│   │   │   │   ├── InstationMail.class

│   │   │   │   ├── InstationMailExample$Criteria.class

│   │   │   │   ├── InstationMailExample$Criterion.class

│   │   │   │   ├── InstationMailExample$GeneratedCriteria.class

│   │   │   │   ├── InstationMailExample.class

│   │   │   │   ├── LinkMan.class

│   │   │   │   ├── LinkManExample$Criteria.class

│   │   │   │   ├── LinkManExample$Criterion.class

│   │   │   │   ├── LinkManExample$GeneratedCriteria.class

│   │   │   │   ├── LinkManExample.class

│   │   │   │   ├── LogIn.class

│   │   │   │   ├── LogInExample$Criteria.class

│   │   │   │   ├── LogInExample$Criterion.class

│   │   │   │   ├── LogInExample$GeneratedCriteria.class

│   │   │   │   ├── LogInExample.class

│   │   │   │   ├── Menu.class

│   │   │   │   ├── MenuExample$Criteria.class

│   │   │   │   ├── MenuExample$Criterion.class

│   │   │   │   ├── MenuExample$GeneratedCriteria.class

│   │   │   │   ├── MenuExample.class

│   │   │   │   ├── Orders.class

│   │   │   │   ├── OrdersDetail.class

│   │   │   │   ├── OrdersDetailExample$Criteria.class

│   │   │   │   ├── OrdersDetailExample$Criterion.class

│   │   │   │   ├── OrdersDetailExample$GeneratedCriteria.class

│   │   │   │   ├── OrdersDetailExample.class

│   │   │   │   ├── OrdersExample$Criteria.class

│   │   │   │   ├── OrdersExample$Criterion.class

│   │   │   │   ├── OrdersExample$GeneratedCriteria.class

│   │   │   │   ├── OrdersExample.class

│   │   │   │   ├── PositionMenuRelations.class

│   │   │   │   ├── PositionMenuRelationsExample$Criteria.class

│   │   │   │   ├── PositionMenuRelationsExample$Criterion.class

│   │   │   │   ├── PositionMenuRelationsExample$GeneratedCriteria.class

│   │   │   │   ├── PositionMenuRelationsExample.class

│   │   │   │   ├── Process.class

│   │   │   │   ├── ProcessExample$Criteria.class

│   │   │   │   ├── ProcessExample$Criterion.class

│   │   │   │   ├── ProcessExample$GeneratedCriteria.class

│   │   │   │   ├── ProcessExample.class

│   │   │   │   ├── Product.class

│   │   │   │   ├── ProductExample$Criteria.class

│   │   │   │   ├── ProductExample$Criterion.class

│   │   │   │   ├── ProductExample$GeneratedCriteria.class

│   │   │   │   ├── ProductExample.class

│   │   │   │   ├── ProductInventory.class

│   │   │   │   ├── ProductInventoryExample$Criteria.class

│   │   │   │   ├── ProductInventoryExample$Criterion.class

│   │   │   │   ├── ProductInventoryExample$GeneratedCriteria.class

│   │   │   │   ├── ProductInventoryExample.class

│   │   │   │   ├── ProductType.class

│   │   │   │   ├── ProductTypeExample$Criteria.class

│   │   │   │   ├── ProductTypeExample$Criterion.class

│   │   │   │   ├── ProductTypeExample$GeneratedCriteria.class

│   │   │   │   ├── ProductTypeExample.class

│   │   │   │   ├── Source.class

│   │   │   │   ├── SourceExample$Criteria.class

│   │   │   │   ├── SourceExample$Criterion.class

│   │   │   │   ├── SourceExample$GeneratedCriteria.class

│   │   │   │   ├── SourceExample.class

│   │   │   │   ├── Store.class

│   │   │   │   ├── StoreExample$Criteria.class

│   │   │   │   ├── StoreExample$Criterion.class

│   │   │   │   ├── StoreExample$GeneratedCriteria.class

│   │   │   │   ├── StoreExample.class

│   │   │   │   ├── TaskUserRelations.class

│   │   │   │   ├── TaskUserRelationsExample$Criteria.class

│   │   │   │   ├── TaskUserRelationsExample$Criterion.class

│   │   │   │   ├── TaskUserRelationsExample$GeneratedCriteria.class

│   │   │   │   ├── TaskUserRelationsExample.class

│   │   │   │   ├── WorkingField.class

│   │   │   │   ├── WorkingFieldExample$Criteria.class

│   │   │   │   ├── WorkingFieldExample$Criterion.class

│   │   │   │   ├── WorkingFieldExample$GeneratedCriteria.class

│   │   │   │   └── WorkingFieldExample.class

│   │   │   ├── proxy

│   │   │   │   ├── TransactionProxy$1.class

│   │   │   │   └── TransactionProxy.class

│   │   │   ├── service

│   │   │   │   ├── customer

│   │   │   │   │   ├── BusinessServiceI.class

│   │   │   │   │   ├── BusinessServiceImpl.class

│   │   │   │   │   ├── CustomerServiceI.class

│   │   │   │   │   ├── CustomerServiceImpl.class

│   │   │   │   │   ├── LinkmanServiceI.class

│   │   │   │   │   └── LinkmanServiceImpl.class

│   │   │   │   ├── employee

│   │   │   │   │   ├── EmployeeServiceI.class

│   │   │   │   │   └── EmployeeServiceImpl.class

│   │   │   │   ├── login

│   │   │   │   │   ├── LoginServiceI.class

│   │   │   │   │   └── LoginServiceImpl.class

│   │   │   │   ├── source

│   │   │   │   │   ├── SourceServiceI.class

│   │   │   │   │   └── SourceServiceImpl.class

│   │   │   │   └── workField

│   │   │   │   ├── WorkFieldServiceI.class

│   │   │   │   └── WorkFieldServiceImpl.class

│   │   │   ├── servlet

│   │   │   │   ├── customer

│   │   │   │   │   ├── AdvanceLogServlet.class

│   │   │   │   │   ├── BuinessServlet.class

│   │   │   │   │   ├── CustomerServlet.class

│   │   │   │   │   └── LinkManServlet.class

│   │   │   │   ├── homePage

│   │   │   │   │   └── ControlServlet.class

│   │   │   │   ├── login

│   │   │   │   │   └── LoginServlet.class

│   │   │   │   └── systemMgr

│   │   │   │   ├── EmmPositionServlet.class

│   │   │   │   ├── EmployeeServlet.class

│   │   │   │   └── MenuServlet.class

│   │   │   ├── tag

│   │   │   │   └── PageTag.class

│   │   │   ├── transaction

│   │   │   │   ├── impl

│   │   │   │   │   └── TransManagerImpl.class

│   │   │   │   └── TransManagerI.class

│   │   │   ├── util

│   │   │   │   ├── DateUtil.class

│   │   │   │   ├── MD5Util.class

│   │   │   │   └── MyBatisUtils.class

│   │   │   └── web

│   │   │   └── EncodingRequest.class

│   │   ├── SqlMapConfig.xml

│   │   └── wanhocrm

│   │   └── TestQ.class

│   ├── index.jsp

│   ├── lib

│   │   ├── commons-beanutils.jar

│   │   ├── commons-logging.jar

│   │   ├── dom4j-1.6.1.jar

│   │   ├── fastjson-1.2.28.jar

│   │   ├── jaxen-1.1-beta-6.jar

│   │   ├── jsp-api.jar

│   │   ├── jsqlparser-0.9.5.jar

│   │   ├── jstl-1.2.jar

│   │   ├── log4j-1.2.17.jar

│   │   ├── mybatis-3.2.7.jar

│   │   ├── mysql-connector-java-5.1.18-bin.jar

│   │   ├── pagehelper-4.2.1.jar

│   │   └── servlet-api.jar

│   ├── tld

│   │   └── page.tld

│   ├── view

│   │   ├── customerManage

│   │   │   ├── business

│   │   │   │   ├── create.jsp

│   │   │   │   ├── createTj.jsp

│   │   │   │   ├── index.jsp

│   │   │   │   ├── update.jsp

│   │   │   │   └── view.jsp

│   │   │   ├── contacts

│   │   │   │   ├── create.jsp

│   │   │   │   ├── index.jsp

│   │   │   │   ├── update.jsp

│   │   │   │   └── view.jsp

│   │   │   └── customer

│   │   │   ├── create.jsp

│   │   │   ├── index.jsp

│   │   │   ├── update.jsp

│   │   │   └── view.jsp

│   │   └── systemSettings

│   │   ├── manage

│   │   │   ├── create.jsp

│   │   │   ├── index.jsp

│   │   │   └── update.jsp

│   │   ├── menu

│   │   │   ├── create.jsp

│   │   │   ├── index.jsp

│   │   │   └── update.jsp

│   │   └── position

│   │   ├── create.jsp

│   │   ├── index.jsp

│   │   └── update.jsp

│   └── web.xml

└── 朱阿壮-二阶段项目.rar

247 directories, 1152 files

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值