using AutoMapper;
using System;
using Znyc.Cloudcar.Admin.Security.Entitys;
namespace Znyc.Cloudcar.Admin.Security.Dtos
{
///
/// 输入对象模型
///
[AutoMap(typeof(AdminUserEntity))]
[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 State { get; set; }
}
}