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.
56 lines
1.4 KiB
C#
56 lines
1.4 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//op_message_config
|
|
public class op_message_config
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GId
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否接收消息提醒
|
|
/// </summary>
|
|
private bool? _ispush;
|
|
public bool? IsPush
|
|
{
|
|
get{ return _ispush; }
|
|
set{ _ispush = value; }
|
|
}
|
|
/// <summary>
|
|
/// 用户编号
|
|
/// </summary>
|
|
private string _usercode;
|
|
public string UserCode
|
|
{
|
|
get{ return _usercode; }
|
|
set{ _usercode = value; }
|
|
}
|
|
/// <summary>
|
|
/// message_module 主键
|
|
/// </summary>
|
|
private string _pid;
|
|
public string PId
|
|
{
|
|
get{ return _pid; }
|
|
set{ _pid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 最后更新日期
|
|
/// </summary>
|
|
private DateTime? _updatetime;
|
|
public DateTime? UpdateTime
|
|
{
|
|
get{ return _updatetime; }
|
|
set{ _updatetime = value; }
|
|
}
|
|
}
|
|
}
|