2022-09-26 17:39:34 +08:00

44 lines
871 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DocumentManagement.Model
{
public class UserTempPurview
{
#region Model
private int _id;
private int _templateid;
private int _roleid;
/// <summary>
/// Id
/// </summary>
public int Id
{
set { _id = value; }
get { return _id; }
}
/// <summary>
/// 模板Id
/// </summary>
public int TemplateId
{
set { _templateid = value; }
get { return _templateid; }
}
/// <summary>
/// 角色Id
/// </summary>
public int RoleId
{
set { _roleid = value; }
get { return _roleid; }
}
#endregion Model
}
}