1
zj
2025-10-11 697b1c2b9961a48db1e81d72dbe07c6739d92119
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;
}