登录与授权等

This commit is contained in:
2024-01-07 15:13:35 +08:00
parent 968eab9b06
commit ec548f4256
22 changed files with 248 additions and 53 deletions

View File

@@ -1,7 +1,16 @@
package common
/*
2000 用户操作错误
3000 预留
4000 数据库操作错误
5000 系统错误
*/
const (
LoginErrorCode = 2001
NoPermission = 2002
LoginExpired = 2003
LoginErrorCode = 2001
NoPermission = 2002
LoginExpired = 2003
InvalidInstance = 2004
DuplicatedValue = 4001
)