/*******************************************************************************
* iNethinkCMS - 网站内容管理系统
* Copyright (C) 2012-2013 inethink.com
*
* @author jackyang <69991000@qq.com>
* @website http://cms.inethink.com
* @version 1.3.6.0 (2013-08-14)
*
* This is licensed under the GNU LGPL, version 3.0 or later.
* For details, see: http://www.gnu.org/licenses/gpl-3.0.html
*******************************************************************************/
using System;
namespace iNethinkCMS.Model
{
///
/// 留言信息
///
[Serializable]
public partial class Model_iNethinkCMS_Plugs_Guestbook
{
public Model_iNethinkCMS_Plugs_Guestbook()
{ }
#region Model
private int _id;
private string _guestbookusername;
private string _guestbookuserip;
private string _guestbookcompany;
private string _guestbookaddress;
private string _guestbooktel;
private string _guestbookemail;
private string _guestbookqq;
private string _guestbookcontent;
private DateTime? _guestbooktime;
private string _replyusername;
private string _replycontent;
private DateTime? _replytime;
private int? _display;
private int? _ordernum;
///
///
///
public int ID
{
set { _id = value; }
get { return _id; }
}
///
/// 留言人姓名
///
public string GuestbookUserName
{
set { _guestbookusername = value; }
get { return _guestbookusername; }
}
///
/// 留言人IP地址
///
public string GuestbookUserIP
{
set { _guestbookuserip = value; }
get { return _guestbookuserip; }
}
///
/// 留言人公司
///
public string GuestbookCompany
{
set { _guestbookcompany = value; }
get { return _guestbookcompany; }
}
///
/// 留言人地址
///
public string GuestbookAddress
{
set { _guestbookaddress = value; }
get { return _guestbookaddress; }
}
///
/// 留言人电话
///
public string GuestbookTel
{
set { _guestbooktel = value; }
get { return _guestbooktel; }
}
///
/// 留言人电子邮箱
///
public string GuestbookEmail
{
set { _guestbookemail = value; }
get { return _guestbookemail; }
}
///
/// 留言人QQ
///
public string GuestbookQQ
{
set { _guestbookqq = value; }
get { return _guestbookqq; }
}
///
/// 留言内容
///
public string GuestbookContent
{
set { _guestbookcontent = value; }
get { return _guestbookcontent; }
}
///
/// 留言时间
///
public DateTime? GuestbookTime
{
set { _guestbooktime = value; }
get { return _guestbooktime; }
}
///
/// 留言回复人
///
public string ReplyUserName
{
set { _replyusername = value; }
get { return _replyusername; }
}
///
/// 留言回复内容
///
public string ReplyContent
{
set { _replycontent = value; }
get { return _replycontent; }
}
///
/// 留言回复时间
///
public DateTime? ReplyTime
{
set { _replytime = value; }
get { return _replytime; }
}
///
/// 留言是否审核通过[0,未审核;1,审核通过]
///
public int? Display
{
set { _display = value; }
get { return _display; }
}
///
/// 留言排序权重
///
public int? OrderNum
{
set { _ordernum = value; }
get { return _ordernum; }
}
#endregion Model
}
}