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.

41 lines
741 B

#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;
typedef struct tagTrendsRequstParam
{
QString period;//"1","3","5","10","15","20,"30",查询周期
QString tradeDay;//交易日
QString token;
QString pageNum;//页码
QString pageSize;//页数量
tagTrendsRequstParam()
{
period = "";
tradeDay = "2023-12-01";
token = "";
pageNum = "1";
pageSize = "10";
}
}TrendsRequestParam;
#endif // STRUCTS_H