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
781 B

2 years ago
2 years ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Shentun.Peis.PatientRegisters
  5. {
  6. public class UpdatePatientRegisterCustomerOrgGroupDto
  7. {
  8. /// <summary>
  9. /// 人员登记ID
  10. /// </summary>
  11. public Guid PatientRegisterId { get; set; }
  12. /// <summary>
  13. /// 单位分组ID
  14. /// </summary>
  15. public Guid CustomerOrgGroupId { get; set; }
  16. /// <summary>
  17. /// 支付方式,比如是0.个人支付、1.单位支付、2.免费
  18. /// </summary>
  19. public char PayTypeFlag { get; set; } = '0';
  20. /// <summary>
  21. /// 是否保留加做的组合项目(分组之外的)
  22. /// </summary>
  23. public char IsReserveAddAsbitem { get; set; }
  24. }
  25. }