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.
|
|
namespace Shentun.Peis.PlugIns.Extensions.ChargeRequests.YinHai.FeeBacks{ public class FeeBackRequest { public CallBussinessRequestHeadDto head { get; set; } public FeeBackRequestBody body { get; set; } }
public class FeeBackRequestBody { public FeeBackRequestData data { get; set; } }
public class FeeBackRequestData { public FeeBackRequestDetail request { get; set; } }
public class FeeBackRequestDetail { public string visit_id { get; set; } public string checkout_id { get; set; } public string org_code { get; set; } public string hos_id { get; set; } public string system_source { get; set; } public string fee_flag { get; set; } public string invoice_no { get; set; } public string collr_collector_code { get; set; } public string collr_collector_name { get; set; } public string collr_collector_date { get; set; } }}
|