/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * Email: jianweie@163.com * CreateTime: 2021/7/29 1:08:20 * Description: 暂无 ***********************************************************************/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CoreCms.Net.WeChat.Service.Models { /// /// 用户绑定手机号解密类 /// public class DecodedPhoneNumber : DecodeEntityBase { /// /// 用户绑定的手机号(国外手机号会有区号) /// public string phoneNumber { get; set; } /// /// 没有区号的手机号 /// public string purePhoneNumber { get; set; } /// /// 区号(Senparc注:国别号) /// public string countryCode { get; set; } } }