├── bin ├── View │ ├── Admin.class │ ├── Login.class │ ├── AdAdmin.class │ ├── AddStu$1.class │ ├── AddStu$2.class │ ├── AddStu$3.class │ ├── AddStu$4.class │ ├── AddStu.class │ ├── Admin$1.class │ ├── Admin$10.class │ ├── Admin$11.class │ ├── Admin$2.class │ ├── Admin$3.class │ ├── Admin$4.class │ ├── Admin$5.class │ ├── Admin$6.class │ ├── Admin$7.class │ ├── Admin$8.class │ ├── Admin$9.class │ ├── Delete$1.class │ ├── Delete$2.class │ ├── Delete$3.class │ ├── Delete.class │ ├── Login$1.class │ ├── Login$2.class │ ├── Login$3.class │ ├── Login$4.class │ ├── Login$5.class │ ├── LookStu.class │ ├── MainFace.class │ ├── StuMain.class │ ├── ADDCourses.class │ ├── AdAdmin$1.class │ ├── AdAdmin$2.class │ ├── AdAdmin$3.class │ ├── AddTeacher.class │ ├── LookAdmin.class │ ├── LookCourse.class │ ├── LookStu$1.class │ ├── MainFace$1.class │ ├── MainFace$2.class │ ├── MainFace$3.class │ ├── MainFace$4.class │ ├── MainFace$5.class │ ├── MainFace$6.class │ ├── MainFace$7.class │ ├── MainFace$8.class │ ├── MainFace$9.class │ ├── StuMain$1.class │ ├── StuMain$2.class │ ├── ADDCourses$1.class │ ├── ADDCourses$2.class │ ├── ADDCourses$3.class │ ├── ADDCourses$4.class │ ├── AdInformation.class │ ├── AddCourseStu.class │ ├── AddTeacher$1.class │ ├── AddTeacher$2.class │ ├── AddTeacher$3.class │ ├── LookAdmin$1.class │ ├── LookCourse$1.class │ ├── LookTeacher$1.class │ ├── LookTeacher.class │ ├── AdInformation$1.class │ ├── AdInformation$2.class │ ├── AddCourseStu$1.class │ ├── AddCourseStu$2.class │ ├── AddCourseStu$3.class │ ├── LookCourse.form │ ├── LookAdmin.form │ ├── LookStu.form │ ├── LookTeacher.form │ ├── StuMain.form │ ├── AdInformation.form │ ├── AdAdmin.form │ ├── AddCourseStu.form │ ├── AddTeacher.form │ ├── ADDCourses.form │ ├── Delete.form │ ├── Login.form │ └── Admin.form └── model │ ├── AdLogin.class │ ├── Grade.class │ ├── SLogin.class │ ├── TLogin.class │ ├── Teacher.class │ ├── AddAdmin.class │ ├── StuGrade.class │ ├── AddCourses.class │ ├── AddStudent.class │ ├── ModelFactory.class │ ├── DataConnection.class │ └── CourseSelection.class ├── src ├── View │ ├── AddStu.java │ ├── Admin.java │ ├── Delete.java │ ├── Login.java │ ├── AdAdmin.java │ ├── LookAdmin.java │ ├── LookStu.java │ ├── MainFace.java │ ├── StuMain.java │ ├── ADDCourses.java │ ├── AddTeacher.java │ ├── LookCourse.java │ ├── LookTeacher.java │ ├── AdInformation.java │ ├── AddCourseStu.java │ ├── LookCourse.form │ ├── LookAdmin.form │ ├── LookStu.form │ ├── LookTeacher.form │ ├── StuMain.form │ ├── AdInformation.form │ ├── AdAdmin.form │ ├── AddCourseStu.form │ ├── AddTeacher.form │ ├── ADDCourses.form │ ├── Delete.form │ └── Login.form └── model │ ├── ModelFactory.java │ ├── DataConnection.java │ ├── StuGrade.java │ ├── AdLogin.java │ ├── AddAdmin.java │ ├── SLogin.java │ ├── TLogin.java │ ├── Teacher.java │ ├── Grade.java │ ├── AddCourses.java │ ├── AddStudent.java │ └── CourseSelection.java ├── lib ├── AbsoluteLayout.jar ├── beautyeye_lnf.jar ├── swing-layout-1.0.3.jar └── mysql-connector-java-3.0.15-ga-bin.jar ├── .settings ├── com.genuitec.eclipse.core.prefs └── org.eclipse.jdt.core.prefs ├── .project ├── .classpath ├── .myeclipse └── profiler │ └── StuMain.xml └── sql └── sgms.sql /bin/View/Admin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin.class -------------------------------------------------------------------------------- /bin/View/Login.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Login.class -------------------------------------------------------------------------------- /src/View/AddStu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/AddStu.java -------------------------------------------------------------------------------- /src/View/Admin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/Admin.java -------------------------------------------------------------------------------- /src/View/Delete.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/Delete.java -------------------------------------------------------------------------------- /src/View/Login.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/Login.java -------------------------------------------------------------------------------- /bin/View/AdAdmin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AdAdmin.class -------------------------------------------------------------------------------- /bin/View/AddStu$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddStu$1.class -------------------------------------------------------------------------------- /bin/View/AddStu$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddStu$2.class -------------------------------------------------------------------------------- /bin/View/AddStu$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddStu$3.class -------------------------------------------------------------------------------- /bin/View/AddStu$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddStu$4.class -------------------------------------------------------------------------------- /bin/View/AddStu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddStu.class -------------------------------------------------------------------------------- /bin/View/Admin$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin$1.class -------------------------------------------------------------------------------- /bin/View/Admin$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin$10.class -------------------------------------------------------------------------------- /bin/View/Admin$11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin$11.class -------------------------------------------------------------------------------- /bin/View/Admin$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin$2.class -------------------------------------------------------------------------------- /bin/View/Admin$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin$3.class -------------------------------------------------------------------------------- /bin/View/Admin$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin$4.class -------------------------------------------------------------------------------- /bin/View/Admin$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin$5.class -------------------------------------------------------------------------------- /bin/View/Admin$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin$6.class -------------------------------------------------------------------------------- /bin/View/Admin$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin$7.class -------------------------------------------------------------------------------- /bin/View/Admin$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin$8.class -------------------------------------------------------------------------------- /bin/View/Admin$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Admin$9.class -------------------------------------------------------------------------------- /bin/View/Delete$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Delete$1.class -------------------------------------------------------------------------------- /bin/View/Delete$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Delete$2.class -------------------------------------------------------------------------------- /bin/View/Delete$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Delete$3.class -------------------------------------------------------------------------------- /bin/View/Delete.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Delete.class -------------------------------------------------------------------------------- /bin/View/Login$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Login$1.class -------------------------------------------------------------------------------- /bin/View/Login$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Login$2.class -------------------------------------------------------------------------------- /bin/View/Login$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Login$3.class -------------------------------------------------------------------------------- /bin/View/Login$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Login$4.class -------------------------------------------------------------------------------- /bin/View/Login$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/Login$5.class -------------------------------------------------------------------------------- /bin/View/LookStu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/LookStu.class -------------------------------------------------------------------------------- /bin/View/MainFace.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/MainFace.class -------------------------------------------------------------------------------- /bin/View/StuMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/StuMain.class -------------------------------------------------------------------------------- /bin/model/AdLogin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/AdLogin.class -------------------------------------------------------------------------------- /bin/model/Grade.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/Grade.class -------------------------------------------------------------------------------- /bin/model/SLogin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/SLogin.class -------------------------------------------------------------------------------- /bin/model/TLogin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/TLogin.class -------------------------------------------------------------------------------- /bin/model/Teacher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/Teacher.class -------------------------------------------------------------------------------- /lib/AbsoluteLayout.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/lib/AbsoluteLayout.jar -------------------------------------------------------------------------------- /lib/beautyeye_lnf.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/lib/beautyeye_lnf.jar -------------------------------------------------------------------------------- /src/View/AdAdmin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/AdAdmin.java -------------------------------------------------------------------------------- /src/View/LookAdmin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/LookAdmin.java -------------------------------------------------------------------------------- /src/View/LookStu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/LookStu.java -------------------------------------------------------------------------------- /src/View/MainFace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/MainFace.java -------------------------------------------------------------------------------- /src/View/StuMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/StuMain.java -------------------------------------------------------------------------------- /bin/View/ADDCourses.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/ADDCourses.class -------------------------------------------------------------------------------- /bin/View/AdAdmin$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AdAdmin$1.class -------------------------------------------------------------------------------- /bin/View/AdAdmin$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AdAdmin$2.class -------------------------------------------------------------------------------- /bin/View/AdAdmin$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AdAdmin$3.class -------------------------------------------------------------------------------- /bin/View/AddTeacher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddTeacher.class -------------------------------------------------------------------------------- /bin/View/LookAdmin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/LookAdmin.class -------------------------------------------------------------------------------- /bin/View/LookCourse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/LookCourse.class -------------------------------------------------------------------------------- /bin/View/LookStu$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/LookStu$1.class -------------------------------------------------------------------------------- /bin/View/MainFace$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/MainFace$1.class -------------------------------------------------------------------------------- /bin/View/MainFace$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/MainFace$2.class -------------------------------------------------------------------------------- /bin/View/MainFace$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/MainFace$3.class -------------------------------------------------------------------------------- /bin/View/MainFace$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/MainFace$4.class -------------------------------------------------------------------------------- /bin/View/MainFace$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/MainFace$5.class -------------------------------------------------------------------------------- /bin/View/MainFace$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/MainFace$6.class -------------------------------------------------------------------------------- /bin/View/MainFace$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/MainFace$7.class -------------------------------------------------------------------------------- /bin/View/MainFace$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/MainFace$8.class -------------------------------------------------------------------------------- /bin/View/MainFace$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/MainFace$9.class -------------------------------------------------------------------------------- /bin/View/StuMain$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/StuMain$1.class -------------------------------------------------------------------------------- /bin/View/StuMain$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/StuMain$2.class -------------------------------------------------------------------------------- /bin/model/AddAdmin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/AddAdmin.class -------------------------------------------------------------------------------- /bin/model/StuGrade.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/StuGrade.class -------------------------------------------------------------------------------- /src/View/ADDCourses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/ADDCourses.java -------------------------------------------------------------------------------- /src/View/AddTeacher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/AddTeacher.java -------------------------------------------------------------------------------- /src/View/LookCourse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/LookCourse.java -------------------------------------------------------------------------------- /src/View/LookTeacher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/LookTeacher.java -------------------------------------------------------------------------------- /bin/View/ADDCourses$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/ADDCourses$1.class -------------------------------------------------------------------------------- /bin/View/ADDCourses$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/ADDCourses$2.class -------------------------------------------------------------------------------- /bin/View/ADDCourses$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/ADDCourses$3.class -------------------------------------------------------------------------------- /bin/View/ADDCourses$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/ADDCourses$4.class -------------------------------------------------------------------------------- /bin/View/AdInformation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AdInformation.class -------------------------------------------------------------------------------- /bin/View/AddCourseStu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddCourseStu.class -------------------------------------------------------------------------------- /bin/View/AddTeacher$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddTeacher$1.class -------------------------------------------------------------------------------- /bin/View/AddTeacher$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddTeacher$2.class -------------------------------------------------------------------------------- /bin/View/AddTeacher$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddTeacher$3.class -------------------------------------------------------------------------------- /bin/View/LookAdmin$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/LookAdmin$1.class -------------------------------------------------------------------------------- /bin/View/LookCourse$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/LookCourse$1.class -------------------------------------------------------------------------------- /bin/View/LookTeacher$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/LookTeacher$1.class -------------------------------------------------------------------------------- /bin/View/LookTeacher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/LookTeacher.class -------------------------------------------------------------------------------- /bin/model/AddCourses.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/AddCourses.class -------------------------------------------------------------------------------- /bin/model/AddStudent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/AddStudent.class -------------------------------------------------------------------------------- /bin/model/ModelFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/ModelFactory.class -------------------------------------------------------------------------------- /lib/swing-layout-1.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/lib/swing-layout-1.0.3.jar -------------------------------------------------------------------------------- /src/View/AdInformation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/AdInformation.java -------------------------------------------------------------------------------- /src/View/AddCourseStu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/View/AddCourseStu.java -------------------------------------------------------------------------------- /src/model/ModelFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/model/ModelFactory.java -------------------------------------------------------------------------------- /bin/View/AdInformation$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AdInformation$1.class -------------------------------------------------------------------------------- /bin/View/AdInformation$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AdInformation$2.class -------------------------------------------------------------------------------- /bin/View/AddCourseStu$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddCourseStu$1.class -------------------------------------------------------------------------------- /bin/View/AddCourseStu$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddCourseStu$2.class -------------------------------------------------------------------------------- /bin/View/AddCourseStu$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/View/AddCourseStu$3.class -------------------------------------------------------------------------------- /bin/model/DataConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/DataConnection.class -------------------------------------------------------------------------------- /src/model/DataConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/src/model/DataConnection.java -------------------------------------------------------------------------------- /bin/model/CourseSelection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/bin/model/CourseSelection.class -------------------------------------------------------------------------------- /lib/mysql-connector-java-3.0.15-ga-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aHuiaa/SGMS/HEAD/lib/mysql-connector-java-3.0.15-ga-bin.jar -------------------------------------------------------------------------------- /.settings/com.genuitec.eclipse.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Mar 20 21:58:19 CST 2018 2 | eclipse.preferences.version=1 3 | validator.Checked=beautyeye_lnf.jar 4 | validator.Unchecked= 5 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | SAMS 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/model/StuGrade.java: -------------------------------------------------------------------------------- 1 | package model; 2 | 3 | public class StuGrade { 4 | private String cname; 5 | private String grade; 6 | public StuGrade(String cname, String grade) { 7 | super(); 8 | this.cname = cname; 9 | this.grade = grade; 10 | } 11 | public String getCname() { 12 | return cname; 13 | } 14 | public void setCname(String cname) { 15 | this.cname = cname; 16 | } 17 | public String getGrade() { 18 | return grade; 19 | } 20 | public void setGrade(String grade) { 21 | this.grade = grade; 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /src/model/AdLogin.java: -------------------------------------------------------------------------------- 1 | package model; 2 | 3 | public class AdLogin { 4 | private String adname; 5 | private String apsw; 6 | public AdLogin(String adname, String apsw) { 7 | super(); 8 | this.adname = adname; 9 | this.apsw = apsw; 10 | } 11 | 12 | public String getAdname() { 13 | return adname; 14 | } 15 | public void setAdname(String adname) { 16 | this.adname = adname; 17 | } 18 | public String getApsw() { 19 | return apsw; 20 | } 21 | public void setApsw(String apsw) { 22 | this.apsw = apsw; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/model/AddAdmin.java: -------------------------------------------------------------------------------- 1 | package model; 2 | 3 | import java.sql.Statement; 4 | import java.util.ArrayList; 5 | 6 | public class AddAdmin { 7 | private String adname; 8 | private String adpsw; 9 | public AddAdmin(String adname, String adpsw) { 10 | super(); 11 | this.adname = adname; 12 | this.adpsw = adpsw; 13 | } 14 | public String getAdname() { 15 | return adname; 16 | } 17 | public void setAdname(String adname) { 18 | this.adname = adname; 19 | } 20 | public String getAdpsw() { 21 | return adpsw; 22 | } 23 | public void setAdpsw(String adpsw) { 24 | this.adpsw = adpsw; 25 | } 26 | 27 | 28 | } 29 | -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 18:19:18 CST 2018 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.6 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.source=1.6 13 | -------------------------------------------------------------------------------- /src/model/SLogin.java: -------------------------------------------------------------------------------- 1 | package model; 2 | 3 | public class SLogin { 4 | 5 | private static int sid; 6 | private String spw; 7 | private String sname; 8 | 9 | public SLogin(int sid, String spw, String sname) { 10 | super(); 11 | SLogin.sid = sid; 12 | this.spw = spw; 13 | this.sname = sname; 14 | } 15 | 16 | public static int getSid() { 17 | return sid; 18 | } 19 | public void setSid(int sid) { 20 | this.sid = sid; 21 | } 22 | public String getSpw() { 23 | return spw; 24 | } 25 | public void setSpw(String spw) { 26 | this.spw = spw; 27 | } 28 | public String getSname() { 29 | return sname; 30 | } 31 | public void setSname(String sname) { 32 | this.sname = sname; 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /src/model/TLogin.java: -------------------------------------------------------------------------------- 1 | package model; 2 | 3 | public class TLogin { 4 | private static int tid; 5 | private String tpw; 6 | private static String tname; 7 | 8 | public TLogin(int tid, String tpw, String tname) { 9 | super(); 10 | TLogin.tid = tid; 11 | this.tpw = tpw; 12 | TLogin.tname = tname; 13 | } 14 | 15 | public static int getTid() { 16 | return tid; 17 | } 18 | 19 | public void setTid(int tid) { 20 | TLogin.tid = tid; 21 | } 22 | 23 | public String getTpw() { 24 | return tpw; 25 | } 26 | 27 | public void setTpw(String tpw) { 28 | this.tpw = tpw; 29 | } 30 | 31 | public static String getTname() { 32 | return tname; 33 | } 34 | 35 | public void setTname(String tname) { 36 | this.tname = tname; 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /src/model/Teacher.java: -------------------------------------------------------------------------------- 1 | package model; 2 | 3 | public class Teacher { 4 | private int tid; 5 | private String tpw; 6 | private String tname; 7 | private String tsex; 8 | public Teacher(int tid, String tpw, String tname, String tsex) { 9 | super(); 10 | this.tid = tid; 11 | this.tpw = tpw; 12 | this.tname = tname; 13 | this.tsex = tsex; 14 | } 15 | public int getTid() { 16 | return tid; 17 | } 18 | public void setTid(int tid) { 19 | this.tid = tid; 20 | } 21 | public String getTpw() { 22 | return tpw; 23 | } 24 | public void setTpw(String tpw) { 25 | this.tpw = tpw; 26 | } 27 | public String getTname() { 28 | return tname; 29 | } 30 | public void setTname(String tname) { 31 | this.tname = tname; 32 | } 33 | public String getTsex() { 34 | return tsex; 35 | } 36 | public void setTsex(String tsex) { 37 | this.tsex = tsex; 38 | } 39 | 40 | } 41 | -------------------------------------------------------------------------------- /src/model/Grade.java: -------------------------------------------------------------------------------- 1 | package model; 2 | 3 | public class Grade { 4 | private int sid; 5 | private String sname; 6 | private String cname; 7 | private String ctime; 8 | private String grade; 9 | 10 | public Grade(int sid, String sname, String cname, String ctime, String grade) { 11 | super(); 12 | this.sid = sid; 13 | this.sname = sname; 14 | this.cname = cname; 15 | this.grade = grade; 16 | this.ctime = ctime; 17 | } 18 | 19 | public String getCtime() { 20 | return ctime; 21 | } 22 | 23 | public void setCtime(String ctime) { 24 | this.ctime = ctime; 25 | } 26 | 27 | public int getSid() { 28 | return sid; 29 | } 30 | 31 | public void setSid(int sid) { 32 | this.sid = sid; 33 | } 34 | 35 | public String getSname() { 36 | return sname; 37 | } 38 | 39 | public void setSname(String sname) { 40 | this.sname = sname; 41 | } 42 | 43 | public String getCname() { 44 | return cname; 45 | } 46 | 47 | public void setCname(String cname) { 48 | this.cname = cname; 49 | } 50 | 51 | public String getGrade() { 52 | return grade; 53 | } 54 | 55 | public void setGrade(String grade) { 56 | this.grade = grade; 57 | } 58 | 59 | } 60 | -------------------------------------------------------------------------------- /src/model/AddCourses.java: -------------------------------------------------------------------------------- 1 | package model; 2 | 3 | public class AddCourses { 4 | private int cid; 5 | private String cname; 6 | private String cteacher; 7 | private String ctime; 8 | private String state; 9 | 10 | public AddCourses(int cid, String cname, String cteacher, String ctime, 11 | String state) { 12 | super(); 13 | this.cid = cid; 14 | this.cname = cname; 15 | this.cteacher = cteacher; 16 | this.ctime = ctime; 17 | this.state = state; 18 | } 19 | 20 | public int getCid() { 21 | return cid; 22 | } 23 | 24 | public void setCid(int cid) { 25 | this.cid = cid; 26 | } 27 | 28 | public String getCname() { 29 | return cname; 30 | } 31 | 32 | public void setCname(String cname) { 33 | this.cname = cname; 34 | } 35 | 36 | public String getCteacher() { 37 | return cteacher; 38 | } 39 | 40 | public void setCteacher(String cteacher) { 41 | this.cteacher = cteacher; 42 | } 43 | 44 | public String getCtime() { 45 | return ctime; 46 | } 47 | 48 | public void setCtime(String ctime) { 49 | this.ctime = ctime; 50 | } 51 | 52 | public String getState() { 53 | return state; 54 | } 55 | 56 | public void setState(String state) { 57 | this.state = state; 58 | } 59 | 60 | } 61 | -------------------------------------------------------------------------------- /.myeclipse/profiler/StuMain.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | true 6 | 32 7 | 2 8 | -1 9 | true 10 | 1 11 | 10 12 | 4 13 | View.** 14 | 15 | View.* 16 | true 17 | 0 18 | -1 19 | 10 20 | 0 21 | 22 | -------------------------------------------------------------------------------- /src/model/AddStudent.java: -------------------------------------------------------------------------------- 1 | package model; 2 | 3 | public class AddStudent { 4 | private int stuId; 5 | private String stupsw; 6 | private String stuName; 7 | private String sex; 8 | private String department; 9 | private String stuClass; 10 | public AddStudent(int stuId, String stupsw, String stuName, String sex, 11 | String department, String stuClass) { 12 | super(); 13 | this.stuId = stuId; 14 | this.stupsw = stupsw; 15 | this.stuName = stuName; 16 | this.sex = sex; 17 | this.department = department; 18 | this.stuClass = stuClass; 19 | } 20 | public int getStuId() { 21 | return stuId; 22 | } 23 | public void setStuId(int stuId) { 24 | this.stuId = stuId; 25 | } 26 | public String getStupsw() { 27 | return stupsw; 28 | } 29 | public void setStupsw(String stupsw) { 30 | this.stupsw = stupsw; 31 | } 32 | public String getStuName() { 33 | return stuName; 34 | } 35 | public void setStuName(String stuName) { 36 | this.stuName = stuName; 37 | } 38 | public String getSex() { 39 | return sex; 40 | } 41 | public void setSex(String sex) { 42 | this.sex = sex; 43 | } 44 | public String getDepartment() { 45 | return department; 46 | } 47 | public void setDepartment(String department) { 48 | this.department = department; 49 | } 50 | public String getStuClass() { 51 | return stuClass; 52 | } 53 | public void setStuClass(String stuClass) { 54 | this.stuClass = stuClass; 55 | } 56 | 57 | } 58 | -------------------------------------------------------------------------------- /src/model/CourseSelection.java: -------------------------------------------------------------------------------- 1 | package model; 2 | 3 | public class CourseSelection { 4 | private String cname; 5 | private String ctime; 6 | private int stuId; 7 | private String stuName; 8 | private String sex; 9 | private String department; 10 | private String stuClass; 11 | public CourseSelection(String cname, String ctime, int stuId, 12 | String stuName, String sex, String department, String stuClass) { 13 | super(); 14 | this.cname = cname; 15 | this.ctime = ctime; 16 | this.stuId = stuId; 17 | this.stuName = stuName; 18 | this.sex = sex; 19 | this.department = department; 20 | this.stuClass = stuClass; 21 | } 22 | public String getCtime() { 23 | return ctime; 24 | } 25 | public void setCtime(String ctime) { 26 | this.ctime = ctime; 27 | } 28 | public String getCname() { 29 | return cname; 30 | } 31 | public void setCname(String cname) { 32 | this.cname = cname; 33 | } 34 | public int getStuId() { 35 | return stuId; 36 | } 37 | public void setStuId(int stuId) { 38 | this.stuId = stuId; 39 | } 40 | public String getStuName() { 41 | return stuName; 42 | } 43 | public void setStuName(String stuName) { 44 | this.stuName = stuName; 45 | } 46 | public String getSex() { 47 | return sex; 48 | } 49 | public void setSex(String sex) { 50 | this.sex = sex; 51 | } 52 | public String getDepartment() { 53 | return department; 54 | } 55 | public void setDepartment(String department) { 56 | this.department = department; 57 | } 58 | public String getStuClass() { 59 | return stuClass; 60 | } 61 | public void setStuClass(String stuClass) { 62 | this.stuClass = stuClass; 63 | } 64 | 65 | 66 | } 67 | -------------------------------------------------------------------------------- /bin/View/LookCourse.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 | -------------------------------------------------------------------------------- /src/View/LookCourse.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 | -------------------------------------------------------------------------------- /sql/sgms.sql: -------------------------------------------------------------------------------- 1 | /* 2 | Navicat MySQL Data Transfer 3 | 4 | Source Server : localhost_3306 5 | Source Server Version : 80017 6 | Source Host : localhost:3306 7 | Source Database : sgms 8 | 9 | Target Server Type : MYSQL 10 | Target Server Version : 80017 11 | File Encoding : 65001 12 | 13 | Date: 2020-03-02 20:31:45 14 | */ 15 | 16 | SET FOREIGN_KEY_CHECKS=0; 17 | 18 | -- ---------------------------- 19 | -- Table structure for admin 20 | -- ---------------------------- 21 | DROP TABLE IF EXISTS `admin`; 22 | CREATE TABLE `admin` ( 23 | `adname` varchar(255) NOT NULL, 24 | `adpsw` varchar(255) NOT NULL, 25 | PRIMARY KEY (`adname`) 26 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 27 | 28 | -- ---------------------------- 29 | -- Table structure for course 30 | -- ---------------------------- 31 | DROP TABLE IF EXISTS `course`; 32 | CREATE TABLE `course` ( 33 | `cid` int(11) NOT NULL AUTO_INCREMENT, 34 | `cname` varchar(255) NOT NULL, 35 | `cteacher` varchar(255) NOT NULL, 36 | `ctime` varchar(255) NOT NULL, 37 | `state` varchar(255) NOT NULL, 38 | PRIMARY KEY (`cid`), 39 | KEY `cteacher` (`cteacher`), 40 | CONSTRAINT `cteacher` FOREIGN KEY (`cteacher`) REFERENCES `teacher` (`tname`) ON DELETE CASCADE ON UPDATE CASCADE 41 | ) ENGINE=InnoDB AUTO_INCREMENT=143 DEFAULT CHARSET=utf8 COMMENT='InnoDB free: 7168 kB; (`cteacher`) REFER `gradesystem/teache'; 42 | 43 | -- ---------------------------- 44 | -- Table structure for grade 45 | -- ---------------------------- 46 | DROP TABLE IF EXISTS `grade`; 47 | CREATE TABLE `grade` ( 48 | `sid` int(11) NOT NULL, 49 | `cid` int(11) NOT NULL, 50 | `result` int(4) NOT NULL DEFAULT '-1', 51 | PRIMARY KEY (`sid`,`cid`), 52 | KEY `cid` (`cid`), 53 | CONSTRAINT `cid` FOREIGN KEY (`cid`) REFERENCES `course` (`cid`) ON DELETE CASCADE ON UPDATE CASCADE, 54 | CONSTRAINT `sid` FOREIGN KEY (`sid`) REFERENCES `student` (`sid`) ON DELETE CASCADE ON UPDATE CASCADE 55 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 56 | 57 | -- ---------------------------- 58 | -- Table structure for student 59 | -- ---------------------------- 60 | DROP TABLE IF EXISTS `student`; 61 | CREATE TABLE `student` ( 62 | `sid` int(11) NOT NULL AUTO_INCREMENT, 63 | `spw` varchar(255) NOT NULL DEFAULT '123456' COMMENT '默认密码123456', 64 | `sname` varchar(40) NOT NULL, 65 | `ssex` varchar(10) NOT NULL, 66 | `department` varchar(255) DEFAULT NULL, 67 | `class` varchar(255) DEFAULT NULL, 68 | PRIMARY KEY (`sid`) 69 | ) ENGINE=InnoDB AUTO_INCREMENT=162011260 DEFAULT CHARSET=utf8; 70 | 71 | -- ---------------------------- 72 | -- Table structure for teacher 73 | -- ---------------------------- 74 | DROP TABLE IF EXISTS `teacher`; 75 | CREATE TABLE `teacher` ( 76 | `tid` int(11) NOT NULL AUTO_INCREMENT, 77 | `tpw` varchar(255) NOT NULL DEFAULT '123456' COMMENT '默认密码:123456', 78 | `tname` varchar(20) NOT NULL, 79 | `tsex` varchar(4) NOT NULL, 80 | PRIMARY KEY (`tid`), 81 | KEY `tname` (`tname`) 82 | ) ENGINE=InnoDB AUTO_INCREMENT=794 DEFAULT CHARSET=utf8; 83 | -------------------------------------------------------------------------------- /bin/View/LookAdmin.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | -------------------------------------------------------------------------------- /bin/View/LookStu.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | -------------------------------------------------------------------------------- /bin/View/LookTeacher.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | -------------------------------------------------------------------------------- /src/View/LookAdmin.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | -------------------------------------------------------------------------------- /src/View/LookStu.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | -------------------------------------------------------------------------------- /src/View/LookTeacher.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | -------------------------------------------------------------------------------- /bin/View/StuMain.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 |
106 |
107 |
108 |
109 |
110 |
111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 |
120 |
121 |
122 |
123 |
124 |
125 | -------------------------------------------------------------------------------- /src/View/StuMain.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 |
106 |
107 |
108 |
109 |
110 |
111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 |
120 |
121 |
122 |
123 |
124 |
125 | -------------------------------------------------------------------------------- /bin/View/AdInformation.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | -------------------------------------------------------------------------------- /src/View/AdInformation.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | -------------------------------------------------------------------------------- /bin/View/AdAdmin.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | -------------------------------------------------------------------------------- /src/View/AdAdmin.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | -------------------------------------------------------------------------------- /bin/View/AddCourseStu.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | -------------------------------------------------------------------------------- /src/View/AddCourseStu.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | -------------------------------------------------------------------------------- /bin/View/AddTeacher.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | -------------------------------------------------------------------------------- /src/View/AddTeacher.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | -------------------------------------------------------------------------------- /bin/View/ADDCourses.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | -------------------------------------------------------------------------------- /bin/View/Delete.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | -------------------------------------------------------------------------------- /src/View/ADDCourses.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | -------------------------------------------------------------------------------- /src/View/Delete.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | -------------------------------------------------------------------------------- /bin/View/Login.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | -------------------------------------------------------------------------------- /src/View/Login.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | -------------------------------------------------------------------------------- /bin/View/Admin.form: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | --------------------------------------------------------------------------------