开发留的坑,数据库来填!数据库SQL防火墙,精准拦截99.99%的恶意SQL
2026/3/24 22:32:20
#include <QAbstractListModel> #include <QVector> #include <QPair> class CustomListModel:public QAbstractListModel{Q_OBJECTprivate:QVector<QString> m_data;// 存储消息数据 int m_columnCount = 2;// 默认2列 public: CustomListModel(QObject *parent = nullptr):QAbstractListModel(parent){