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.

22 lines
540 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. /// 父表:PatientInfo
  11. /// 子表:GuideInfo
  12. /// 关联字段:patientRegisterId
  13. /// </summary>
  14. public class GuideInfo
  15. {
  16. public string patientRegisterId { get; set; }
  17. public string guideName { get; set; }
  18. public int asbitemCount { get; set; }
  19. public int displayOrder { get; set; }
  20. }
  21. }