Reference.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码由工具生成。
  4. // 运行时版本:4.0.30319.42000
  5. //
  6. // 对此文件的更改可能会导致不正确的行为,并且如果
  7. // 重新生成代码,这些更改将会丢失。
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008 {
  11. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  12. [System.ServiceModel.ServiceContractAttribute(Namespace="urn:sap-com:document:sap:soap:functions:mc-style", ConfigurationName="HGSAPDK_ZPPFM008.ZPPFM008")]
  13. public interface ZPPFM008 {
  14. // CODEGEN: 操作 Zppfm008 以后生成的消息协定不是 RPC,也不是换行文档。
  15. [System.ServiceModel.OperationContractAttribute(Action="urn:sap-com:document:sap:soap:functions:mc-style:ZPPFM008:Zppfm008Request", ReplyAction="*")]
  16. [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
  17. Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008Response1 Zppfm008(Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008Request request);
  18. }
  19. /// <remarks/>
  20. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.3056.0")]
  21. [System.SerializableAttribute()]
  22. [System.Diagnostics.DebuggerStepThroughAttribute()]
  23. [System.ComponentModel.DesignerCategoryAttribute("code")]
  24. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="urn:sap-com:document:sap:soap:functions:mc-style")]
  25. public partial class Zppfm008 : object, System.ComponentModel.INotifyPropertyChanged {
  26. private Zspp100[] tableInField;
  27. private Zspp100[] tableOutField;
  28. private int zsumField;
  29. private bool zsumFieldSpecified;
  30. /// <remarks/>
  31. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
  32. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  33. public Zspp100[] TableIn {
  34. get {
  35. return this.tableInField;
  36. }
  37. set {
  38. this.tableInField = value;
  39. this.RaisePropertyChanged("TableIn");
  40. }
  41. }
  42. /// <remarks/>
  43. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
  44. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  45. public Zspp100[] TableOut {
  46. get {
  47. return this.tableOutField;
  48. }
  49. set {
  50. this.tableOutField = value;
  51. this.RaisePropertyChanged("TableOut");
  52. }
  53. }
  54. /// <remarks/>
  55. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=2)]
  56. public int Zsum {
  57. get {
  58. return this.zsumField;
  59. }
  60. set {
  61. this.zsumField = value;
  62. this.RaisePropertyChanged("Zsum");
  63. }
  64. }
  65. /// <remarks/>
  66. [System.Xml.Serialization.XmlIgnoreAttribute()]
  67. public bool ZsumSpecified {
  68. get {
  69. return this.zsumFieldSpecified;
  70. }
  71. set {
  72. this.zsumFieldSpecified = value;
  73. this.RaisePropertyChanged("ZsumSpecified");
  74. }
  75. }
  76. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  77. protected void RaisePropertyChanged(string propertyName) {
  78. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  79. if ((propertyChanged != null)) {
  80. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  81. }
  82. }
  83. }
  84. /// <remarks/>
  85. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.3056.0")]
  86. [System.SerializableAttribute()]
  87. [System.Diagnostics.DebuggerStepThroughAttribute()]
  88. [System.ComponentModel.DesignerCategoryAttribute("code")]
  89. [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:sap-com:document:sap:soap:functions:mc-style")]
  90. public partial class Zspp100 : object, System.ComponentModel.INotifyPropertyChanged {
  91. private string werksField;
  92. private string groesField;
  93. private string matnrField;
  94. private string zghnuField;
  95. private string zjdnuField;
  96. private string zscnuField;
  97. private string vbelnField;
  98. private string posnrField;
  99. private string zclngField;
  100. private string zspngField;
  101. private string zqcngField;
  102. private string zhsngField;
  103. private string zgbngField;
  104. private string ztypeField;
  105. private string zmsgField;
  106. private string mjahrField;
  107. private string mblnr1Field;
  108. private string ztype1Field;
  109. private string zmsg1Field;
  110. private string mblnr2Field;
  111. private string ztype2Field;
  112. private string zmsg2Field;
  113. private string mblnr3Field;
  114. private string ztype3Field;
  115. private string zmsg3Field;
  116. /// <remarks/>
  117. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
  118. public string Werks {
  119. get {
  120. return this.werksField;
  121. }
  122. set {
  123. this.werksField = value;
  124. this.RaisePropertyChanged("Werks");
  125. }
  126. }
  127. /// <remarks/>
  128. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
  129. public string Groes {
  130. get {
  131. return this.groesField;
  132. }
  133. set {
  134. this.groesField = value;
  135. this.RaisePropertyChanged("Groes");
  136. }
  137. }
  138. /// <remarks/>
  139. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=2)]
  140. public string Matnr {
  141. get {
  142. return this.matnrField;
  143. }
  144. set {
  145. this.matnrField = value;
  146. this.RaisePropertyChanged("Matnr");
  147. }
  148. }
  149. /// <remarks/>
  150. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=3)]
  151. public string Zghnu {
  152. get {
  153. return this.zghnuField;
  154. }
  155. set {
  156. this.zghnuField = value;
  157. this.RaisePropertyChanged("Zghnu");
  158. }
  159. }
  160. /// <remarks/>
  161. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=4)]
  162. public string Zjdnu {
  163. get {
  164. return this.zjdnuField;
  165. }
  166. set {
  167. this.zjdnuField = value;
  168. this.RaisePropertyChanged("Zjdnu");
  169. }
  170. }
  171. /// <remarks/>
  172. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=5)]
  173. public string Zscnu {
  174. get {
  175. return this.zscnuField;
  176. }
  177. set {
  178. this.zscnuField = value;
  179. this.RaisePropertyChanged("Zscnu");
  180. }
  181. }
  182. /// <remarks/>
  183. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=6)]
  184. public string Vbeln {
  185. get {
  186. return this.vbelnField;
  187. }
  188. set {
  189. this.vbelnField = value;
  190. this.RaisePropertyChanged("Vbeln");
  191. }
  192. }
  193. /// <remarks/>
  194. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=7)]
  195. public string Posnr {
  196. get {
  197. return this.posnrField;
  198. }
  199. set {
  200. this.posnrField = value;
  201. this.RaisePropertyChanged("Posnr");
  202. }
  203. }
  204. /// <remarks/>
  205. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=8)]
  206. public string Zclng {
  207. get {
  208. return this.zclngField;
  209. }
  210. set {
  211. this.zclngField = value;
  212. this.RaisePropertyChanged("Zclng");
  213. }
  214. }
  215. /// <remarks/>
  216. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=9)]
  217. public string Zspng {
  218. get {
  219. return this.zspngField;
  220. }
  221. set {
  222. this.zspngField = value;
  223. this.RaisePropertyChanged("Zspng");
  224. }
  225. }
  226. /// <remarks/>
  227. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=10)]
  228. public string Zqcng {
  229. get {
  230. return this.zqcngField;
  231. }
  232. set {
  233. this.zqcngField = value;
  234. this.RaisePropertyChanged("Zqcng");
  235. }
  236. }
  237. /// <remarks/>
  238. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=11)]
  239. public string Zhsng {
  240. get {
  241. return this.zhsngField;
  242. }
  243. set {
  244. this.zhsngField = value;
  245. this.RaisePropertyChanged("Zhsng");
  246. }
  247. }
  248. /// <remarks/>
  249. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=12)]
  250. public string Zgbng {
  251. get {
  252. return this.zgbngField;
  253. }
  254. set {
  255. this.zgbngField = value;
  256. this.RaisePropertyChanged("Zgbng");
  257. }
  258. }
  259. /// <remarks/>
  260. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=13)]
  261. public string Ztype {
  262. get {
  263. return this.ztypeField;
  264. }
  265. set {
  266. this.ztypeField = value;
  267. this.RaisePropertyChanged("Ztype");
  268. }
  269. }
  270. /// <remarks/>
  271. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=14)]
  272. public string Zmsg {
  273. get {
  274. return this.zmsgField;
  275. }
  276. set {
  277. this.zmsgField = value;
  278. this.RaisePropertyChanged("Zmsg");
  279. }
  280. }
  281. /// <remarks/>
  282. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=15)]
  283. public string Mjahr {
  284. get {
  285. return this.mjahrField;
  286. }
  287. set {
  288. this.mjahrField = value;
  289. this.RaisePropertyChanged("Mjahr");
  290. }
  291. }
  292. /// <remarks/>
  293. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=16)]
  294. public string Mblnr1 {
  295. get {
  296. return this.mblnr1Field;
  297. }
  298. set {
  299. this.mblnr1Field = value;
  300. this.RaisePropertyChanged("Mblnr1");
  301. }
  302. }
  303. /// <remarks/>
  304. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=17)]
  305. public string Ztype1 {
  306. get {
  307. return this.ztype1Field;
  308. }
  309. set {
  310. this.ztype1Field = value;
  311. this.RaisePropertyChanged("Ztype1");
  312. }
  313. }
  314. /// <remarks/>
  315. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=18)]
  316. public string Zmsg1 {
  317. get {
  318. return this.zmsg1Field;
  319. }
  320. set {
  321. this.zmsg1Field = value;
  322. this.RaisePropertyChanged("Zmsg1");
  323. }
  324. }
  325. /// <remarks/>
  326. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=19)]
  327. public string Mblnr2 {
  328. get {
  329. return this.mblnr2Field;
  330. }
  331. set {
  332. this.mblnr2Field = value;
  333. this.RaisePropertyChanged("Mblnr2");
  334. }
  335. }
  336. /// <remarks/>
  337. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=20)]
  338. public string Ztype2 {
  339. get {
  340. return this.ztype2Field;
  341. }
  342. set {
  343. this.ztype2Field = value;
  344. this.RaisePropertyChanged("Ztype2");
  345. }
  346. }
  347. /// <remarks/>
  348. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=21)]
  349. public string Zmsg2 {
  350. get {
  351. return this.zmsg2Field;
  352. }
  353. set {
  354. this.zmsg2Field = value;
  355. this.RaisePropertyChanged("Zmsg2");
  356. }
  357. }
  358. /// <remarks/>
  359. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=22)]
  360. public string Mblnr3 {
  361. get {
  362. return this.mblnr3Field;
  363. }
  364. set {
  365. this.mblnr3Field = value;
  366. this.RaisePropertyChanged("Mblnr3");
  367. }
  368. }
  369. /// <remarks/>
  370. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=23)]
  371. public string Ztype3 {
  372. get {
  373. return this.ztype3Field;
  374. }
  375. set {
  376. this.ztype3Field = value;
  377. this.RaisePropertyChanged("Ztype3");
  378. }
  379. }
  380. /// <remarks/>
  381. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=24)]
  382. public string Zmsg3 {
  383. get {
  384. return this.zmsg3Field;
  385. }
  386. set {
  387. this.zmsg3Field = value;
  388. this.RaisePropertyChanged("Zmsg3");
  389. }
  390. }
  391. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  392. protected void RaisePropertyChanged(string propertyName) {
  393. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  394. if ((propertyChanged != null)) {
  395. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  396. }
  397. }
  398. }
  399. /// <remarks/>
  400. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.3056.0")]
  401. [System.SerializableAttribute()]
  402. [System.Diagnostics.DebuggerStepThroughAttribute()]
  403. [System.ComponentModel.DesignerCategoryAttribute("code")]
  404. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="urn:sap-com:document:sap:soap:functions:mc-style")]
  405. public partial class Zppfm008Response : object, System.ComponentModel.INotifyPropertyChanged {
  406. private Zspp100[] tableInField;
  407. private Zspp100[] tableOutField;
  408. private string zmsgField;
  409. private string ztypeField;
  410. /// <remarks/>
  411. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
  412. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  413. public Zspp100[] TableIn {
  414. get {
  415. return this.tableInField;
  416. }
  417. set {
  418. this.tableInField = value;
  419. this.RaisePropertyChanged("TableIn");
  420. }
  421. }
  422. /// <remarks/>
  423. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
  424. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  425. public Zspp100[] TableOut {
  426. get {
  427. return this.tableOutField;
  428. }
  429. set {
  430. this.tableOutField = value;
  431. this.RaisePropertyChanged("TableOut");
  432. }
  433. }
  434. /// <remarks/>
  435. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=2)]
  436. public string Zmsg {
  437. get {
  438. return this.zmsgField;
  439. }
  440. set {
  441. this.zmsgField = value;
  442. this.RaisePropertyChanged("Zmsg");
  443. }
  444. }
  445. /// <remarks/>
  446. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=3)]
  447. public string Ztype {
  448. get {
  449. return this.ztypeField;
  450. }
  451. set {
  452. this.ztypeField = value;
  453. this.RaisePropertyChanged("Ztype");
  454. }
  455. }
  456. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  457. protected void RaisePropertyChanged(string propertyName) {
  458. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  459. if ((propertyChanged != null)) {
  460. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  461. }
  462. }
  463. }
  464. [System.Diagnostics.DebuggerStepThroughAttribute()]
  465. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  466. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  467. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  468. public partial class Zppfm008Request {
  469. [System.ServiceModel.MessageBodyMemberAttribute(Namespace="urn:sap-com:document:sap:soap:functions:mc-style", Order=0)]
  470. public Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008 Zppfm008;
  471. public Zppfm008Request() {
  472. }
  473. public Zppfm008Request(Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008 Zppfm008) {
  474. this.Zppfm008 = Zppfm008;
  475. }
  476. }
  477. [System.Diagnostics.DebuggerStepThroughAttribute()]
  478. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  479. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  480. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  481. public partial class Zppfm008Response1 {
  482. [System.ServiceModel.MessageBodyMemberAttribute(Namespace="urn:sap-com:document:sap:soap:functions:mc-style", Order=0)]
  483. public Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008Response Zppfm008Response;
  484. public Zppfm008Response1() {
  485. }
  486. public Zppfm008Response1(Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008Response Zppfm008Response) {
  487. this.Zppfm008Response = Zppfm008Response;
  488. }
  489. }
  490. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  491. public interface ZPPFM008Channel : Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.ZPPFM008, System.ServiceModel.IClientChannel {
  492. }
  493. [System.Diagnostics.DebuggerStepThroughAttribute()]
  494. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  495. public partial class ZPPFM008Client : System.ServiceModel.ClientBase<Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.ZPPFM008>, Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.ZPPFM008 {
  496. public ZPPFM008Client() {
  497. }
  498. public ZPPFM008Client(string endpointConfigurationName) :
  499. base(endpointConfigurationName) {
  500. }
  501. public ZPPFM008Client(string endpointConfigurationName, string remoteAddress) :
  502. base(endpointConfigurationName, remoteAddress) {
  503. }
  504. public ZPPFM008Client(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
  505. base(endpointConfigurationName, remoteAddress) {
  506. }
  507. public ZPPFM008Client(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
  508. base(binding, remoteAddress) {
  509. }
  510. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  511. Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008Response1 Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.ZPPFM008.Zppfm008(Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008Request request) {
  512. return base.Channel.Zppfm008(request);
  513. }
  514. public Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008Response Zppfm008(Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008 Zppfm0081) {
  515. Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008Request inValue = new Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008Request();
  516. inValue.Zppfm008 = Zppfm0081;
  517. Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.Zppfm008Response1 retVal = ((Dongke.IBOSS.PRD.Service.SAPHegiiDataService.HGSAPDK_ZPPFM008.ZPPFM008)(this)).Zppfm008(inValue);
  518. return retVal.Zppfm008Response;
  519. }
  520. }
  521. }