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.

49 lines
1.3 KiB

2 years ago
2 years ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Text;
  6. namespace Shentun.Peis.SysParmValues
  7. {
  8. public class UpdateSysParmValueManyRequestDto
  9. {
  10. /// <summary>
  11. /// 参数类别ID
  12. /// </summary>
  13. [Required(ErrorMessage ="参数类别不能为空")]
  14. public string SysParmTypeId { get; set; }
  15. /// <summary>
  16. /// 参数值详细
  17. /// </summary>
  18. public List<UpdateSysParmValueManyRequest_Detail> Details { get; set; } = new List<UpdateSysParmValueManyRequest_Detail>();
  19. }
  20. /// <summary>
  21. ///
  22. /// </summary>
  23. public class UpdateSysParmValueManyRequest_Detail
  24. {
  25. /// <summary>
  26. /// 系统参数ID
  27. /// </summary>
  28. public string SysParmId { get; set; }
  29. /// <summary>
  30. ///体检中心ID (全局参数为00000000-0000-0000-0000-000000000000)
  31. /// </summary>
  32. public Guid MedicalCenterId { get; set; }
  33. /// <summary>
  34. /// 参数值
  35. /// </summary>
  36. public string? ParmValue { get; set; }
  37. /// <summary>
  38. /// 参数值备注
  39. /// </summary>
  40. public string? Remark { get; set; }
  41. }
  42. }