123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.IMisPlus.Models
- {
-
-
-
- public class Nozzle
- {
-
-
-
-
- public byte Id { get; set; }
-
-
-
-
- public byte PhysicalId { get; set; }
-
-
-
-
- public string DispNo { get; set; }
-
-
-
-
- public ushort SiteNozzleNo { get; set; }
-
-
-
-
- public byte TankId { get; set; }
-
-
-
-
- public string ProductCode { get; set; }
-
-
-
-
- public string State { get; set; }
-
-
-
-
- public string VehicleIdReaderAddress { get; set; }
- }
- }
|