
com.alipay.api.response.AnttechBlockchainDefinAssetmanagePenetrateSubmitResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: anttech.blockchain.defin.assetmanage.penetrate.submit response.
*
* @author auto create
* @since 1.0, 2023-07-24 10:30:31
*/
public class AnttechBlockchainDefinAssetmanagePenetrateSubmitResponse extends AlipayResponse {
private static final long serialVersionUID = 3186422536536587848L;
/**
* 业务错误码
*/
@ApiField("error_code")
private String errorCode;
/**
* 错误信息
*/
@ApiField("error_msg")
private String errorMsg;
/**
* 业务展示类信息
*/
@ApiField("error_view_msg")
private String errorViewMsg;
/**
* 业务提交返回数据JSON,一般为业务类编号,成功与否等信息
*/
@ApiField("result_obj")
private String resultObj;
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorCode( ) {
return this.errorCode;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getErrorMsg( ) {
return this.errorMsg;
}
public void setErrorViewMsg(String errorViewMsg) {
this.errorViewMsg = errorViewMsg;
}
public String getErrorViewMsg( ) {
return this.errorViewMsg;
}
public void setResultObj(String resultObj) {
this.resultObj = resultObj;
}
public String getResultObj( ) {
return this.resultObj;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy