TPumpinfo.cs 910 B

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