using AutoMapper; using System; using Znyc.Recruitment.Admin.Commons.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 输入对象模型 /// [AutoMap(typeof(APPEntity))] [Serializable] public class APPInputDto : IInputDto { /// /// 设置或获取 /// public string AppId { get; set; } /// /// 设置或获取 /// public string AppSecret { get; set; } /// /// 设置或获取 /// public string EncodingAESKey { get; set; } /// /// 设置或获取 /// public string RequestUrl { get; set; } /// /// 设置或获取 /// public string Token { get; set; } /// /// 设置或获取 /// public bool IsOpenAEKey { get; set; } /// /// 设置或获取 /// public bool IsEnabled { get; set; } /// /// 设置或获取 /// public string Description { get; set; } /// /// 设置或获取 /// public long Id { get; set; } } }