using AutoMapper; using System; using Znyc.Recruitment.Admin.Commons.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 输入对象模型 /// [AutoMap(typeof(RoleAuthorizeEntity))] [Serializable] public class RoleAuthorizeInputDto : IInputDto { /// /// 设置或获取 /// public long? ItemType { get; set; } /// /// 设置或获取 /// public string ItemId { get; set; } /// /// 设置或获取 /// public long? ObjectType { get; set; } /// /// 设置或获取 /// public string ObjectId { get; set; } /// /// 设置或获取 /// public long? SortCode { get; set; } /// /// 设置或获取 /// public long Id { get; set; } } }