cn.minsin.wechat.jsapi.model.JsapiRefundModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mutils-wechat-jsapi Show documentation
Show all versions of mutils-wechat-jsapi Show documentation
mutils组件中,提供微信jsapi(公众号)+微信支付模块。
官方文档:https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=7_1
package cn.minsin.wechat.jsapi.model;
import cn.minsin.core.init.AbstractConfig;
import cn.minsin.wechat.jsapi.config.MutilsWechatJsapiProperties;
import cn.minsin.wechat.wechatpay.core.model.RefundModel;
public class JsapiRefundModel extends RefundModel {
/**
*
*/
private static final long serialVersionUID = 8568880096579504317L;
public JsapiRefundModel() {
this.setAppid(AbstractConfig.loadConfig(MutilsWechatJsapiProperties.class).getAppid());
}
}