IM12345_Api demo - 代码源于 商丘市12345项目

T_Chat_IM_ReplyClass.cs 2.2KB

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. /// 快速回复 分类 表
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_Chat_IM_ReplyClass
  13. {
  14. public T_Chat_IM_ReplyClass()
  15. { }
  16. #region Model
  17. private int _f_id;
  18. private string _f_name;
  19. private int? _f_parentid;
  20. private string _f_createby;
  21. private DateTime? _f_createtime;
  22. private int? _f_isdelete;
  23. private string _f_deleteby;
  24. private DateTime? _f_deletetime;
  25. /// <summary>
  26. /// 分类id
  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_Name
  37. {
  38. set { _f_name = value; }
  39. get { return _f_name; }
  40. }
  41. /// <summary>
  42. /// 父id
  43. /// </summary>
  44. public int? F_ParentId
  45. {
  46. set { _f_parentid = value; }
  47. get { return _f_parentid; }
  48. }
  49. /// <summary>
  50. /// 添加人
  51. /// </summary>
  52. public string F_CreateBy
  53. {
  54. set { _f_createby = value; }
  55. get { return _f_createby; }
  56. }
  57. /// <summary>
  58. /// 添加时间
  59. /// </summary>
  60. public DateTime? F_CreateTime
  61. {
  62. set { _f_createtime = value; }
  63. get { return _f_createtime; }
  64. }
  65. /// <summary>
  66. ///
  67. /// </summary>
  68. public int? F_IsDelete
  69. {
  70. set { _f_isdelete = value; }
  71. get { return _f_isdelete; }
  72. }
  73. /// <summary>
  74. ///
  75. /// </summary>
  76. public string F_DeleteBy
  77. {
  78. set { _f_deleteby = value; }
  79. get { return _f_deleteby; }
  80. }
  81. /// <summary>
  82. ///
  83. /// </summary>
  84. public DateTime? F_DeleteTime
  85. {
  86. set { _f_deletetime = value; }
  87. get { return _f_deletetime; }
  88. }
  89. #endregion Model
  90. }
  91. }