HospitalTransferRecordCancel.cs 763 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PTMedicalInsurance.Entity
  7. {
  8. /// <summary>
  9. /// 【2502】转院备案撤销
  10. /// 交易说明:通过此交易进行转院备案的撤销。
  11. /// </summary>
  12. public class HospitalTransferRecordCancellationInput
  13. {
  14. /// <summary>
  15. /// 待遇申报明细流水号
  16. /// </summary>
  17. public string trt_dcla_detl_sn { get; set; }
  18. /// <summary>
  19. /// 人员编号
  20. /// </summary>
  21. public string psn_no { get; set; }
  22. /// <summary>
  23. /// 备注
  24. /// 填写撤销原因
  25. /// </summary>
  26. public string memo { get; set; }
  27. }
  28. }