using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 添加监测数据上报类型
///
public class AddExamDataReportInput
{
///
/// 监测计划ID
///
[Required]
public int ExamPlanId { get; set; }
///
/// 上报类型
///
[Required]
public DataReportType Type { get; set; }
///
/// 开始时间
///
[Required]
public DateTime BeginTime { get; set; }
///
/// 结束时间
///
[Required]
public DateTime EndTime { get; set; }
///
/// 上报说明
///
[StringLength(2000)]
public string Remark { get; set; } = "";
}
///
/// 更新监测数据上报类型
///
public class UpdateExamDataReportInput : BaseId
{
///
/// 开始时间
///
[Required]
public DateTime BeginTime { get; set; }
///
/// 结束时间
///
[Required]
public DateTime EndTime { get; set; }
///
/// 上报说明
///
[StringLength(2000)]
public string Remark { get; set; } = "";
}