using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model{ //sys_roleauth public class sys_roleauth { /// /// GID /// private string _gid; public string GID { get{ return _gid; } set{ _gid = value; } } /// /// 权限/角色名称 /// private string _name; public string Name { get{ return _name; } set{ _name = value; } } /// /// 权限主键 /// private string _authorityid; public string AuthorityID { get{ return _authorityid; } set{ _authorityid = value; } } /// /// 关联的角色GID /// private string _pid; public string PID { get{ return _pid; } set{ _pid = value; } } /// /// 0:角色;1:权限 /// private int? _type; public int? Type { get{ return _type; } set{ _type = value; } } } }