mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
✨ #1010 微信支付模块增加单次分账接口
This commit is contained in:
@@ -1,12 +1,11 @@
|
||||
package com.github.binarywang.wxpay.constant;
|
||||
|
||||
import com.google.common.collect.Lists;
|
||||
import org.apache.commons.lang3.time.FastDateFormat;
|
||||
|
||||
import java.text.Format;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.commons.lang3.time.FastDateFormat;
|
||||
|
||||
import com.google.common.collect.Lists;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 微信支付常量类
|
||||
@@ -273,4 +272,23 @@ public class WxPayConstants {
|
||||
*/
|
||||
public static final String CHANGE = "CHANGE";
|
||||
}
|
||||
|
||||
public static class ReceiverType {
|
||||
/**
|
||||
* 商户id
|
||||
*/
|
||||
public static final String MERCHANT_ID = "MERCHANT_ID";
|
||||
/**
|
||||
* 个人微信号
|
||||
*/
|
||||
public static final String PERSONAL_WECHATID = "PERSONAL_WECHATID";
|
||||
/**
|
||||
* 个人openid
|
||||
*/
|
||||
public static final String PERSONAL_OPENID = "PERSONAL_OPENID";
|
||||
/**
|
||||
* 个人sub_openid
|
||||
*/
|
||||
public static final String PERSONAL_SUB_OPENID = "PERSONAL_SUB_OPENID";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user