using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//op_message_config
public class op_message_config
{
///
/// 主键
///
private string _gid;
public string GId
{
get{ return _gid; }
set{ _gid = value; }
}
///
/// 是否接收消息提醒
///
private bool? _ispush;
public bool? IsPush
{
get{ return _ispush; }
set{ _ispush = value; }
}
///
/// 用户编号
///
private string _usercode;
public string UserCode
{
get{ return _usercode; }
set{ _usercode = value; }
}
///
/// message_module 主键
///
private string _pid;
public string PId
{
get{ return _pid; }
set{ _pid = value; }
}
///
/// 最后更新日期
///
private DateTime? _updatetime;
public DateTime? UpdateTime
{
get{ return _updatetime; }
set{ _updatetime = value; }
}
}
}