ProjectManager.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #ifndef PROJECTMANAGER_H
  2. #define PROJECTMANAGER_H
  3. #include <QObject>
  4. class ProjectInfo;
  5. class ProjectManager : QObject
  6. {
  7. Q_OBJECT
  8. public:
  9. /// 指标体系类型
  10. /// @attention 枚举值与本地数据库关联,可以新增,但如无必要禁止修改,除非你知道自己在干什么
  11. enum IndexType
  12. {
  13. AbilityIndex = 0b1, // 能力重要度评估指标体系
  14. TechIndex = 0b1 << 1, // 技术措施重要度评估对象
  15. OptimalIndex = 0b1 << 2, // 方案优选评估指标体系
  16. EfficiencyIndex = 0b1 << 3, // 综合效能评估指标体系
  17. };
  18. Q_ENUM(IndexType)
  19. static QString nameOfIndexType(IndexType t);
  20. /// 评估类型
  21. /// 评估类型是根据指标类型体系定义的
  22. /// 一个评估类型包含一个或多个指标体系类型
  23. enum EvalType
  24. {
  25. None,
  26. DemandEval = AbilityIndex | TechIndex, // 需求分析评估
  27. OptimalEval = OptimalIndex, // 方案优选评估
  28. EfficiencyEval = EfficiencyIndex, // 综合效能评估
  29. };
  30. Q_ENUM(EvalType)
  31. Q_DECLARE_FLAGS(EvalTypes, EvalType)
  32. static QString nameOfEvalType(EvalType t);
  33. static QList<IndexType> indexListOfEvalTypes(EvalTypes flags);
  34. static EvalTypes evalTypes(ProjectInfo proj);
  35. static QList<EvalType> evalTypeList(EvalTypes types);
  36. static QList<EvalType> evalTypeList(ProjectInfo proj);
  37. static QList<IndexType> indexList(ProjectInfo proj);
  38. ///
  39. /// \brief queryProjects 查询全部项目
  40. /// \param projList 项目列表
  41. /// \return 错误码
  42. static int queryProjects(QList<ProjectInfo *> *projList);
  43. static int queryProjects(QList<ProjectInfo *> *list, int &total, int page, int pageSize, QString name);
  44. static int verifyProjectInfo(ProjectInfo proj);
  45. static int insertProject(ProjectInfo &proj);
  46. static int updateProject(ProjectInfo &proj);
  47. static int deleteProject(int id);
  48. };
  49. #endif // PROJECTMANAGER_H