Brak opisu

T_Wo_TempStorage.cs 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_TempStorage:实体类(属性说明自动提取数据库字段的描述信息)
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_Wo_TempStorage
  13. {
  14. public T_Wo_TempStorage()
  15. { }
  16. #region Model
  17. private int _f_id;
  18. private string _f_title;
  19. private string _f_contents;
  20. private DateTime? _f_createtime;
  21. private string _f_createby;
  22. private int? _f_type;
  23. private string _f_remark;
  24. /// <summary>
  25. ///
  26. /// </summary>
  27. public int F_Id
  28. {
  29. set { _f_id = value; }
  30. get { return _f_id; }
  31. }
  32. /// <summary>
  33. ///
  34. /// </summary>
  35. public string F_Title
  36. {
  37. set { _f_title = value; }
  38. get { return _f_title; }
  39. }
  40. /// <summary>
  41. ///
  42. /// </summary>
  43. public string F_Contents
  44. {
  45. set { _f_contents = value; }
  46. get { return _f_contents; }
  47. }
  48. /// <summary>
  49. ///
  50. /// </summary>
  51. public DateTime? F_CreateTime
  52. {
  53. set { _f_createtime = value; }
  54. get { return _f_createtime; }
  55. }
  56. /// <summary>
  57. ///
  58. /// </summary>
  59. public string F_CreateBy
  60. {
  61. set { _f_createby = value; }
  62. get { return _f_createby; }
  63. }
  64. /// <summary>
  65. /// 工单类型
  66. /// </summary>
  67. public int? F_Type
  68. {
  69. set { _f_type = value; }
  70. get { return _f_type; }
  71. }
  72. /// <summary>
  73. ///
  74. /// </summary>
  75. public string F_Remark
  76. {
  77. set { _f_remark = value; }
  78. get { return _f_remark; }
  79. }
  80. #endregion Model
  81. }
  82. }