TransactionOperation.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:4.0.30319.42000
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. using System.Xml.Serialization;
  11. //
  12. // This source code was auto-generated by xsd, Version=4.7.3081.0.
  13. //
  14. /// <remarks/>
  15. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.7.3081.0")]
  16. [System.SerializableAttribute()]
  17. [System.Diagnostics.DebuggerStepThroughAttribute()]
  18. [System.ComponentModel.DesignerCategoryAttribute("code")]
  19. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  20. [System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
  21. public partial class TransactionOperation {
  22. private object gradeConfirmField;
  23. private string nozzleNoField;
  24. private int trxIdField;
  25. private OpType opTypeField;
  26. /// <remarks/>
  27. public object GradeConfirm {
  28. get {
  29. return this.gradeConfirmField;
  30. }
  31. set {
  32. this.gradeConfirmField = value;
  33. }
  34. }
  35. /// <remarks/>
  36. public string NozzleNo {
  37. get {
  38. return this.nozzleNoField;
  39. }
  40. set {
  41. this.nozzleNoField = value;
  42. }
  43. }
  44. /// <remarks/>
  45. public int TrxId {
  46. get {
  47. return this.trxIdField;
  48. }
  49. set {
  50. this.trxIdField = value;
  51. }
  52. }
  53. /// <remarks/>
  54. [System.Xml.Serialization.XmlAttributeAttribute()]
  55. public OpType OpType {
  56. get {
  57. return this.opTypeField;
  58. }
  59. set {
  60. this.opTypeField = value;
  61. }
  62. }
  63. }
  64. /// <remarks/>
  65. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.7.3081.0")]
  66. [System.SerializableAttribute()]
  67. public enum OpType {
  68. /// <remarks/>
  69. Delete,
  70. /// <remarks/>
  71. NozzleSelect,
  72. }