cn.zhengzhanpeng.itchat4j.utils.enums.RetCodeEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of itchat4j Show documentation
Show all versions of itchat4j Show documentation
A application used to control wechat by java.
package cn.zhengzhanpeng.itchat4j.utils.enums;
public enum RetCodeEnum {
NORMAL("0", "普通"),
LOGIN_OUT("1102", "退出"),
LOGIN_OTHERWHERE("1101", "其它地方登陆"),
MOBILE_LOGIN_OUT("1102", "移动端退出"),
UNKOWN("9999", "未知")
;
private String code;
private String type;
RetCodeEnum(String code, String type) {
this.code = code;
this.type = type;
}
public String getCode() {
return code;
}
public String getType() {
return type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy