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.
110 lines
2.9 KiB
C#
110 lines
2.9 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//user_authority_range_op
|
|
public class user_authority_range_op
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GID
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// USERID
|
|
/// </summary>
|
|
private string _userid;
|
|
public string USERID
|
|
{
|
|
get{ return _userid; }
|
|
set{ _userid = value; }
|
|
}
|
|
/// <summary>
|
|
/// AUTHORITYID
|
|
/// </summary>
|
|
private string _authorityid;
|
|
public string AUTHORITYID
|
|
{
|
|
get{ return _authorityid; }
|
|
set{ _authorityid = value; }
|
|
}
|
|
/// <summary>
|
|
/// OPID
|
|
/// </summary>
|
|
private string _opid;
|
|
public string OPID
|
|
{
|
|
get{ return _opid; }
|
|
set{ _opid = value; }
|
|
}
|
|
/// <summary>
|
|
/// OPNAME
|
|
/// </summary>
|
|
private string _opname;
|
|
public string OPNAME
|
|
{
|
|
get{ return _opname; }
|
|
set{ _opname = value; }
|
|
}
|
|
/// <summary>
|
|
/// VISIBLERANGE
|
|
/// </summary>
|
|
private int? _visiblerange;
|
|
public int? VISIBLERANGE
|
|
{
|
|
get{ return _visiblerange; }
|
|
set{ _visiblerange = value; }
|
|
}
|
|
/// <summary>
|
|
/// OPERATERANGE
|
|
/// </summary>
|
|
private int? _operaterange;
|
|
public int? OPERATERANGE
|
|
{
|
|
get{ return _operaterange; }
|
|
set{ _operaterange = value; }
|
|
}
|
|
/// <summary>
|
|
/// CREATEUSER
|
|
/// </summary>
|
|
private string _createuser;
|
|
public string CREATEUSER
|
|
{
|
|
get{ return _createuser; }
|
|
set{ _createuser = value; }
|
|
}
|
|
/// <summary>
|
|
/// CREATETIME
|
|
/// </summary>
|
|
private DateTime? _createtime;
|
|
public DateTime? CREATETIME
|
|
{
|
|
get{ return _createtime; }
|
|
set{ _createtime = value; }
|
|
}
|
|
/// <summary>
|
|
/// MODIFIEDUSER
|
|
/// </summary>
|
|
private string _modifieduser;
|
|
public string MODIFIEDUSER
|
|
{
|
|
get{ return _modifieduser; }
|
|
set{ _modifieduser = value; }
|
|
}
|
|
/// <summary>
|
|
/// MODIFIEDTIME
|
|
/// </summary>
|
|
private DateTime? _modifiedtime;
|
|
public DateTime? MODIFIEDTIME
|
|
{
|
|
get{ return _modifiedtime; }
|
|
set{ _modifiedtime = value; }
|
|
}
|
|
}
|
|
}
|