sunpengfei
7 天以前 df19a6d58ef1d94e11c4dbfd76074e0e54d3d32c
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
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, IsFromForm = true)]
    public class AlipayUserAgreementPageSignNotifyCommand : IRequest<bool>
    {
        public string notify_id { get; set; }
        public string notify_time { get; set; }
        public string sign_type { get; set; }
        public string sign { get; set; }
        public string invalid_time { get; set; }
        public string sign_scene { get; set; }
        public string sign_time { get; set; }
        public string alipay_user_id { get; set; }
        public string status { get; set; }
        public string forex_eligible { get; set; }
        public string external_logon_id { get; set; }
        public string app_id { get; set; }
        public string auth_app_id { get; set; }
        public string external_agreement_no { get; set; }
        public string personal_product_code { get; set; }
        public string valid_time { get; set; }
        public string agreement_no { get; set; }
        public string zm_open_id { get; set; }
        public string alipay_open_id { get; set; }
        public string merchant_app_id { get; set; }
        public string alipay_logon_id { get; set; }
        public string notify_type { get; set; }
        public string zm_score { get; set; }
        public string single_quota { get; set; }
        public string login_token { get; set; }
        public string device_id { get; set; }
        public string credit_auth_mode { get; set; }
        public string specified_sort_assets { get; set; }
        public string partner_id { get; set; }
        public string modify_type { get; set; }
        public string next_deduct_time { get; set; }
    }
}