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.
 
 

41 lines
921 B

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