├── src ├── img │ ├── 1.jpg │ └── 2.jpg └── com │ └── leadersys │ ├── Leader.java │ ├── Login.java │ ├── AddEvent.java │ ├── DelEvent.java │ ├── RegEvent.java │ ├── ShowEvent.java │ ├── ChangeEvent.java │ ├── LoginEvent.java │ ├── ManageForm.java │ ├── RegSuccess.java │ ├── ResetEvent.java │ ├── loginResult.java │ ├── ManageComponents.java │ ├── ManageCondition.java │ ├── RegSuccessEvent.java │ ├── ManageDatabaseReading.java │ └── ManageBackgroundPictures.java ├── screenshot ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png ├── lib └── mysql-connector-java-5.1.48.jar ├── .gitignore └── README.md /src/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/img/1.jpg -------------------------------------------------------------------------------- /src/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/img/2.jpg -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /src/com/leadersys/Leader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/Leader.java -------------------------------------------------------------------------------- /src/com/leadersys/Login.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/Login.java -------------------------------------------------------------------------------- /src/com/leadersys/AddEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/AddEvent.java -------------------------------------------------------------------------------- /src/com/leadersys/DelEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/DelEvent.java -------------------------------------------------------------------------------- /src/com/leadersys/RegEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/RegEvent.java -------------------------------------------------------------------------------- /src/com/leadersys/ShowEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/ShowEvent.java -------------------------------------------------------------------------------- /lib/mysql-connector-java-5.1.48.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/lib/mysql-connector-java-5.1.48.jar -------------------------------------------------------------------------------- /src/com/leadersys/ChangeEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/ChangeEvent.java -------------------------------------------------------------------------------- /src/com/leadersys/LoginEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/LoginEvent.java -------------------------------------------------------------------------------- /src/com/leadersys/ManageForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/ManageForm.java -------------------------------------------------------------------------------- /src/com/leadersys/RegSuccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/RegSuccess.java -------------------------------------------------------------------------------- /src/com/leadersys/ResetEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/ResetEvent.java -------------------------------------------------------------------------------- /src/com/leadersys/loginResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/loginResult.java -------------------------------------------------------------------------------- /src/com/leadersys/ManageComponents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/ManageComponents.java -------------------------------------------------------------------------------- /src/com/leadersys/ManageCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/ManageCondition.java -------------------------------------------------------------------------------- /src/com/leadersys/RegSuccessEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/RegSuccessEvent.java -------------------------------------------------------------------------------- /src/com/leadersys/ManageDatabaseReading.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/ManageDatabaseReading.java -------------------------------------------------------------------------------- /src/com/leadersys/ManageBackgroundPictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No205EmployeeInformationManagementSystem/HEAD/src/com/leadersys/ManageBackgroundPictures.java -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ###################################################################### 2 | # Build Tools 3 | 4 | .gradle 5 | /build/ 6 | !gradle/wrapper/gradle-wrapper.jar 7 | 8 | target/ 9 | !.mvn/wrapper/maven-wrapper.jar 10 | 11 | out/ 12 | 13 | ###################################################################### 14 | # IDE 15 | 16 | ### STS ### 17 | .apt_generated 18 | .classpath 19 | .factorypath 20 | .project 21 | .settings 22 | .springBeans 23 | 24 | ### IntelliJ IDEA ### 25 | .idea 26 | *.iws 27 | *.iml 28 | *.ipr 29 | 30 | ### NetBeans ### 31 | nbproject/private/ 32 | build/* 33 | nbbuild/ 34 | dist/ 35 | nbdist/ 36 | .nb-gradle/ 37 | 38 | ###################################################################### 39 | # Others 40 | *.log 41 | *.xml.versionsBackup 42 | *.swp 43 | 44 | !*/build/*.java 45 | !*/build/*.html 46 | !*/build/*.xml 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |