Merge pull request #192 from kit-lee/package_fix

一些包引用的更新
This commit is contained in:
jinyu 2020-02-20 12:19:31 +08:00 committed by GitHub
commit 41db5f7e53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

@ -49,6 +49,12 @@
<artifactId>weixin4j-mp</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 微信支付商户平台 -->
<dependency>
<groupId>com.foxinmy</groupId>
<artifactId>weixin4j-pay</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<!-- 微信企业号 -->
<dependency>
<groupId>com.foxinmy</groupId>

View File

@ -38,7 +38,7 @@
<!-- 微信接口代理end -->
<!-- 微信支付接口代理start -->
<bean id="weixinPayProxy" class="com.foxinmy.weixin4j.payment.WeixinPayProxy">
<bean id="weixinPayProxy" class="com.foxinmy.weixin4j.pay.WeixinPayProxy">
<constructor-arg>
<!-- 商户信息:不声明则默认使用weixin4j.properties配置的weixin4j.account字段 -->
<bean class="com.foxinmy.weixin4j.model.WeixinPayAccount">

View File

@ -1,7 +1,7 @@
package com.foxinmy.weixin4j.pay.payment.mch;
import com.alibaba.fastjson.annotation.JSONField;
import com.foxinmy.weixin4j.type.mch.RedpacketSceneType;
import com.foxinmy.weixin4j.pay.type.mch.RedpacketSceneType;
import com.foxinmy.weixin4j.util.DateUtil;
import javax.xml.bind.annotation.XmlAccessType;