package com.stylefeng.guns.modular.system.util.Tingg.model;
|
|
/**
|
* 退款
|
* @author zhibing.pu
|
* @date 2023/3/17 9:49
|
*/
|
public class Payout {
|
/**
|
* 国家代码
|
*/
|
private String countryCode;
|
/**
|
* 接口类型
|
*/
|
private String function;
|
/**
|
* 参数实体
|
*/
|
private Payload payload;
|
|
public Payout() {
|
}
|
|
public Payout(String countryCode, String function, Payload payload) {
|
this.countryCode = countryCode;
|
this.function = function;
|
this.payload = payload;
|
}
|
|
public String getCountryCode() {
|
return countryCode;
|
}
|
|
public void setCountryCode(String countryCode) {
|
this.countryCode = countryCode;
|
}
|
|
public String getFunction() {
|
return function;
|
}
|
|
public void setFunction(String function) {
|
this.function = function;
|
}
|
|
public Payload getPayload() {
|
return payload;
|
}
|
|
public void setPayload(Payload payload) {
|
this.payload = payload;
|
}
|
}
|