ProductReportConfirmDto.cs 749 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. using System.ComponentModel.DataAnnotations;
  3. using ShwasherSys.BaseSysInfo.SysAttachFiles.Dto;
  4. namespace ShwasherSys.Inspection.Dto
  5. {
  6. public class ProductReportConfirmDto
  7. {
  8. /// <summary>
  9. /// 检验编号
  10. /// </summary>
  11. public string ProductInspectReportNo { get; set; }
  12. /// <summary>
  13. /// 检验报告
  14. /// </summary>
  15. public string ReportContent { get; set; }
  16. /// <summary>
  17. /// 检验详情
  18. /// </summary>
  19. [StringLength(ProductInspectInfo.InspectContentMaxLength)]
  20. public string InspectContent { get; set; }
  21. public List<SysAttachFileCreateDto> AttachFiles { get; set; }
  22. }
  23. }