123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669 |
- package com.dashitech.callcenter.socket;
- import com.dashitech.businessdata.dao.*;
- import com.dashitech.businessdata.entity.CallLogEntity;
- import com.dashitech.businessdata.entity.CallRecordEntity;
- import com.dashitech.businessdata.entity.DepartmentEntity;
- import com.dashitech.businessdata.entity.HospitalConfig;
- import com.dashitech.callcenter.webSocket.service.PhoneWebSocket;
- import com.dashitech.hsms.dao.IHsmsCallLogDAO;
- import com.dashitech.hsms.dao.IHsmsDepartmentDAO;
- import com.dashitech.hsms.entity.HsmsCallLogEntity;
- import com.dashitech.hsms.entity.HsmsDepartmentEntity;
- import com.dashitech.utils.DateUtil2;
- import com.dashitech.utils.JsonUtil;
- import com.dashitech.utils.PropertiesUtil;
- import com.fasterxml.jackson.databind.ObjectMapper;
- import net.sf.json.JSONObject;
- import org.apache.commons.lang.StringUtils;
- import org.apache.commons.logging.Log;
- import org.apache.commons.logging.LogFactory;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.io.DataInputStream;
- import java.io.DataOutputStream;
- import java.net.Socket;
- import java.text.ParseException;
- import java.text.SimpleDateFormat;
- import java.util.*;
- @Service
- public class HandlerThread {
- private static Log log = LogFactory.getLog(HandlerThread.class);
-
- private static ICallLogDAO callLogDAO;
- private static ICallRecordDAO callRecordDAO;
- private static IHsmsCallLogDAO hsmsCallLogDAO;
- @Autowired
- public void setHsmsCallRecordDAO(IHsmsCallLogDAO hsmsCallLogDAO) {
- HandlerThread.hsmsCallLogDAO = hsmsCallLogDAO;
- }
- @Autowired
- public void setCallRecordDAO(ICallRecordDAO callRecordDAO) {
- HandlerThread.callRecordDAO = callRecordDAO;
- }
- @Autowired
- public void setCallLogDAO(ICallLogDAO callLogDAO) {
- HandlerThread.callLogDAO = callLogDAO;
- }
- private static IDictionaryDAO dictionaryDAO;
- @Autowired
- public void setDictionaryDAO(IDictionaryDAO dictionaryDAO) {
- HandlerThread.dictionaryDAO = dictionaryDAO;
- }
- private static IDepartmentDAO departmentDAO;
- @Autowired
- public void setDepartmentDAO(IDepartmentDAO departmentDAO) {
- HandlerThread.departmentDAO = departmentDAO;
- }
- private static IHospitalConfigDAO hospitalConfigDAO;
- @Autowired
- public void setHospitalConfigDAO(IHospitalConfigDAO hospitalConfigDAO) {
- HandlerThread.hospitalConfigDAO = hospitalConfigDAO;
- }
- private static IHsmsDepartmentDAO hsmsDepartmentDAO;
- @Autowired
- public static void setHsmsDepartmentDAO(IHsmsDepartmentDAO hsmsDepartmentDAO) {
- HandlerThread.hsmsDepartmentDAO = hsmsDepartmentDAO;
- }
- private static String project;
- private static String projectMain;
- private static String recordNginxPath;
- private static String recordRegex;
- private Socket sc;
- private static Map<String,String> phoneMap = new HashMap<>();
- private static Map<String,CallLogEntity> phoneLog = new HashMap<>();
- private String his = "";
- private String serialNo = "";
- public HandlerThread() {
- }
- public HandlerThread(Socket client) {
- sc = client;
- }
- public void run() {
- DataInputStream input = null;
- DataOutputStream output = null;
- try {
-
- input = new DataInputStream(sc.getInputStream());
- output = new DataOutputStream(sc.getOutputStream());
- String reset = "";
-
- while (true) {
-
-
-
- byte[] b = new byte[4];
- reset = "keepalive";
- input.read(b);
- int count = bytes2Int(b);
-
-
- byte[] b1 = new byte[count];
- input.read(b1);
-
- String data = new String(b1);
- System.out.println("data:"+data+"his"+his);
- if(project == null) {
- project = PropertiesUtil.getProperty("project");
- projectMain = PropertiesUtil.getProperty("project.main");
- recordNginxPath = PropertiesUtil.getProperty("db.hjzx.record.nginx");
- recordRegex = PropertiesUtil.getProperty("db.hjzx.record.path.regex");
- }
- if (data != null || !data.equals("")&&data.substring(0,1).equals("{")) {
- log.info("流程1:"+his);
- if (JsonUtil.toJSONObject(data).containsKey("channelStatusList")){
- List llist = JsonUtil.toJSONObject(data).optJSONArray("channelStatusList");
- JSONObject jsonObject = JsonUtil.toJSONObject(llist.get(0).toString());
- sendSocket(jsonObject,his);
- handleCallLog(jsonObject,his);
- reset = "channelstatus";
- }else if(JsonUtil.toJSONObject(data).containsKey("recordList")){
- saveCallLog(data,his);
- reset = "addrec";
- }
- }
- if (data != null && data.length() >= 10){
- log.info("流程2:"+his);
- String dataStr = "";
- if (reset.equals("addrec")){
- dataStr = "{\"cmd\":\""+reset+"\",\"error\":\"0\", \"timestamp\":\""+(System.currentTimeMillis() / 1000)+"\"}";
- }else{
- dataStr = "{\"cmd\":\""+reset+"\", \"timestamp\":\""+(System.currentTimeMillis() / 1000)+"\"}";
- }
- if (data.indexOf("loginreq") >= 0){
-
- if(JsonUtil.toJSONObject(data).containsKey("serialNo")){
- serialNo = JsonUtil.toJSONObject(data).getString("serialNo");
- }else{
- serialNo = JsonUtil.toJSONObject(data).getString("sernelNo");
- }
-
- if(serialNo.equals("21040501017523")){
- his = "1";
- }else{
-
- if("HSMS".equals(projectMain)) {
- his = hsmsCallLogDAO.selectSernelNo("sernelNo",serialNo);
- } else {
- his = callLogDAO.selectSernelNo("sernelNo",serialNo);
- log.info("ITSM his查询:"+his);
- }
- }
- dataStr = "{\"cmd\":\"loginres\", \"error\":\"0\", \"timestamp\":\"" + (System.currentTimeMillis() / 1000) + "\"}";
- }
- System.out.println("redate>>"+dataStr+"his"+his);
- output.write(dataToBytes(dataStr));
- }
- }
- } catch (Exception e) {
- e.printStackTrace();
- System.out.println("服务器EOFException异常");
- } finally {
- if (output != null) {
- try {
- output.close();
- } catch (Exception e) {
- output = null;
- }
- }
- if (input != null) {
- try {
- input.close();
- } catch (Exception e) {
- input = null;
- }
- }
- if (sc != null) {
- try {
- sc.close();
- } catch (Exception e) {
- sc = null;
- }
- }
- }
- }
-
- public byte[] dataToBytes(String dataStr) {
-
- byte[] lengthBytes = int2Bytes(dataStr.length());
-
- byte[] dataBytes = dataStr.getBytes();
-
- byte[] lengthAndDataBytes = new byte[(lengthBytes.length + dataBytes.length)];
-
- lengthAndDataBytes[0] = lengthBytes[0];
- lengthAndDataBytes[1] = lengthBytes[1];
- lengthAndDataBytes[2] = lengthBytes[2];
- lengthAndDataBytes[3] = lengthBytes[3];
-
- for (int index = 4; index < lengthAndDataBytes.length; index++) {
- lengthAndDataBytes[index] = dataBytes[index - 4];
- }
- return lengthAndDataBytes;
- }
-
- public static int bytes2Int(byte[] bytes) {
-
- int int1 = bytes[0] & 0xff;
- int int2 = (bytes[1] & 0xff) << 8;
- int int3 = (bytes[2] & 0xff) << 16;
- int int4 = (bytes[3] & 0xff) << 24;
- return int1 | int2 | int3 | int4;
- }
-
- public static byte[] int2Bytes(int integer) {
- byte[] bytes = new byte[4];
- bytes[3] = (byte) ((byte) integer >> 24);
- bytes[2] = (byte) ((byte) integer >> 16);
- bytes[1] = (byte) ((byte) integer >> 8);
- bytes[0] = (byte) integer;
- return bytes;
- }
-
- public void sendSocket(JSONObject jsonObject,String his) {
- try {
- putPhoneMap("phone_num_port",his);
- if (jsonObject != null && jsonObject.containsKey("calldirection") && jsonObject.get("calldirection").toString().equals("1") || jsonObject.get("calldirection").toString() == "1") {
- if (jsonObject.containsKey("phonestate") && jsonObject.get("phonestate").toString().equals("3") || jsonObject.get("phonestate").toString() == "3") {
- if (jsonObject.containsKey("channel")&&jsonObject.get("channel").toString()!=null) {
- Map rMap = new HashMap();
-
- if (jsonObject.containsKey("dtmfa") && jsonObject.get("dtmfa").toString() != null && !jsonObject.optString("dtmfa").toString().equals("")){
- rMap.put("phone", jsonObject.opt("dtmfa"));
- rMap.put("status", 201);
- rMap.put("callId",jsonObject.optString("uuid"));
- log.info("先保存通话记录2:"+jsonObject.toString());
- CallLogEntity callLogEntity = getCallLog(jsonObject);
- if(StringUtils.isNotEmpty(jsonObject.optString("rstime"))) {
- callLogEntity.setResponseTime(DateUtil2.parseDateTime(jsonObject.optString("rstime")));
- }
- saveItsmCallRecord(callLogEntity,jsonObject.optString("uuid"));
- saveHsmsCallLog(callLogEntity,jsonObject.optString("uuid"));
- }else {
- rMap.put("phone","");
- rMap.put("status", 201);
- }
- ObjectMapper objectMapper = new ObjectMapper();
- String json = objectMapper.writeValueAsString(rMap);
- PhoneWebSocket.sendMessage(phoneMap.get(his+jsonObject.get("channel").toString()),json);
- }
- } else if (jsonObject.containsKey("phonestate") && jsonObject.get("phonestate").toString().equals("4") || jsonObject.get("phonestate").toString() == "4") {
- Map rMap = new HashMap();
- rMap.put("msg","来电话啦!" );
- rMap.put("status", 202);
- ObjectMapper objectMapper = new ObjectMapper();
- String json = objectMapper.writeValueAsString(rMap);
- if (jsonObject.containsKey("channel")&&jsonObject.get("channel").toString()!=null){
- PhoneWebSocket.sendMessage(phoneMap.get(his+jsonObject.get("channel").toString()),json);
- }
- }
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- private void handleCallLog(JSONObject jsonObject,String his){
- if(jsonObject.get("phonestate").toString().equals("4")){
-
- if(!jsonObject.get("dtmfa").toString().equals("") && !jsonObject.get("dtmfa").toString().equals(phoneMap.get(his+jsonObject.get("channel").toString()))){
- phoneLog.put(his+jsonObject.get("channel").toString(),getCallLog(jsonObject));
- }
-
- }else if(jsonObject.get("phonestate").toString().equals("0")){
- CallLogEntity callLog = phoneLog.get(his+jsonObject.get("channel").toString());
- if (callLog!=null){
- if (jsonObject.containsKey("dtmfa")&& StringUtils.isNotEmpty(jsonObject.get("dtmfa").toString())&&!jsonObject.get("dtmfa").toString().equals("")&&!jsonObject.get("dtmfa").toString().equals(" ")){
-
- getDeptByDTMFA(jsonObject.get("dtmfa").toString(), callLog);
- }else {
- callLog.setCallDept("暂无");
- }
- callLog.setHosId(Integer.parseInt(his));
- log.info("先保存通话记录1:"+jsonObject.toString());
-
- if(StringUtils.isNotEmpty(jsonObject.optString("rstime"))) {
- callLog.setResponseTime(DateUtil2.parseDateTime(jsonObject.optString("rstime")));
- }
- saveItsmCallRecord(callLog,jsonObject.optString("uuid"));
- saveHsmsCallLog(callLog,jsonObject.optString("uuid"));
- }
- }else if(jsonObject.get("phonestate").toString().equals("1")){
- phoneLog.put(his+jsonObject.get("channel").toString(),null);
- }else if(jsonObject.get("phonestate").toString().equals("3")){
- phoneLog.put(his+jsonObject.get("channel").toString(),null);
- }
- }
-
- private CallLogEntity getCallLog(JSONObject jsonObject){
- CallLogEntity callLog = new CallLogEntity();
- if (jsonObject.containsKey("channel")){
- callLog.setPhyIDA(jsonObject.get("channel").toString());
- }
- if (jsonObject.containsKey("dtmfa")) {
- callLog.setdTMFA(jsonObject.get("dtmfa").toString());
- getDeptByDTMFA(jsonObject.get("dtmfa").toString(), callLog);
- }
- if (jsonObject.containsKey("dtmfb")){
- callLog.setdTMFB(jsonObject.get("dtmfb").toString());
- }
- callLog.setResponseTime(new Date());
- callLog.setCallState(0);
- callLog.setCallType(1);
- return callLog;
- }
- public void putPhoneMap(String key,String his){
- List<HospitalConfig> hospitalConfigList = hospitalConfigDAO.getHospitalConfigList(key,his);
- if (hospitalConfigList!=null&&hospitalConfigList.size()>0){
- for (HospitalConfig hospitalConfig:hospitalConfigList){
- phoneMap.put(his+hospitalConfig.getValue2(),hospitalConfig.getValue());
- }
- }
- }
-
- public void saveCallLog(String message,String his){
- log.info(message);
-
- if (JsonUtil.toJSONObject(message).containsKey("recordList")) {
- List list = JsonUtil.toJSONObject(message).optJSONArray("recordList");
- if (list!=null&&list.size()>0){
- JSONObject jsonObject = JsonUtil.toJSONObject(list.get(0).toString());
- CallLogEntity callLog = new CallLogEntity();
- if (jsonObject.containsKey("phyIDA")){
- callLog.setPhyIDA(jsonObject.get("phyIDA").toString());
- }
- if (jsonObject.containsKey("DTMFA")){
- callLog.setdTMFA(jsonObject.get("DTMFA").toString());
- getDeptByDTMFA(jsonObject.get("DTMFA").toString(), callLog);
- }
- if (jsonObject.containsKey("DTMFB")){
- callLog.setdTMFB(jsonObject.get("DTMFB").toString());
- }
- if (jsonObject.containsKey("rstime")){
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- try {
- callLog.setResponseTime(sdf.parse(jsonObject.get("rstime").toString()));
- } catch (ParseException e) {
- e.printStackTrace();
- }
- }
- if (jsonObject.containsKey("longtime")){
- callLog.setLongTime(jsonObject.get("longtime").toString());
- }
- if (jsonObject.containsKey("path")){
- callLog.setPath(jsonObject.get("path").toString());
- }
- if(callLog.getPhyIDA() != null){
-
- if(callLog.getdTMFA() != null &&phoneMap!=null&&phoneMap.size()>0&& phoneMap.get(his+callLog.getPhyIDA()).equals(callLog.getdTMFA())){
- callLog.setCallType(0);
-
- }else if(callLog.getdTMFB()!= null &&phoneMap!=null&&phoneMap.size()>0&& phoneMap.get(his+callLog.getPhyIDA()).equals(callLog.getdTMFB())){
- callLog.setCallType(1);
- }else{
- callLog.setCallType(2);
- }
- }
-
- if (jsonObject.get("rstime") != null && StringUtils.isNotEmpty(jsonObject.get("rstime").toString())){
- callLog.setCallState(1);
- }else {
- callLog.setCallState(0);
- }
- callLog.setHosId(Integer.parseInt(his));
-
- saveItsmCallRecord(callLog,null);
- saveHsmsCallLog(callLog,null);
- }
- }
- }
- private void getDeptByDTMFA(String phone,CallLogEntity callLog){
- try {
- if (StringUtils.isNotBlank(phone)){
-
- String deptName = "";
- Long deptId = null;
- if("HSMS".equals(projectMain)) {
- HsmsDepartmentEntity dept = hsmsDepartmentDAO.getDeptByPhone(phone);
- deptName = dept.getDept();
- deptId = dept.getId();
- } else {
- DepartmentEntity dept = departmentDAO.getDeptByPhone(phone);
- deptName = dept.getDept();
- deptId = dept.getId();
- }
- if (StringUtils.isNotBlank(deptName)) {
- callLog.setCallDept(deptName);
- } else {
- callLog.setCallDept("暂无");
- }
- if (deptId != null) {
- callLog.setCallDeptId(deptId);
- }
- } else {
- callLog.setCallDept("暂无");
- }
- }catch (Exception e){
- e.printStackTrace();
- }
- }
-
- private void saveItsmCallRecord(CallLogEntity callLog,String uuid) {
- try {
- if("ITSM".equals(project) || "ALL".equals(project)) {
- CallRecordEntity recordEntity = null;
- log.info("开始保存ITSM通话记录");
- String hosId = callLogDAO.selectSernelNo("sernelNo",serialNo);
-
- if(StringUtils.isNotEmpty(uuid)) {
- Long id = callRecordDAO.selectIdByUuid(uuid);
- if(id == null) {
- recordEntity = new CallRecordEntity();
- recordEntity.setVersion(0);
- recordEntity.setCallAccept(uuid);
- recordEntity.setCallerIdNumber(callLog.getdTMFA());
- recordEntity.setDestinationNumber(callLog.getdTMFB());
- recordEntity.setCreatedTime(callLog.getResponseTime());
- recordEntity.setIsAnswered(callLog.getCallState());
- recordEntity.setCallTime("0");
- recordEntity.setOverTime(new Date());
- recordEntity.setBranch(StringUtils.isEmpty(hosId)? null : Long.valueOf(hosId));
- if(callLog.getCallType() != null && "0".equals(callLog.getCallType().toString())) {
- recordEntity.setCallType("1");
- }else if(callLog.getCallType() != null && "1".equals(callLog.getCallType().toString())) {
- recordEntity.setCallType("2");
- }
- recordEntity.setGateWay(callLog.getPhyIDA());
- callRecordDAO.save(recordEntity);
- log.info("新增ITSM临时通话记录完成");
- }else {
- log.info("已有ITSM临时通话记录,忽略此条uuid:"+uuid);
- }
- }else {
- log.info("开始匹配ITSM临时通话记录");
- recordEntity = callRecordDAO.selectByParams(callLog.getdTMFA(), callLog.getdTMFB(), callLog.getResponseTime());
-
- String newUUID = null;
- if(recordEntity != null) {
- log.info("匹配到ITSM临时通话记录!开始修改");
- newUUID = recordEntity.getCallAccept();
- }else {
- log.info("未匹配ITSM到临时通话记录!开始新增");
- recordEntity = new CallRecordEntity();
- newUUID = UUID.randomUUID().toString();
- }
- recordEntity.setCallAccept(newUUID);
- recordEntity.setVersion(0);
- recordEntity.setCallerIdNumber(callLog.getdTMFA());
- recordEntity.setDestinationNumber(callLog.getdTMFB());
- recordEntity.setCreatedTime(callLog.getResponseTime());
- recordEntity.setCallTime(callLog.getLongTime());
- recordEntity.setRecordingFileName(callLog.getPath());
- recordEntity.setIsAnswered(callLog.getCallState());
-
- if(callLog.getResponseTime() != null && callLog.getLongTime() != null) {
- Date overTime = DateUtil2.addSeconds(callLog.getResponseTime(), Integer.valueOf(callLog.getLongTime()));
- recordEntity.setOverTime(overTime);
- }
-
- recordEntity.setBranch(StringUtils.isEmpty(hosId)? null : Long.valueOf(hosId));
-
- if(callLog.getCallType() != null) {
- if("1".equals(callLog.getCallType().toString())) {
- recordEntity.setCallType("2");
- }else if("2".equals(callLog.getCallType().toString())) {
- recordEntity.setCallType("1");
- }else {
- recordEntity.setCallType("3");
- }
- }
-
- if(callLog.getPath() != null && StringUtils.isNotEmpty(callLog.getPath())) {
- String newPath = callLog.getPath();
- String[] arr = callLog.getPath().split(recordRegex);
- if (arr.length > 1) {
- newPath = recordNginxPath + arr[1];
- }
- recordEntity.setRecordingFileName(newPath);
- }else {
- log.info("ITSM callLog 保存没有路径path");
- return;
- }
- callRecordDAO.save(recordEntity);
- log.info("ITSM附件通话记录保存完成");
- }
- log.info("保存ITSM通话记录完成:"+recordEntity.getCallAccept());
- System.out.println("保存ITSM通话记录完成:"+recordEntity.getCallAccept());
- }
- } catch (Exception ex) {
- ex.printStackTrace();
- }
- }
- private void saveHsmsCallLog(CallLogEntity callLog,String uuid) {
- log.info("开始保存HSMS通话记录");
- log.info(callLog);
- HsmsCallLogEntity hsmsCallLog = null;
- try {
- if("HSMS".equals(project) || "ALL".equals(project)) {
- String hosId = hsmsCallLogDAO.selectSernelNo("sernelNo",serialNo);
- if(StringUtils.isNotEmpty(uuid)) {
- Long id = hsmsCallLogDAO.selectIdByUuid(uuid);
- if(id == null) {
- hsmsCallLog = new HsmsCallLogEntity();
- copyCallLog(callLog,hsmsCallLog);
- hsmsCallLog.setVersion(0);
- hsmsCallLog.setCallAccept(uuid);
- hsmsCallLog.setHosId(StringUtils.isEmpty(hosId)? null : Integer.valueOf(hosId));
- hsmsCallLogDAO.save(hsmsCallLog);
- log.info("新增HSMS临时通话记录完成");
- }else {
- log.info("已有HSMS临时通话记录,忽略此条uuid:"+uuid);
- }
- }else {
- log.info("开始匹配HSMS临时通话记录");
- hsmsCallLog = hsmsCallLogDAO.selectByParams(callLog.getdTMFA(), callLog.getdTMFB(), callLog.getResponseTime());
- if(hsmsCallLog == null) {
- log.info("HSMS未匹配到,开始新增");
- hsmsCallLog = new HsmsCallLogEntity();
- callLog.setVersion(0);
- hsmsCallLog.setCallAccept(UUID.randomUUID().toString());
- }
- copyCallLog(callLog,hsmsCallLog);
- hsmsCallLog.setHosId(StringUtils.isEmpty(hosId)? null : Integer.valueOf(hosId));
- if(callLog.getPath() != null && StringUtils.isNotEmpty(callLog.getPath())) {
- }else {
- log.info("HSMS callLog 保存没有路径path");
- return;
- }
- hsmsCallLogDAO.save(hsmsCallLog);
- log.info("保存HSMS通话记录完成!");
- }
- log.info("保存HSMS通话记录完成:"+hsmsCallLog.getCallAccept());
- }
- } catch (Exception ex) {
- ex.printStackTrace();
- }
- }
- private HsmsCallLogEntity copyCallLog(CallLogEntity callLog,HsmsCallLogEntity hsmsCallLog) {
- hsmsCallLog.setVersion(callLog.getVersion());
- hsmsCallLog.setHosId(callLog.getHosId());
- hsmsCallLog.setCallDept(callLog.getCallDept());
- hsmsCallLog.setCallDeptId(callLog.getCallDeptId());
- hsmsCallLog.setPhyIDA(callLog.getPhyIDA());
- hsmsCallLog.setdTMFA(callLog.getdTMFA());
- hsmsCallLog.setdTMFB(callLog.getdTMFB());
- hsmsCallLog.setResponseTime(callLog.getResponseTime());
- hsmsCallLog.setLongTime(callLog.getLongTime());
- hsmsCallLog.setPath(callLog.getPath());
- hsmsCallLog.setCallType(callLog.getCallType());
- hsmsCallLog.setCallState(callLog.getCallState());
- return hsmsCallLog;
- }
- public static void main(String[] args) {
- System.out.println(System.currentTimeMillis() / 1000);
- }
- }
|