sunpengfei
2025-12-01 c87d61d03b48a6f55c0a0819b9be522f77e3c9a0
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
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
 
namespace ApiTools.Core
{
    public class WxmpSubscribMessageNotifyRequestQuery
    {
        /// <summary>
        /// 签名
        /// </summary>
        public string signature { get; set; }
 
        /// <summary>
        /// 时间戳
        /// </summary>
        public string timestamp { get; set; }
 
        /// <summary>
        /// 随机数
        /// </summary>
        public string nonce { get; set; }
 
        /// <summary>
        /// 随机字符串
        /// </summary>
        public string echostr { get; set; }
 
        public string openid { get; set; }
 
        public string encrypt_type { get; set; }
 
        public string msg_signature { get; set; }
    }
 
    public class WxmpSubscribMessageNotifyRequestBody
    {
        public string ToUserName { get; set; }
        public string Encrypt { get; set; }
    }
}