com.alipay.api.response.AlipaySocialAntforestWelfareforestBatchqueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.WelfareForestDetailDTO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.social.antforest.welfareforest.batchquery response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:33:21
*/
public class AlipaySocialAntforestWelfareforestBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 1541243213992362886L;
/**
* 用于页面展示使用的图片等信息
*/
@ApiField("global_display_info")
private String globalDisplayInfo;
/**
* 公益林详情信息列表
*/
@ApiListField("welfare_forest_detail_list")
@ApiField("welfare_forest_detail_d_t_o")
private List welfareForestDetailList;
public void setGlobalDisplayInfo(String globalDisplayInfo) {
this.globalDisplayInfo = globalDisplayInfo;
}
public String getGlobalDisplayInfo( ) {
return this.globalDisplayInfo;
}
public void setWelfareForestDetailList(List welfareForestDetailList) {
this.welfareForestDetailList = welfareForestDetailList;
}
public List getWelfareForestDetailList( ) {
return this.welfareForestDetailList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy