com.alipay.api.domain.KoubeiMerchantShopQueryModel 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, 2018-03-23 13:35:52
*/
public class KoubeiMerchantShopQueryModel extends AlipayObject {
private static final long serialVersionUID = 4678152328391928497L;
/**
* 用户从口碑商家中心页面跳转到ISV页面时url中带有的authCode值,用来ISV获取用户身份。
*/
@ApiField("auth_code")
private String authCode;
/**
* 商户的部门id,如果有值,返回当前商户下的所有未分配过部门的门店,加上当前部门id及其下分支部门的门店一起返回。如果为空,则仅返回当前商户下的所有未分配过部门的门店。
*/
@ApiField("dept_id")
private String deptId;
public String getAuthCode() {
return this.authCode;
}
public void setAuthCode(String authCode) {
this.authCode = authCode;
}
public String getDeptId() {
return this.deptId;
}
public void setDeptId(String deptId) {
this.deptId = deptId;
}
}