You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
886 B

1 month ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Report.Entity
  7. {
  8. /// <summary>
  9. /// 乙肝报告单
  10. /// </summary>
  11. public class HBsAgAsbitem
  12. {
  13. public string itemTypeId { get; set; }
  14. public int absOrderNo { get; set; }
  15. public string asbitemNames { get; set; }
  16. public int displayOrder { get; set; }
  17. public string checkDoctorName { get; set; }
  18. public string checkDoctorSignUrl { get; set; }
  19. public string checkDate { get; set; }
  20. public string auditorName { get; set; }
  21. public string auditorSignUrl { get; set; }
  22. public string lisSampleNo { get; set; }
  23. public string samplerName { get; set; }
  24. public string samplingTime { get; set; }
  25. public string summarysText { get; set; }
  26. }
  27. }