package com.ruoyi.im.comm;
|
|
public class ImConstant {
|
// 云信API路径
|
public static final String YUNXIN_CREATE_USER_PATH = "/user/create.action";
|
|
// 云信响应码
|
public static final int YUNXIN_SUCCESS_CODE = 200;
|
public static final int YUNXIN_ACCOUNT_EXISTS_CODE = 414;
|
|
// 业务常量
|
public static final int MAX_GENERATE_ACCOUNT_ATTEMPTS = 10;
|
public static final int MIN_GENERATE_DELAY_MS = 5;
|
public static final int MAX_GENERATE_DELAY_MS = 30;
|
}
|