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

com.alipay.api.domain.CategoryAndParentVO 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;

/**
 * 类目+父类目VO
 *
 * @author auto create
 * @since 1.0, 2023-07-17 17:48:20
 */
public class CategoryAndParentVO extends AlipayObject {

	private static final long serialVersionUID = 6813395416973354559L;

	/**
	 * 叶子类目与它的父类目
	 */
	@ApiListField("cat_and_parent")
	@ApiField("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