You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
184 lines
8.2 KiB
184 lines
8.2 KiB
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// 此代码由工具生成。
|
|
// 运行时版本:4.0.30319.42000
|
|
//
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
|
// 重新生成代码,这些更改将会丢失。
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace NFine.Application.DeleteAPBill {
|
|
using System.Runtime.Serialization;
|
|
using System;
|
|
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="DeleteAPBill.APBillModel", Namespace="http://schemas.datacontract.org/2004/07/UFIDA.ISV.DeleteAPBillSV")]
|
|
[System.SerializableAttribute()]
|
|
public partial class DeleteAPBillAPBillModel : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
|
|
|
|
[System.NonSerializedAttribute()]
|
|
private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
|
|
|
|
[System.Runtime.Serialization.OptionalFieldAttribute()]
|
|
private string DocNoField;
|
|
|
|
[System.Runtime.Serialization.OptionalFieldAttribute()]
|
|
private string OrgCodeField;
|
|
|
|
[global::System.ComponentModel.BrowsableAttribute(false)]
|
|
public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
|
|
get {
|
|
return this.extensionDataField;
|
|
}
|
|
set {
|
|
this.extensionDataField = value;
|
|
}
|
|
}
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute()]
|
|
public string DocNo {
|
|
get {
|
|
return this.DocNoField;
|
|
}
|
|
set {
|
|
if ((object.ReferenceEquals(this.DocNoField, value) != true)) {
|
|
this.DocNoField = value;
|
|
this.RaisePropertyChanged("DocNo");
|
|
}
|
|
}
|
|
}
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute()]
|
|
public string OrgCode {
|
|
get {
|
|
return this.OrgCodeField;
|
|
}
|
|
set {
|
|
if ((object.ReferenceEquals(this.OrgCodeField, value) != true)) {
|
|
this.OrgCodeField = value;
|
|
this.RaisePropertyChanged("OrgCode");
|
|
}
|
|
}
|
|
}
|
|
|
|
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
|
|
|
protected void RaisePropertyChanged(string propertyName) {
|
|
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
|
|
if ((propertyChanged != null)) {
|
|
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="DeleteAPBill.OperationResult", Namespace="http://schemas.datacontract.org/2004/07/UFIDA.ISV.DeleteAPBillSV")]
|
|
[System.SerializableAttribute()]
|
|
public partial class DeleteAPBillOperationResult : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
|
|
|
|
[System.NonSerializedAttribute()]
|
|
private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
|
|
|
|
[System.Runtime.Serialization.OptionalFieldAttribute()]
|
|
private bool IsSuccessField;
|
|
|
|
[System.Runtime.Serialization.OptionalFieldAttribute()]
|
|
private string MessageField;
|
|
|
|
[global::System.ComponentModel.BrowsableAttribute(false)]
|
|
public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
|
|
get {
|
|
return this.extensionDataField;
|
|
}
|
|
set {
|
|
this.extensionDataField = value;
|
|
}
|
|
}
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute()]
|
|
public bool IsSuccess {
|
|
get {
|
|
return this.IsSuccessField;
|
|
}
|
|
set {
|
|
if ((this.IsSuccessField.Equals(value) != true)) {
|
|
this.IsSuccessField = value;
|
|
this.RaisePropertyChanged("IsSuccess");
|
|
}
|
|
}
|
|
}
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute()]
|
|
public string Message {
|
|
get {
|
|
return this.MessageField;
|
|
}
|
|
set {
|
|
if ((object.ReferenceEquals(this.MessageField, value) != true)) {
|
|
this.MessageField = value;
|
|
this.RaisePropertyChanged("Message");
|
|
}
|
|
}
|
|
}
|
|
|
|
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
|
|
|
protected void RaisePropertyChanged(string propertyName) {
|
|
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
|
|
if ((propertyChanged != null)) {
|
|
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="DeleteAPBill.IDeleteAPBillSV")]
|
|
public interface IDeleteAPBillSV {
|
|
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IDeleteAPBillSV/CustDeleteAPBillSV", ReplyAction="http://tempuri.org/IDeleteAPBillSV/CustDeleteAPBillSVResponse")]
|
|
NFine.Application.DeleteAPBill.DeleteAPBillOperationResult CustDeleteAPBillSV(NFine.Application.DeleteAPBill.DeleteAPBillAPBillModel model);
|
|
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IDeleteAPBillSV/CustDeleteAPBillSV", ReplyAction="http://tempuri.org/IDeleteAPBillSV/CustDeleteAPBillSVResponse")]
|
|
System.Threading.Tasks.Task<NFine.Application.DeleteAPBill.DeleteAPBillOperationResult> CustDeleteAPBillSVAsync(NFine.Application.DeleteAPBill.DeleteAPBillAPBillModel model);
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
public interface IDeleteAPBillSVChannel : NFine.Application.DeleteAPBill.IDeleteAPBillSV, System.ServiceModel.IClientChannel {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
|
public partial class DeleteAPBillSVClient : System.ServiceModel.ClientBase<NFine.Application.DeleteAPBill.IDeleteAPBillSV>, NFine.Application.DeleteAPBill.IDeleteAPBillSV {
|
|
|
|
public DeleteAPBillSVClient() {
|
|
}
|
|
|
|
public DeleteAPBillSVClient(string endpointConfigurationName) :
|
|
base(endpointConfigurationName) {
|
|
}
|
|
|
|
public DeleteAPBillSVClient(string endpointConfigurationName, string remoteAddress) :
|
|
base(endpointConfigurationName, remoteAddress) {
|
|
}
|
|
|
|
public DeleteAPBillSVClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
|
|
base(endpointConfigurationName, remoteAddress) {
|
|
}
|
|
|
|
public DeleteAPBillSVClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
|
|
base(binding, remoteAddress) {
|
|
}
|
|
|
|
public NFine.Application.DeleteAPBill.DeleteAPBillOperationResult CustDeleteAPBillSV(NFine.Application.DeleteAPBill.DeleteAPBillAPBillModel model) {
|
|
return base.Channel.CustDeleteAPBillSV(model);
|
|
}
|
|
|
|
public System.Threading.Tasks.Task<NFine.Application.DeleteAPBill.DeleteAPBillOperationResult> CustDeleteAPBillSVAsync(NFine.Application.DeleteAPBill.DeleteAPBillAPBillModel model) {
|
|
return base.Channel.CustDeleteAPBillSVAsync(model);
|
|
}
|
|
}
|
|
}
|