using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CallCenterApi.Model { [Serializable] public partial class T_Cus_Customerrecords { public T_Cus_Customerrecords() { } #region Model private int _f_id; private string _f_cuscode; private string _f_cuscodeuuid; private DateTime? _f_addtime; private int? _f_type; /// /// id,自增 /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 工单流水号 /// public string F_Cuscode { set { _f_cuscode = value; } get { return _f_cuscode; } } /// /// 政府服务网工单流水号 /// public string F_Cuscodeuuid { set { _f_cuscodeuuid = value; } get { return _f_cuscodeuuid; } } /// /// 添加时间 /// public DateTime? F_AddTime { set { _f_addtime = value; } get { return _f_addtime; } } public int ? F_Type { set { _f_type = value; } get { return _f_type; } } #endregion Model } }