AIMS/AIMSEntity/Model/AutoGenerate/UserTempPurview.cs
2022-08-23 21:12:59 +08:00

42 lines
700 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using AIMSDAL;
namespace AIMSModel
{
[Serializable]
public partial class UserTempPurview
{
private int? id;
private int? templateId;
private int? roleId;
/// <summary>
/// Id
/// </summary>
public int? Id
{
get{ return id; }
set{ id=value; }
}
/// <summary>
/// 模板Id
/// </summary>
public int? TemplateId
{
get{ return templateId; }
set{ templateId=value; }
}
/// <summary>
/// 角色Id
/// </summary>
public int? RoleId
{
get{ return roleId; }
set{ roleId=value; }
}
}
}