zhengyiming
2025-04-09 a4b53ae88b588b099cf0e334f99d74d229f7fdc2
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
namespace LifePayment.Domain.Shared;
 
public static class ACOOLYConstant
{
 
    /// <summary>
    /// 服务码
    /// </summary>
    public static class Sevice
    {
        /// <summary>
        /// 获取燃气面值
        /// </summary>
        public const string GasParValue = "gasParValue";
 
        /// <summary>
        /// 提交燃气订单
        /// </summary>
        public const string ConfirmGasOrder = "confirmGasOrder";
        /// <summary>
        /// 查询燃气支持商户
        /// </summary>
        public const string QueryGasOrgType = "queryGasOrgType";
 
        /// <summary>
        /// 获取电费面值
        /// </summary>
        public const string ElectricParValue = "electricParValue";
 
        /// <summary>
        /// 提交电费订单
        /// </summary>
        public const string ConfirmElectricOrder = "confirmElectricOrder";
 
        /// <summary>
        /// 获取电话费面值
        /// </summary>
        public const string PhoneParValue = "phoneParValue";
 
        /// <summary>
        /// 提交电话费订单
        /// </summary>
        public const string ConfirmPhoneOrder = "confirmPhoneOrder";
 
        /// <summary>
        /// 登录
        /// </summary>
        public const string Login = "login";
 
        /// <summary>
        /// 获取充值区域
        /// </summary>
        public const string ElectricSupportArea = "queryElectricSupportArea";
 
 
    }
 
    public static class Code
    {
        public const string SUCCESS = "SUCCESS";
 
        public const string PROCESSING = "PROCESSING";
    }
 
    public static class Status
    {
        public const string 充值成功 = "SUCCESS";
 
        public const string 充值中 = "PROCESSING";
 
        public const string 充值失败 = "FAIL";
 
        public const string 退款中 = "REFUNDING";
 
        public const string 退款完成 = "REFUND_CLOSE";
 
        public const string 失败关闭 = "FAIL_CLOSE";
 
        public const string 部分充值成功 = "SUCCESS_PART";
    }
 
    public const string NotifyUrl = "/api/ACOOLYNotify/ACOOLYNotify";
}