Files
tonePage/Server/src/ServerStdResponse.ts
2024-08-31 22:52:31 +08:00

58 lines
1.2 KiB
TypeScript

const ServerStdResponse = {
OK: {
code: 0,
message: 'OK'
},
PARAMS_MISSING: {
code: -1,
message: 'Parameters missing'
},
INVALID_PARAMS: {
code: -2,
message: 'Invalid parameters'
},
SERVER_ERROR: {
code: -3,
message: 'Server error'
},
API_NOT_FOUND: {
code: -4,
message: 'API not found'
},
AUTH_ERROR: {
code: -5,
message: 'Authentication error'
},
BLOG: {
NOTFOUND: {
code: -4001,
message: 'Blog not found'
}
},
CAPTCHA: {
NOTFOUND: {
code: -5000,
message: 'captcha session not found'
},
MAX_TRY_COUNT: {
code: -5001,
message: 'captcha session try max count'
},
NOTRIGHT: {
code: -5002,
message: 'captcha is not right, please try again'
}
},
USER: {
NOTFOUND: {
code: -6000,
message: 'user is not found'
},
PASSWORD_ERROR:{
code: -6001,
message: 'user password is error'
}
}
} as const;
export default ServerStdResponse;