lingling
2025-03-14 6b5c0022a6fdf5c3026650d231530ff6b32a72b4
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 Newtonsoft.Json;
using Tea;
 
namespace LifePayment.Domain
{
    public class FundBatchUniTransferResponse : AlipayBaseOutput
    {
        /// <summary>
        /// 商户的批次号
        /// </summary>
        [NameInMap("out_batch_no")]
        public string OutBatchNo
        {
            set;
            get;
        }
 
        /// <summary>
        /// 支付宝内部的批次ID
        /// </summary>
        [NameInMap("batch_trans_id")]
        public string BatchTransId
        {
            set;
            get;
        }
 
        /// <summary>
        /// INIT:批次落单成功
        /// </summary>
        [NameInMap("status")]
        public string Status
        {
            set;
            get;
        }
 
        /// <summary>
        /// 审批订单链接
        /// </summary>
        [NameInMap("approveOrderUrl")]
        public string ApproveOrderUrl
        {
            set;
            get;
        }
    }
}