version upgrade to 1.7.3
This commit is contained in:
parent
806274445e
commit
1877813c0c
@ -771,3 +771,7 @@
|
||||
* 2016-11-22
|
||||
|
||||
+ weixin4j-mp:新增黑名单接口
|
||||
|
||||
* 2016-12-13
|
||||
|
||||
+ version upgrade to 1.7.3
|
||||
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.foxinmy</groupId>
|
||||
<artifactId>weixin4j</artifactId>
|
||||
<version>1.7.2</version>
|
||||
<version>1.7.3</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>weixin4j</name>
|
||||
<url>https://github.com/foxinmy/weixin4j</url>
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>com.foxinmy</groupId>
|
||||
<artifactId>weixin4j</artifactId>
|
||||
<version>1.7.2</version>
|
||||
<version>1.7.3</version>
|
||||
</parent>
|
||||
<artifactId>weixin4j-base</artifactId>
|
||||
<name>weixin4j-base</name>
|
||||
|
||||
@ -859,5 +859,5 @@ public class WeixinPayProxy {
|
||||
return customsApi.queryCustomsOrder(idQuery, customsCity);
|
||||
}
|
||||
|
||||
public final static String VERSION = "1.7.2";
|
||||
public final static String VERSION = "1.7.3";
|
||||
}
|
||||
|
||||
@ -0,0 +1,18 @@
|
||||
package com.foxinmy.weixin4j.type.mch;
|
||||
|
||||
/**
|
||||
* 退款资金来源
|
||||
* @className RefundAccountType
|
||||
* @author jinyu(foxinmy@gmail.com)
|
||||
* @date 2016年12月12日
|
||||
*/
|
||||
public enum RefundAccountType {
|
||||
/**
|
||||
* ---未结算资金退款(默认使用未结算资金退款)
|
||||
*/
|
||||
REFUND_SOURCE_UNSETTLED_FUNDS,
|
||||
/**
|
||||
* ---可用余额退款
|
||||
*/
|
||||
REFUND_SOURCE_RECHARGE_FUNDS
|
||||
}
|
||||
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>com.foxinmy</groupId>
|
||||
<artifactId>weixin4j</artifactId>
|
||||
<version>1.7.2</version>
|
||||
<version>1.7.3</version>
|
||||
</parent>
|
||||
<artifactId>weixin4j-example</artifactId>
|
||||
<version>1.0</version>
|
||||
@ -47,13 +47,13 @@
|
||||
<dependency>
|
||||
<groupId>com.foxinmy</groupId>
|
||||
<artifactId>weixin4j-mp</artifactId>
|
||||
<version>1.7.2</version>
|
||||
<version>1.7.3</version>
|
||||
</dependency>
|
||||
<!-- 微信企业号 -->
|
||||
<dependency>
|
||||
<groupId>com.foxinmy</groupId>
|
||||
<artifactId>weixin4j-qy</artifactId>
|
||||
<version>1.7.2</version>
|
||||
<version>1.7.3</version>
|
||||
</dependency>
|
||||
<!-- 微信被动消息(回调模式) -->
|
||||
<dependency>
|
||||
|
||||
@ -257,3 +257,7 @@
|
||||
* 2016-11-22
|
||||
|
||||
+ 新增黑名单接口
|
||||
|
||||
* 2016-12-13
|
||||
|
||||
+ version upgrade to 1.7.3
|
||||
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>com.foxinmy</groupId>
|
||||
<artifactId>weixin4j</artifactId>
|
||||
<version>1.7.2</version>
|
||||
<version>1.7.3</version>
|
||||
</parent>
|
||||
<artifactId>weixin4j-mp</artifactId>
|
||||
<name>weixin4j-mp</name>
|
||||
@ -29,5 +29,11 @@
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>ch.qos.logback</groupId>
|
||||
<artifactId>logback-core</artifactId>
|
||||
<version>1.1.8</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
@ -225,5 +225,5 @@ public class WeixinComponentProxy {
|
||||
authAppId), component(componentId).getTokenManager());
|
||||
}
|
||||
|
||||
public final static String VERSION = "1.7.2";
|
||||
public final static String VERSION = "1.7.3";
|
||||
}
|
||||
|
||||
@ -2062,5 +2062,5 @@ public class WeixinProxy {
|
||||
return cardApi.createCardQR(expireSeconds, cardQRs);
|
||||
}
|
||||
|
||||
public final static String VERSION = "1.7.2";
|
||||
public final static String VERSION = "1.7.3";
|
||||
}
|
||||
|
||||
@ -196,3 +196,7 @@
|
||||
* 2016-10-10
|
||||
|
||||
+ version upgrade to 1.7.2
|
||||
|
||||
* 2016-12-13
|
||||
|
||||
+ version upgrade to 1.7.3
|
||||
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>com.foxinmy</groupId>
|
||||
<artifactId>weixin4j</artifactId>
|
||||
<version>1.7.2</version>
|
||||
<version>1.7.3</version>
|
||||
</parent>
|
||||
<artifactId>weixin4j-qy</artifactId>
|
||||
<name>weixin4j-qy</name>
|
||||
|
||||
@ -1433,5 +1433,5 @@ public class WeixinProxy {
|
||||
return chatApi.sendChatMessage(message);
|
||||
}
|
||||
|
||||
public final static String VERSION = "1.7.2";
|
||||
public final static String VERSION = "1.7.3";
|
||||
}
|
||||
|
||||
@ -285,5 +285,5 @@ public class WeixinSuiteProxy {
|
||||
suite(suiteId).getTokenManager());
|
||||
}
|
||||
|
||||
public final static String VERSION = "1.7.2";
|
||||
public final static String VERSION = "1.7.3";
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user