using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class SzjtEnginePumpLeftTopInfoDto
{
///
/// 机泵ID
///
public long ID { get; set; }
///
/// 公司标识
///
public long CorpID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 生产厂家
///
public string Manufacturer { get; set; }
///
/// 额定流量
///
public double Rated_Q { get; set; }
///
/// 额定流量单位
///
public string Unit_Rated_Q { get; set; }
///
/// 电机功率
///
public double MotorPower { get; set; }
///
/// 电机功率单位
///
public string Unit_MotorPower { get; set; }
///
/// 额定扬程
///
public double Rated_H { get; set; }
///
/// 额定扬程
///
public string Unit_Rated_H { get; set; }
///
/// 单位水耗
///
public double UWP { get; set; }
///
/// 单位水耗单位
///
public string Unit_UWP { get; set; }
///
/// 连续运行时间
///
public string RunDurationTime { get; set; }
///
/// 安全运行时间
///
public string SafeDurationTime { get; set; }
}
}