| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDbManager.ResultSet
- {
- public class PumpNozzleInfoResult
- {
- public int LgNode { get; set; }
- public uint TankNo { get; set; }
- public int PosId { get; set; }
- public uint Protocol { get; set; }
- public int ProtcType { get; set; }
- public string Port { get; set; }
- public uint LinkPort { get; set; }
- public int Mode { get; set; }
- public int BuffSize { get; set; }
- public int CheckMode { get; set; }
- public int Node { get; set; }
- public int SubNode { get; set; }
- public int NozzleNum { get; set; }
- public int PumpType { get; set; }
- public string DspNo { get; set; }
- public uint MaxMon { get; set; }
- public uint MaxVol { get; set; }
- }
- }
|