zhengyuxuan
2025-04-03 84f97d1b0b2cbf157dea598363e4cfcf8c15348a
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
using Newtonsoft.Json;
using Tea;
 
namespace LifePayment.Domain
{
    public class FundTransUniTransferResponse : AlipayBaseOutput
    {
        /// <summary>
        /// 商户订单号
        /// </summary>
        [NameInMap("out_biz_no")]
        public string OutBizNo
        {
            get;
            set;
        }
 
        /// <summary>
        /// 支付宝转账订单号
        /// </summary>
        [NameInMap("order_id")]
        public string OrderId
        {
            get;
            set;
        }
 
 
        /// <summary>
        /// 订单支付时间,格式为yyyy-MM-dd HH:mm:ss
        /// </summary>
        [NameInMap("trans_date")]
        public string TransDate
        {
            get;
            set;
        }
 
        /// <summary>
        /// 金融机构发起签约类、支付类、差错类业务时,应为每笔业务分配唯一的交易流水号。
        /// 31位交易流水号组成规则为:“8位日期”+“16位序列号”+“1位预留位”+“6位控制位”,其中: a)
        /// “8位日期”为系统当前日期,ISODate格式:“YYYYMMDD” b)“16位序列号”由金融机构生成,
        /// 金融机构应确保该值在网联当日唯一 c)“1位预留位”由平台分配 d)“6位控制位”由金融机构通过平台获取 例如:2023052993044491260542090100400
        /// </summary>
        [NameInMap("settle_serial_no")]
        public string SettleSerialNo
        {
            get;
            set;
        }
 
        /// <summary>
        /// 支付宝支付资金流水号
        /// </summary>
        [NameInMap("pay_fund_order_id")]
        public string PayFundOrderId
        {
            get;
            set;
        }
 
        /// <summary>
        /// 转账单据状态。
        /// SUCCESS:成功(对转账到银行卡的单据, 该状态可能变为退票[REFUND] 状态);
        /// FAIL:失败;
        /// DEALING:处理中;
        /// REFUND:退票;
        /// </summary>
        [NameInMap("status")]
        public string Stauts
        {
            get;
            set;
        }
    }
}