TPumpinfo.cs 922 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDataCourier.SpsData
  4. {
  5. public partial class TPumpinfo
  6. {
  7. public byte LgNode { get; set; }
  8. public string DspNo { get; set; }
  9. public uint? TankNo { get; set; }
  10. public byte? PosId { get; set; }
  11. public byte? PumpType { get; set; }
  12. public uint? Protocol { get; set; }
  13. public byte? ProtcType { get; set; }
  14. public string Port { get; set; }
  15. public uint? LinkPort { get; set; }
  16. public int? Node { get; set; }
  17. public int? SubNode { get; set; }
  18. public int? Mode { get; set; }
  19. public sbyte? NozzleNum { get; set; }
  20. public sbyte? DelayPara { get; set; }
  21. public sbyte? BuffSize { get; set; }
  22. public sbyte? CheckMode { get; set; }
  23. public uint? MaxMon { get; set; }
  24. public uint? MaxVol { get; set; }
  25. }
  26. }