using System; using System.Collections.Generic; using System.Text; namespace System.Model { [Serializable] public partial class T_Sys_CallDutyNumber { /// /// 自增id /// public int F_ID { get; set; } /// /// 值班电话 /// public string F_DutyNumber { get; set; } /// /// 坐席组ID /// public int? F_Groupid { get; set; } /// /// 最后呼入时间 /// public string F_CallinTime { get; set; } /// /// 值班时间 /// public string F_ZBTime { get; set; } /// /// 备注 /// public string F_Remark { 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; } } }