cn.signit.sdk.pojo.SignatureResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signit-java-sdk Show documentation
Show all versions of signit-java-sdk Show documentation
welcome use signit Java Sdk!
/*
* Copyright © 2018 signit.cn. All rights reserved.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package cn.signit.sdk.pojo;
public class SignatureResponse {
private String code;
private String message;
private String customTag;
private String invokeNo;
public Boolean isSuccess() {
if (code != null && code.equals("100550001")) {
return true;
} else {
return false;
}
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCustomTag() {
return customTag;
}
public void setCustomTag(String customTag) {
this.customTag = customTag;
}
public String getInvokeNo() {
return invokeNo;
}
public void setInvokeNo(String invokeNo) {
this.invokeNo = invokeNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy