using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class SzjtStationLeftTopInfoDto
|
{
|
/// <summary>
|
/// 泵站名称
|
/// </summary>
|
public string StationName { get; set; }
|
/// <summary>
|
/// 监控值
|
/// </summary>
|
public List<SzjtStationRecordInfoDto> RecordInfos { get; set; }
|
/// <summary>
|
/// 运行状态
|
/// </summary>
|
public List<SzjtStationRunInfoDto> RunInfos { get; set; }
|
}
|
}
|