using System; namespace CallCenterApi.Model { /// /// 反馈表 /// [Serializable] public partial class T_Bus_Feedback_Next { public T_Bus_Feedback_Next() { } #region Model private int _f_id; private int? _f_assignedid; private string _f_workorderid; private string _f_result; private DateTime? _f_createtime; private string _f_createuser; private int? _f_createdeptid; private int? _f_isfeedend; private string _f_file; private int? _f_type; private int? _f_state; private int? _f_isaudit; private string _f_audituser; private DateTime? _f_audittime; private int? _f_isdelete; private string _f_deleteuser; private DateTime? _f_deletetime; private string _f_dealuser; private string _f_auditreason; private int? _f_isproresult = 0; private string _f_prosituation; private int? _f_isprotect = 0; private string _f_dealusercontact; private DateTime? _f_connecttime; private string _f_connectmode; private string _f_replycontent; private int? _f_issatisfied = 0; private string _f_duties; private string _f_situation; private string _f_feedbackreason; public string F_FeedbackReason { set { _f_feedbackreason = value; } get { return _f_feedbackreason; } } /// /// /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 交办信息id /// public int? F_AssignedId { set { _f_assignedid = value; } get { return _f_assignedid; } } /// /// 登记流水号 /// public string F_WorkOrderId { set { _f_workorderid = value; } get { return _f_workorderid; } } /// /// 处理结果(反馈内容) /// public string F_Result { set { _f_result = value; } get { return _f_result; } } /// /// 处理完成时间(反馈时间) /// public DateTime? F_CreateTime { set { _f_createtime = value; } get { return _f_createtime; } } /// /// 反馈人 /// public string F_CreateUser { set { _f_createuser = value; } get { return _f_createuser; } } /// /// 反馈部门id /// public int? F_CreateDeptId { set { _f_createdeptid = value; } get { return _f_createdeptid; } } /// /// 是否反馈完成0否1是 /// public int? F_IsFeedEnd { set { _f_isfeedend = value; } get { return _f_isfeedend; } } /// /// 附件id,多个用英文逗号,隔开 /// public string F_File { set { _f_file = value; } get { return _f_file; } } /// /// 1:主办 2:协办 3:退回 /// public int? F_Type { set { _f_type = value; } get { return _f_type; } } /// /// 0:草稿 1:正式 /// public int? F_State { set { _f_state = value; } get { return _f_state; } } /// /// 0:未处理 1:同意 2:拒绝 /// public int? F_IsAudit { set { _f_isaudit = value; } get { return _f_isaudit; } } /// /// 审批人 /// public string F_AuditUser { set { _f_audituser = value; } get { return _f_audituser; } } /// /// 审批人职务 /// public string F_AuditPost { set; get; } /// /// 审核领导联系方式 /// public string F_AuditContact { set; get; } /// /// 审批时间 /// public DateTime? F_AuditTime { set { _f_audittime = value; } get { return _f_audittime; } } /// /// /// public int? F_IsDelete { set { _f_isdelete = value; } get { return _f_isdelete; } } /// /// /// public string F_DeleteUser { set { _f_deleteuser = value; } get { return _f_deleteuser; } } /// /// /// public DateTime? F_DeleteTime { set { _f_deletetime = value; } get { return _f_deletetime; } } /// /// 承办人姓名 /// public string F_DealUser { set { _f_dealuser = value; } get { return _f_dealuser; } } /// /// 审批意见 /// public string F_AuditReason { set { _f_auditreason = value; } get { return _f_auditreason; } } /// /// 是否有处理结果:0默认,1是,2否 /// public int? F_IsProResult { set { _f_isproresult = value; } get { return _f_isproresult; } } /// /// 处理情况/方案/进程 /// public string F_ProSituation { set { _f_prosituation = value; } get { return _f_prosituation; } } /// /// 是否保密(0:否1:是) /// public int? F_IsProtect { set { _f_isprotect = value; } get { return _f_isprotect; } } /// /// 承办人联系方式 /// public string F_DealUserContact { set { _f_dealusercontact = value; } get { return _f_dealusercontact; } } /// /// 沟通时间 /// public DateTime? F_ConnectTime { set { _f_connecttime = value; } get { return _f_connecttime; } } /// /// 沟通方式 /// public string F_ConnectMode { set { _f_connectmode = value; } get { return _f_connectmode; } } /// /// 答复内容 /// public string F_ReplyContent { set { _f_replycontent = value; } get { return _f_replycontent; } } /// /// 是否满意:0未评价,1满意,2基本满意,3不满意 /// public int? F_IsSatisfied { set { _f_issatisfied = value; } get { return _f_issatisfied; } } /// /// 承办人职务 /// public string F_Duties { set { _f_duties = value; } get { return _f_duties; } } /// /// 处理情况 /// public string F_Situation { set { _f_situation = value; } get { return _f_situation; } } #endregion Model } }