/**
* 微信提现(企业付款)
*/
@RequestMapping(value = "/weixinWithdraw", method = RequestMethod.POST)
@ResponseBody
public Object weixinWithdraw(String openId,Double cashMoney, HttpServletRequest request, HttpServletResponse response) throws Exception {
request.setCharacterEncoding("UTF-8");
response.setCharacterEncoding("UTF-8");
// 参数组
String appid = WeiXinPayConfig.appid;
String mch_id = WeiXinPayConfig.mch_id;
String nonce_str = WXPayUtil.generateNonceStr();
String spbill_create_ip = WeiXinPayConfig.spbilCreateIp;
//是否校验用户姓名 NO_CHECK:不校验真实姓名 FORCE_CHECK:强校验真实姓名
String checkName = "NO_CHECK";
String partner_trade_no = cn.stylefeng.guns.core.util.StringUtils.getId();
//描述
String d
微信小程序提现
最新推荐文章于 2025-03-07 10:15:39 发布