[Chen Xi should work hard]: hello, I'm Chen Xi. I'm glad you can read it. My nickname is that I hope I can constantly improve and move forward towards excellent programmers!
The blog comes from the summary of problems encountered in the project and programming. Occasionally, there will be reading and sharing. I will update the summary of relevant knowledge points such as Java front-end, background, database and project cases. Thank you for your reading and attention. I hope my blog can help more people share and obtain new knowledge and make progress together!
We quarryers should have the heart of a cathedral. May we go in our love
1, Background and significance of the topic
Using Internet technology to develop medical management system, instead of the traditional management mode, it is more convenient to help medical staff understand patient information, and manage the doctor's visit status synchronously. The medical management system helps the hospital optimize the process, realize closed-loop management, and improve the quality of nursing and the efficiency of hospital operation and management.
📣 This project is the background of medical management system developed based on Java SSM framework, which can be used as graduation design or course design!
⚡ technologies included in the system
Back end: SSM front end: layui,js,css etc. Development tools: IDEA Database: MySQL JDK edition: jdk1.8 The server: tomcat8
Graduation design guidance: qq 2121002404
2, Project design ideas
📝 Module design: the system realizes more than ten modules, such as system management + appointment management + medical history management + hospitalization information management + administrator management
Business explanation: the medical management system mainly realizes the management of basic information such as doctors, patients, drugs and hospitalization information, and helps to improve the operation efficiency of the hospital
3, Screenshot of project operation
🚀 Login registration module: realize user login + registration related functions
🚀 Doctor management: manage hospital doctor related information
🚀 Drug management: manage the information related to the sale of drugs in hospitals
🚀 Account management: manage information related to diagnostic accounts
🚀 Appointment management: appointment related functions can be added to facilitate the coordination of doctor resources
🚀 History management: record the patient's physical history
🚀 Inpatient information management: it is convenient for the hospital to allocate relevant bed information more reasonably
🚀 Administrator account management: manage background user related accounts + passwords
Note: this section only provides screenshots of some projects for reference only
📚 Of course, the project can be optimized, iterated and upgraded on this basis, and more technologies can be used. You are welcome to ask questions, leave messages and communicate!
4, Project code benefits
🚀 The Java backend uses RESTful code style: the overall code project is beautiful
Use put, delete, post and get methods to operate resources. Add, delete, modify and query respectively.
@RequestMapping(value = "/admin/appoint/{id}",method = RequestMethod.DELETE) @RequestMapping(value = "/admin/appoint/{id}",method = RequestMethod.GET) @RequestMapping(value = "/admin/appoint",method = RequestMethod.PUT) @RequestMapping(value = "/admin/appoint",method = RequestMethod.POST)
⚡ Advantages of front-end code: while adapting to the background interface, the front-end public interface has high reusability
If all new additions, edits and deletions share a set of codes, the method codes corresponding to the pop-up box are reused, which is simple, atmospheric and beautiful!
<script src="../static/js/layui.all.js"></script> <script src="../static/js/jquery-3.3.1.min.js"></script> <script> //JavaScript code area layui.use('element', function(){ var element = layui.element; }); function showAdd(url){ layer.open({ type: 2, title: 'Add page', closeBtn: 0, area:['800px','600px'], content: [url,'yes'], btn: ['cancel'], yes: function(index){ //event layer.close(index); } }); } function edit(url,id){ layer.open({ type: 2, title: 'Details page', closeBtn: 0, area:['800px','600px'], content: [url+id,'yes'], btn: ['cancel'], yes: function(index){ //event layer.close(index); } }); } function del(url,id) { layer.confirm('Are you sure you want to delete?', { btn : [ 'determine', 'cancel' ]//Button }, function(index) { layer.close(index); console.log(id); $.ajax({ url:url+id, type:'delete', success:function(data){ //Code optimization layer.msg(data.message,{icon:1,time:1000},function(){ parent.location.reload(); }); }, error:function (data) { layer.msg(data.message,{icon:1,time:1000},function(){ parent.location.reload(); }); } }); }); } </script>
⚡ The project has realized a perfect operation process in the business and background, and multiple different dimensions help the hospital manage relevant information!
Java design project reference: Computer graduation design case sharing
Java graduation design column: Bi design guidance
Thank you very much for reading here. If this article is helpful to you, I hope to leave your praise 👍 follow ❤️ share 👥 Leaving a message. 💬 thanks!!!
May we go in our love!