#ifndef STRUCTS_H #define STRUCTS_H #include #include enum ManagerType { None = 0, Ruoyi, MySql }; //用户基本信心 typedef struct tagUserInfo { QString userName; // 用户名 QString uuid;// 验证码uuid QString token;// 登录token QPixmap codePix; }UserInfo; #endif // STRUCTS_H