sunpengfei
3 天以前 c33b59a63a99a4598d6d6bc56750efd4f7ad550d
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
53
using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 支付宝资金二级商户KYB代进件状态通知
    /// </summary>
    [Resource([EnumResourceController.UserServerEnterpriseWallet], AllowAnonymous = true, IsFromForm = true)]
    public class AlipayFundExpandindirectCreateNotifyCommand : IRequest<Guid>
    {
        /// <summary>
        /// 通知ID
        /// </summary>
        public string notify_id { get; set; }
        /// <summary>
        /// 消息发送时的服务端时间
        /// </summary>
        public string utc_timestamp { get; set; }
        /// <summary>
        /// 消息接口名称
        /// </summary>
        public string msg_method { get; set; }
        /// <summary>
        /// 消息接受方的应用id
        /// </summary>
        public string app_id { get; set; }
        /// <summary>
        /// 版本号(1.1版本为标准消息)
        /// </summary>
        public string version { get; set; }
        /// <summary>
        /// 消息报文
        /// </summary>
        public string biz_content { get; set; }
        /// <summary>
        /// 签名
        /// </summary>
        public string sign { get; set; }
        /// <summary>
        /// 签名类型
        /// </summary>
        public string sign_type { get; set; }
        /// <summary>
        /// 编码集,该字符集为验签和解密所需要的字符集
        /// </summary>
        public string charset { get; set; }
    }
}