Model_iNethinkCMS_Guestbook.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*******************************************************************************
  2. * iNethinkCMS - 网站内容管理系统
  3. * Copyright (C) 2012-2013 inethink.com
  4. *
  5. * @author jackyang <69991000@qq.com>
  6. * @website http://cms.inethink.com
  7. * @version 1.3.6.0 (2013-08-14)
  8. *
  9. * This is licensed under the GNU LGPL, version 3.0 or later.
  10. * For details, see: http://www.gnu.org/licenses/gpl-3.0.html
  11. *******************************************************************************/
  12. using System;
  13. namespace iNethinkCMS.Model
  14. {
  15. /// <summary>
  16. /// 留言信息
  17. /// </summary>
  18. [Serializable]
  19. public partial class Model_iNethinkCMS_Plugs_Guestbook
  20. {
  21. public Model_iNethinkCMS_Plugs_Guestbook()
  22. { }
  23. #region Model
  24. private int _id;
  25. private string _guestbookusername;
  26. private string _guestbookuserip;
  27. private string _guestbookcompany;
  28. private string _guestbookaddress;
  29. private string _guestbooktel;
  30. private string _guestbookemail;
  31. private string _guestbookqq;
  32. private string _guestbookcontent;
  33. private DateTime? _guestbooktime;
  34. private string _replyusername;
  35. private string _replycontent;
  36. private DateTime? _replytime;
  37. private int? _display;
  38. private int? _ordernum;
  39. /// <summary>
  40. ///
  41. /// </summary>
  42. public int ID
  43. {
  44. set { _id = value; }
  45. get { return _id; }
  46. }
  47. /// <summary>
  48. /// 留言人姓名
  49. /// </summary>
  50. public string GuestbookUserName
  51. {
  52. set { _guestbookusername = value; }
  53. get { return _guestbookusername; }
  54. }
  55. /// <summary>
  56. /// 留言人IP地址
  57. /// </summary>
  58. public string GuestbookUserIP
  59. {
  60. set { _guestbookuserip = value; }
  61. get { return _guestbookuserip; }
  62. }
  63. /// <summary>
  64. /// 留言人公司
  65. /// </summary>
  66. public string GuestbookCompany
  67. {
  68. set { _guestbookcompany = value; }
  69. get { return _guestbookcompany; }
  70. }
  71. /// <summary>
  72. /// 留言人地址
  73. /// </summary>
  74. public string GuestbookAddress
  75. {
  76. set { _guestbookaddress = value; }
  77. get { return _guestbookaddress; }
  78. }
  79. /// <summary>
  80. /// 留言人电话
  81. /// </summary>
  82. public string GuestbookTel
  83. {
  84. set { _guestbooktel = value; }
  85. get { return _guestbooktel; }
  86. }
  87. /// <summary>
  88. /// 留言人电子邮箱
  89. /// </summary>
  90. public string GuestbookEmail
  91. {
  92. set { _guestbookemail = value; }
  93. get { return _guestbookemail; }
  94. }
  95. /// <summary>
  96. /// 留言人QQ
  97. /// </summary>
  98. public string GuestbookQQ
  99. {
  100. set { _guestbookqq = value; }
  101. get { return _guestbookqq; }
  102. }
  103. /// <summary>
  104. /// 留言内容
  105. /// </summary>
  106. public string GuestbookContent
  107. {
  108. set { _guestbookcontent = value; }
  109. get { return _guestbookcontent; }
  110. }
  111. /// <summary>
  112. /// 留言时间
  113. /// </summary>
  114. public DateTime? GuestbookTime
  115. {
  116. set { _guestbooktime = value; }
  117. get { return _guestbooktime; }
  118. }
  119. /// <summary>
  120. /// 留言回复人
  121. /// </summary>
  122. public string ReplyUserName
  123. {
  124. set { _replyusername = value; }
  125. get { return _replyusername; }
  126. }
  127. /// <summary>
  128. /// 留言回复内容
  129. /// </summary>
  130. public string ReplyContent
  131. {
  132. set { _replycontent = value; }
  133. get { return _replycontent; }
  134. }
  135. /// <summary>
  136. /// 留言回复时间
  137. /// </summary>
  138. public DateTime? ReplyTime
  139. {
  140. set { _replytime = value; }
  141. get { return _replytime; }
  142. }
  143. /// <summary>
  144. /// 留言是否审核通过[0,未审核;1,审核通过]
  145. /// </summary>
  146. public int? Display
  147. {
  148. set { _display = value; }
  149. get { return _display; }
  150. }
  151. /// <summary>
  152. /// 留言排序权重
  153. /// </summary>
  154. public int? OrderNum
  155. {
  156. set { _ordernum = value; }
  157. get { return _ordernum; }
  158. }
  159. #endregion Model
  160. }
  161. }