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