You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
581 B
19 lines
581 B
|
3 years ago
|
# !/usr/bin/env python3
|
||
|
|
# -*- encoding : utf-8 -*-
|
||
|
|
# @Filename : messages.py
|
||
|
|
# @Software : VSCode
|
||
|
|
# @Datetime : 2021/11/04 21:14:47
|
||
|
|
# @Author : leo liu
|
||
|
|
# @Version : 1.0
|
||
|
|
# @Description :
|
||
|
|
|
||
|
|
class MessagesCn:
|
||
|
|
# 用户相关
|
||
|
|
MSG_WRONG_USERINFO: str = "用户名或者密码错误"
|
||
|
|
MSG_WRONG_POST_PARAMS: str = "POST请求参数错误"
|
||
|
|
MSG_WRONG_TOKEN: str = "token认证失败"
|
||
|
|
MSG_USER_INACTIVE: str = "用户未激活"
|
||
|
|
MSG_USER_UNSIGNUP: str = "未找到有效用户"
|
||
|
|
MSG_USER_LOGIN_SUCCESS: str = "用户登录成功"
|
||
|
|
|
||
|
|
msg = MessagesCn()
|