using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
public class SeatGroupInput
{
///
///
///
public int ZXZID
{
set;
get;
} = 0;
///
/// 坐席组编号
///
public string ZXZCode
{
set;
get;
}
///
/// 坐席组名称
///
public string ZXZName
{
set;
get;
}
///
/// ivr按键
///
public int? IVRKey
{
set;
get;
}
///
/// 外呼本地前缀
///
public string WHBDKey
{
set;
get;
}
///
/// 外呼外地前缀
///
public string WHWDKey
{
set;
get;
}
///
/// 坐席所属地
///
public string ZXAtt
{
set;
get;
}
///
/// 描述说明
///
public string Des
{
set;
get;
}
}
}