using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { [Serializable] public partial class T_Sys_History { public T_Sys_History() { } #region Model private int _f_id; private int? _f_userid; private string _f_name; private string _f_count; private DateTime? _f_creattime; /// /// /// public int F_ID { set { _f_id = value; } get { return _f_id; } } /// /// /// public int? F_UserID { set { _f_userid = value; } get { return _f_userid; } } /// /// /// public string F_Name { set { _f_name = value; } get { return _f_name; } } /// /// /// public string F_Count { set { _f_count = value; } get { return _f_count; } } /// /// /// public DateTime? F_CreatTime { set { _f_creattime = value; } get { return _f_creattime; } } #endregion Model } }