mtfosbot/libs/route-utils/res-message/index.js

40 lines
575 B
JavaScript
Raw Normal View History

module.exports = {
Success: {
status: 200,
obj: {
status: 200,
message: 'success'
}
},
DataFormat: {
status: 400,
obj: {
status: 400,
message: 'input data format error'
}
},
2018-08-15 12:05:08 +00:00
NotLogin: {
status: 401,
obj: {
status: 401,
message: 'login first'
}
},
NotFound: {
status: 404,
obj: {
status: {
status: 404,
message: 'not found'
}
}
},
InternalError: {
status: 500,
obj: {
status: 500,
message: 'server internal error'
}
}
}