using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class SupplementMonitorHourRecordInput
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 测点标识
///
public long MonitorPointID { get; set; }
///
/// 数据日期
///
public DateTime DataDay { get; set; }
///
/// 数据小时
///
public int DataHour { get; set; }
///
/// 原始时间
///
public DateTime? SrcTime { get; set; }
///
/// 原始值
///
public string SrcValue { get; set; }
}
}