namespace YBEE.EQM.Application; /// /// 机构反馈文件输出参数 /// public class ExamOrgResultOutput : DEntityOutput { /// /// 监测计划ID /// [Required] public int ExamPlanId { get; set; } /// /// 监测结果发布内容ID /// [Required] public int ExamDataPublishId { get; set; } /// /// 监测机构ID /// [Required] public int ExamOrgId { get; set; } /// /// 机构ID /// [Required] public int SysOrgId { 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; /// /// 访问地址 /// public string Url { get; set; } = ""; /// /// 机构 /// public ExamOrgOutput ExamOrg { get; set; } /// /// 监测结果发布内容 /// public ExamDataPublishOutput ExamDataPublish { get; set; } }