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,
|
2023-09-04 22:41:19 +08:00
|
|
|
|
UriTemplate = "complete")]
|
|
|
|
|
Result complete(string orderNo);
|
2023-05-23 16:13:17 +08:00
|
|
|
|
|
|
|
|
|
[OperationContract]
|
|
|
|
|
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json,
|
2023-09-04 22:41:19 +08:00
|
|
|
|
UriTemplate = "cancel")]
|
|
|
|
|
Result cancel(string orderNo);
|
2023-05-23 16:13:17 +08:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|