You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
627 B

3 years ago
package com.bx.imcommon.enums;
3 years ago
import lombok.AllArgsConstructor;
3 years ago
@AllArgsConstructor
public enum IMSendCode {
3 years ago
SUCCESS(0,"发送成功"),
NOT_ONLINE(1,"对方当前不在线"),
NOT_FIND_CHANNEL(2,"未找到对方的channel"),
UNKONW_ERROR(9999,"未知异常");
3 years ago
private Integer code;
3 years ago
private String desc;
3 years ago
3 years ago
public static IMSendCode fromCode(Integer code){
for (IMSendCode typeEnum:values()) {
if (typeEnum.code.equals(code)) {
return typeEnum;
}
}
return null;
}
3 years ago
3 years ago
public Integer code(){
return this.code;
3 years ago
}
}