sunpengfei
10 天以前 582011fe0778b89312a3a9f886a24d687530aad4
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 支付宝用户授权协议签约通知
    /// </summary>
    [Resource([EnumResourceController.UserServerEnterpriseWallet], AllowAnonymous = true)]
    public class GetAlipayUserAgreementPageSignNotifyQuery : IRequest<bool>
    {
        /// <summary>
        /// 协议产品码,商户和支付宝签约时确定,不同业务场景对应不同的签约产品码。
        /// </summary>
        public string personal_product_code { get; set; }
        /// <summary>
        /// 当前签约的协议场景。
        /// </summary>
        public string sign_scene { get; set; }
        /// <summary>
        /// NORMAL    协议当前状态 1. TEMP:暂存,协议未生效过; 2. NORMAL:正常; 3. STOP:暂停
        /// </summary>
        public string status { get; set; }
        /// <summary>
        /// 用户签约的支付宝账号对应的支付宝唯一用户号。 以2088开头的16位纯数字组成。
        /// </summary>
        public string alipay_user_id { get; set; }
        /// <summary>
        /// 支付宝系统中用以唯一标识用户签约记录的编号。
        /// </summary>
        public string agreement_no { get; set; }
        /// <summary>
        /// 支付宝代扣协议的实际签约时间,格式为yyyy-MM-dd HH:mm:ss。
        /// </summary>
        public string sign_time { get; set; }
        /// <summary>
        /// 用户在商户网站的登录账号,如果商户接口中未传,则不会返回
        /// </summary>
        public string external_logon_id { get; set; }
        /// <summary>
        /// 支付宝分配给开发者的应用Id
        /// </summary>
        public string app_id { get; set; }
        /// <summary>
        /// 支付宝分配给商户的应用Id
        /// </summary>
        public string auth_app_id { get; set; }
        /// <summary>
        /// 代扣协议中标示用户的唯一签约号(确保在商户系统中唯一)。
        /// </summary>
        public string external_agreement_no { get; set; }
        /// <summary>
        /// 用户代扣协议的实际生效时间,格式为yyyy-MM-dd HH:mm:ss。
        /// </summary>
        public string valid_time { get; set; }
        /// <summary>
        /// 返回脱敏的支付宝账号。
        /// </summary>
        public string alipay_logon_id { get; set; }
        /// <summary>
        /// 用户签约成功通知类型
        /// </summary>
        public string notify_type { get; set; }
    }
}