using AutoMapper; using System; using Znyc.Admin.Security.Entitys; namespace Znyc.Admin.Security.Dtos { /// /// 输入对象模型 /// [AutoMap(typeof(AdminUser))] [Serializable] public class UserInputDto { public long Id { get; set; } ///// ///// OpenId ///// //public string OpenId { get; set; } /// /// 用户昵称 /// public string UserName { get; set; } /// /// 用户头像 /// public string AvatarUrl { get; set; } /// /// 手机号 /// public string Phone { get; set; } ///// ///// 状态 ///// //public long Status { get; set; } } }