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.

31 lines
784 B

3 weeks ago
  1. using Shentun.Peis.PlugIns.LisRequests;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Shentun.Peis.PlugIns.Extensions.PacsRequests.YinHai
  8. {
  9. public class PacsRequestForPlugIns
  10. {
  11. /// <summary>
  12. ///
  13. /// </summary>
  14. public Guid RegisterCheckId { get; set; }
  15. /// <summary>
  16. /// 检查申请单号
  17. /// </summary>
  18. public string CheckRequestNo { get; set; }
  19. public Guid AsbitemId { get; set; }
  20. public string AsbitemName { get; set; }
  21. public decimal ChargePrice { get; set; }
  22. public List<LisRequestAsbitemForPlugIns> Asbitems { get; set; } = new List<LisRequestAsbitemForPlugIns>();
  23. }
  24. }