2019-09-17 20:52:22 +08:00

35 lines
763 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShadowEditor.Model.System
{
/// <summary>
/// 权限模型
/// </summary>
public class AuthorityModel
{
/// <summary>
/// 编号
/// </summary>
public string ID { get; set; }
/// <summary>
/// 角色ID
/// </summary>
public string RoleID { get; set; }
/// <summary>
/// 类型1-UI权限,2-接口权限)
/// </summary>
public int Type { get; set; }
/// <summary>
/// 权限数据(对应页面控件或服务端接口)
/// </summary>
public string Date { get; set; }
}
}