ldj/WcfServiceErp/IOrder.cs

25 lines
708 B
C#
Raw Normal View History

2023-05-23 16:13:17 +08:00
using System.Collections.Generic;
using System.ServiceModel;
using System.ServiceModel.Web;
using DeiNiu.wms.Data.Model.Wcf;
using DeiNiu.Wcf.erp.wcfData;
using DeiNiu.Utils;
namespace DeiNiu.Wcf
{
[ServiceContract]
internal interface IOrder
{
[OperationContract]
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json,
UriTemplate = "delete")]
enumDbResult delete(string orderNo);
[OperationContract]
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json,
UriTemplate = "close")]
enumDbResult close(string orderNo);
}
}