using IStation.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 更新监测月记录输入Model
///
public class UpdateMonitorMonthRecordInput
{
///
/// id
///
public long ID { get; set; }
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 测点标识
///
public long MonitorPointID { get; set; }
///
/// 信号标识
///
public long SignalID { get; set; }
///
/// 记录类型
///
public eMonitorType RecordType { get; set; }
///
/// 数据年
///
public int DataYear { get; set; }
///
/// 数据月
///
public int DataMonth { get; set; }
///
/// 原始时间
///
public DateTime SrcTime { get; set; }
///
/// 原始值
///
public string SrcValue { get; set; }
///
/// 数据时间
///
public DateTime DataTime { get; set; }
///
/// 数据值(采用系统单位)
///
public string DataValue { get; set; }
///
/// 数据状态
///
public List DataStatus { get; set; }
}
}