using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_Wo_AnnotationTab:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Wo_AnnotationTab { public T_Wo_AnnotationTab() { } #region Model private int _f_id; private string _f_contents; private string _f_annotationperson; private DateTime? _f_createtime; private string _f_modifyby; private DateTime? _f_modifytime; private int? _f_isdelete = 0; private string _f_wocode; /// /// /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 注解内容 /// public string F_Contents { set { _f_contents = value; } get { return _f_contents; } } /// /// 注解人 /// public string F_AnnotationPerson { set { _f_annotationperson = value; } get { return _f_annotationperson; } } /// /// 注解时间 /// public DateTime? F_CreateTime { set { _f_createtime = value; } get { return _f_createtime; } } /// /// 修改人 /// public string F_ModifyBy { set { _f_modifyby = value; } get { return _f_modifyby; } } /// /// 修改时间 /// public DateTime? F_ModifyTime { set { _f_modifytime = value; } get { return _f_modifytime; } } /// /// 是否删除 /// public int? F_IsDelete { set { _f_isdelete = value; } get { return _f_isdelete; } } /// /// 工单id /// public string F_Wocode { set { _f_wocode = value; } get { return _f_wocode; } } #endregion Model } }