All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.AntMerchantExpandShopQueryModel Maven / Gradle / Ivy

package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 店铺查询接口
 *
 * @author auto create
 * @since 1.0, 2024-07-11 23:23:15
 */
public class AntMerchantExpandShopQueryModel extends AlipayObject {

	private static final long serialVersionUID = 5847624497855863366L;

	/**
	 * 行政区划版本,当前可传空值(取默认版本)、2022Q2、UPTODATE(取最新版本),其中空值默认为:2020Q1版本( address_version=''或null),想要查看版本是2022年2季度版本则传入:(address_version='2022Q2'),想要获取最新版本则传入:(address_version ='UPTODATE')
	 */
	@ApiField("address_version")
	private String addressVersion;

	/**
	 * 商户角色id,表示将要开的店属于哪个商户角色。对于直连开店场景,填写商户pid;对于间连开店场景(线上、线下、直付通),填写商户smid
	 */
	@ApiField("ip_role_id")
	private String ipRoleId;

	/**
	 * need_industry_info=0时不返回行业信息;need_industry_info=1时返回不需要审核的行业信息、审核通过的行业信息
	 */
	@ApiField("need_industry_info")
	private String needIndustryInfo;

	/**
	 * need_industry_license=0时不返回行业资质;need_industry_license=1时返回审核通过的行业资质
	 */
	@ApiField("need_industry_license")
	private String needIndustryLicense;

	/**
	 * 门店不置信时,是否需要返回shop_recommend_info
	 */
	@ApiField("need_recommend")
	private String needRecommend;

	/**
	 * 蚂蚁店铺id
	 */
	@ApiField("shop_id")
	private String shopId;

	/**
	 * 门店编号,表示该门店在该商户角色id(直连pid,间连smid)下,由商户自己定义的外部门店编号
	 */
	@ApiField("store_id")
	private String storeId;

	public String getAddressVersion() {
		return this.addressVersion;
	}
	public void setAddressVersion(String addressVersion) {
		this.addressVersion = addressVersion;
	}

	public String getIpRoleId() {
		return this.ipRoleId;
	}
	public void setIpRoleId(String ipRoleId) {
		this.ipRoleId = ipRoleId;
	}

	public String getNeedIndustryInfo() {
		return this.needIndustryInfo;
	}
	public void setNeedIndustryInfo(String needIndustryInfo) {
		this.needIndustryInfo = needIndustryInfo;
	}

	public String getNeedIndustryLicense() {
		return this.needIndustryLicense;
	}
	public void setNeedIndustryLicense(String needIndustryLicense) {
		this.needIndustryLicense = needIndustryLicense;
	}

	public String getNeedRecommend() {
		return this.needRecommend;
	}
	public void setNeedRecommend(String needRecommend) {
		this.needRecommend = needRecommend;
	}

	public String getShopId() {
		return this.shopId;
	}
	public void setShopId(String shopId) {
		this.shopId = shopId;
	}

	public String getStoreId() {
		return this.storeId;
	}
	public void setStoreId(String storeId) {
		this.storeId = storeId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy