wanshenmean
2026-03-30 ddb526c5e10f3b985c4b65c1a12a1a166d87db9b
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Common
{
    public class BaseAPI
    {
        /// <summary>
        /// WMS接口基础URL
        /// </summary>
        public const string WMSBaseUrl = "http://localhost:9291/api/";
 
        /// <summary>
        /// WCS接口基础URL
        /// </summary>
        public const string WCSBaseUrl = "http://localhost:9292/api/";
 
        /// <summary>
        /// MES接口基础URL
        /// </summary>
        public const string MESBaseUrl = "http://localhost:9293/api/";
 
        /// <summary>
        /// ERP接口基础URL
        /// </summary>
        public const string ERPBaseUrl = "http://localhost:9294/api/";
    }
}