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.
65 lines
1.6 KiB
C#
65 lines
1.6 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//op_message_module
|
|
public class op_message_module
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GId
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 模块名称
|
|
/// </summary>
|
|
private string _name;
|
|
public string Name
|
|
{
|
|
get{ return _name; }
|
|
set{ _name = value; }
|
|
}
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
private string _descr;
|
|
public string Descr
|
|
{
|
|
get{ return _descr; }
|
|
set{ _descr = value; }
|
|
}
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
private DateTime? _createtime;
|
|
public DateTime? CreateTime
|
|
{
|
|
get{ return _createtime; }
|
|
set{ _createtime = value; }
|
|
}
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
private string _createuser;
|
|
public string CreateUser
|
|
{
|
|
get{ return _createuser; }
|
|
set{ _createuser = value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否禁用
|
|
/// </summary>
|
|
private bool? _isdeleted;
|
|
public bool? IsDeleted
|
|
{
|
|
get{ return _isdeleted; }
|
|
set{ _isdeleted = value; }
|
|
}
|
|
}
|
|
}
|