You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.6 KiB
C#
65 lines
1.6 KiB
C#
using System;
|
|
using System.Data;
|
|
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class UserMessageSettingEntity
|
|
{
|
|
#region 私有成员
|
|
private string _gid;//主键唯一值
|
|
private string _user_id;//用户GID
|
|
private DateTime _create_time;//创建时间
|
|
private DateTime _modified_time;//最后一次更新操作时间
|
|
private int _message_interval;//小弹出间隔时间
|
|
#endregion
|
|
|
|
public UserMessageSettingEntity()
|
|
{
|
|
}
|
|
|
|
#region 读写属性
|
|
/// <summary>
|
|
/// 主键唯一值
|
|
/// </summary>
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 用户GID
|
|
/// </summary>
|
|
public string UserID
|
|
{
|
|
get { return _user_id; }
|
|
set { _user_id = value; }
|
|
}
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CreateTime
|
|
{
|
|
get { return _create_time; }
|
|
set { _create_time = value; }
|
|
}
|
|
/// <summary>
|
|
/// 最后一次更新操作时间
|
|
/// </summary>
|
|
public DateTime ModifiedTime
|
|
{
|
|
get { return _modified_time; }
|
|
set { _modified_time = value; }
|
|
}
|
|
/// <summary>
|
|
/// 小弹出间隔时间
|
|
/// </summary>
|
|
public int MessageInterVal
|
|
{
|
|
get { return _message_interval; }
|
|
set { _message_interval = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|