zhengyuxuan
2025-04-07 6b9333d8ba03965a221cec5ba8249900d0c3683c
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
using Newtonsoft.Json;
 
namespace LifePayment.Domain
{
    public class FundTransOrderChangedContent
    {
        /// <summary>
        /// 商户的批次号
        /// </summary>
        [JsonProperty("out_batch_no", NullValueHandling = NullValueHandling.Ignore)]
        public string OutBatchNo
        {
            set;
            get;
        }
 
        /// <summary>
        /// 业务产品码
        /// </summary>
        [JsonProperty("product_code", NullValueHandling = NullValueHandling.Ignore)]
        public string ProductCode
        {
            set;
            get;
        }
        /// <summary>
        /// 业务场景
        /// </summary>
        [JsonProperty("biz_scene", NullValueHandling = NullValueHandling.Ignore)]
        public string BizScene
        {
            set;
            get;
        }
 
        /// <summary>
        /// 请求来源的接口
        /// </summary>
        [JsonProperty("origin_interface", NullValueHandling = NullValueHandling.Ignore)]
        public string OriginInterface
        {
            set;
            get;
        }
 
        /// <summary>
        /// 支付宝支付资金流水号,仅当转账成功才会返回该参数
        /// </summary>
        [JsonProperty("pay_fund_order_id", NullValueHandling = NullValueHandling.Ignore)]
        public string PayFundOrderId
        {
            set;
            get;
        }
 
        /// <summary>
        /// 支付宝转账单据号
        /// </summary>
        [JsonProperty("order_id", NullValueHandling = NullValueHandling.Ignore)]
        public string OrderId
        {
            set;
            get;
        }
 
        /// <summary>
        /// 转账单据状态。可能出现的状态如下:
        /// SUCCESS:转账成功;
        /// WAIT_PAY:等待支付;
        /// CLOSED:订单超时关闭
        /// alipay.fund.trans.app.pay涉及的状态: WAIT_PAY SUCCESS CLOSED
        /// alipay.fund.trans.uni.transfer、alipay.fund.trans.refund涉及的状态:SUCCESS
        /// </summary>
        [JsonProperty("status", NullValueHandling = NullValueHandling.Ignore)]
        public string Status
        {
            set;
            get;
        }
 
        /// <summary>
        /// 资金订单的操作类型,CREATE-创建;FINISH- 订单处理已完结 CLOSE-超时关闭 ;
        /// </summary>
        [JsonProperty("action_type", NullValueHandling = NullValueHandling.Ignore)]
        public string ActionType
        {
            set;
            get;
        }
 
        /// <summary>
        /// 转账金额
        /// </summary>
        [JsonProperty("trans_amount", NullValueHandling = NullValueHandling.Ignore)]
        public string TransAmount
        {
            set;
            get;
        }
 
        /// <summary>
        /// 支付完成时间
        /// </summary>
        [JsonProperty("pay_date", NullValueHandling = NullValueHandling.Ignore)]
        public string PayDate
        {
            set;
            get;
        }
 
        /// <summary>
        /// 无忧收场景下的受理单号
        /// </summary>
        [JsonProperty("entrust_order_id", NullValueHandling = NullValueHandling.Ignore)]
        public string EntrustOrderId
        {
            set;
            get;
        }
    }
}