DestroyAllFypdRequest.cs 711 B

12345678910111213141516171819202122232425
  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.Local
  7. {
  8. // 删除住院期间所有未结算的费用凭单(出院结算之前,若出现HIS系统费用数据与结算系统费用数据出现不一致,可以使用该服务删除费用信息,重新导入)。
  9. public class DestroyAllFypdRequest
  10. {
  11. /// <summary>
  12. /// 病历号
  13. /// </summary>
  14. public string p_blh { get; set; }
  15. }
  16. public class DestroyAllFypdResponse
  17. {
  18. /// <summary>
  19. /// 执行代码
  20. /// </summary>
  21. public string resultcode { get; set; }
  22. }
  23. }