lsh
2024-04-23 a7b6ce59ee37e448a2a1ee99299e008c72391b16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.common;
 
import com.core.common.BaseRes;
 
public interface CodeRes extends BaseRes {
 
    // user
    String USER_10001 = "10001-账号不存在";
    String USER_10002 = "10002-账号已被禁用";
    String USER_10003 = "10003-密码错误";
 
    String SYSTEM_20001 = "20001-许可证已失效";
 
}