123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.FairbanksRTData.Support
- {
- public class FbFillingTransaction
- {
-
-
-
- public string ibank { get; set; }
-
-
-
- public DateTime StartDateTime { get; set; }
-
-
-
- public DateTime EndDateTime { get; set; }
-
-
-
- public int Pump { get; set; }
-
-
-
- public int Nozzle { get; set; }
-
-
-
- public decimal QTY { get; set; }
- }
- }
|