XiMengJianYu/.svn/pristine/03/033b86b29101ad94a5b76c8dade0d4e1ecd36cfa.svn-base

37 lines
654 B
Plaintext
Raw Permalink Normal View History

2023-04-17 17:58:44 +08:00
package com.example.administrator.ximengjianyu.beans;
/**
* 呼叫中心话机状态
* @author CuiBaoCheng
*
*/
public class WebCTIStatus {
/** 已删除 */
public static String REMOVED = "-2";
/** 未激活 */
public static String DEACTIVED = "-1";
/** 空闲 */
public static String IDLE = "0";
/** 使用 */
public static String INUSE = "1";
/** 忙 */
public static String BUSY = "2";
/** 未知 */
public static String UNAVAILABLE = "4";
/** 振铃 */
public static String RINGING = "8";
/** 振铃 */
public static String INUSE_RINGING = "9";
private WebCTIStatus() {}
}