com.taotao.cloud.pay.wxpay.wx.constants.WxPayConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taotao-cloud-starter-pay-wxpay Show documentation
Show all versions of taotao-cloud-starter-pay-wxpay Show documentation
taotao-cloud-starter-pay-wxpay
package com.taotao.cloud.pay.wxpay.wx.constants;
import java.math.BigDecimal;
/**
* @author lingting 2021/1/26 16:15
*/
public final class WxPayConstant {
private WxPayConstant() {
}
/**
* 一百
*/
public static final BigDecimal HUNDRED = new BigDecimal("100");
/**
* 签名字段名
*/
public static final String FIELD_SIGN = "sign";
/**
* 签名类型字段名
*/
public static final String FIELD_SIGN_TYPE = "sign_type";
/**
* 回调成功返回值
*/
public static final String CALLBACK_SUCCESS = "\n" + " \n"
+ " \n" + " ";
/**
* 回调验签失败返回值
*/
public static final String CALLBACK_SIGN_ERROR = "\n" + " \n"
+ " \n" + " ";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy