11 lines
204 B
Go
11 lines
204 B
Go
package constant
|
|
|
|
const (
|
|
CodeSuccess int = 20000
|
|
CodeSysError int = 50000
|
|
CodeUnauthorizedError int = 50401
|
|
CodeForbiddenError int = 50403
|
|
CodeInvalidError int = 50001
|
|
)
|
|
|