Sha256: b7b0d1778e40bfb3562cc7deaac4f3e13a7a0f07d97e67357c990679e8976f29

Contents?: true

Size: 777 Bytes

Versions: 5

Compression:

Stored size: 777 Bytes

Contents

# coding: utf-8
module Lanmao
  module Api
    module Trade
      module DownloadCheckfile
        # 对账文件下载
        #
        # @return [ Hash ] 结果集
        #   * :result [String] "S"/"F"/"P"
        #   * :request_params [Hash] 请求参数
        #   * :response [Object] 请求返回对象
        #   * :code [String] 结果代码
        #   * :msg [String] 结果信息
        #   * :data: 具体业务返回信息
        #       * :File [file] 对账文件
        #
        def download_checkfile(file_date)

          service = "DOWNLOAD_CHECKFILE"

          params = {
            fileDate: file_date
          }

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

          res
        end

      end # module
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
lanmao-0.8.0 lib/lanmao/api/trade/download_checkfile.rb
lanmao-0.7.0 lib/lanmao/api/trade/download_checkfile.rb
lanmao-0.6.0 lib/lanmao/api/trade/download_checkfile.rb
lanmao-0.5.0 lib/lanmao/api/trade/download_checkfile.rb
lanmao-0.4.0 lib/lanmao/api/trade/download_checkfile.rb