com.alipay.api.response.ZhimaCustomerJobworthSceneUseResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.customer.jobworth.scene.use response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:39:14
*/
public class ZhimaCustomerJobworthSceneUseResponse extends AlipayResponse {
private static final long serialVersionUID = 8376348618427863641L;
/**
* 业务编码
*/
@ApiField("sub_code")
private String subCode;
/**
* 业务中文结果信息
*/
@ApiField("sub_msg")
private String subMsg;
public void setSubCode(String subCode) {
this.subCode = subCode;
}
public String getSubCode( ) {
return this.subCode;
}
public void setSubMsg(String subMsg) {
this.subMsg = subMsg;
}
public String getSubMsg( ) {
return this.subMsg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy