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