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

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

package com.alipay.api.domain;

import java.util.List;

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

/**
 * 人企店关系集
 *
 * @author auto create
 * @since 1.0, 2024-06-13 11:53:56
 */
public class RebusinessEntityRelation extends AlipayObject {

	private static final long serialVersionUID = 7847766458397922663L;

	/**
	 * 企业关系列表
	 */
	@ApiListField("org_list")
	@ApiField("company_relation_info")
	private List orgList;

	/**
	 * 店铺关系列表
	 */
	@ApiListField("shop_list")
	@ApiField("shop_relation_info")
	private List shopList;

	public List getOrgList() {
		return this.orgList;
	}
	public void setOrgList(List orgList) {
		this.orgList = orgList;
	}

	public List getShopList() {
		return this.shopList;
	}
	public void setShopList(List shopList) {
		this.shopList = shopList;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy