namespace YBEE.EQM.Application;
///
/// 监测反馈结果输出参数
///
public class ExamResultOutput
{
///
/// 主键
///
[Required]
public int Id { get; set; }
///
/// 监测计划ID
///
[Required]
public int ExamPlanId { get; set; }
///
/// 监测结果发布内容ID
///
[Required]
public int ExamDataPublishId { get; set; }
///
/// 文件名
///
[Required]
public string FileName { get; set; }
///
/// 文件路径
///
[Required]
public string FilePath { get; set; }
///
/// 扩展名
///
[Required]
public string FileExtName { get; set; }
///
/// 文件大小
///
[Required]
public long FileSize { get; set; } = 0;
}