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