module Lanmao::Api::Trade::ConfirmCheckfile

Public Instance Methods

confirm_checkfile(flow_id, file_date, detail) click to toggle source

对账文件确认

@return [ Hash ] 结果集

* :result [String] "S"/"F"/"P"
* :request_params [Hash] 请求参数
* :response [Object] 请求返回对象
* :code [String] 结果代码
* :msg [String] 结果信息
* :data: 具体业务返回信息
    * :code [Enum] 返回吗
    * :status [Enum] 业务处理状态(处理失败INIT;处理成功SUCCESS)
    * :errorCode [String] 错误码
    * :errorMessage [String] 错误描述
# File lib/lanmao/api/trade/confirm_checkfile.rb, line 20
def confirm_checkfile(flow_id, file_date, detail)

  service = "CONFIRM_CHECKFILE"

  params = {
    requestNo: flow_id,
    fileDate: file_date,
    detail: detail,
  }

  res = operate_post(:operate, service, params, :service)

  res
end