1
zj
2025-09-25 5e179f4180fd2dc93623699af614df9a2497ded6
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;
}