using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 重录监测周记录Input /// public class AgainMonitorWeekRecordInput { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 测点标识 /// public long MonitorPointID { get; set; } /// /// 开始日期 /// public DateTime StartDay { get; set; } /// /// 结束日期 /// public DateTime EndDay { get; set; } /// /// 原始时间 /// public DateTime SrcTime { get; set; } /// /// 原始值 /// public string SrcValue { get; set; } } }