:new:【微信支付】新增查询特约商户设置的允许服务商分账的最大比例的V3接口

This commit is contained in:
NotePlus
2022-12-11 07:48:34 +00:00
committed by binarywang
parent a3a8295262
commit b35645ee67
3 changed files with 53 additions and 2 deletions

View File

@@ -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;
}