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.
128 lines
3.4 KiB
C#
128 lines
3.4 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//user_authority_info
|
|
public class user_authority_info
|
|
{
|
|
/// <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 _description;
|
|
public string DESCRIPTION
|
|
{
|
|
get{ return _description; }
|
|
set{ _description = value; }
|
|
}
|
|
/// <summary>
|
|
/// 模块链接地址
|
|
/// </summary>
|
|
private string _moduleurl;
|
|
public string MODULEURL
|
|
{
|
|
get{ return _moduleurl; }
|
|
set{ _moduleurl = value; }
|
|
}
|
|
/// <summary>
|
|
/// ISALL
|
|
/// </summary>
|
|
private bool? _isall;
|
|
public bool? ISALL
|
|
{
|
|
get{ return _isall; }
|
|
set{ _isall = value; }
|
|
}
|
|
/// <summary>
|
|
/// ISCOMPANY
|
|
/// </summary>
|
|
private bool? _iscompany;
|
|
public bool? ISCOMPANY
|
|
{
|
|
get{ return _iscompany; }
|
|
set{ _iscompany = value; }
|
|
}
|
|
/// <summary>
|
|
/// ISDEPT
|
|
/// </summary>
|
|
private bool? _isdept;
|
|
public bool? ISDEPT
|
|
{
|
|
get{ return _isdept; }
|
|
set{ _isdept = value; }
|
|
}
|
|
/// <summary>
|
|
/// ISPERSON
|
|
/// </summary>
|
|
private bool? _isperson;
|
|
public bool? ISPERSON
|
|
{
|
|
get{ return _isperson; }
|
|
set{ _isperson = value; }
|
|
}
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
private string _createuser;
|
|
public string CREATEUSER
|
|
{
|
|
get{ return _createuser; }
|
|
set{ _createuser = value; }
|
|
}
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
private DateTime? _createtime;
|
|
public DateTime? CREATETIME
|
|
{
|
|
get{ return _createtime; }
|
|
set{ _createtime = value; }
|
|
}
|
|
/// <summary>
|
|
/// 最后一次更新操作人GID
|
|
/// </summary>
|
|
private string _modifieduser;
|
|
public string MODIFIEDUSER
|
|
{
|
|
get{ return _modifieduser; }
|
|
set{ _modifieduser = value; }
|
|
}
|
|
/// <summary>
|
|
/// 最后一次更新操作时间
|
|
/// </summary>
|
|
private DateTime? _modifiedtime;
|
|
public DateTime? MODIFIEDTIME
|
|
{
|
|
get{ return _modifiedtime; }
|
|
set{ _modifiedtime = value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否删除
|
|
/// </summary>
|
|
private bool? _isdelete;
|
|
public bool? ISDELETE
|
|
{
|
|
get{ return _isdelete; }
|
|
set{ _isdelete = value; }
|
|
}
|
|
}
|
|
}
|