liushijie
2025-03-14 7f2111c25184bcc3ced97cea322e55b3a105dfc5
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
using Nest;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
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 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 const string NotifyUrl = "/api/ACOOLYNotify/ACOOLYNotify";
}