heyuntao
2023-05-05 cc09b6fe6ffac34a4eeeb26d313b187713cae0de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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; }
    }
    /// <summary>
    /// 获取Openid请求参数
    /// </summary>
    public class GetOpenidRequest
    {
        public string code { get; set; }
    }
    /// <summary>
    /// 获取Openid返回参数
    /// </summary>
    public class GetOpenidResponse:TkWxUtilDto
    {
        public string openpid { get; set; }
    }
    /// <summary>
    /// 获取微信手机号返回参数
    /// </summary>
    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; }
    }
}