using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 补充录入监测实时记录输入Model
///
public class SupplementMonitorRealRecordInput
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 测点标识
///
public long MonitorPointID { get; set; }
///
/// 原始时间
///
public DateTime SrcTime { get; set; }
///
/// 原始值
///
public string SrcValue { get; set; }
///
/// 数据时间
///
public DateTime DataTime { get; set; }
}
}