using JNPF.DependencyInjection; using JNPF.Systems.Entitys.Model.UsersCurrent; namespace JNPF.Systems.Entitys.Dto.UsersCurrent; /// /// 当前用户权限输出. /// [SuppressSniffer] public class UsersCurrentAuthorizeOutput { /// /// 模块. /// public List module { get; set; } /// /// 列. /// public List column { get; set; } /// /// 按钮. /// public List button { get; set; } /// /// 资源. /// public List resource { get; set; } /// /// 表单. /// public List form { get; set; } }