using YBEE.EQM.Core;
namespace YBEE.EQM.Application
{
///
/// 角色输出参数
///
public class SysRoleOutput
{
///
/// ID,使用钉钉的ID
///
[Required]
public int Id { get; set; }
///
/// 名称
///
[Required]
public string Name { get; set; }
///
/// 角色组ID
///
[Required]
public int SysRoleGroupId { get; set; }
///
/// 角色类型
///
[Required]
public RoleType RoleType { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 状态
///
[Required]
public CommonStatus Status { get; set; }
///
/// 角色组
///
public SysRoleGroupOutput SysRoleGroup { get; set; }
///
/// 角色数据权限范围
///
public RoleDataScope RoleDataScope { get; set; }
}
}