42 lines
662 B
C#
42 lines
662 B
C#
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;
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? Id
|
|
{
|
|
get{ return id; }
|
|
set{ id=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? MenuId
|
|
{
|
|
get{ return menuId; }
|
|
set{ menuId=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? RoleId
|
|
{
|
|
get{ return roleId; }
|
|
set{ roleId=value; }
|
|
}
|
|
}
|
|
}
|