Module: RockFintech::Api::Query::BatchQueryRepaymentB

Defined in:
lib/rock_fintech/api/query/batch_query_repayment_b.rb

Instance Method Summary collapse

Instance Method Details

#batch_query_repayment_b(batch_no, batch_count, batch_type, batch_date, items, devise = '000001', remark = '') ⇒ Hash

批次还款查询



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/rock_fintech/api/query/batch_query_repayment_b.rb', line 46

def batch_query_repayment_b(batch_no, batch_count, batch_type,
                            batch_date, items,
                            devise='000001', remark='')

  service = 'batch_query_repayment_b'

  params = {
    batch_count: batch_count,
    batch_no: batch_no,
    batch_type: batch_type,
    batch_date: batch_date,
    items: items,
    client: devise,
    custom: remark,
  }

  res = operate_post(:query, service, params, Http::ErrorCode.batch_query_repayment_b, ['RD000000'])

  res
end