using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Common { public class BaseAPI { /// /// WMS接口基础URL /// public const string WMSBaseUrl = "http://localhost:9291/api/"; /// /// WCS接口基础URL /// public const string WCSBaseUrl = "http://localhost:9292/api/"; /// /// MES接口基础URL /// public const string MESBaseUrl = "http://localhost:9293/api/"; /// /// ERP接口基础URL /// public const string ERPBaseUrl = "http://localhost:9294/api/"; } }