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.

33 lines
577 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
2 years ago
/**
* 发送成功
*/
SUCCESS(0, "发送成功"),
/**
* 对方当前不在线
*/
NOT_ONLINE(1, "对方当前不在线"),
/**
* 未找到对方的channel
*/
NOT_FIND_CHANNEL(2, "未找到对方的channel"),
/**
* 未知异常
*/
UNKONW_ERROR(9999, "未知异常");
3 years ago
private final Integer code;
private final String desc;
3 years ago
2 years ago
public Integer code() {
3 years ago
return this.code;
3 years ago
}
}