using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class EtaPipeLineRunCurrentInfo
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 管路标识
///
public long PipeLineID { get; set; }
///
/// 管路名称
///
public string PipeLineName { get; set; }
///
/// 当前运行状态
///
public int CurrentRunStatus { get; set; }
///
/// 频率
///
public double HZ { get; set; }
}
}