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

2 weeks ago
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码由工具生成。
  4. // 运行时版本:4.0.30319.42000
  5. //
  6. // 对此文件的更改可能会导致不正确的行为,并且如果
  7. // 重新生成代码,这些更改将会丢失。
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace NFine.Application.DeleteAPBill {
  11. using System.Runtime.Serialization;
  12. using System;
  13. [System.Diagnostics.DebuggerStepThroughAttribute()]
  14. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  15. [System.Runtime.Serialization.DataContractAttribute(Name="DeleteAPBill.APBillModel", Namespace="http://schemas.datacontract.org/2004/07/UFIDA.ISV.DeleteAPBillSV")]
  16. [System.SerializableAttribute()]
  17. public partial class DeleteAPBillAPBillModel : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  18. [System.NonSerializedAttribute()]
  19. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  20. [System.Runtime.Serialization.OptionalFieldAttribute()]
  21. private string DocNoField;
  22. [System.Runtime.Serialization.OptionalFieldAttribute()]
  23. private string OrgCodeField;
  24. [global::System.ComponentModel.BrowsableAttribute(false)]
  25. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  26. get {
  27. return this.extensionDataField;
  28. }
  29. set {
  30. this.extensionDataField = value;
  31. }
  32. }
  33. [System.Runtime.Serialization.DataMemberAttribute()]
  34. public string DocNo {
  35. get {
  36. return this.DocNoField;
  37. }
  38. set {
  39. if ((object.ReferenceEquals(this.DocNoField, value) != true)) {
  40. this.DocNoField = value;
  41. this.RaisePropertyChanged("DocNo");
  42. }
  43. }
  44. }
  45. [System.Runtime.Serialization.DataMemberAttribute()]
  46. public string OrgCode {
  47. get {
  48. return this.OrgCodeField;
  49. }
  50. set {
  51. if ((object.ReferenceEquals(this.OrgCodeField, value) != true)) {
  52. this.OrgCodeField = value;
  53. this.RaisePropertyChanged("OrgCode");
  54. }
  55. }
  56. }
  57. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  58. protected void RaisePropertyChanged(string propertyName) {
  59. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  60. if ((propertyChanged != null)) {
  61. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  62. }
  63. }
  64. }
  65. [System.Diagnostics.DebuggerStepThroughAttribute()]
  66. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  67. [System.Runtime.Serialization.DataContractAttribute(Name="DeleteAPBill.OperationResult", Namespace="http://schemas.datacontract.org/2004/07/UFIDA.ISV.DeleteAPBillSV")]
  68. [System.SerializableAttribute()]
  69. public partial class DeleteAPBillOperationResult : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  70. [System.NonSerializedAttribute()]
  71. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  72. [System.Runtime.Serialization.OptionalFieldAttribute()]
  73. private bool IsSuccessField;
  74. [System.Runtime.Serialization.OptionalFieldAttribute()]
  75. private string MessageField;
  76. [global::System.ComponentModel.BrowsableAttribute(false)]
  77. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  78. get {
  79. return this.extensionDataField;
  80. }
  81. set {
  82. this.extensionDataField = value;
  83. }
  84. }
  85. [System.Runtime.Serialization.DataMemberAttribute()]
  86. public bool IsSuccess {
  87. get {
  88. return this.IsSuccessField;
  89. }
  90. set {
  91. if ((this.IsSuccessField.Equals(value) != true)) {
  92. this.IsSuccessField = value;
  93. this.RaisePropertyChanged("IsSuccess");
  94. }
  95. }
  96. }
  97. [System.Runtime.Serialization.DataMemberAttribute()]
  98. public string Message {
  99. get {
  100. return this.MessageField;
  101. }
  102. set {
  103. if ((object.ReferenceEquals(this.MessageField, value) != true)) {
  104. this.MessageField = value;
  105. this.RaisePropertyChanged("Message");
  106. }
  107. }
  108. }
  109. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  110. protected void RaisePropertyChanged(string propertyName) {
  111. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  112. if ((propertyChanged != null)) {
  113. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  114. }
  115. }
  116. }
  117. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  118. [System.ServiceModel.ServiceContractAttribute(ConfigurationName="DeleteAPBill.IDeleteAPBillSV")]
  119. public interface IDeleteAPBillSV {
  120. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IDeleteAPBillSV/CustDeleteAPBillSV", ReplyAction="http://tempuri.org/IDeleteAPBillSV/CustDeleteAPBillSVResponse")]
  121. NFine.Application.DeleteAPBill.DeleteAPBillOperationResult CustDeleteAPBillSV(NFine.Application.DeleteAPBill.DeleteAPBillAPBillModel model);
  122. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IDeleteAPBillSV/CustDeleteAPBillSV", ReplyAction="http://tempuri.org/IDeleteAPBillSV/CustDeleteAPBillSVResponse")]
  123. System.Threading.Tasks.Task<NFine.Application.DeleteAPBill.DeleteAPBillOperationResult> CustDeleteAPBillSVAsync(NFine.Application.DeleteAPBill.DeleteAPBillAPBillModel model);
  124. }
  125. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  126. public interface IDeleteAPBillSVChannel : NFine.Application.DeleteAPBill.IDeleteAPBillSV, System.ServiceModel.IClientChannel {
  127. }
  128. [System.Diagnostics.DebuggerStepThroughAttribute()]
  129. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  130. public partial class DeleteAPBillSVClient : System.ServiceModel.ClientBase<NFine.Application.DeleteAPBill.IDeleteAPBillSV>, NFine.Application.DeleteAPBill.IDeleteAPBillSV {
  131. public DeleteAPBillSVClient() {
  132. }
  133. public DeleteAPBillSVClient(string endpointConfigurationName) :
  134. base(endpointConfigurationName) {
  135. }
  136. public DeleteAPBillSVClient(string endpointConfigurationName, string remoteAddress) :
  137. base(endpointConfigurationName, remoteAddress) {
  138. }
  139. public DeleteAPBillSVClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
  140. base(endpointConfigurationName, remoteAddress) {
  141. }
  142. public DeleteAPBillSVClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
  143. base(binding, remoteAddress) {
  144. }
  145. public NFine.Application.DeleteAPBill.DeleteAPBillOperationResult CustDeleteAPBillSV(NFine.Application.DeleteAPBill.DeleteAPBillAPBillModel model) {
  146. return base.Channel.CustDeleteAPBillSV(model);
  147. }
  148. public System.Threading.Tasks.Task<NFine.Application.DeleteAPBill.DeleteAPBillOperationResult> CustDeleteAPBillSVAsync(NFine.Application.DeleteAPBill.DeleteAPBillAPBillModel model) {
  149. return base.Channel.CustDeleteAPBillSVAsync(model);
  150. }
  151. }
  152. }