NewGaoKaoApi/New_College.Model/Request/DecryptUserInfoRequest.cs

36 lines
712 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Request
{
public class DecryptUserInfoRequest : GetPhoneInfo
{
public string UnionId { get; set; }
/// <summary>
/// 用户头像
/// </summary>
public string avatarUrl { get; set; }
public string nickName { get; set; }
public int gender { get; set; }
public string phone { get; set; }
public string AreaName { get; set; }
}
public class DecryptUserPhoneRequest
{
public string openId { get; set; }
public string code { get; set; }
public int SaleId { get; set; }
}
}