All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jeewx.api.third.AuthorizerSetOptionRet Maven / Gradle / Ivy

Go to download

微信和钉钉开发SDK,主要提供微信、企业微信、钉钉的JAVA封装,降低集成难度,让API变简单

The newest version!
package org.jeewx.api.third;
/**
 * 设置选项返回结果
 * 成功返回 errcode":0,"errmsg":"ok"
 */
public class AuthorizerSetOptionRet {
	private Integer errcode;//	错误码
	private String errmsg;//	错误信息
	public Integer getErrcode() {
		return errcode;
	}
	public void setErrcode(Integer errcode) {
		this.errcode = errcode;
	}
	public String getErrmsg() {
		return errmsg;
	}
	public void setErrmsg(String errmsg) {
		this.errmsg = errmsg;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy