FDCMessageCurrentFuellingStatus.cs 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. using System.Xml.Serialization;
  2. namespace Wayne.FDCPOSLibrary
  3. {
  4. [System.SerializableAttribute()]
  5. [System.Xml.Serialization.XmlRootAttribute(ElementName = "FDCMessage", Namespace = "")]
  6. public partial class FDCMessageCurrentFuellingStatus : FDCMessage
  7. {
  8. private FDCMessageFDCdataCurrentFuellingStatus[] fDCdataField;
  9. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  10. public FDCMessageFDCdataCurrentFuellingStatus[] FDCdata
  11. {
  12. get
  13. {
  14. return this.fDCdataField;
  15. }
  16. set
  17. {
  18. this.fDCdataField = value;
  19. }
  20. }
  21. public FDCMessageCurrentFuellingStatus()
  22. {
  23. this.MessageType = "CurrentFuellingStatus";
  24. }
  25. }
  26. [System.SerializableAttribute()]
  27. public partial class FDCMessageFDCdataCurrentFuellingStatus
  28. {
  29. private string FDCTimeStampField;
  30. private FDCMessageDeviceClassCurrentFuellingStatus[] DeviceClassField;
  31. //private FDCMessageDeviceClass[] DeviceClassField;
  32. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  33. public string FDCTimeStamp
  34. {
  35. get
  36. {
  37. return this.FDCTimeStampField;
  38. }
  39. set
  40. {
  41. this.FDCTimeStampField = value;
  42. }
  43. }
  44. [System.Xml.Serialization.XmlElementAttribute("DeviceClass", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  45. public FDCMessageDeviceClassCurrentFuellingStatus[] DeviceClass
  46. //public FDCMessageDeviceClass[] DeviceClass
  47. {
  48. get
  49. {
  50. return this.DeviceClassField;
  51. }
  52. set
  53. {
  54. this.DeviceClassField = value;
  55. }
  56. }
  57. }
  58. [System.SerializableAttribute()]
  59. public partial class FDCMessageDeviceClassCurrentFuellingStatus
  60. {
  61. private string TypeField;
  62. private string DeviceIdField;
  63. private string PumpNoField;
  64. private string TransactionNoField; // v03 field
  65. private string TransactionSeqNoField; // v05 and next field
  66. private FuelModeElementClass FuelModeField;
  67. private string CurrentAmountField; // v03 field
  68. private string CurrentVolumeField; // v03 field
  69. private string CurrentNozzleNoField; // v03 field
  70. private string CurrentUnitPriceField; // v03 field
  71. private string AmountField;
  72. private string VolumeField;
  73. private string NozzleNoField;
  74. private string UnitPriceField;
  75. private string ReleaseTokenField;
  76. private string VolumeProduct1Field;
  77. private string VolumeProduct2Field;
  78. private string Product1NoField;
  79. private string Product2NoField;
  80. private string BlendRatioField;
  81. [System.Xml.Serialization.XmlAttributeAttribute()]
  82. public string Type
  83. {
  84. get
  85. {
  86. return this.TypeField;
  87. }
  88. set
  89. {
  90. this.TypeField = value;
  91. }
  92. }
  93. [System.Xml.Serialization.XmlAttributeAttribute()]
  94. public string DeviceID
  95. {
  96. get
  97. {
  98. return this.DeviceIdField;
  99. }
  100. set
  101. {
  102. this.DeviceIdField = value;
  103. }
  104. }
  105. [System.Xml.Serialization.XmlAttributeAttribute()]
  106. public string PumpNo
  107. {
  108. get
  109. {
  110. return this.PumpNoField;
  111. }
  112. set
  113. {
  114. this.PumpNoField = value;
  115. }
  116. }
  117. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  118. public string TransactionNo
  119. {
  120. get
  121. {
  122. return this.TransactionNoField;
  123. }
  124. set
  125. {
  126. this.TransactionNoField = value;
  127. }
  128. }
  129. [System.Xml.Serialization.XmlAttributeAttribute()]
  130. public string TransactionSeqNo
  131. {
  132. get
  133. {
  134. return this.TransactionSeqNoField;
  135. }
  136. set
  137. {
  138. this.TransactionSeqNoField = value;
  139. }
  140. }
  141. [System.Xml.Serialization.XmlElementAttribute("FuelMode", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  142. public FuelModeElementClass FuelMode
  143. {
  144. get
  145. {
  146. return this.FuelModeField;
  147. }
  148. set
  149. {
  150. this.FuelModeField = value;
  151. }
  152. }
  153. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  154. public string CurrentAmount
  155. {
  156. get
  157. {
  158. return this.CurrentAmountField;
  159. }
  160. set
  161. {
  162. this.CurrentAmountField = value;
  163. }
  164. }
  165. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  166. public string CurrentVolume
  167. {
  168. get
  169. {
  170. return this.CurrentVolumeField;
  171. }
  172. set
  173. {
  174. this.CurrentVolumeField = value;
  175. }
  176. }
  177. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  178. public string CurrentNozzleNo
  179. {
  180. get
  181. {
  182. return this.CurrentNozzleNoField;
  183. }
  184. set
  185. {
  186. this.CurrentNozzleNoField = value;
  187. }
  188. }
  189. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  190. public string CurrentUnitPrice
  191. {
  192. get
  193. {
  194. return this.CurrentUnitPriceField;
  195. }
  196. set
  197. {
  198. this.CurrentUnitPriceField = value;
  199. }
  200. }
  201. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  202. public string Amount
  203. {
  204. get
  205. {
  206. return this.AmountField;
  207. }
  208. set
  209. {
  210. this.AmountField = value;
  211. }
  212. }
  213. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  214. public string Volume
  215. {
  216. get
  217. {
  218. return this.VolumeField;
  219. }
  220. set
  221. {
  222. this.VolumeField = value;
  223. }
  224. }
  225. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  226. public string NozzleNo
  227. {
  228. get
  229. {
  230. return this.NozzleNoField;
  231. }
  232. set
  233. {
  234. this.NozzleNoField = value;
  235. }
  236. }
  237. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  238. public string UnitPrice
  239. {
  240. get
  241. {
  242. return this.UnitPriceField;
  243. }
  244. set
  245. {
  246. this.UnitPriceField = value;
  247. }
  248. }
  249. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  250. public string ReleaseToken
  251. {
  252. get
  253. {
  254. return this.ReleaseTokenField;
  255. }
  256. set
  257. {
  258. this.ReleaseTokenField = value;
  259. }
  260. }
  261. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  262. public string VolumeProduct1
  263. {
  264. get
  265. {
  266. return this.VolumeProduct1Field;
  267. }
  268. set
  269. {
  270. this.VolumeProduct1Field = value;
  271. }
  272. }
  273. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  274. public string VolumeProduct2
  275. {
  276. get
  277. {
  278. return this.VolumeProduct2Field;
  279. }
  280. set
  281. {
  282. this.VolumeProduct2Field = value;
  283. }
  284. }
  285. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  286. public string Product1No
  287. {
  288. get
  289. {
  290. return this.Product1NoField;
  291. }
  292. set
  293. {
  294. this.Product1NoField = value;
  295. }
  296. }
  297. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  298. public string Product2No
  299. {
  300. get
  301. {
  302. return this.Product2NoField;
  303. }
  304. set
  305. {
  306. this.Product2NoField = value;
  307. }
  308. }
  309. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  310. public string BlendRatio
  311. {
  312. get
  313. {
  314. return this.BlendRatioField;
  315. }
  316. set
  317. {
  318. this.BlendRatioField = value;
  319. }
  320. }
  321. }
  322. }