using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.Authorize; /// /// 批量新增权限数据输入. /// [SuppressSniffer] public class AuthorizeDataBatchInput { /// /// 子系统Ids. /// public List systemIds { get; set; } /// /// 角色ids. /// public List roleIds { get; set; } /// /// 按钮权限ids. /// public List button { get; set; } /// /// 列表权限ids. /// public List column { get; set; } /// /// 表单权限ids. /// public List form { get; set; } /// /// 菜单权限ids. /// public List module { get; set; } /// /// 数据权限ids. /// public List resource { get; set; } /// /// 岗位ids. /// public List positionIds { get; set; } /// /// 用户ids. /// public List userIds { get; set; } }