75 lines
3.5 KiB
C#
75 lines
3.5 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// 此代码由工具生成。
|
|
// 运行时版本:4.0.30319.42000
|
|
//
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
|
// 重新生成代码,这些更改将会丢失。
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace DeiNiu.wms.win.ServiceCustomer {
|
|
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="ServiceCustomer.ICustomer")]
|
|
public interface ICustomer {
|
|
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ICustomer/query", ReplyAction="http://tempuri.org/ICustomer/queryResponse")]
|
|
System.Data.DataSet query(string querystr, int rownumStart, int rownumEnd);
|
|
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ICustomer/updateJdGroup", ReplyAction="http://tempuri.org/ICustomer/updateJdGroupResponse")]
|
|
int updateJdGroup(string[] Ids, int group);
|
|
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ICustomer/updateJdHourPoint", ReplyAction="http://tempuri.org/ICustomer/updateJdHourPointResponse")]
|
|
int updateJdHourPoint(string[] Ids, int point);
|
|
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ICustomer/updatePickInterval", ReplyAction="http://tempuri.org/ICustomer/updatePickIntervalResponse")]
|
|
int updatePickInterval(string[] Ids, int point);
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
public interface ICustomerChannel : DeiNiu.wms.win.ServiceCustomer.ICustomer, System.ServiceModel.IClientChannel {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
public partial class CustomerClient : System.ServiceModel.ClientBase<DeiNiu.wms.win.ServiceCustomer.ICustomer>, DeiNiu.wms.win.ServiceCustomer.ICustomer {
|
|
|
|
public CustomerClient() {
|
|
}
|
|
|
|
public CustomerClient(string endpointConfigurationName) :
|
|
base(endpointConfigurationName) {
|
|
}
|
|
|
|
public CustomerClient(string endpointConfigurationName, string remoteAddress) :
|
|
base(endpointConfigurationName, remoteAddress) {
|
|
}
|
|
|
|
public CustomerClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
|
|
base(endpointConfigurationName, remoteAddress) {
|
|
}
|
|
|
|
public CustomerClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
|
|
base(binding, remoteAddress) {
|
|
}
|
|
|
|
public System.Data.DataSet query(string querystr, int rownumStart, int rownumEnd) {
|
|
return base.Channel.query(querystr, rownumStart, rownumEnd);
|
|
}
|
|
|
|
public int updateJdGroup(string[] Ids, int group) {
|
|
return base.Channel.updateJdGroup(Ids, group);
|
|
}
|
|
|
|
public int updateJdHourPoint(string[] Ids, int point) {
|
|
return base.Channel.updateJdHourPoint(Ids, point);
|
|
}
|
|
|
|
public int updatePickInterval(string[] Ids, int point) {
|
|
return base.Channel.updatePickInterval(Ids, point);
|
|
}
|
|
}
|
|
}
|