using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 重新分析某天的常规监测实时记录结果类 /// public class AnalyAgainMonitorGeneralRealRecordOfDayResultDto { /// /// /// public AnalyAgainMonitorGeneralRealRecordOfDayResultDto() { } /// /// /// public AnalyAgainMonitorGeneralRealRecordOfDayResultDto(bool succeed, string msg) { this.Succeed = succeed; this.Message = msg; } /// /// 是否成功 /// public bool Succeed { get; set; } /// /// 相关信息 /// public string Message { get; set; } } }