com.uqpay.sdk.dto.result.appgate.MerchantListResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uqpay-payment Show documentation
Show all versions of uqpay-payment Show documentation
uqpay payment server side SDK
package com.uqpay.sdk.dto.result.appgate;
import java.util.List;
public class MerchantListResult extends PageInfo {
private static final long serialVersionUID = 9156199328263707604L;
private List merchantList;
public List getMerchantList() {
return merchantList;
}
public void setMerchantList(List merchantList) {
this.merchantList = merchantList;
}
}