1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #ifndef NODEMATRIXSERVICE_H
- #define NODEMATRIXSERVICE_H
- #include "ClassSet.h"
- class NodeMatrixService
- {
- public:
- NodeMatrixService(QObject *parent = nullptr);
-
-
- bool AddNodeMatrixInfo(const NodeMatrixInfo &nodeMatrixInfo);
-
- bool AddNodeMatrixInfoList(const QList<NodeMatrixInfo *> &jbInfoList);
-
- bool AddNodeMatrixInfoList2(const QList<NodeMatrixInfo *> &jbInfoList);
-
- bool UpdateNodeMatrixNodeValue(const NodeMatrixInfo &nodeMatrixInfo);
-
- bool UpdateNodeMatrixNodeValueList(const QList<NodeMatrixInfo *> jbInfoList);
-
- bool UpdateNodeMatrixNodeValueList2(const QList<NodeMatrixInfo *> jbInfoList);
-
- bool QueryNodeMatrixListByExpertName(QList<NodeMatrixInfo *> *nodeMatrixInfoList, QString expertName);
- bool QueryNodeMatrixListByExpertNameAndEngineerId(QString expertName, int engineerId, QString tableMsg,
- QString mark);
-
- bool QueryNodeMatrixListByExpertIdAndEngineerId(QString expertId, int engineerId, QString tableMsg);
-
- bool QueryNodeMatrixListByExpertNameAndEngineerId(QList<NodeMatrixInfo *> *nodeMatrixInfoList, QString expertName,
- int engineerId);
-
- bool QueryNodeMatrixListByExpertNameAndEngineerId2(QString expertName, int engineerId, QString tableMsg,
- QString mark, int tabIndex);
- bool QueryNodesByExpertNameAndEngineerId2(QList<NodeMatrixInfo *> *nodeMatrixInfoList, QString expertName,
- int engineerId, QString tableMsg, QString mark, int tabIndex);
-
- bool QueryNodeMatrixListByExpertIdAndEngineerId(QList<NodeMatrixInfo *> *nodeMatrixInfoList, int expertId,
- int engineerId, QString tableMsg);
-
- bool QueryNodeValueByUserIdAndEngineerId(int experId, int engineerId);
-
- bool QueryNodeMatrixListByExpertIdAndEngineerId2(QList<NodeMatrixInfo *> *nodeMatrixInfoList, int expertId,
- int engineerId, QString tableMsg);
-
- bool QueryNodeMatrixListByExpertId(QList<NodeMatrixInfo *> *nodeMatrixInfoList, int expertId);
-
- bool QueryNodeMatrixListByEngineerId(QList<NodeMatrixInfo *> *nodeMatrixInfoList, int engineerId);
-
- bool DeleteNodeMatrixListByEngineerId(int engineerId);
-
- bool DeleteNodeMatrixListByExpertName(QString expertName);
-
- bool DeleteNodeMatrixListByExpertId(int expertId);
- };
- #endif
|