You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
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 基础
|
|
/// <summary>Inventory服务地址
|
|
/// Inventory服务地址
|
|
/// </summary>
|
|
public string _sInventoryUrl = string.Empty;
|
|
|
|
/// <summary>Integration服务地址
|
|
/// Integration服务地址
|
|
/// </summary>
|
|
public string _sIntegrationUrl = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 用户民
|
|
/// </summary>
|
|
public string _sUsername = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
public string _sPassword = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 厂房编号
|
|
/// </summary>
|
|
public string _siteNo = string.Empty;
|
|
|
|
#endregion
|
|
|
|
#region MES调用WMS
|
|
//MES下发入库切换指令WMS
|
|
public string SendOrderInfoToWms(string JsonPara)
|
|
{
|
|
string sResult = string.Empty;
|
|
|
|
return sResult;
|
|
}
|
|
#endregion
|
|
}
|
|
}
|