123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDataCourier.SpsData
- {
- public partial class TPumpinfo
- {
- public byte LgNode { get; set; }
- public string DspNo { get; set; }
- public uint? TankNo { get; set; }
- public byte? PosId { get; set; }
- public byte? PumpType { get; set; }
- public uint? Protocol { get; set; }
- public byte? ProtcType { get; set; }
- public string Port { get; set; }
- public uint? LinkPort { get; set; }
- public int? Node { get; set; }
- public int? SubNode { get; set; }
- public int? Mode { get; set; }
- public sbyte? NozzleNum { get; set; }
- public sbyte? DelayPara { get; set; }
- public sbyte? BuffSize { get; set; }
- public sbyte? CheckMode { get; set; }
- public uint? MaxMon { get; set; }
- public uint? MaxVol { get; set; }
- }
- }
|