using System; using System.Collections.Generic; using System.Text; namespace System.Model { [Serializable] public partial class T_Sys_SeatGroup { /// /// /// public int F_ZXZID { get; set; } /// /// 坐席组编号 /// public string F_ZXZCode { get; set; } /// /// 坐席组名称 /// public string F_ZXZName { get; set; } /// /// ivr按键 /// public int? F_IVRKey { get; set; } /// /// 外呼本地前缀 /// public string F_WHBDKey { get; set; } /// /// 外呼外地前缀 /// public string F_WHWDKey { get; set; } /// /// 坐席所属地 /// public string F_ZXAtt { get; set; } /// /// 描述说明 /// public string F_Des { get; set; } /// /// 状态 /// public int? F_State { get; set; } /// /// 添加时间 /// public DateTime? F_CreateOn { get; set; } /// /// 添加工号 /// public string F_CreateBy { get; set; } /// /// 最后一次修改时间 /// public DateTime? F_LastModifyOn { get; set; } /// /// 最后一次修改工号 /// public string F_LastModifyBy { get; set; } /// /// 删除时间 /// public DateTime? F_DeleteOn { get; set; } /// /// 删除工号 /// public string F_DeleteBy { get; set; } } }