All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.binarywang.wxpay.bean.request.WxPayQueryExchangeRateRequest Maven / Gradle / Ivy

The newest version!
package com.github.binarywang.wxpay.bean.request;

import com.github.binarywang.wxpay.exception.WxPayException;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.*;
import lombok.experimental.Accessors;

import java.util.Map;

/**
 * 查询汇率请求.
 *
 * @author Binary Wang
 * created on  2020-05-23
 */
@Data
@EqualsAndHashCode(callSuper = true)
@Builder
@Accessors(chain = true)
@NoArgsConstructor
@AllArgsConstructor
@XStreamAlias("xml")
public class WxPayQueryExchangeRateRequest extends BaseWxPayRequest {
  private static final long serialVersionUID = -8796516942563060554L;
  /**
   * 币种
   * fee_type
   * 是
   * String(10)
   * USD
   * 外币币种
   */
  @XStreamAlias("fee_type")
  private String feeType;

  /**
   * 日期
   * date
   * 是
   * String(14)
   * 20150807
   * 格式为yyyyMMdd,如2009年12月25日表示为20091225。时区为GMT+8 beijing
   */
  @XStreamAlias("date")
  private String date;

  @Override
  protected void checkConstraints() throws WxPayException {

  }

  @Override
  protected void storeMap(Map map) {

  }

  @Override
  protected boolean needNonceStr() {
    return false;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy