using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Authorize;
///
/// 权限数据修改输入.
///
[SuppressSniffer]
public class AuthorizeDataUpInput
{
///
/// 类型Position/Role/User.
///
public string objectType { get; set; }
///
/// 子系统Ids.
///
public List systemIds { get; set; }
///
/// 按钮.
///
public List button { get; set; }
///
/// 列表.
///
public List column { get; set; }
///
/// 模块.
///
public List module { get; set; }
///
/// 表单.
///
public List form { get; set; }
///
/// 资源.
///
public List resource { get; set; }
}