using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Application
{
///
///
///
public class EncryptedDto: GetPhoneInfo
{
///
/// 用户头像
///
public string avatarUrl { get; set; }
public string nickName { get; set; }
public int gender { get; set; }
public string phone { get; set; }
}
///
///
///
public class EnGetPhoneRequestDto
{
///
///
///
public string OpenId { get; set; }
///
///
///
public string Code { get; set; }
///
/// 助力好友时传入此值
///
public long OrgUserId { get; set; }
}
///
///
///
public class PhoneRequestDto
{
///
///
///
public string code { get; set; }
}
}