1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TNozzleinfo
- {
- public byte LogicId { get; set; }
- public byte? PhysId { get; set; }
- public string DspNo { get; set; }
- public int? TankId { get; set; }
- public int? PumpNode { get; set; }
- public string State { get; set; }
- public string OilTypeId { get; set; }
- public string CarIdenAddr { get; set; }
- }
- }
|