29 lines
696 B
C#
29 lines
696 B
C#
|
/// <summary>
|
|||
|
///WCF service
|
|||
|
///Interface FOR TABLE t_wmsOrderRequest
|
|||
|
///By wm
|
|||
|
///on 08/23/2023
|
|||
|
/// </summary>
|
|||
|
|
|||
|
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]
|
|||
|
public interface IWmsOrderRequest
|
|||
|
{
|
|||
|
//http://localhost:8080/T_WMSORDERREQUEST.svc/getobj?id=1
|
|||
|
[OperationContract]
|
|||
|
[WebInvoke(Method = "GET", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json,
|
|||
|
UriTemplate = "getOrder?orderNo={orderNo}")]
|
|||
|
WmsOrder getOrder(string orderNo);
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|