From 1a2c651d0490bc12c155a655b22949286b028061 Mon Sep 17 00:00:00 2001
From: wumu <mayi@mayi.com>
Date: 星期三, 24 五月 2023 22:33:48 +0800
Subject: [PATCH] 0524

---
 internal_system_v1/problemnotmoney.cpp      |   14 +
 internal_system_v1/punish.h                 |   22 +
 internal_system_v1/auditproject.cpp         |   14 +
 internal_system_v1/clientmainwindow.cpp     |   65 ++++
 internal_system_v1/problemcount.h           |   22 +
 internal_system_v1/punish.cpp               |   14 +
 internal_system_v1/problemrectification.cpp |   14 +
 internal_system_v1/clientmainwindow.ui      |   22 
 internal_system_v1/internal_system_v1.pro   |   30 +
 internal_system_v1/auditproject.ui          |   45 +++
 internal_system_v1/problemmoney.h           |   22 +
 internal_system_v1/caseclue.ui              |   45 +++
 internal_system_v1/auditworkload.ui         |   45 +++
 internal_system_v1/auditworkload.h          |   22 +
 internal_system_v1/caseclue.cpp             |   14 +
 internal_system_v1/problemnotmoney.ui       |   45 +++
 internal_system_v1/auditworkload.cpp        |   14 +
 internal_system_v1/clientmainwindow.h       |   34 ++
 internal_system_v1/problemcount.ui          |   45 +++
 internal_system_v1/caseclue.h               |   22 +
 internal_system_v1/problemrectification.h   |   22 +
 internal_system_v1/problemcount.cpp         |   14 +
 internal_system_v1/problemnotmoney.h        |   22 +
 internal_system_v1/problemmoney.cpp         |   14 +
 internal_system_v1/problemmoney.ui          |   45 +++
 internal_system_v1/auditproject.h           |   22 +
 internal_system_v1/punish.ui                |   45 +++
 internal_system_v1/problemrectification.ui  |   45 +++
 28 files changed, 784 insertions(+), 15 deletions(-)

diff --git a/internal_system_v1/auditproject.cpp b/internal_system_v1/auditproject.cpp
new file mode 100644
index 0000000..97accbf
--- /dev/null
+++ b/internal_system_v1/auditproject.cpp
@@ -0,0 +1,14 @@
+#include "auditproject.h"
+#include "ui_auditproject.h"
+
+AuditProject::AuditProject(QWidget *parent) :
+    QMainWindow(parent),
+    ui(new Ui::AuditProject)
+{
+    ui->setupUi(this);
+}
+
+AuditProject::~AuditProject()
+{
+    delete ui;
+}
diff --git a/internal_system_v1/auditproject.h b/internal_system_v1/auditproject.h
new file mode 100644
index 0000000..7cabf67
--- /dev/null
+++ b/internal_system_v1/auditproject.h
@@ -0,0 +1,22 @@
+#ifndef AUDITPROJECT_H
+#define AUDITPROJECT_H
+
+#include <QMainWindow>
+
+namespace Ui {
+class AuditProject;
+}
+
+class AuditProject : public QMainWindow
+{
+    Q_OBJECT
+
+public:
+    explicit AuditProject(QWidget *parent = 0);
+    ~AuditProject();
+
+private:
+    Ui::AuditProject *ui;
+};
+
+#endif // AUDITPROJECT_H
diff --git a/internal_system_v1/auditproject.ui b/internal_system_v1/auditproject.ui
new file mode 100644
index 0000000..4515c23
--- /dev/null
+++ b/internal_system_v1/auditproject.ui
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>AuditProject</class>
+ <widget class="QMainWindow" name="AuditProject">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>800</width>
+    <height>600</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>MainWindow</string>
+  </property>
+  <widget class="QWidget" name="centralwidget">
+   <widget class="QLabel" name="label">
+    <property name="geometry">
+     <rect>
+      <x>80</x>
+      <y>40</y>
+      <width>481</width>
+      <height>71</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string>瀹¤椤圭洰</string>
+    </property>
+   </widget>
+  </widget>
+  <widget class="QMenuBar" name="menubar">
+   <property name="geometry">
+    <rect>
+     <x>0</x>
+     <y>0</y>
+     <width>800</width>
+     <height>25</height>
+    </rect>
+   </property>
+  </widget>
+  <widget class="QStatusBar" name="statusbar"/>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
diff --git a/internal_system_v1/auditworkload.cpp b/internal_system_v1/auditworkload.cpp
new file mode 100644
index 0000000..eb3e264
--- /dev/null
+++ b/internal_system_v1/auditworkload.cpp
@@ -0,0 +1,14 @@
+#include "auditworkload.h"
+#include "ui_auditworkload.h"
+
+AuditWorkload::AuditWorkload(QWidget *parent) :
+    QMainWindow(parent),
+    ui(new Ui::AuditWorkload)
+{
+    ui->setupUi(this);
+}
+
+AuditWorkload::~AuditWorkload()
+{
+    delete ui;
+}
diff --git a/internal_system_v1/auditworkload.h b/internal_system_v1/auditworkload.h
new file mode 100644
index 0000000..89eb18c
--- /dev/null
+++ b/internal_system_v1/auditworkload.h
@@ -0,0 +1,22 @@
+#ifndef AUDITWORKLOAD_H
+#define AUDITWORKLOAD_H
+
+#include <QMainWindow>
+
+namespace Ui {
+class AuditWorkload;
+}
+
+class AuditWorkload : public QMainWindow
+{
+    Q_OBJECT
+
+public:
+    explicit AuditWorkload(QWidget *parent = 0);
+    ~AuditWorkload();
+
+private:
+    Ui::AuditWorkload *ui;
+};
+
+#endif // AUDITWORKLOAD_H
diff --git a/internal_system_v1/auditworkload.ui b/internal_system_v1/auditworkload.ui
new file mode 100644
index 0000000..840b4cf
--- /dev/null
+++ b/internal_system_v1/auditworkload.ui
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>AuditWorkload</class>
+ <widget class="QMainWindow" name="AuditWorkload">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>800</width>
+    <height>600</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>MainWindow</string>
+  </property>
+  <widget class="QWidget" name="centralwidget">
+   <widget class="QLabel" name="label">
+    <property name="geometry">
+     <rect>
+      <x>110</x>
+      <y>70</y>
+      <width>471</width>
+      <height>111</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string>鍐呭宸ヤ綔閲�</string>
+    </property>
+   </widget>
+  </widget>
+  <widget class="QMenuBar" name="menubar">
+   <property name="geometry">
+    <rect>
+     <x>0</x>
+     <y>0</y>
+     <width>800</width>
+     <height>25</height>
+    </rect>
+   </property>
+  </widget>
+  <widget class="QStatusBar" name="statusbar"/>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
diff --git a/internal_system_v1/caseclue.cpp b/internal_system_v1/caseclue.cpp
new file mode 100644
index 0000000..ce74a24
--- /dev/null
+++ b/internal_system_v1/caseclue.cpp
@@ -0,0 +1,14 @@
+#include "caseclue.h"
+#include "ui_caseclue.h"
+
+CaseClue::CaseClue(QWidget *parent) :
+    QMainWindow(parent),
+    ui(new Ui::CaseClue)
+{
+    ui->setupUi(this);
+}
+
+CaseClue::~CaseClue()
+{
+    delete ui;
+}
diff --git a/internal_system_v1/caseclue.h b/internal_system_v1/caseclue.h
new file mode 100644
index 0000000..9ad6bf9
--- /dev/null
+++ b/internal_system_v1/caseclue.h
@@ -0,0 +1,22 @@
+#ifndef CASECLUE_H
+#define CASECLUE_H
+
+#include <QMainWindow>
+
+namespace Ui {
+class CaseClue;
+}
+
+class CaseClue : public QMainWindow
+{
+    Q_OBJECT
+
+public:
+    explicit CaseClue(QWidget *parent = 0);
+    ~CaseClue();
+
+private:
+    Ui::CaseClue *ui;
+};
+
+#endif // CASECLUE_H
diff --git a/internal_system_v1/caseclue.ui b/internal_system_v1/caseclue.ui
new file mode 100644
index 0000000..96e37a6
--- /dev/null
+++ b/internal_system_v1/caseclue.ui
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>CaseClue</class>
+ <widget class="QMainWindow" name="CaseClue">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>800</width>
+    <height>600</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>MainWindow</string>
+  </property>
+  <widget class="QWidget" name="centralwidget">
+   <widget class="QLabel" name="label">
+    <property name="geometry">
+     <rect>
+      <x>160</x>
+      <y>120</y>
+      <width>301</width>
+      <height>101</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string>妗堜欢绾跨储</string>
+    </property>
+   </widget>
+  </widget>
+  <widget class="QMenuBar" name="menubar">
+   <property name="geometry">
+    <rect>
+     <x>0</x>
+     <y>0</y>
+     <width>800</width>
+     <height>25</height>
+    </rect>
+   </property>
+  </widget>
+  <widget class="QStatusBar" name="statusbar"/>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
diff --git a/internal_system_v1/clientmainwindow.cpp b/internal_system_v1/clientmainwindow.cpp
index f0b28a9..ae38526 100644
--- a/internal_system_v1/clientmainwindow.cpp
+++ b/internal_system_v1/clientmainwindow.cpp
@@ -6,9 +6,74 @@
     ui(new Ui::ClientMainWindow)
 {
     ui->setupUi(this);
+
+    initUi();
 }
 
 ClientMainWindow::~ClientMainWindow()
 {
     delete ui;
 }
+
+void ClientMainWindow::initUi()
+{
+    m_auditPro = new AuditProject(this);
+    m_auditworkload = new AuditWorkload(this);
+    m_problemMon = new ProblemMoney(this);
+    m_problemCnt = new ProblemCount(this);
+    m_probleRect = new ProblemRectification(this);
+    m_problemNotMon = new ProblemNotMoney(this);
+    m_punish = new Punish(this);
+    m_caseClue = new CaseClue(this);
+
+    ui->stackedWidget->addWidget(m_auditPro);
+    ui->stackedWidget->addWidget(m_auditworkload);
+    ui->stackedWidget->addWidget(m_problemMon);
+    ui->stackedWidget->addWidget(m_problemCnt);
+    ui->stackedWidget->addWidget(m_probleRect);
+    ui->stackedWidget->addWidget(m_problemNotMon);
+    ui->stackedWidget->addWidget(m_punish);
+    ui->stackedWidget->addWidget(m_caseClue);
+
+    ui->stackedWidget->setCurrentIndex(0);
+}
+
+void ClientMainWindow::on_pushButton_auditPro_clicked()
+{
+    ui->stackedWidget->setCurrentIndex(0);
+}
+
+void ClientMainWindow::on_pushButton_auditWorkload_clicked()
+{
+    ui->stackedWidget->setCurrentIndex(1);
+}
+
+void ClientMainWindow::on_pushButton_problemMoney_clicked()
+{
+    ui->stackedWidget->setCurrentIndex(2);
+}
+
+void ClientMainWindow::on_pushButton_problemCount_clicked()
+{
+    ui->stackedWidget->setCurrentIndex(3);
+}
+
+void ClientMainWindow::on_pushButton_problemRectification_clicked()
+{
+    ui->stackedWidget->setCurrentIndex(4);
+}
+
+void ClientMainWindow::on_pushButton_problemNotMoney_clicked()
+{
+    ui->stackedWidget->setCurrentIndex(5);
+}
+
+void ClientMainWindow::on_pushButton_punish_clicked()
+{
+    ui->stackedWidget->setCurrentIndex(6);
+}
+
+void ClientMainWindow::on_pushButton_caseClue_clicked()
+{
+    ui->stackedWidget->setCurrentIndex(7);
+}
diff --git a/internal_system_v1/clientmainwindow.h b/internal_system_v1/clientmainwindow.h
index a172dda..2e9bf0e 100644
--- a/internal_system_v1/clientmainwindow.h
+++ b/internal_system_v1/clientmainwindow.h
@@ -2,6 +2,14 @@
 #define CLIENTMAINWINDOW_H
 
 #include <QMainWindow>
+#include "auditproject.h"
+#include "auditworkload.h"
+#include "problemmoney.h"
+#include "problemcount.h"
+#include "problemrectification.h"
+#include "problemnotmoney.h"
+#include "punish.h"
+#include "caseclue.h"
 
 namespace Ui {
 class ClientMainWindow;
@@ -15,8 +23,34 @@
     explicit ClientMainWindow(QWidget *parent = 0);
     ~ClientMainWindow();
 
+    void initUi();
+private slots:
+    void on_pushButton_auditPro_clicked();
+
+    void on_pushButton_auditWorkload_clicked();
+
+    void on_pushButton_problemMoney_clicked();
+
+    void on_pushButton_problemCount_clicked();
+
+    void on_pushButton_problemRectification_clicked();
+
+    void on_pushButton_problemNotMoney_clicked();
+
+    void on_pushButton_punish_clicked();
+
+    void on_pushButton_caseClue_clicked();
+
 private:
     Ui::ClientMainWindow *ui;
+    AuditProject *m_auditPro;
+    AuditWorkload *m_auditworkload;
+    ProblemMoney *m_problemMon;
+    ProblemCount *m_problemCnt;
+    ProblemRectification *m_probleRect;
+    ProblemNotMoney *m_problemNotMon;
+    Punish *m_punish;
+    CaseClue *m_caseClue;
 };
 
 #endif // CLIENTMAINWINDOW_H
diff --git a/internal_system_v1/clientmainwindow.ui b/internal_system_v1/clientmainwindow.ui
index 73446ff..6aae787 100644
--- a/internal_system_v1/clientmainwindow.ui
+++ b/internal_system_v1/clientmainwindow.ui
@@ -35,7 +35,7 @@
           <item>
            <layout class="QVBoxLayout" name="verticalLayout">
             <item>
-             <widget class="QPushButton" name="pushButton">
+             <widget class="QPushButton" name="pushButton_auditPro">
               <property name="minimumSize">
                <size>
                 <width>0</width>
@@ -48,7 +48,7 @@
              </widget>
             </item>
             <item>
-             <widget class="QPushButton" name="pushButton_2">
+             <widget class="QPushButton" name="pushButton_auditWorkload">
               <property name="minimumSize">
                <size>
                 <width>0</width>
@@ -61,7 +61,7 @@
              </widget>
             </item>
             <item>
-             <widget class="QPushButton" name="pushButton_3">
+             <widget class="QPushButton" name="pushButton_problemMoney">
               <property name="minimumSize">
                <size>
                 <width>0</width>
@@ -74,7 +74,7 @@
              </widget>
             </item>
             <item>
-             <widget class="QPushButton" name="pushButton_4">
+             <widget class="QPushButton" name="pushButton_problemCount">
               <property name="minimumSize">
                <size>
                 <width>0</width>
@@ -87,7 +87,7 @@
              </widget>
             </item>
             <item>
-             <widget class="QPushButton" name="pushButton_5">
+             <widget class="QPushButton" name="pushButton_problemRectification">
               <property name="minimumSize">
                <size>
                 <width>0</width>
@@ -100,7 +100,7 @@
              </widget>
             </item>
             <item>
-             <widget class="QPushButton" name="pushButton_6">
+             <widget class="QPushButton" name="pushButton_problemNotMoney">
               <property name="minimumSize">
                <size>
                 <width>0</width>
@@ -113,7 +113,7 @@
              </widget>
             </item>
             <item>
-             <widget class="QPushButton" name="pushButton_7">
+             <widget class="QPushButton" name="pushButton_punish">
               <property name="minimumSize">
                <size>
                 <width>0</width>
@@ -126,7 +126,7 @@
              </widget>
             </item>
             <item>
-             <widget class="QPushButton" name="pushButton_15">
+             <widget class="QPushButton" name="pushButton_caseClue">
               <property name="minimumSize">
                <size>
                 <width>0</width>
@@ -149,10 +149,8 @@
              </size>
             </property>
             <property name="currentIndex">
-             <number>0</number>
+             <number>-1</number>
             </property>
-            <widget class="QWidget" name="page"/>
-            <widget class="QWidget" name="page_2"/>
            </widget>
           </item>
          </layout>
@@ -169,7 +167,7 @@
      <x>0</x>
      <y>0</y>
      <width>1075</width>
-     <height>26</height>
+     <height>25</height>
     </rect>
    </property>
   </widget>
diff --git a/internal_system_v1/internal_system_v1.pro b/internal_system_v1/internal_system_v1.pro
index 035e889..aabb6d7 100644
--- a/internal_system_v1/internal_system_v1.pro
+++ b/internal_system_v1/internal_system_v1.pro
@@ -25,10 +25,34 @@
 
 SOURCES += \
         main.cpp \
-        clientmainwindow.cpp
+        clientmainwindow.cpp \
+    auditproject.cpp \
+    auditworkload.cpp \
+    problemmoney.cpp \
+    problemcount.cpp \
+    problemrectification.cpp \
+    problemnotmoney.cpp \
+    punish.cpp \
+    caseclue.cpp
 
 HEADERS += \
-        clientmainwindow.h
+        clientmainwindow.h \
+    auditproject.h \
+    auditworkload.h \
+    problemmoney.h \
+    problemcount.h \
+    problemrectification.h \
+    problemnotmoney.h \
+    punish.h \
+    caseclue.h
 
 FORMS += \
-        clientmainwindow.ui
+        clientmainwindow.ui \
+    auditproject.ui \
+    auditworkload.ui \
+    problemmoney.ui \
+    problemcount.ui \
+    problemrectification.ui \
+    problemnotmoney.ui \
+    punish.ui \
+    caseclue.ui
diff --git a/internal_system_v1/problemcount.cpp b/internal_system_v1/problemcount.cpp
new file mode 100644
index 0000000..9a68b3e
--- /dev/null
+++ b/internal_system_v1/problemcount.cpp
@@ -0,0 +1,14 @@
+#include "problemcount.h"
+#include "ui_problemcount.h"
+
+ProblemCount::ProblemCount(QWidget *parent) :
+    QMainWindow(parent),
+    ui(new Ui::ProblemCount)
+{
+    ui->setupUi(this);
+}
+
+ProblemCount::~ProblemCount()
+{
+    delete ui;
+}
diff --git a/internal_system_v1/problemcount.h b/internal_system_v1/problemcount.h
new file mode 100644
index 0000000..af6f449
--- /dev/null
+++ b/internal_system_v1/problemcount.h
@@ -0,0 +1,22 @@
+#ifndef PROBLEMCOUNT_H
+#define PROBLEMCOUNT_H
+
+#include <QMainWindow>
+
+namespace Ui {
+class ProblemCount;
+}
+
+class ProblemCount : public QMainWindow
+{
+    Q_OBJECT
+
+public:
+    explicit ProblemCount(QWidget *parent = 0);
+    ~ProblemCount();
+
+private:
+    Ui::ProblemCount *ui;
+};
+
+#endif // PROBLEMCOUNT_H
diff --git a/internal_system_v1/problemcount.ui b/internal_system_v1/problemcount.ui
new file mode 100644
index 0000000..37626a0
--- /dev/null
+++ b/internal_system_v1/problemcount.ui
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>ProblemCount</class>
+ <widget class="QMainWindow" name="ProblemCount">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>800</width>
+    <height>600</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>MainWindow</string>
+  </property>
+  <widget class="QWidget" name="centralwidget">
+   <widget class="QLabel" name="label">
+    <property name="geometry">
+     <rect>
+      <x>190</x>
+      <y>120</y>
+      <width>421</width>
+      <height>91</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string>闂涓暟</string>
+    </property>
+   </widget>
+  </widget>
+  <widget class="QMenuBar" name="menubar">
+   <property name="geometry">
+    <rect>
+     <x>0</x>
+     <y>0</y>
+     <width>800</width>
+     <height>25</height>
+    </rect>
+   </property>
+  </widget>
+  <widget class="QStatusBar" name="statusbar"/>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
diff --git a/internal_system_v1/problemmoney.cpp b/internal_system_v1/problemmoney.cpp
new file mode 100644
index 0000000..4804b97
--- /dev/null
+++ b/internal_system_v1/problemmoney.cpp
@@ -0,0 +1,14 @@
+#include "problemmoney.h"
+#include "ui_problemmoney.h"
+
+ProblemMoney::ProblemMoney(QWidget *parent) :
+    QMainWindow(parent),
+    ui(new Ui::ProblemMoney)
+{
+    ui->setupUi(this);
+}
+
+ProblemMoney::~ProblemMoney()
+{
+    delete ui;
+}
diff --git a/internal_system_v1/problemmoney.h b/internal_system_v1/problemmoney.h
new file mode 100644
index 0000000..e7be187
--- /dev/null
+++ b/internal_system_v1/problemmoney.h
@@ -0,0 +1,22 @@
+#ifndef PROBLEMMONEY_H
+#define PROBLEMMONEY_H
+
+#include <QMainWindow>
+
+namespace Ui {
+class ProblemMoney;
+}
+
+class ProblemMoney : public QMainWindow
+{
+    Q_OBJECT
+
+public:
+    explicit ProblemMoney(QWidget *parent = 0);
+    ~ProblemMoney();
+
+private:
+    Ui::ProblemMoney *ui;
+};
+
+#endif // PROBLEMMONEY_H
diff --git a/internal_system_v1/problemmoney.ui b/internal_system_v1/problemmoney.ui
new file mode 100644
index 0000000..8ee8522
--- /dev/null
+++ b/internal_system_v1/problemmoney.ui
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>ProblemMoney</class>
+ <widget class="QMainWindow" name="ProblemMoney">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>800</width>
+    <height>600</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>MainWindow</string>
+  </property>
+  <widget class="QWidget" name="centralwidget">
+   <widget class="QLabel" name="label">
+    <property name="geometry">
+     <rect>
+      <x>170</x>
+      <y>130</y>
+      <width>371</width>
+      <height>51</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string>闂閲戦</string>
+    </property>
+   </widget>
+  </widget>
+  <widget class="QMenuBar" name="menubar">
+   <property name="geometry">
+    <rect>
+     <x>0</x>
+     <y>0</y>
+     <width>800</width>
+     <height>25</height>
+    </rect>
+   </property>
+  </widget>
+  <widget class="QStatusBar" name="statusbar"/>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
diff --git a/internal_system_v1/problemnotmoney.cpp b/internal_system_v1/problemnotmoney.cpp
new file mode 100644
index 0000000..50539d1
--- /dev/null
+++ b/internal_system_v1/problemnotmoney.cpp
@@ -0,0 +1,14 @@
+#include "problemnotmoney.h"
+#include "ui_problemnotmoney.h"
+
+ProblemNotMoney::ProblemNotMoney(QWidget *parent) :
+    QMainWindow(parent),
+    ui(new Ui::ProblemNotMoney)
+{
+    ui->setupUi(this);
+}
+
+ProblemNotMoney::~ProblemNotMoney()
+{
+    delete ui;
+}
diff --git a/internal_system_v1/problemnotmoney.h b/internal_system_v1/problemnotmoney.h
new file mode 100644
index 0000000..8941fdb
--- /dev/null
+++ b/internal_system_v1/problemnotmoney.h
@@ -0,0 +1,22 @@
+#ifndef PROBLEMNOTMONEY_H
+#define PROBLEMNOTMONEY_H
+
+#include <QMainWindow>
+
+namespace Ui {
+class ProblemNotMoney;
+}
+
+class ProblemNotMoney : public QMainWindow
+{
+    Q_OBJECT
+
+public:
+    explicit ProblemNotMoney(QWidget *parent = 0);
+    ~ProblemNotMoney();
+
+private:
+    Ui::ProblemNotMoney *ui;
+};
+
+#endif // PROBLEMNOTMONEY_H
diff --git a/internal_system_v1/problemnotmoney.ui b/internal_system_v1/problemnotmoney.ui
new file mode 100644
index 0000000..ad532ec
--- /dev/null
+++ b/internal_system_v1/problemnotmoney.ui
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>ProblemNotMoney</class>
+ <widget class="QMainWindow" name="ProblemNotMoney">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>800</width>
+    <height>600</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>MainWindow</string>
+  </property>
+  <widget class="QWidget" name="centralwidget">
+   <widget class="QLabel" name="label">
+    <property name="geometry">
+     <rect>
+      <x>120</x>
+      <y>80</y>
+      <width>481</width>
+      <height>111</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string>闂鏁存敼闈為噾棰�</string>
+    </property>
+   </widget>
+  </widget>
+  <widget class="QMenuBar" name="menubar">
+   <property name="geometry">
+    <rect>
+     <x>0</x>
+     <y>0</y>
+     <width>800</width>
+     <height>25</height>
+    </rect>
+   </property>
+  </widget>
+  <widget class="QStatusBar" name="statusbar"/>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
diff --git a/internal_system_v1/problemrectification.cpp b/internal_system_v1/problemrectification.cpp
new file mode 100644
index 0000000..146dcb4
--- /dev/null
+++ b/internal_system_v1/problemrectification.cpp
@@ -0,0 +1,14 @@
+#include "problemrectification.h"
+#include "ui_problemrectification.h"
+
+ProblemRectification::ProblemRectification(QWidget *parent) :
+    QMainWindow(parent),
+    ui(new Ui::ProblemRectification)
+{
+    ui->setupUi(this);
+}
+
+ProblemRectification::~ProblemRectification()
+{
+    delete ui;
+}
diff --git a/internal_system_v1/problemrectification.h b/internal_system_v1/problemrectification.h
new file mode 100644
index 0000000..67ebff1
--- /dev/null
+++ b/internal_system_v1/problemrectification.h
@@ -0,0 +1,22 @@
+#ifndef PROBLEMRECTIFICATION_H
+#define PROBLEMRECTIFICATION_H
+
+#include <QMainWindow>
+
+namespace Ui {
+class ProblemRectification;
+}
+
+class ProblemRectification : public QMainWindow
+{
+    Q_OBJECT
+
+public:
+    explicit ProblemRectification(QWidget *parent = 0);
+    ~ProblemRectification();
+
+private:
+    Ui::ProblemRectification *ui;
+};
+
+#endif // PROBLEMRECTIFICATION_H
diff --git a/internal_system_v1/problemrectification.ui b/internal_system_v1/problemrectification.ui
new file mode 100644
index 0000000..ba3a3b5
--- /dev/null
+++ b/internal_system_v1/problemrectification.ui
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>ProblemRectification</class>
+ <widget class="QMainWindow" name="ProblemRectification">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>800</width>
+    <height>600</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>MainWindow</string>
+  </property>
+  <widget class="QWidget" name="centralwidget">
+   <widget class="QLabel" name="label">
+    <property name="geometry">
+     <rect>
+      <x>130</x>
+      <y>120</y>
+      <width>521</width>
+      <height>111</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string>闂鏁存敼</string>
+    </property>
+   </widget>
+  </widget>
+  <widget class="QMenuBar" name="menubar">
+   <property name="geometry">
+    <rect>
+     <x>0</x>
+     <y>0</y>
+     <width>800</width>
+     <height>25</height>
+    </rect>
+   </property>
+  </widget>
+  <widget class="QStatusBar" name="statusbar"/>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
diff --git a/internal_system_v1/punish.cpp b/internal_system_v1/punish.cpp
new file mode 100644
index 0000000..e847f57
--- /dev/null
+++ b/internal_system_v1/punish.cpp
@@ -0,0 +1,14 @@
+#include "punish.h"
+#include "ui_punish.h"
+
+Punish::Punish(QWidget *parent) :
+    QMainWindow(parent),
+    ui(new Ui::Punish)
+{
+    ui->setupUi(this);
+}
+
+Punish::~Punish()
+{
+    delete ui;
+}
diff --git a/internal_system_v1/punish.h b/internal_system_v1/punish.h
new file mode 100644
index 0000000..fba87a1
--- /dev/null
+++ b/internal_system_v1/punish.h
@@ -0,0 +1,22 @@
+#ifndef PUNISH_H
+#define PUNISH_H
+
+#include <QMainWindow>
+
+namespace Ui {
+class Punish;
+}
+
+class Punish : public QMainWindow
+{
+    Q_OBJECT
+
+public:
+    explicit Punish(QWidget *parent = 0);
+    ~Punish();
+
+private:
+    Ui::Punish *ui;
+};
+
+#endif // PUNISH_H
diff --git a/internal_system_v1/punish.ui b/internal_system_v1/punish.ui
new file mode 100644
index 0000000..bb11262
--- /dev/null
+++ b/internal_system_v1/punish.ui
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>Punish</class>
+ <widget class="QMainWindow" name="Punish">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>800</width>
+    <height>600</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>MainWindow</string>
+  </property>
+  <widget class="QWidget" name="centralwidget">
+   <widget class="QLabel" name="label">
+    <property name="geometry">
+     <rect>
+      <x>130</x>
+      <y>80</y>
+      <width>511</width>
+      <height>151</height>
+     </rect>
+    </property>
+    <property name="text">
+     <string>澶勫垎</string>
+    </property>
+   </widget>
+  </widget>
+  <widget class="QMenuBar" name="menubar">
+   <property name="geometry">
+    <rect>
+     <x>0</x>
+     <y>0</y>
+     <width>800</width>
+     <height>25</height>
+    </rect>
+   </property>
+  </widget>
+  <widget class="QStatusBar" name="statusbar"/>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>

--
Gitblit v1.8.0