├── src ├── DesignatedMedicalInstitution.txt ├── MedicalCalculationParameter.txt ├── Drug.txt ├── Hospital.txt ├── img │ ├── MenuUI.png │ ├── LoginUI.png │ ├── CommonBussinessUI.png │ ├── IntegratedQueryUI.png │ └── MedicalReimbursementUI.png ├── ClinicProject.txt ├── ServiceFacility.txt ├── DiseaseInformation.txt ├── UnreimbursedBudget.txt ├── lastReimbursement.txt ├── AdmissionInformation.txt ├── AnnualReimbursement.txt ├── PrescriptionInformation.txt ├── controller │ ├── background.jpg │ ├── background1.jpg │ ├── background2.jpg │ ├── background3.jpg │ ├── Print.css │ ├── ReimbursementSuccess.css │ ├── StartReimbursement.css │ ├── ReimbursementController.css │ ├── Menu.css │ ├── ComSearchController.css │ ├── CommonBusinessController.css │ ├── InformationMaintenController.css │ ├── PersonController.java │ ├── Print.java │ ├── login.css │ ├── Main.java │ ├── ComSearchController.java │ ├── ComSearchController.fxml │ ├── LoginController.java │ ├── MenuController.fxml │ ├── Login.fxml │ ├── MenuController.java │ ├── ReimbursementSuccess.fxml │ ├── ReimbursementSuccess.java │ ├── Print.fxml │ ├── ReimbursementController.java │ ├── ReimbursementController.fxml │ ├── StartReimbursement.fxml │ └── CommonBusinessController.java ├── Person.txt ├── Examine │ ├── SpecialExamine.java │ ├── MedicalInstitutionExamine.java │ └── Examine.java ├── Data │ ├── Company.java │ ├── DesignatedMedicalInstitution.java │ ├── DiseaseInformation.java │ ├── MedicalCalculationParameter.java │ ├── ServiceFacility.java │ ├── ClinicProject.java │ ├── Drug.java │ ├── PrescriptionInformation.java │ ├── AnnualReimbursement.java │ └── Person.java ├── Reimbursement │ └── Reimbursement.java └── IO │ └── IO.java ├── out └── production │ └── MedicalInsuranceSystem │ ├── DesignatedMedicalInstitution.txt │ ├── MedicalCalculationParameter.txt │ ├── Drug.txt │ ├── Hospital.txt │ ├── IO │ └── IO.class │ ├── Data │ ├── Drug.class │ ├── Company.class │ ├── Person.class │ ├── ClinicProject.class │ ├── ServiceFacility.class │ ├── AnnualReimbursement.class │ ├── DiseaseInformation.class │ ├── PrescriptionInformation.class │ ├── MedicalCalculationParameter.class │ └── DesignatedMedicalInstitution.class │ ├── img │ ├── LoginUI.png │ ├── MenuUI.png │ ├── CommonBussinessUI.png │ ├── IntegratedQueryUI.png │ └── MedicalReimbursementUI.png │ ├── ClinicProject.txt │ ├── ServiceFacility.txt │ ├── AnnualReimbursement.txt │ ├── DiseaseInformation.txt │ ├── Examine │ ├── Examine.class │ ├── SpecialExamine.class │ └── MedicalInstitutionExamine.class │ ├── UnreimbursedBudget.txt │ ├── controller │ ├── Main.class │ ├── Print.class │ ├── background.jpg │ ├── background1.jpg │ ├── background2.jpg │ ├── background3.jpg │ ├── LoginController.class │ ├── MenuController.class │ ├── PersonController.class │ ├── StartReimbursement.class │ ├── ComSearchController.class │ ├── ReimbursementSuccess.class │ ├── ReimbursementController.class │ ├── CommonBusinessController.class │ ├── InformationMaintenController.class │ ├── Print.css │ ├── ReimbursementSuccess.css │ ├── StartReimbursement.css │ ├── ReimbursementController.css │ ├── Menu.css │ ├── ComSearchController.css │ ├── CommonBusinessController.css │ ├── InformationMaintenController.css │ ├── login.css │ ├── ComSearchController.fxml │ ├── MenuController.fxml │ ├── Login.fxml │ ├── ReimbursementSuccess.fxml │ ├── Print.fxml │ ├── ReimbursementController.fxml │ └── StartReimbursement.fxml │ ├── lastReimbursement.txt │ ├── AdmissionInformation.txt │ ├── PrescriptionInformation.txt │ ├── Reimbursement │ └── Reimbursement.class │ └── Person.txt ├── .idea ├── vcs.xml ├── modules.xml └── misc.xml ├── MedicalInsuranceSystem.iml └── README.md /src/DesignatedMedicalInstitution.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MedicalCalculationParameter.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/DesignatedMedicalInstitution.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/MedicalCalculationParameter.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Drug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/Drug.txt -------------------------------------------------------------------------------- /src/Hospital.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/Hospital.txt -------------------------------------------------------------------------------- /src/img/MenuUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/img/MenuUI.png -------------------------------------------------------------------------------- /src/ClinicProject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/ClinicProject.txt -------------------------------------------------------------------------------- /src/img/LoginUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/img/LoginUI.png -------------------------------------------------------------------------------- /src/ServiceFacility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/ServiceFacility.txt -------------------------------------------------------------------------------- /src/DiseaseInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/DiseaseInformation.txt -------------------------------------------------------------------------------- /src/UnreimbursedBudget.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/UnreimbursedBudget.txt -------------------------------------------------------------------------------- /src/lastReimbursement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/lastReimbursement.txt -------------------------------------------------------------------------------- /src/AdmissionInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/AdmissionInformation.txt -------------------------------------------------------------------------------- /src/AnnualReimbursement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/AnnualReimbursement.txt -------------------------------------------------------------------------------- /src/PrescriptionInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/PrescriptionInformation.txt -------------------------------------------------------------------------------- /src/controller/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/controller/background.jpg -------------------------------------------------------------------------------- /src/controller/background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/controller/background1.jpg -------------------------------------------------------------------------------- /src/controller/background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/controller/background2.jpg -------------------------------------------------------------------------------- /src/controller/background3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/controller/background3.jpg -------------------------------------------------------------------------------- /src/img/CommonBussinessUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/img/CommonBussinessUI.png -------------------------------------------------------------------------------- /src/img/IntegratedQueryUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/img/IntegratedQueryUI.png -------------------------------------------------------------------------------- /src/img/MedicalReimbursementUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/src/img/MedicalReimbursementUI.png -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Drug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Drug.txt -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Hospital.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Hospital.txt -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/IO/IO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/IO/IO.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Data/Drug.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Data/Drug.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/img/LoginUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/img/LoginUI.png -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/img/MenuUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/img/MenuUI.png -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/ClinicProject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/ClinicProject.txt -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Data/Company.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Data/Company.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Data/Person.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Data/Person.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/ServiceFacility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/ServiceFacility.txt -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/AnnualReimbursement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/AnnualReimbursement.txt -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/DiseaseInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/DiseaseInformation.txt -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Examine/Examine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Examine/Examine.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/UnreimbursedBudget.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/UnreimbursedBudget.txt -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/Main.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/Print.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/Print.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/lastReimbursement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/lastReimbursement.txt -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/AdmissionInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/AdmissionInformation.txt -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Data/ClinicProject.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Data/ClinicProject.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/background.jpg -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/img/CommonBussinessUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/img/CommonBussinessUI.png -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/img/IntegratedQueryUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/img/IntegratedQueryUI.png -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Data/ServiceFacility.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Data/ServiceFacility.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Examine/SpecialExamine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Examine/SpecialExamine.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/PrescriptionInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/PrescriptionInformation.txt -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/background1.jpg -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/background2.jpg -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/background3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/background3.jpg -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Data/AnnualReimbursement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Data/AnnualReimbursement.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Data/DiseaseInformation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Data/DiseaseInformation.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/img/MedicalReimbursementUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/img/MedicalReimbursementUI.png -------------------------------------------------------------------------------- /src/Person.txt: -------------------------------------------------------------------------------- 1 | 人员ID,人员姓名,医疗人员类别,定点医疗机构编号 2 | 0001,LSK,11,123 3 | 0002,Reno,21,456 4 | 0003,Nathon,11,789 5 | 0004,WYF,11,520 6 | 0005,NJL,null,865 7 | 0006,Lisikuan,11,562 8 | 0007,Wangyufei,null,520 9 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Reimbursement/Reimbursement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Reimbursement/Reimbursement.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/LoginController.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/MenuController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/MenuController.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/PersonController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/PersonController.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Data/PrescriptionInformation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Data/PrescriptionInformation.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/StartReimbursement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/StartReimbursement.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Data/MedicalCalculationParameter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Data/MedicalCalculationParameter.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/ComSearchController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/ComSearchController.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/ReimbursementSuccess.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/ReimbursementSuccess.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Data/DesignatedMedicalInstitution.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Data/DesignatedMedicalInstitution.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Examine/MedicalInstitutionExamine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/Examine/MedicalInstitutionExamine.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/ReimbursementController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/ReimbursementController.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/CommonBusinessController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/CommonBusinessController.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/InformationMaintenController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSKReno/MedicalInsuranceSystem/HEAD/out/production/MedicalInsuranceSystem/controller/InformationMaintenController.class -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/Person.txt: -------------------------------------------------------------------------------- 1 | 人员ID,人员姓名,医疗人员类别,定点医疗机构编号 2 | 0001,LSK,11,123 3 | 0002,Reno,21,456 4 | 0003,Nathon,11,789 5 | 0004,WYF,11,520 6 | 0005,NJL,null,865 7 | 0006,Lisikuan,11,562 8 | 0007,Wangyufei,null,520 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/controller/Print.css: -------------------------------------------------------------------------------- 1 | /*设置button背景颜色*/ 2 | .button:hover { 3 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 4 | } 5 | 6 | .label { 7 | /*!* 设置字体 *!*/ 8 | /*-fx-font-size: 28px;*/ 9 | /*-fx-font-weight: bold;*/ 10 | /*-fx-text-fill: #333333;*/ 11 | /*-fx-font-family: FZShuTi;*/ 12 | /* 设置阴影 */ 13 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 14 | } 15 | 16 | -------------------------------------------------------------------------------- /src/controller/ReimbursementSuccess.css: -------------------------------------------------------------------------------- 1 | /*设置button背景颜色*/ 2 | .button:hover { 3 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 4 | } 5 | 6 | .label { 7 | /*!* 设置字体 *!*/ 8 | /*-fx-font-size: 28px;*/ 9 | /*-fx-font-weight: bold;*/ 10 | /*-fx-text-fill: #333333;*/ 11 | /*-fx-font-family: FZShuTi;*/ 12 | /* 设置阴影 */ 13 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 14 | } 15 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/Print.css: -------------------------------------------------------------------------------- 1 | /*设置button背景颜色*/ 2 | .button:hover { 3 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 4 | } 5 | 6 | .label { 7 | /*!* 设置字体 *!*/ 8 | /*-fx-font-size: 28px;*/ 9 | /*-fx-font-weight: bold;*/ 10 | /*-fx-text-fill: #333333;*/ 11 | /*-fx-font-family: FZShuTi;*/ 12 | /* 设置阴影 */ 13 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 14 | } 15 | 16 | -------------------------------------------------------------------------------- /src/controller/StartReimbursement.css: -------------------------------------------------------------------------------- 1 | /*设置button背景颜色*/ 2 | .button:hover { 3 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 4 | } 5 | 6 | .label { 7 | /*!* 设置字体 *!*/ 8 | /*-fx-font-size: 28px;*/ 9 | /*-fx-font-weight: bold;*/ 10 | /*-fx-text-fill: #333333;*/ 11 | /*-fx-font-family: FZShuTi;*/ 12 | /* 设置阴影 */ 13 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 14 | } 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/ReimbursementSuccess.css: -------------------------------------------------------------------------------- 1 | /*设置button背景颜色*/ 2 | .button:hover { 3 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 4 | } 5 | 6 | .label { 7 | /*!* 设置字体 *!*/ 8 | /*-fx-font-size: 28px;*/ 9 | /*-fx-font-weight: bold;*/ 10 | /*-fx-text-fill: #333333;*/ 11 | /*-fx-font-family: FZShuTi;*/ 12 | /* 设置阴影 */ 13 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 14 | } 15 | -------------------------------------------------------------------------------- /src/controller/ReimbursementController.css: -------------------------------------------------------------------------------- 1 | /*设置button背景颜色*/ 2 | .button:hover { 3 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 4 | } 5 | 6 | .label { 7 | /*!* 设置字体 *!*/ 8 | /*-fx-font-size: 28px;*/ 9 | /*-fx-font-weight: bold;*/ 10 | /*-fx-text-fill: #333333;*/ 11 | /*-fx-font-family: FZShuTi;*/ 12 | /* 设置阴影 */ 13 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 14 | } 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/StartReimbursement.css: -------------------------------------------------------------------------------- 1 | /*设置button背景颜色*/ 2 | .button:hover { 3 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 4 | } 5 | 6 | .label { 7 | /*!* 设置字体 *!*/ 8 | /*-fx-font-size: 28px;*/ 9 | /*-fx-font-weight: bold;*/ 10 | /*-fx-text-fill: #333333;*/ 11 | /*-fx-font-family: FZShuTi;*/ 12 | /* 设置阴影 */ 13 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 14 | } 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/ReimbursementController.css: -------------------------------------------------------------------------------- 1 | /*设置button背景颜色*/ 2 | .button:hover { 3 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 4 | } 5 | 6 | .label { 7 | /*!* 设置字体 *!*/ 8 | /*-fx-font-size: 28px;*/ 9 | /*-fx-font-weight: bold;*/ 10 | /*-fx-text-fill: #333333;*/ 11 | /*-fx-font-family: FZShuTi;*/ 12 | /* 设置阴影 */ 13 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 14 | } 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /MedicalInsuranceSystem.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/controller/Menu.css: -------------------------------------------------------------------------------- 1 | /*.root {*/ 2 | /*-fx-background-image: url("background.jpg");!* 设置背景图 *!*/ 3 | /*}*/ 4 | 5 | /*设置button背景颜色*/ 6 | .button:hover { 7 | -fx-background-color: linear-gradient(#2A5058, #61a2b1); 8 | } 9 | /*.label {*/ 10 | /*!* 设置字体 *!*/ 11 | /*-fx-font-size: 27px;*/ 12 | /*-fx-font-weight: bold;*/ 13 | /*-fx-text-fill: #333333;*/ 14 | /*-fx-font-family: FZShuTi;*/ 15 | /*!* 设置阴影 *!*/ 16 | /*-fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 );*/ 17 | /*}*/ 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/Menu.css: -------------------------------------------------------------------------------- 1 | /*.root {*/ 2 | /*-fx-background-image: url("background.jpg");!* 设置背景图 *!*/ 3 | /*}*/ 4 | 5 | /*设置button背景颜色*/ 6 | .button:hover { 7 | -fx-background-color: linear-gradient(#2A5058, #61a2b1); 8 | } 9 | /*.label {*/ 10 | /*!* 设置字体 *!*/ 11 | /*-fx-font-size: 27px;*/ 12 | /*-fx-font-weight: bold;*/ 13 | /*-fx-text-fill: #333333;*/ 14 | /*-fx-font-family: FZShuTi;*/ 15 | /*!* 设置阴影 *!*/ 16 | /*-fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 );*/ 17 | /*}*/ 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/Examine/SpecialExamine.java: -------------------------------------------------------------------------------- 1 | package Examine; 2 | 3 | import javafx.scene.layout.Pane; 4 | 5 | /** 6 | * Created by LSK.Reno on 2018/7/26 13:59. 7 | */ 8 | public class SpecialExamine extends Examine { 9 | private String drugID = ""; 10 | 11 | /** 12 | * 构造方法 13 | * **/ 14 | public SpecialExamine(String drugID) { 15 | this.drugID = drugID; 16 | } 17 | 18 | /** 19 | * getter and setter 20 | * */ 21 | public String getDrugID() { 22 | return drugID; 23 | } 24 | 25 | public void setDrugID(String drugID) { 26 | this.drugID = drugID; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Examine/MedicalInstitutionExamine.java: -------------------------------------------------------------------------------- 1 | package Examine; 2 | 3 | /** 4 | * Created by LSK.Reno on 2018/7/26 13:59. 5 | */ 6 | public class MedicalInstitutionExamine extends Examine{ 7 | private String institutionID = ""; 8 | 9 | //Constructor 10 | public MedicalInstitutionExamine(String institutionID) { 11 | this.institutionID = institutionID; 12 | } 13 | 14 | //getter and setter 15 | public String getInstitutionID() { 16 | return institutionID; 17 | } 18 | 19 | public void setInstitutionID(String institutionID) { 20 | this.institutionID = institutionID; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/controller/ComSearchController.css: -------------------------------------------------------------------------------- 1 | /*.root {*/ 2 | /*-fx-background-image: url("background.jpg");!* 设置背景图 *!*/ 3 | /*}*/ 4 | 5 | /*设置button背景颜色*/ 6 | .button:hover { 7 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 8 | } 9 | .label { 10 | /* 设置字体 */ 11 | -fx-font-size: 28px; 12 | -fx-font-weight: bold; 13 | -fx-text-fill: #333333; 14 | -fx-font-family: FZShuTi; 15 | /* 设置阴影 */ 16 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 17 | } 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/ComSearchController.css: -------------------------------------------------------------------------------- 1 | /*.root {*/ 2 | /*-fx-background-image: url("background.jpg");!* 设置背景图 *!*/ 3 | /*}*/ 4 | 5 | /*设置button背景颜色*/ 6 | .button:hover { 7 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 8 | } 9 | .label { 10 | /* 设置字体 */ 11 | -fx-font-size: 28px; 12 | -fx-font-weight: bold; 13 | -fx-text-fill: #333333; 14 | -fx-font-family: FZShuTi; 15 | /* 设置阴影 */ 16 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 17 | } 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MedicalInsuranceSystem 2 | 课设,医疗保险报销系统JavaFx 3 | 4 | ### LoginUI 5 | ![](https://github.com/LSKLee1/MedicalInsuranceSystem/blob/master/src/img/LoginUI.png) 6 | 7 | ### MenuUI 8 | ![](https://github.com/LSKLee1/MedicalInsuranceSystem/blob/master/src/img/MenuUI.png) 9 | 10 | ### CommonBussinessUI 11 | ![](https://github.com/LSKLee1/MedicalInsuranceSystem/blob/master/src/img/CommonBussinessUI.png) 12 | 13 | ### MedicalReimbursementUI 14 | ![](https://github.com/LSKLee1/MedicalInsuranceSystem/blob/master/src/img/MedicalReimbursementUI.png) 15 | 16 | ### IntegratedQueryUI 17 | ![](https://github.com/LSKLee1/MedicalInsuranceSystem/blob/master/src/img/IntegratedQueryUI.png) 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/controller/CommonBusinessController.css: -------------------------------------------------------------------------------- 1 | .root { 2 | -fx-background-image: url("background.jpg");/* 设置背景图 */ 3 | } 4 | 5 | /*设置button背景颜色*/ 6 | .button:hover { 7 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 8 | } 9 | 10 | .label { 11 | /*!* 设置字体 *!*/ 12 | /*-fx-font-size: 28px;*/ 13 | /*-fx-font-weight: bold;*/ 14 | /*-fx-text-fill: #333333;*/ 15 | /*-fx-font-family: FZShuTi;*/ 16 | /* 设置阴影 */ 17 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 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 | -------------------------------------------------------------------------------- /src/controller/InformationMaintenController.css: -------------------------------------------------------------------------------- 1 | .root { 2 | -fx-background-image: url("background.jpg");/* 设置背景图 */ 3 | } 4 | 5 | /*设置button背景颜色*/ 6 | .button:hover { 7 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 8 | } 9 | 10 | .label { 11 | /*!* 设置字体 *!*/ 12 | /*-fx-font-size: 28px;*/ 13 | /*-fx-font-weight: bold;*/ 14 | /*-fx-text-fill: #333333;*/ 15 | /*-fx-font-family: FZShuTi;*/ 16 | /* 设置阴影 */ 17 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 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 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/CommonBusinessController.css: -------------------------------------------------------------------------------- 1 | .root { 2 | -fx-background-image: url("background.jpg");/* 设置背景图 */ 3 | } 4 | 5 | /*设置button背景颜色*/ 6 | .button:hover { 7 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 8 | } 9 | 10 | .label { 11 | /*!* 设置字体 *!*/ 12 | /*-fx-font-size: 28px;*/ 13 | /*-fx-font-weight: bold;*/ 14 | /*-fx-text-fill: #333333;*/ 15 | /*-fx-font-family: FZShuTi;*/ 16 | /* 设置阴影 */ 17 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 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 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/InformationMaintenController.css: -------------------------------------------------------------------------------- 1 | .root { 2 | -fx-background-image: url("background.jpg");/* 设置背景图 */ 3 | } 4 | 5 | /*设置button背景颜色*/ 6 | .button:hover { 7 | -fx-background-color: linear-gradient(#4e4e75, #61a2b1); 8 | } 9 | 10 | .label { 11 | /*!* 设置字体 *!*/ 12 | /*-fx-font-size: 28px;*/ 13 | /*-fx-font-weight: bold;*/ 14 | /*-fx-text-fill: #333333;*/ 15 | /*-fx-font-family: FZShuTi;*/ 16 | /* 设置阴影 */ 17 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 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 | -------------------------------------------------------------------------------- /src/controller/PersonController.java: -------------------------------------------------------------------------------- 1 | package controller; 2 | 3 | /** 4 | * Created by LSK.Reno on 2018/7/26 15:03. 5 | */ 6 | public class PersonController { 7 | public void addPerson(){ 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 | -------------------------------------------------------------------------------- /src/controller/Print.java: -------------------------------------------------------------------------------- 1 | package controller; 2 | 3 | import javafx.event.ActionEvent; 4 | import javafx.fxml.FXML; 5 | import javafx.fxml.FXMLLoader; 6 | import javafx.scene.Scene; 7 | import javafx.scene.control.Button; 8 | import javafx.stage.Stage; 9 | 10 | /** 11 | * Created by LSK.Reno on 2018/8/1 17:50. 12 | */ 13 | public class Print { 14 | 15 | @FXML 16 | private Button backBUtton; 17 | 18 | @FXML 19 | void back(ActionEvent event) { 20 | Stage primaryStage = Main.getStage(); 21 | try { 22 | primaryStage.setTitle("Menu"); 23 | Scene scene = new Scene(FXMLLoader.load(getClass().getResource("MenuController.fxml"))); 24 | primaryStage.setScene(scene); 25 | scene.getStylesheets().add(this.getClass().getResource("Menu.css").toExternalForm()); 26 | 27 | } catch (Exception e) { 28 | e.printStackTrace(); 29 | } 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /src/controller/login.css: -------------------------------------------------------------------------------- 1 | /*.root {*/ 2 | /*-fx-background-image: url("background.jpg");!* 设置背景图 *!*/ 3 | /*}*/ 4 | .label { 5 | /* 设置字体 */ 6 | -fx-font-size: 15px; 7 | -fx-font-weight: bold; 8 | -fx-text-fill: #333333; 9 | /* 设置阴影 */ 10 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 11 | } 12 | 13 | #welcome_text { 14 | -fx-font-size: 32px; 15 | -fx-font-family: "Arial Black"; 16 | -fx-fill: #818181; 17 | -fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 ); 18 | } 19 | 20 | #errormessage { 21 | -fx-fill: FIREBRICK; 22 | -fx-font-weight: bold; 23 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 24 | } 25 | 26 | 27 | .button:hover { 28 | -fx-background-color: linear-gradient(#2A5058, #61a2b1); 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 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/login.css: -------------------------------------------------------------------------------- 1 | /*.root {*/ 2 | /*-fx-background-image: url("background.jpg");!* 设置背景图 *!*/ 3 | /*}*/ 4 | .label { 5 | /* 设置字体 */ 6 | -fx-font-size: 15px; 7 | -fx-font-weight: bold; 8 | -fx-text-fill: #333333; 9 | /* 设置阴影 */ 10 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 11 | } 12 | 13 | #welcome_text { 14 | -fx-font-size: 32px; 15 | -fx-font-family: "Arial Black"; 16 | -fx-fill: #818181; 17 | -fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 ); 18 | } 19 | 20 | #errormessage { 21 | -fx-fill: FIREBRICK; 22 | -fx-font-weight: bold; 23 | -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); 24 | } 25 | 26 | 27 | .button:hover { 28 | -fx-background-color: linear-gradient(#2A5058, #61a2b1); 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 | -------------------------------------------------------------------------------- /src/controller/Main.java: -------------------------------------------------------------------------------- 1 | package controller; 2 | 3 | import javafx.application.Application; 4 | import javafx.fxml.FXMLLoader; 5 | import javafx.scene.Parent; 6 | import javafx.scene.Scene; 7 | import javafx.stage.Stage; 8 | import java.io.IOException; 9 | 10 | /** 11 | * Created by LSK.Reno on 2018/7/26. 12 | */ 13 | 14 | public class Main extends Application { 15 | 16 | static private Stage primaryStage; 17 | 18 | /**all the controller can call this method. 19 | * @return get the primaryStage. 20 | */ 21 | 22 | //准备开始运行程序的初始化 23 | @Override 24 | public void start(Stage primaryStage) throws IOException { 25 | this.primaryStage = primaryStage; 26 | primaryStage.setTitle("Welcome To Medical System"); 27 | Parent root = FXMLLoader.load(getClass().getResource("Login.fxml")); 28 | Scene scene = new Scene(root, 818.4, 399.6); 29 | primaryStage.setScene(scene); 30 | scene.getStylesheets().add(this.getClass().getResource("Login.css").toExternalForm()); 31 | primaryStage.show(); 32 | } 33 | //得到初始的菜单界面 34 | public static Stage getPrimaryStage() { 35 | return primaryStage; 36 | } 37 | public static Stage getStage() { 38 | return primaryStage; 39 | } 40 | 41 | //运行程序 42 | public static void main(String[] args) { 43 | launch(args); 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 | -------------------------------------------------------------------------------- /src/Data/Company.java: -------------------------------------------------------------------------------- 1 | package Data; 2 | 3 | /** 4 | * Created by LSK.Reno on 2018/7/26. 5 | */ 6 | public class Company { 7 | private String companyID = ""; 8 | private String companyName = ""; 9 | private String address = ""; 10 | private int mailAddress = 0; 11 | private int dialNum = 0; 12 | 13 | /** 14 | * 构造方法 15 | * */ 16 | public Company(String companyID, String companyName) { 17 | this.companyID = companyID; 18 | this.companyName = companyName; 19 | } 20 | public Company(){ 21 | } 22 | /** 23 | * getter and setter 24 | * */ 25 | public String getCompanyID() { 26 | return companyID; 27 | } 28 | 29 | public void setCompanyID(String companyID) { 30 | this.companyID = companyID; 31 | } 32 | 33 | public String getCompanyName() { 34 | return companyName; 35 | } 36 | 37 | public void setCompanyName(String companyName) { 38 | this.companyName = companyName; 39 | } 40 | 41 | public String getAddress() { 42 | return address; 43 | } 44 | 45 | public void setAddress(String address) { 46 | this.address = address; 47 | } 48 | 49 | public int getMailAddress() { 50 | return mailAddress; 51 | } 52 | 53 | public void setMailAddress(int mailAddress) { 54 | this.mailAddress = mailAddress; 55 | } 56 | 57 | public int getDialNum() { 58 | return dialNum; 59 | } 60 | 61 | public void setDialNum(int dialNum) { 62 | this.dialNum = dialNum; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /src/controller/ComSearchController.java: -------------------------------------------------------------------------------- 1 | package controller; 2 | 3 | /** 4 | * Created by LSK.Reno on 2018/7/26 15:27. 5 | */ 6 | 7 | import javafx.event.ActionEvent; 8 | import javafx.fxml.FXML; 9 | import javafx.fxml.FXMLLoader; 10 | import javafx.scene.Scene; 11 | import javafx.scene.control.Button; 12 | import javafx.scene.control.TextField; 13 | import javafx.stage.Stage; 14 | 15 | public class ComSearchController { 16 | private Stage ComSearchStage; 17 | public Stage setComSearchStage(Stage ComSearchStage) { 18 | this.ComSearchStage = ComSearchStage; 19 | return ComSearchStage; 20 | } 21 | 22 | 23 | @FXML 24 | private void initialize(){ 25 | } 26 | @FXML 27 | private Button backButton; 28 | 29 | @FXML 30 | private Button comSearchButton; 31 | 32 | @FXML 33 | private TextField comSearchField; 34 | 35 | /** 36 | * 综合查询,按人员编号查询 和 按人员名称查询 37 | * */ 38 | @FXML 39 | void comSearch(ActionEvent event) { 40 | 41 | } 42 | 43 | /**返回到上一界面*/ 44 | @FXML 45 | void back(ActionEvent event) { 46 | Stage primaryStage = Main.getStage(); 47 | try { 48 | primaryStage.setTitle("Menu"); 49 | Scene scene = new Scene(FXMLLoader.load(getClass().getResource("MenuController.fxml"))); 50 | primaryStage.setScene(scene); 51 | scene.getStylesheets().add(this.getClass().getResource("Menu.css").toExternalForm()); 52 | 53 | } catch (Exception e) { 54 | e.printStackTrace(); 55 | } 56 | } 57 | 58 | // public void goToMain(){ 59 | // myController.setStage(MainApp.mainViewID); 60 | // } 61 | 62 | } 63 | -------------------------------------------------------------------------------- /src/controller/ComSearchController.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 23 | 28 | 29 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /out/production/MedicalInsuranceSystem/controller/ComSearchController.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 23 | 28 | 29 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /src/controller/LoginController.java: -------------------------------------------------------------------------------- 1 | package controller; 2 | 3 | 4 | import javafx.event.ActionEvent; 5 | import javafx.fxml.FXML; 6 | import javafx.fxml.FXMLLoader; 7 | import javafx.scene.Scene; 8 | import javafx.scene.control.Button; 9 | import javafx.scene.control.Label; 10 | import javafx.scene.control.PasswordField; 11 | import javafx.scene.control.TextField; 12 | import javafx.stage.Stage; 13 | import javafx.scene.text.Text; 14 | 15 | /** 16 | * Created by LSK.Reno on 2018/7/25. 17 | */ 18 | public class LoginController { 19 | 20 | @FXML 21 | private Label welcome_text; 22 | 23 | @FXML 24 | private TextField accountField; 25 | 26 | @FXML 27 | private PasswordField passwordField; 28 | 29 | @FXML 30 | private Button signInButton; 31 | 32 | @FXML 33 | private Text errormessage; 34 | 35 | @FXML 36 | void signIn(ActionEvent event) { 37 | if (accountField.getText().equals("Admin") && passwordField.getText().equals("123")) { 38 | Stage primaryStage = Main.getStage(); 39 | try { 40 | primaryStage.setTitle("Menu"); 41 | Scene scene = new Scene(FXMLLoader.load(getClass().getResource("MenuController.fxml"))); 42 | primaryStage.setScene(scene); 43 | scene.getStylesheets().add(this.getClass().getResource("Menu.css").toExternalForm()); 44 | 45 | } catch (Exception e) { 46 | e.printStackTrace(); 47 | } 48 | } else { 49 | errormessage.setText("wrong password or account!"); 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 | -------------------------------------------------------------------------------- /src/controller/MenuController.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 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 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 91 | 115 | 116 | 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 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 91 | 115 | 116 |