using System; using System.Collections.Generic; using System.Text; using System.ServiceModel; using System.Data; using System.Collections; using System.Linq; using SiaSun.LMS.Model; using SiaSun.LMS.Common; using System.Reflection; using System.Runtime.Serialization; using System.ServiceModel.Activation; using System.ServiceModel.Description; namespace SiaSun.LMS.Implement { public class S_ERPService : SiaSun.LMS.Implement.S_BaseService, SiaSun.LMS.Interface.I_ERPService { #region 基础 /// Inventory服务地址 /// Inventory服务地址 /// public string _sInventoryUrl = string.Empty; /// Integration服务地址 /// Integration服务地址 /// public string _sIntegrationUrl = string.Empty; /// /// 用户民 /// public string _sUsername = string.Empty; /// /// 密码 /// public string _sPassword = string.Empty; /// /// 厂房编号 /// public string _siteNo = string.Empty; #endregion #region MES调用WMS //MES下发入库切换指令WMS public string SendOrderInfoToWms(string JsonPara) { string sResult = string.Empty; return sResult; } #endregion } }