java客户管理系统
❶ java crm(客户关系管理系统)顶级菜鸟求助
基础知识好的话,我就不解释太多了。
既然你使用的是java,就没道理不使用面向对象编程了。
这样也比较容易解释。
看你的需求,包含以下三种对象
1、基础数据
2、产品
3、仓库
所以你需要先构建这三个类。估计你所说的基础数据应该是产品和仓库的父类。
然后分配属性
根据你所说的
1、基础数据
id
类别
值
条目
2、产品
id
名称
型号
批次
所在仓库id
3、仓库
id
名称
然后建立这三个对象的管理类
1、基础数据管理
2、产品管理
3、仓库管理
其中包含的方法分别为crud四种,就是create read update delete 俗称增删改查四种。
其中产品还有两个方法是出入库操作。
有了管理类和方法,你在这些方法里就可以写sql语句了。以前回答过一个类似的问题。一般的小工程,基本上这样就足够了。不是很明白的话,找找我以前回答过的一个问题吧。希望能有点帮助。
❷ javaEE,CRM客户关系管理系统
Concursive
http://www.concursive.com/
Founded in 2000 as Centric CRM, Concursive, like some others in its space, is trying to expand its reach beyond CRM into other business applications. The four major moles in ConcourseSuite are CRM, Web, Content and Team (which deals with collaboration), and they can be deployed indivially or as an integrated suite in either Software as a Service (SaaS) or on-premise versions. The Centric proct operated under the proprietary Centric Public License, but since the company changed its name in 2007 it's also changed its take on open source licensing and now uses both the older licenses and licenses approved by the Open Source Initiative consortium. The enterprise software is developed with Java/J2EE and Concursive's developer community now numbers more than 15,000 registered members.
- See more at: http://www.crmsearch.com/top-10-open-source-crm-systems.php#sthash.qy0b8SrX.dpuf
❸ JAVA编写个用户管理系统(权限控制到按钮) 要能连接到数据库!
你的逻辑有问题,labelName不能同时是'你很好'而且'你好'的,所以你的为空是正常的,我改了一个,你看看。
SELECT * FROM forum LEFT JOIN related ON forum.id = related.forumid LEFT JOIN label ON label.id = related.labelid
WHERE label.labelName = '你好' OR label.labelName = '你很好' OR label.labelName = '你不好';