38 lines
871 B
C#
38 lines
871 B
C#
|
/// <summary>
|
|||
|
///WCF service
|
|||
|
///Interface FOR TABLE t_wmsFlow
|
|||
|
///By wm
|
|||
|
///on 07/10/2020
|
|||
|
/// </summary>
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
using System.ServiceModel;
|
|||
|
using System.Text;
|
|||
|
using DeiNiu.wms.Logical;
|
|||
|
using System.Data;
|
|||
|
using DeiNiu.Utils;
|
|||
|
|
|||
|
namespace DeiNiu.Wcf
|
|||
|
{
|
|||
|
[ServiceContract]
|
|||
|
public interface IWmsFlow
|
|||
|
{
|
|||
|
[OperationContract]
|
|||
|
DataSet query(string querystr, int rownumStart, int rownumEnd);
|
|||
|
[OperationContract]
|
|||
|
int add(WcfWmsFlow wcfData);
|
|||
|
[OperationContract]
|
|||
|
int update(WcfWmsFlow wcfData);
|
|||
|
[OperationContract]
|
|||
|
int delete(WcfWmsFlow wcfData);
|
|||
|
[OperationContract]
|
|||
|
DataTable getDetail(string taskNo);
|
|||
|
[OperationContract]
|
|||
|
enumFlowTaskResult startTask(string taskNo);
|
|||
|
|
|||
|
}
|
|||
|
}
|