namespace YD_Event.Application.Role.Dtos; public class SysRolePageOutput { /// /// 主键 /// public long Id { get; set; } /// /// 角色名称 /// public string Name { get; set; } /// /// 创建时间 /// public DateTime CreatedTime { get; set; } /// /// 状态 /// public AvailabilityStatus Status { get; set; } /// /// 角色编码 /// public string Code { get; set; } /// /// 排序值 /// public int Sort { get; set; } /// /// 备注 /// public string Remark { get; set; } }