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.

33 lines
995 B

3 weeks ago
  1. namespace Shentun.Peis.PlugIns.Extensions.ChargeRequests.YinHai.FeeBacks
  2. {
  3. public class FeeBackRequest
  4. {
  5. public CallBussinessRequestHeadDto head { get; set; }
  6. public FeeBackRequestBody body { get; set; }
  7. }
  8. public class FeeBackRequestBody
  9. {
  10. public FeeBackRequestData data { get; set; }
  11. }
  12. public class FeeBackRequestData
  13. {
  14. public FeeBackRequestDetail request { get; set; }
  15. }
  16. public class FeeBackRequestDetail
  17. {
  18. public string visit_id { get; set; }
  19. public string checkout_id { get; set; }
  20. public string org_code { get; set; }
  21. public string hos_id { get; set; }
  22. public string system_source { get; set; }
  23. public string fee_flag { get; set; }
  24. public string invoice_no { get; set; }
  25. public string collr_collector_code { get; set; }
  26. public string collr_collector_name { get; set; }
  27. public string collr_collector_date { get; set; }
  28. }
  29. }