zhengyuxuan
2025-04-02 d0ca4c5479641ac5616d1e6fd2c258aea7d93222
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
using Newtonsoft.Json;
using System.ComponentModel.DataAnnotations;
using Tea;
 
namespace LifePayment.Domain
{
    public class AlipayBaseOutput : TeaModel
    {
        /// <summary>
        /// 网关返回码,详见文档
        /// </summary>
        [NameInMap("code")]
        public string Code
        {
            get;
            set;
        }
 
        /// <summary>
        /// 网关返回码描述,详见文档
        /// </summary>
        [NameInMap("msg")]
        public string Msg
        {
            get;
            set;
        }
 
        /// <summary>
        /// 业务返回码,参见具体的API接口文档
        /// </summary>
        [NameInMap("sub_code")]
        public string SubCode
        {
            get;
            set;
        }
 
        /// <summary>
        /// 业务返回码描述,参见具体的API接口文档
        /// </summary>
        [NameInMap("sub_msg")]
        public string SubMsg
        {
            get;
            set;
        }
 
        /// <summary>
        /// 签名,详见文档
        /// </summary>
        [NameInMap("sign")]
        public string Sign
        {
            get;
            set;
        }
    }
}