Sin descripción

T_Wo_AnnotationTab.cs 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. /// <summary>
  9. /// T_Wo_AnnotationTab:实体类(属性说明自动提取数据库字段的描述信息)
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_Wo_AnnotationTab
  13. {
  14. public T_Wo_AnnotationTab()
  15. { }
  16. #region Model
  17. private int _f_id;
  18. private string _f_contents;
  19. private string _f_annotationperson;
  20. private DateTime? _f_createtime;
  21. private string _f_modifyby;
  22. private DateTime? _f_modifytime;
  23. private int? _f_isdelete = 0;
  24. private string _f_wocode;
  25. /// <summary>
  26. ///
  27. /// </summary>
  28. public int F_Id
  29. {
  30. set { _f_id = value; }
  31. get { return _f_id; }
  32. }
  33. /// <summary>
  34. /// 注解内容
  35. /// </summary>
  36. public string F_Contents
  37. {
  38. set { _f_contents = value; }
  39. get { return _f_contents; }
  40. }
  41. /// <summary>
  42. /// 注解人
  43. /// </summary>
  44. public string F_AnnotationPerson
  45. {
  46. set { _f_annotationperson = value; }
  47. get { return _f_annotationperson; }
  48. }
  49. /// <summary>
  50. /// 注解时间
  51. /// </summary>
  52. public DateTime? F_CreateTime
  53. {
  54. set { _f_createtime = value; }
  55. get { return _f_createtime; }
  56. }
  57. /// <summary>
  58. /// 修改人
  59. /// </summary>
  60. public string F_ModifyBy
  61. {
  62. set { _f_modifyby = value; }
  63. get { return _f_modifyby; }
  64. }
  65. /// <summary>
  66. /// 修改时间
  67. /// </summary>
  68. public DateTime? F_ModifyTime
  69. {
  70. set { _f_modifytime = value; }
  71. get { return _f_modifytime; }
  72. }
  73. /// <summary>
  74. /// 是否删除
  75. /// </summary>
  76. public int? F_IsDelete
  77. {
  78. set { _f_isdelete = value; }
  79. get { return _f_isdelete; }
  80. }
  81. /// <summary>
  82. /// 工单id
  83. /// </summary>
  84. public string F_Wocode
  85. {
  86. set { _f_wocode = value; }
  87. get { return _f_wocode; }
  88. }
  89. #endregion Model
  90. }
  91. }