using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Role;
///
/// 角色信息输出.
///
[SuppressSniffer]
public class RoleInfoOutput
{
///
/// 主键.
///
public string id { get; set; }
///
/// 名称.
///
public string fullName { get; set; }
///
/// 编码.
///
public string enCode { get; set; }
///
/// 类型.
///
public string type { get; set; }
///
/// 有效标记.
///
public int? enabledMark { get; set; }
///
/// 描述.
///
public string description { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
///
/// 组织Id集合.
///
public List> organizeIdsTree { get; set; }
///
/// 全局标识 1:全局 0 组织.
///
public int globalMark { get; set; }
}