using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_Wo_TempStorage:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Wo_TempStorage { public T_Wo_TempStorage() { } #region Model private int _f_id; private string _f_title; private string _f_contents; private DateTime? _f_createtime; private string _f_createby; private int? _f_type; private string _f_remark; /// /// /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// /// public string F_Title { set { _f_title = value; } get { return _f_title; } } /// /// /// public string F_Contents { set { _f_contents = value; } get { return _f_contents; } } /// /// /// public DateTime? F_CreateTime { set { _f_createtime = value; } get { return _f_createtime; } } /// /// /// public string F_CreateBy { set { _f_createby = value; } get { return _f_createby; } } /// /// 工单类型 /// public int? F_Type { set { _f_type = value; } get { return _f_type; } } /// /// /// public string F_Remark { set { _f_remark = value; } get { return _f_remark; } } #endregion Model } }