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/Areas/SoftMng/Model/sys_message.cs

173 lines
4.4 KiB
C#

using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//sys_message
public class sys_message
{
/// <summary>
/// GID
/// </summary>
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
/// <summary>
/// NAME
/// </summary>
private string _name;
public string NAME
{
get{ return _name; }
set{ _name = value; }
}
/// <summary>
/// DESCRIPTION
/// </summary>
private string _description;
public string DESCRIPTION
{
get{ return _description; }
set{ _description = value; }
}
/// <summary>
/// CREATETIME
/// </summary>
private DateTime? _createtime;
public DateTime? CREATETIME
{
get{ return _createtime; }
set{ _createtime = value; }
}
/// <summary>
/// ISREAD
/// </summary>
private bool? _isread;
public bool? ISREAD
{
get{ return _isread; }
set{ _isread = value; }
}
/// <summary>
/// READCOUNT
/// </summary>
private int? _readcount;
public int? READCOUNT
{
get{ return _readcount; }
set{ _readcount = value; }
}
/// <summary>
/// MESSAGECONTENT
/// </summary>
private string _messagecontent;
public string MESSAGECONTENT
{
get{ return _messagecontent; }
set{ _messagecontent = value; }
}
/// <summary>
/// LASTREADTIME
/// </summary>
private DateTime? _lastreadtime;
public DateTime? LASTREADTIME
{
get{ return _lastreadtime; }
set{ _lastreadtime = value; }
}
/// <summary>
/// RECEIVER
/// </summary>
private string _receiver;
public string RECEIVER
{
get{ return _receiver; }
set{ _receiver = value; }
}
/// <summary>
/// TYPE
/// </summary>
private int? _type;
public int? TYPE
{
get{ return _type; }
set{ _type = value; }
}
/// <summary>
/// TASKURL
/// </summary>
private string _taskurl;
public string TASKURL
{
get{ return _taskurl; }
set{ _taskurl = value; }
}
/// <summary>
/// TASKID
/// </summary>
private string _taskid;
public string TASKID
{
get{ return _taskid; }
set{ _taskid = value; }
}
/// <summary>
/// ISDELETE
/// </summary>
private bool? _isdelete;
public bool? ISDELETE
{
get{ return _isdelete; }
set{ _isdelete = value; }
}
/// <summary>
/// DELETEUSER
/// </summary>
private string _deleteuser;
public string DELETEUSER
{
get{ return _deleteuser; }
set{ _deleteuser = value; }
}
/// <summary>
/// DELETETIME
/// </summary>
private DateTime? _deletetime;
public DateTime? DELETETIME
{
get{ return _deletetime; }
set{ _deletetime = value; }
}
/// <summary>
/// NUMBER
/// </summary>
private int _number;
public int NUMBER
{
get{ return _number; }
set{ _number = value; }
}
/// <summary>
/// RECVTYPE
/// </summary>
private int _recvtype;
public int RECVTYPE
{
get{ return _recvtype; }
set{ _recvtype = value; }
}
/// <summary>
/// ISSEND
/// </summary>
private bool? _issend;
public bool? ISSEND
{
get{ return _issend; }
set{ _issend = value; }
}
}
}