You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.4 KiB
59 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Security.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 输出对象模型
|
|
/// </summary>
|
|
[Serializable]
|
|
public class RoleAuthorizeOutputDto
|
|
{
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
public long? ItemType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string ItemId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
public long? ObjectType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string ObjectId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
public long? SortCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public string CreatedUserId { get; set; }
|
|
|
|
public List<RoleAuthorizeOutputDto> Children { get; set; }
|
|
}
|
|
}
|