using System; using System.Collections.Generic; using System.Text; namespace Operater.DTO.Tk { public class TkWxUtilDto { public string errcode { get; set; } public string errmsg { get; set; } } /// /// 获取Openid请求参数 /// public class GetOpenidRequest { public string code { get; set; } } /// /// 获取Openid返回参数 /// public class GetOpenidResponse:TkWxUtilDto { public string openpid { get; set; } } /// /// 获取微信手机号返回参数 /// public class GetUserPhoneResponse : TkWxUtilDto { public phone_info phone_info { get; set; } } public class phone_info { public string phoneNumber { get; set; } public string purePhoneNumber { get; set; } public string countryCode { get; set; } public watermark watermark { get; set; } } public class watermark { public string timestamp { get; set; } public string appid { get; set; } } public class GetwxacodeunlimitResponse: TkWxUtilDto { public string buffer { get; set; } } }