mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
实时分账
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.jsowell.adapay.common;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@@ -10,14 +11,18 @@ import lombok.Setter;
|
||||
@Setter
|
||||
public class DivMember {
|
||||
// 分账用户 Member对象 的 id;若是商户本身时,传入0
|
||||
private String member_id;
|
||||
@JsonProperty(value = "member_id")
|
||||
private String memberId;
|
||||
|
||||
// 分账金额,精确到分,如0.50,1.00等,分账总金额必须等于主交易金额,金额不能为0.00
|
||||
@JsonProperty(value = "amount")
|
||||
private String amount;
|
||||
|
||||
// 是否手续费承担方,N-否,Y-是,手续费承担方有且只能有一个
|
||||
private String fee_flag;
|
||||
@JsonProperty(value = "fee_flag")
|
||||
private String feeFlag;
|
||||
|
||||
// 控制台 主页面应用的app_id,不上送默认取商户自身app_id
|
||||
private String app_id;
|
||||
@JsonProperty(value = "app_id")
|
||||
private String appId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user