1
dd
2025-11-29 9437600612eb0243a3371ff1e4fa3689cce8c83a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}