# !/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()