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

T_Chat_IM_ReplyList.cs 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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_ReplyList
  13. {
  14. public T_Chat_IM_ReplyList()
  15. { }
  16. #region Model
  17. private int _f_id;
  18. private int? _f_classid;
  19. private string _f_replycontent;
  20. private int? _f_usenum = 0;
  21. private int? _f_collectionnum = 0;
  22. private string _f_createby;
  23. private DateTime? _f_createtime;
  24. private int? _f_isdelete;
  25. private string _f_deleteby;
  26. private DateTime? _f_deletetime;
  27. /// <summary>
  28. /// id
  29. /// </summary>
  30. public int F_Id
  31. {
  32. set { _f_id = value; }
  33. get { return _f_id; }
  34. }
  35. /// <summary>
  36. /// 分类
  37. /// </summary>
  38. public int? F_ClassId
  39. {
  40. set { _f_classid = value; }
  41. get { return _f_classid; }
  42. }
  43. /// <summary>
  44. /// 回复内容
  45. /// </summary>
  46. public string F_ReplyContent
  47. {
  48. set { _f_replycontent = value; }
  49. get { return _f_replycontent; }
  50. }
  51. /// <summary>
  52. /// 使用数
  53. /// </summary>
  54. public int? F_UseNum
  55. {
  56. set { _f_usenum = value; }
  57. get { return _f_usenum; }
  58. }
  59. /// <summary>
  60. /// 收藏数
  61. /// </summary>
  62. public int? F_CollectionNum
  63. {
  64. set { _f_collectionnum = value; }
  65. get { return _f_collectionnum; }
  66. }
  67. /// <summary>
  68. /// 添加人
  69. /// </summary>
  70. public string F_CreateBy
  71. {
  72. set { _f_createby = value; }
  73. get { return _f_createby; }
  74. }
  75. /// <summary>
  76. /// 添加时间
  77. /// </summary>
  78. public DateTime? F_CreateTime
  79. {
  80. set { _f_createtime = value; }
  81. get { return _f_createtime; }
  82. }
  83. /// <summary>
  84. ///
  85. /// </summary>
  86. public int? F_IsDelete
  87. {
  88. set { _f_isdelete = value; }
  89. get { return _f_isdelete; }
  90. }
  91. /// <summary>
  92. ///
  93. /// </summary>
  94. public string F_DeleteBy
  95. {
  96. set { _f_deleteby = value; }
  97. get { return _f_deleteby; }
  98. }
  99. /// <summary>
  100. ///
  101. /// </summary>
  102. public DateTime? F_DeleteTime
  103. {
  104. set { _f_deletetime = value; }
  105. get { return _f_deletetime; }
  106. }
  107. #endregion Model
  108. }
  109. }