We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
付款码支付请求WxPayMicropayRequest的storeMap方法没有将分账字段profitSharing包含在内
@XStreamAlias("profit_sharing") private String profitSharing;
@OverRide protected void checkConstraints() { //do nothing }
@OverRide protected void storeMap(Map<String, String> map) { map.put("version", version); map.put("body", body); map.put("detail", detail); map.put("attach", attach); map.put("out_trade_no", outTradeNo); map.put("total_fee", totalFee.toString()); map.put("fee_type", feeType); map.put("spbill_create_ip", spbillCreateIp); map.put("goods_tag", goodsTag); map.put("limit_pay", limitPay); map.put("time_start", timeStart); map.put("time_expire", timeExpire); map.put("auth_code", authCode); map.put("scene_info", sceneInfo); }
The text was updated successfully, but these errors were encountered:
稍后加上
Sorry, something went wrong.
其实这种简单的问题可以直接提交PR了
🎨 #1452 微信支付付款码支付请求类的storeMap方法增加保存分账字段
b9f60cd
3.7.3.B 版本已修复,欢迎使用新版本
No branches or pull requests
付款码支付请求WxPayMicropayRequest的storeMap方法没有将分账字段profitSharing包含在内
@XStreamAlias("profit_sharing")
private String profitSharing;
@OverRide
protected void checkConstraints() {
//do nothing
}
@OverRide
protected void storeMap(Map<String, String> map) {
map.put("version", version);
map.put("body", body);
map.put("detail", detail);
map.put("attach", attach);
map.put("out_trade_no", outTradeNo);
map.put("total_fee", totalFee.toString());
map.put("fee_type", feeType);
map.put("spbill_create_ip", spbillCreateIp);
map.put("goods_tag", goodsTag);
map.put("limit_pay", limitPay);
map.put("time_start", timeStart);
map.put("time_expire", timeExpire);
map.put("auth_code", authCode);
map.put("scene_info", sceneInfo);
}
The text was updated successfully, but these errors were encountered: