using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ShwasherSys.BaseSysInfo.SysAttachFiles.Dto; namespace ShwasherSys.Inspection.Dto { public class ProductReportConfirmDto { /// /// 检验编号 /// public string ProductInspectReportNo { get; set; } /// /// 检验报告 /// public string ReportContent { get; set; } /// /// 检验详情 /// [StringLength(ProductInspectInfo.InspectContentMaxLength)] public string InspectContent { get; set; } public List AttachFiles { get; set; } } }