using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;
using System.Data;
using SiaSun.LMS.Model;
using System.ServiceModel.Web;

namespace SiaSun.LMS.Interface
{
    [ServiceContract()]
    public partial interface I_ERPService
    {
        [OperationContract]
        string SendOrderInfoToWms(string JsonPara);
    }
}