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

com.alipay.api.domain.LocalCategoryAndParentVO 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, 2023-08-24 13:33:07
 */
public class LocalCategoryAndParentVO extends AlipayObject {

	private static final long serialVersionUID = 2473475334199261895L;

	/**
	 * 叶子类目与它的父类目
	 */
	@ApiListField("cat_and_parent")
	@ApiField("local_appx_category_v_o")
	private List catAndParent;

	public List getCatAndParent() {
		return this.catAndParent;
	}
	public void setCatAndParent(List catAndParent) {
		this.catAndParent = catAndParent;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy