mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
:new:【微信支付】新增查询特约商户设置的允许服务商分账的最大比例的V3接口
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.github.binarywang.wxpay.bean.profitsharingV3;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 微信V3接口-查询特约商户设置的允许服务商分账的最大比例结果类
|
||||
*
|
||||
* @author 狂龙骄子
|
||||
* @since 4.4.0
|
||||
* @date 2022-12-09
|
||||
*/
|
||||
@Data
|
||||
public class ProfitSharingMerchantMaxRatioQueryResult implements Serializable {
|
||||
private static final long serialVersionUID = -6259241881199571683L;
|
||||
|
||||
/** 子商户号 */
|
||||
@SerializedName("sub_mchid")
|
||||
private String subMchId;
|
||||
|
||||
/** 子商户允许服务商分账的最大比例,单位万分比,比如 2000表示20% */
|
||||
@SerializedName("max_ratio")
|
||||
private Integer maxRatio;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user