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 = '你不好';