王 垚
2021-09-13 6076a7bca746b344840cf782711a87e5318f4f16
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace XhOA.Constants
{
    public class Url
    {
        /// <summary>
        /// 物料ID
        /// </summary>
        /// 
 
#if DEBUG
        public const string KDApiUrl = "http://localhost//k3cloud/";
#else
        public const string KDApiUrl = "http://192.168.0.2/K3Cloud/";
        public const string OMSAccount = "xherp";
        public const string OMSPwd = "dee61b6f3f8d515e3fbedd094017d683273e";
        public const string OMSUrl = "https://dock.xhgjmall.com/xhmall_dockingplatform/api";
        public const string fileUrl = "http://172.19.5.122/K3CloudFileServer/UploadFiles";//该IP为OMS访问阿里云服务器的地址
        public const string EASApiUrl = "http://115.236.73.42:11521/API/AddVoucher.ashx";//EAS凭证对接接口地址
        public const string EASApiDelUrl = "http://115.236.73.42:11521/API/DelVoucher.ashx";//EAS凭证对接接口地址
#endif
 
    }
}