com.alipay.api.response.ZhimaMerchantSingleDataUploadResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.merchant.single.data.upload response.
*
* @author auto create
* @since 1.0, 2017-05-27 22:38:09
*/
public class ZhimaMerchantSingleDataUploadResponse extends AlipayResponse {
private static final long serialVersionUID = 4711182296973958393L;
/**
* 公用回传参数(非必填),这个字段由商户传入,系统透传给商户。
*/
@ApiField("biz_ext_params")
private String bizExtParams;
/**
* 每次上传都会生成一个任务号 。
*/
@ApiField("task_id")
private String taskId;
public void setBizExtParams(String bizExtParams) {
this.bizExtParams = bizExtParams;
}
public String getBizExtParams( ) {
return this.bizExtParams;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getTaskId( ) {
return this.taskId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy