using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 添加监测记录任务
///
public class AddMonitorRecordInput
{
///
/// 测点标识
///
public long MonitorPointID { get; set; }
///
/// 数据时间
///
public DateTime DataTime { get; set; }
///
/// 数据值
///
public string DataValue { get; set; }
///
/// 数据状态
///
public string DataStatus { get; set; }
}
}