lib/reapal/api/user/contract_query.rb in reapal-0.9.13 vs lib/reapal/api/user/contract_query.rb in reapal-0.10.0

- old
+ new

@@ -3,13 +3,13 @@ module Reapal module Api module User module ContractQuery - # 1.5 签约查询,支持个人和企业(API) + # 1.1.4 签约查询,支持个人和企业(API) # - # @param onekey_com_contract_flow_id [ String ] 签约订单号 + # @param contract_flow_id [ String ] 签约订单号 # # @return [ Hash ] 结果集 # * :result [String] 业务结果:'S/F/P' # * :request_params [Hash] 请求参数 # * :response [Object] 请求返回对象 @@ -22,19 +22,22 @@ # * :corpName [String] 法人代表姓名 # * :corpIdentity [String] 法人身份证号 # * :comLicense [String] 组织机构代码/社会征信号 # * :licStartDate [String] 企业组织机构证起始日 # * :licEndDate [String] 企业组织机构证截止日 - # * :mobile [String] 手机号 + # * :bankAccountNo [String] 银行卡后四位 + # * :bankCode [String] 银行编码 + # * :userType [String] 注册类别 01:出借人 02:借款人 03:担保人 04:受托方 + # * :bankMobile [String] 手机号 # * :email [String] 企业邮箱 # * :remark [String] 备注 # - def contract_query(onekey_com_contract_flow_id) + def contract_query(contract_flow_id) service = 'reapal.trust.contractQuery' post_path = '/reagw/agreement/agreeApi.htm' params = { - orderNo: onekey_com_contract_flow_id, + orderNo: contract_flow_id, queryTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'), } res = operate_post(:query, service, params, post_path, Http::ErrorCode.contract_query, ['0000'])