com.alipay.api.response.AlipayEbppInvoiceEnterpriseexctrlEmployertitleModifyResponse 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: alipay.ebpp.invoice.enterpriseexctrl.employertitle.modify response.
*
* @author auto create
* @since 1.0, 2024-05-31 09:47:52
*/
public class AlipayEbppInvoiceEnterpriseexctrlEmployertitleModifyResponse extends AlipayResponse {
private static final long serialVersionUID = 3314533673315967426L;
/**
* 返回码
10000-成功
其他都是失败
*/
@ApiField("code")
private String code;
/**
* 返回信息
*/
@ApiField("msg")
private String msg;
/**
* 是否成功
*/
@ApiField("success")
private Boolean success;
/**
* 抬头ID
*/
@ApiField("title_id")
private String titleId;
public void setCode(String code) {
this.code = code;
}
public String getCode( ) {
return this.code;
}
public void setMsg(String msg) {
this.msg = msg;
}
public String getMsg( ) {
return this.msg;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Boolean getSuccess( ) {
return this.success;
}
public void setTitleId(String titleId) {
this.titleId = titleId;
}
public String getTitleId( ) {
return this.titleId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy