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.
DS7/DSWeb/Models/SysAnnounceSetEntity.cs

93 lines
2.6 KiB
C#

using System;
using System.Data;
namespace DSWeb.Models
{
public class SysAnnounceSetEntity
{
#region 私有成员
private string _gid;//主键唯一值
private string _CLIENTGID;//客户GID
private string _ANNOUNCEGID;//公告GID
private DateTime _create_time;//创建时间
private DateTime _modified_time;//最后一次更新操作时间
private int _interval;//小弹出间隔时间
private Boolean _ISDELETE;// 是否删除
private DateTime _DELETETIME;// 删除时间
private string _DELETEUSER;// 删除操作人
private Boolean _ISCLOSE;// 是否删除
#endregion
public SysAnnounceSetEntity()
{
}
#region 读写属性
/// <summary>
/// 主键唯一值
/// </summary>
public string GID
{
get { return _gid; }
set { _gid = value; }
}
/// <summary>
/// 客户GID
/// </summary>
public string CLIENTGID
{
get { return _CLIENTGID; }
set { _CLIENTGID = value; }
}
/// <summary>
/// 公告GID
/// </summary>
public string ANNOUNCEGID
{
get { return _ANNOUNCEGID; }
set { _ANNOUNCEGID = 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 InterVal
{
get { return _interval; }
set { _interval = value; }
}
/// <summary>
///
/// </summary>
public Boolean ISDELETE { get { return _ISDELETE; } set { _ISDELETE = value; } }
/// <summary>
///
/// </summary>
public DateTime DELETETIME { get { return _DELETETIME; } set { _DELETETIME = value; } }
/// <summary>
/// 删除操作人
/// </summary>
public string DELETEUSER { get { return _DELETEUSER; } set { _DELETEUSER = value; } }
/// <summary>
/// 是否关闭
/// </summary>
public Boolean ISCLOSE { get { return _ISCLOSE; } set { _ISCLOSE = value; } }
#endregion
}
}