using System; using System.Collections; using System.Collections.Generic; using AIMSDAL; namespace AIMSModel { [Serializable] public partial class UserPurview { private int? id; private int? menuId; private int? roleId; /// /// /// public int? Id { get{ return id; } set{ id=value; } } /// /// /// public int? MenuId { get{ return menuId; } set{ menuId=value; } } /// /// /// public int? RoleId { get{ return roleId; } set{ roleId=value; } } } }