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.
23 lines
338 B
23 lines
338 B
|
3 years ago
|
#ifndef STRUCTS_H
|
||
|
|
#define STRUCTS_H
|
||
|
|
#include <QString>
|
||
|
|
#include <QPixmap>
|
||
|
|
|
||
|
|
enum ManagerType
|
||
|
|
{
|
||
|
|
None = 0,
|
||
|
|
Ruoyi,
|
||
|
|
MySql
|
||
|
|
};
|
||
|
|
|
||
|
|
//用户基本信心
|
||
|
|
typedef struct tagUserInfo
|
||
|
|
{
|
||
|
|
QString userName; // 用户名
|
||
|
|
QString uuid;// 验证码uuid
|
||
|
|
QString token;// 登录token
|
||
|
|
QPixmap codePix;
|
||
|
|
}UserInfo;
|
||
|
|
|
||
|
|
#endif // STRUCTS_H
|