com.alipay.api.domain.ExpenseMerchantInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 商户信息
*
* @author auto create
* @since 1.0, 2023-08-01 14:55:55
*/
public class ExpenseMerchantInfo extends AlipayObject {
private static final long serialVersionUID = 2786295256146678212L;
/**
* 商户名称
*/
@ApiField("merchant_name")
private String merchantName;
/**
* 商户ID
*/
@ApiField("pid")
private String pid;
/**
* 商户角色ID
*/
@ApiField("role_id")
private String roleId;
/**
* 角色类型
0-直连商户
1-间联商户
*/
@ApiField("role_type")
private String roleType;
/**
* 门店ID
*/
@ApiField("shop_id")
private String shopId;
/**
* 门店名称
*/
@ApiField("shop_name")
private String shopName;
public String getMerchantName() {
return this.merchantName;
}
public void setMerchantName(String merchantName) {
this.merchantName = merchantName;
}
public String getPid() {
return this.pid;
}
public void setPid(String pid) {
this.pid = pid;
}
public String getRoleId() {
return this.roleId;
}
public void setRoleId(String roleId) {
this.roleId = roleId;
}
public String getRoleType() {
return this.roleType;
}
public void setRoleType(String roleType) {
this.roleType = roleType;
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getShopName() {
return this.shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy