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