Module: RockFintech::Api::Account::AccountTransactionQuery

Defined in:
lib/rock_fintech/api/account/account_transaction_query.rb

Instance Method Summary collapse

Instance Method Details

#account_transaction_query(card_no, record_flag, transact_type, begin_date, end_date, type, order_by, current_result, total_result, devise = "000001", remark = '') ⇒ Hash

营账户业务流水查询



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

def (card_no, record_flag, transact_type, begin_date, end_date, type, order_by, current_result, total_result, devise="000001", remark='')
  service = "account_transaction_query"

  params = {
    card_no: card_no,
    record_flag: record_flag,
    transact_type: transact_type,
    begin_date: begin_date,
    end_date: end_date,
    type: type,
    order_by: order_by,
    current_result: current_result,
    total_result: total_result,
    client: devise,
    custom: remark,
  }

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

  res
end