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.
38 lines
879 B
C#
38 lines
879 B
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//user_role
|
|
public class user_role
|
|
{
|
|
/// <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>
|
|
/// ROLEID
|
|
/// </summary>
|
|
private string _roleid;
|
|
public string ROLEID
|
|
{
|
|
get{ return _roleid; }
|
|
set{ _roleid = value; }
|
|
}
|
|
}
|
|
}
|