using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Request { public class DecryptUserInfoRequest : GetPhoneInfo { /// /// 用户头像 /// 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; } } }