com.alipay.api.domain.KoubeiItemExtitemCategoryQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 品类查询接口
*
* @author auto create
* @since 1.0, 2016-10-26 18:05:10
*/
public class KoubeiItemExtitemCategoryQueryModel extends AlipayObject {
private static final long serialVersionUID = 2519175283928355225L;
/**
* 父品类编码. (查询顶级类目时值传0)
*/
@ApiField("parent_id")
private String parentId;
public String getParentId() {
return this.parentId;
}
public void setParentId(String parentId) {
this.parentId = parentId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy