40 lines
1.0 KiB
C#
40 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.ServiceModel;
|
|
using System.Text;
|
|
using System.Data;
|
|
|
|
|
|
namespace DeiNiu.Wcf
|
|
{
|
|
[ServiceContract]
|
|
public interface ICustomer
|
|
{
|
|
[OperationContract]
|
|
DataSet query(string querystr, int rownumStart, int rownumEnd);
|
|
|
|
[OperationContract]
|
|
int updateJdGroup(string[] Ids, int group);
|
|
[OperationContract]
|
|
int updateJdHourPoint(string[] Ids, int point);
|
|
[OperationContract]
|
|
int updatePickInterval(string[] Ids, int point);
|
|
|
|
//---customer desk 灯光播种台设置
|
|
[OperationContract]
|
|
DataSet queryDesks(string querystr, int rownumStart, int rownumEnd);
|
|
[OperationContract]
|
|
int add(WcfWmsDeskCustomer wcfData);
|
|
|
|
[OperationContract]
|
|
int delete(int id);
|
|
[OperationContract]
|
|
int update(WcfWmsDeskCustomer wcfData);
|
|
|
|
|
|
}
|
|
}
|
|
|