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

T_Chat_IM_Configure.cs 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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_Configure
  13. {
  14. public T_Chat_IM_Configure()
  15. { }
  16. #region Model
  17. private int _f_id;
  18. private string _f_title;
  19. private string _f_countent_one;
  20. private string _f_countent_two;
  21. private string _f_countent_three;
  22. private int? _f_time_one;
  23. private int? _f_time_two;
  24. private int? _f_time_three;
  25. private int? _f_checked;
  26. private int? _f_state;
  27. private int? _f_isdelete;
  28. /// <summary>
  29. ///
  30. /// </summary>
  31. public int F_Id
  32. {
  33. set { _f_id = value; }
  34. get { return _f_id; }
  35. }
  36. /// <summary>
  37. /// 标题
  38. /// </summary>
  39. public string F_Title
  40. {
  41. set { _f_title = value; }
  42. get { return _f_title; }
  43. }
  44. /// <summary>
  45. /// 内容1
  46. /// </summary>
  47. public string F_Countent_One
  48. {
  49. set { _f_countent_one = value; }
  50. get { return _f_countent_one; }
  51. }
  52. /// <summary>
  53. /// 内容2
  54. /// </summary>
  55. public string F_Countent_Two
  56. {
  57. set { _f_countent_two = value; }
  58. get { return _f_countent_two; }
  59. }
  60. /// <summary>
  61. /// 内容3
  62. /// </summary>
  63. public string F_Countent_Three
  64. {
  65. set { _f_countent_three = value; }
  66. get { return _f_countent_three; }
  67. }
  68. /// <summary>
  69. /// 时间1
  70. /// </summary>
  71. public int? F_Time_One
  72. {
  73. set { _f_time_one = value; }
  74. get { return _f_time_one; }
  75. }
  76. /// <summary>
  77. /// 时间2
  78. /// </summary>
  79. public int? F_Time_Two
  80. {
  81. set { _f_time_two = value; }
  82. get { return _f_time_two; }
  83. }
  84. /// <summary>
  85. /// 时间3
  86. /// </summary>
  87. public int? F_Time_Three
  88. {
  89. set { _f_time_three = value; }
  90. get { return _f_time_three; }
  91. }
  92. /// <summary>
  93. /// 是否选中(0未选中,1选中)
  94. /// </summary>
  95. public int? F_Checked
  96. {
  97. set { _f_checked = value; }
  98. get { return _f_checked; }
  99. }
  100. /// <summary>
  101. /// 状态(0停用,1开启)
  102. /// </summary>
  103. public int? F_State
  104. {
  105. set { _f_state = value; }
  106. get { return _f_state; }
  107. }
  108. /// <summary>
  109. ///
  110. /// </summary>
  111. public int? F_IsDelete
  112. {
  113. set { _f_isdelete = value; }
  114. get { return _f_isdelete; }
  115. }
  116. #endregion Model
  117. }
  118. }