Sha256: a61c87247b945c96074ea41816c96af559c334c62dc0ac84d88e737a6dda7a1a
Contents?: true
Size: 1.27 KB
Versions: 20
Compression:
Stored size: 1.27 KB
Contents
# coding: utf-8 module RockFintech module Api module Account module FindAccountByMobile # 按手机号查询电子账号信息 # # @return [ Hash ] 结果集 # * :result [String] "S"/"F"/"P" # * :request_params [Hash] 请求参数 # * :response [Object] 请求返回对象 # * :code [String] 结果代码 # * :msg [String] 结果信息 # * :data: 具体业务返回信息 # * :mobile [String] 手机号 # * :product [String] 产品号 # * :card_no [String] 电子账号 # * :customer_no [String] 客户号 # * :issue_date [String] 开户日期 # * :name [String] 持卡人姓名 # * :cert_type [String] 证件类型,15-身份证18位 # * :cert_no [String] 证件号码 # def find_account_by_mobile(mobile, devise='000001', remark='') service = 'find_account_by_mobile' params = { mobile: mobile, client: devise, custom: remark, } res = operate_post(:query, service, params, Http::ErrorCode.find_account_by_mobile, ['RD000000']) res end end # module end end end
Version data entries
20 entries across 20 versions & 1 rubygems