Admin.net框架
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
337 B

namespace Admin.NET.Core.Service;
/// <summary>
/// 授权角色机构
/// </summary>
public class RoleOrgInput : BaseIdInput
{
/// <summary>
/// 数据范围
/// </summary>
public int DataScope { get; set; }
/// <summary>
/// 机构Id集合
/// </summary>
public List<long> OrgIdList { get; set; }
}