资源简介
在湖南汇友科技有限公司工作时独立设计并开发的一个简单的呼叫中心管理系统的源代码,非常适合初学者学习。。。。。。
代码片段和文件信息
package call;
import java.sql.*;
import java.util.*;
import DB.*;
public class calling{
private String CphoneNo;//电话号码
private String YWID;//YWID
private String FYWID;
private String CName;
private String CPay;
private String YWName;
private String YWMemo;
private int RNo;
private ResultSet yewurs;//业务信息结果集来自yewu表
private ResultSet kehurs;//客户信息结果集来自kehu表
private ResultSet callinfors;//外呼号码结果集来自callinfo表
private DBConn conn;
//---------------------用于在话务员页面显示-------------------------------------
public calling(){//构造函数,进行初始化,呼叫过程开始
this.CphoneNo=““;
this.YWID=““;
conn = new DBConn();
}
public void setYWID(String YWID){//得到YWID(从session中得到)
this.YWID=YWID;
}
public String getYWID(){//返回YWID
return YWID;
}
public String getFYWID(){
return FYWID;
}
public synchronized void setCphoneNo() throws SQLException{//得到电话号码
String sql = “select * from callinfo where issend=‘N‘ and YWID=‘“+getYWID()+“‘ order by CphoneNo“;
callinfors = conn.executeQuery(sql);//得到电话号码信息(可优化)
if (callinfors.next()) {
CphoneNo=callinfors.getString(“CphoneNo“);
RNo=callinfors.getInt(“RNo“);
FYWID=callinfors.getString(“FYWID“);
}
sql = “update callinfo set issend=‘Y‘ where RNo=‘“+callinfors.getInt(“RNo“)+“‘“;
conn.executeUpdate(sql);//设置记录的issend为N保证其不会再被分配(以后应优化为存储过程)
}
public synchronized void setCphoneNo(String taixiIP) throws SQLException{//得到电话号码
String sql = “select * from callinfo where issend=‘N‘ and YWID=‘“+getYWID()+“‘ order by CphoneNo“;
callinfors = conn.executeQuery(sql);//得到电话号码信息(可优化)
if (callinfors.next()) {
CphoneNo=callinfors.getString(“CphoneNo“);
RNo=callinfors.getInt(“RNo“);
FYWID=callinfors.getString(“FYWID“);
sql = “update taixi set CphoneNo=‘“+CphoneNo+“‘ where taixiIP=‘“+taixiIP+“‘“;
conn.executeUpdate(sql);//设置台席对应的外呼号码
}
sql = “update callinfo set issend=‘Y‘ where RNo=‘“+callinfors.getInt(“RNo“)+“‘“;
conn.executeUpdate(sql);//设置记录的issend为N保证其不会再被分配(以后应优化为存储过程)
}
public void setkehurs() throws SQLException{//得到客户信息
//DBConn kehuconn = new DBConn();
String sql = “select CphoneNoCNameCPayYWID from kehu where CphoneNo=‘“+ getCphoneNo()+“‘ and YWID=‘“+YWID+“‘“;
kehurs = conn.executeQuery(sql);//可优化
if (kehurs.next()){
CName=kehurs.getString(“CName“);
CPay=kehurs.getString(“CPay“);
}
//kehuconn.dropConnection();
}
public int getyewuonly(String YWID) throws SQLException{//得到only信息
int jg=0;
ResultSet rs;
String sql = “select only from yewu where YWID=‘“+YWID+“‘“;
rs = conn.executeQuery(sql);
rs.next();
jg=rs.getInt(“only“);
return jg;
}
public int getwithmemo(String YWID) throws SQLException{//得到only信息
int jg=0;
ResultSet rs;
String sql = “select withmemo from yewu where YWID=‘“+YWID+“‘“;
rs = conn.executeQuery(sql);
rs.next();
jg=rs.getInt(“withmemo“);
return jg;
}
public void setyewurs() throws SQLException{//
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2403 2008-09-20 01:36 huiyou\checkuser.jsp
文件 480 2008-09-19 21:10 huiyou\content.jsp
文件 63632 2007-11-13 08:45 huiyou\editor\backup_KindEditor.js
文件 671 2007-11-13 08:45 huiyou\editor\icons\etc_01.gif
文件 687 2007-11-13 08:45 huiyou\editor\icons\etc_02.gif
文件 682 2007-11-13 08:45 huiyou\editor\icons\etc_03.gif
文件 655 2007-11-13 08:45 huiyou\editor\icons\etc_04.gif
文件 643 2007-11-13 08:45 huiyou\editor\icons\etc_05.gif
文件 660 2007-11-13 08:45 huiyou\editor\icons\etc_06.gif
文件 657 2007-11-13 08:45 huiyou\editor\icons\etc_07.gif
文件 680 2007-11-13 08:45 huiyou\editor\icons\etc_08.gif
文件 670 2007-11-13 08:45 huiyou\editor\icons\etc_09.gif
文件 657 2007-11-13 08:45 huiyou\editor\icons\etc_10.gif
文件 655 2007-11-13 08:45 huiyou\editor\icons\etc_11.gif
文件 687 2007-11-13 08:45 huiyou\editor\icons\etc_12.gif
文件 666 2007-11-13 08:45 huiyou\editor\icons\etc_13.gif
文件 657 2007-11-13 08:45 huiyou\editor\icons\etc_14.gif
文件 683 2007-11-13 08:45 huiyou\editor\icons\etc_15.gif
文件 685 2007-11-13 08:45 huiyou\editor\icons\etc_16.gif
文件 445 2007-11-13 08:45 huiyou\editor\icons\etc_17.gif
文件 453 2007-11-13 08:45 huiyou\editor\icons\etc_18.gif
文件 423 2007-11-13 08:45 huiyou\editor\icons\etc_19.gif
文件 453 2007-11-13 08:45 huiyou\editor\icons\etc_20.gif
文件 322 2007-11-13 08:45 huiyou\editor\icons\etc_21.gif
文件 473 2007-11-13 08:45 huiyou\editor\icons\etc_22.gif
文件 444 2007-11-13 08:45 huiyou\editor\icons\etc_23.gif
文件 1077 2007-11-13 08:45 huiyou\editor\icons\etc_24.gif
文件 1030 2007-11-13 08:45 huiyou\editor\icons\etc_25.gif
文件 1012 2007-11-13 08:45 huiyou\editor\icons\etc_26.gif
文件 978 2007-11-13 08:45 huiyou\editor\icons\etc_27.gif
............此处省略375个文件信息
相关资源
- 西门子ProCenter多媒体呼叫中心解决方
- pppd2.4.7源代码以及拨号脚本
- 酒店预订管理系统源代码
- 机会路由源代码+仿真工具(SCORP)
- 批量替换证件照片的底色(含源代码
- cocos2d-x飞机大战项目
- 分享一个远程控制软件源代码
- BLE-CC254x-1.3.2 蓝牙官方源代码
- 程序源代码行数统计工具
- flutter_gallery源代码
- 插件式GIS应用框架的设计与实现&mda
- x264源代码
- 游戏物理引擎开发&源代码.zip
- 易语言征途登陆器源代码源码
- VC++ RS232 RS485串口通信源代码_
- 烟花效果源代码
- 易语言P2P源代码1源码易语言P2P网络电
- ABB机器人教学仿真源代码_搬运应用
- Google OCR API源代码和神经网络识别OC
- 写字板程序具有完整源代码以及清晰
- 基于K60的线性CCD摄像头的自主循迹平
- [b115]FPGA上运行人脸识别源代码.zip
- 机器学习实战高清pdf,中文版+英文版
- 祖玛游戏源代码快下吧快快
- 外挂集含源代码-很好很强大
- Sniffer原理及开源代码
- 红警外挂 源代码 易语言
- 基于arm cortex M3 的LED控制源代码
- 最大子序列和问题四种算法源代码
- 德州扑克源代码.zip
评论
共有 条评论