using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model {/// /// T_Bus_Supervision:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Bus_Supervision { public T_Bus_Supervision() { } #region Model private int _f_id; private string _f_code; private string _f_usercode; private string _f_serialnum; private string _f_workorderid; private string _f_title; private string _f_level; private DateTime? _f_limittime; private string _f_opinion; private DateTime? _f_createtime; private string _f_dealuser; private string _f_result; private DateTime? _f_dealtime; private int? _f_type; private int? _f_isdelete; private string _f_situation; private string _f_file; private string _f_content; /// /// /// public int F_ID { set { _f_id = value; } get { return _f_id; } } /// /// 编号 /// public string F_Code { set { _f_code = value; } get { return _f_code; } } /// /// /// public string F_UserCode { set { _f_usercode = value; } get { return _f_usercode; } } /// /// /// public string F_SERIALNUM { set { _f_serialnum = value; } get { return _f_serialnum; } } /// /// 工单编号 /// public string F_WorkOrderId { set { _f_workorderid = value; } get { return _f_workorderid; } } /// /// 标题 /// public string F_Title { set { _f_title = value; } get { return _f_title; } } /// /// 等级 /// public string F_Level { set { _f_level = value; } get { return _f_level; } } /// /// 时限 /// public DateTime? F_LimitTime { set { _f_limittime = value; } get { return _f_limittime; } } /// /// 意见 /// public string F_Opinion { set { _f_opinion = value; } get { return _f_opinion; } } /// /// 创建时间 /// public DateTime? F_CreateTime { set { _f_createtime = value; } get { return _f_createtime; } } /// /// /// public string F_DealUser { set { _f_dealuser = value; } get { return _f_dealuser; } } /// /// 反馈意见 /// public string F_Result { set { _f_result = value; } get { return _f_result; } } /// /// /// public DateTime? F_DealTime { set { _f_dealtime = value; } get { return _f_dealtime; } } /// /// /// public int? F_Type { set { _f_type = value; } get { return _f_type; } } /// /// /// public int? F_IsDelete { set { _f_isdelete = value; } get { return _f_isdelete; } } /// /// 涉嫌违规情形 /// public string F_Situation { set { _f_situation = value; } get { return _f_situation; } } /// /// 附件 /// public string F_File { set { _f_file = value; } get { return _f_file; } } /// /// 内容 /// public string F_Content { set { _f_content = value; } get { return _f_content; } } /// /// 是否回复 /// public int F_State { set; get; } #endregion Model } }