日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > windows >内容正文

windows

计算机毕业设计SpringBoot选题推荐——医院预约挂号系统

發布時間:2024/1/1 windows 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 计算机毕业设计SpringBoot选题推荐——医院预约挂号系统 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

文章目錄
Java精彩實戰項目案例
Java精彩新手項目案例
Python精彩新手項目案例
前言
一、系統功能
1.1 開發環境
二、系統設計
2.1 研究思路分析
2.2 系統功能結構圖
三、部分功能展示
四、部分代碼設計
4.1.后端管理員控制層【代碼如下(示例):】
4.2.醫生管理控制層:【代碼如下(示例):】
4.3.登錄控制層:【代碼如下(示例):】

4.4.后端管理員控制層::【代碼如下(示例):】
總結
<font color=#999AAA >源碼獲取: <font color=#999AAA >
Java精彩實戰項目案例
Java精彩新手項目案例
Python精彩新手項目案例

前言

本次文章主要是介紹Java+SprignBoot+BootStrap醫院預約掛號系統的功能,系統有多個角色,可以動態分配權限

一、系統功能

1.1 開發環境

  • 開發語言:Java - 技術:SprignBoot+BootStrap
  • 數據庫:MySQL - 架構:B/S - 源碼類型: Web
  • 編譯工具:Idea、Eclipse、MyEclipse (選其一)
  • 其他:jdk1.8、Tomcat8.5【內置】、Navicat

二、系統設計
2.1 研究思路分析
在系統流程分析當中調查分析它是比較重要的環節,因為在這個系統當中它都涉及到每個環節的業務流程,所以從Java+SprignBoot+BootStrap醫院預約掛號系統的設計的整體設計上要保證各個信息的正確輸入和輸出以及對數據儲存的完整,并結合實際的操作步驟來繪制出具體的流程圖。具體流程圖如下圖所示:

?2.2 系統功能結構圖

管理員登陸后,主要包括主頁,個人中心、用戶管理、醫生管理、門診信息管理、預約掛號管理、取消預約管理、改約通知管理、留言板管理、系統管理等功能。

醫生登陸后,主要包括主頁、個人中心、門診信息管理、預約掛號管理、取消預約管理等功能。

用戶登陸后,主要包括主頁、個人中心、預約掛號管理、取消預約管理、改約通知管理等功能。

三、部分功能展示

??系統首頁界面圖??

??門診信息界面圖??

???留言板界面圖??

????個人中心界面圖??

???管理員功能界面圖??

???醫生功能界面圖???

????用戶功能界面圖???

四、部分代碼設計

后端管理員控制層:

/*** 后端管理員控制層*/ @Controller @RequestMapping("/api") public class PatientController {private Integer size = 6;//每頁顯示數量@Autowiredprivate AdminService adminService;@Autowiredprivate SectionService sectionService;@Autowiredprivate BannersService bannersService; @Autowiredprivate DoctorService doctorService;@Autowiredprivate PatientService patientService;@Autowiredprivate MessagesService messagesService;/*** 醫生列表*/@RequestMapping("/doctorList1")public String doctorList(Model model, Doctor doctor, @RequestParam(value="page",defaultValue="1")Integer page) {if(doctor == null) {doctor = new Doctor();}PageInfo<Doctor> pageInfo = doctorService.selectDoctorList(doctor,page,size);List<Doctor> list = pageInfo.getList();model.addAttribute("doctorList",pageInfo.getList());model.addAttribute("pageInfo",pageInfo);model.addAttribute("doctor",doctor);return "patient/doctorList";}/***登錄* @throws ParseException */@RequestMapping(value = "/userLogin")@ResponseBodypublic Patient userLogin(@RequestBody Patient patient) throws ParseException {List<Patient> list = patientService.selectPatient(patient);if(patient != null && patient.getUsername() != null && patient.getPassword() != null) {if(list.size() > 0) {return list.get(0);}}return patient;} /***登錄* @throws ParseException */@RequestMapping(value = "/passwordSave")@ResponseBodypublic String passwordSave(@RequestBody Patient patient ) throws ParseException {if(patient != null && patient.getUsername() != null && patient.getPassword() != null) {Patient pa = new Patient();pa.setUsername(patient.getUsername());List<Patient> list = patientService.selectPatient(pa);if(list.size() > 0) {return "err";}patientService.insertSelective(patient);return "ok";}return "err";} /***登錄驗證* @throws ParseException */@RequestMapping(value = "/userLoginView")@ResponseBodypublic String userLoginView(HttpServletRequest request) throws ParseException {HttpSession session = request.getSession();Patient patient =(Patient) session.getAttribute("USER");System.out.println("*********登陸驗證********");System.out.println(patient); if(patient != null) {return "ok";}return "err";} /***banner圖*/@RequestMapping(value = "/bannerList")@ResponseBodypublic String[] formAdd() {Banners banners = bannersService.selectByPrimaryKey(1);String[] split = null;if(banners != null && banners.getImg() != null) {split = banners.getImg().split(",");}return split;}/***科室查詢*/@RequestMapping(value = "/sectionList")@ResponseBodypublic Map<String,List<Section>> sectionList() {Map<String,List<Section>> map = new HashMap<String,List<Section>>();List<Section> sectionlist2 = null;Section se = new Section();se.setType(1);List<Section> sectionlist = sectionService.selectByExample(se);if(sectionlist.size() > 0 ) {//科室詳情Section section = new Section();section.setPid(sectionlist.get(0).getId());section.setType(2);sectionlist2 = sectionService.selectByExample(section);}map.put("sectionlist",sectionlist);map.put("sectionlist2",sectionlist2); return map;}/***科室下級查詢*/@RequestMapping(value = "/sectionXiaList")@ResponseBodypublic List<Section> sectionXiaList(Integer id) {Section se = new Section();se.setPid(id);se.setType(2);List<Section> sectionlist = sectionService.selectByExample(se);return sectionlist;}/***科室下級查詢*/@RequestMapping(value = "/patientPai")@ResponseBodypublic Integer patientPai(Integer id) {Patient pa = new Patient();pa.setPid(id);PatientExample se = new PatientExample();PatientExample.Criteria criteria = se.createCriteria();if(pa != null){if(pa.getPid() != null) {criteria.andPidEqualTo(pa.getPid());}}List<Patient> selectByExample = patientService.selectByExample(se);if(selectByExample.size() >0 ) {List<Messages> lmlist = messagesService.selectByExample(null);int j = 0 ;for (Messages me : lmlist) {if(me.getUid() == id) {return j;}j++;}}return -1;}/***查詢科室*/@RequestMapping(value = "/sectioNameList")@ResponseBodypublic List<Section> sectioNameList(String name) {Section se = new Section();se.setName(name);se.setType(2);List<Section> sectionlist = sectionService.selectByExample(se);if(sectionlist.size() > 0) {//查詢全部科室se.setName(null);se.setPid(sectionlist.get(0).getPid());se.setType(2);sectionlist = sectionService.selectByExample(se);}return sectionlist;}/*** 坐診時間yuyue*/@RequestMapping("/doctorTimePage")public String doctorTimePage(Integer id,Model model) {if(id != null) {Doctor doctor = doctorService.selectByPrimaryKey(id);model.addAttribute("doctor",doctor);}return "patient/doctorTime";}/***醫生列表查詢*/@RequestMapping(value = "/doctorList")@ResponseBodypublic List<Doctor> doctorList(Integer sid) {Doctor doctor = new Doctor();doctor.setSid(sid);List<Doctor> selectDoctor = doctorService.selectDoctor(doctor);return selectDoctor;} /***醫生列表查詢*/@RequestMapping(value = "/doctorLike")@ResponseBodypublic List<Doctor> doctorLike(String name) {Doctor doctor = new Doctor();doctor.setName(name);List<Doctor> selectDoctor = doctorService.selectDoctor(doctor);return selectDoctor;} /***科室查詢*/@RequestMapping(value = "/doctorIdList")@ResponseBodypublic Section doctorIdList(Integer sid) {Section selectByPrimaryKey = sectionService.selectByPrimaryKey(sid);return selectByPrimaryKey;} /***醫生列表查詢* @throws ParseException */@RequestMapping(value = "/doctortimeSelect")@ResponseBodypublic List<Doctor> doctortimeSelect(@RequestParam("datetimei")String datetimei,@RequestParam("id")Integer id) throws ParseException {Doctor doctor = new Doctor();SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");doctor.setSid(id);doctor.setBegindate(simpleDateFormat.parse(datetimei));List<Doctor> selectDoctor = doctorService.selectTime(doctor);return selectDoctor;} /***醫生列表查詢* @throws ParseException */@RequestMapping(value = "/doctorGeRenList")@ResponseBodypublic Doctor doctorGeRenList(Integer id) throws ParseException {Doctor doctor = doctorService.selectByPrimaryKey(id);return doctor;} /***時間格式轉換*/@RequestMapping(value = "/doctorYuyueTime")@ResponseBodypublic Map<String,String> doctorYuyueTime(Integer id) {Map<String,String> map = new HashMap<String,String>();SimpleDateFormat sdf = new SimpleDateFormat("HH:mm"); Doctor doctor = doctorService.selectByPrimaryKey(id);map.put("begin",sdf.format(doctor.getBegintime()));map.put("end",sdf.format(doctor.getEndtime())); return map;}/***時間格式轉換* @throws ParseException */@RequestMapping(value = "/timeZhuan")@ResponseBodypublic String timeZhuan(String time) throws ParseException {Date parse = new Date();SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); if(time != null) {parse = sdf.parse(time);}return sdf.format(parse);}/***添加患者信息*/@RequestMapping(value = "/loginByPatient")public String loginByPatient(@RequestBody Patient patient) {return "loginByPatient";}/***添加患者信息*/@RequestMapping(value = "/patientSave")public String patientSave(Patient patient) {patientService.insertSelective(patient);return "loginByPatient";}/*** 判斷患者賬號*/@RequestMapping("/panzhanghao")@ResponseBodypublic Map<String,String> panzhanghao(Model model, String zhanghao) {Map<String, String> map = new HashMap<String, String>();PatientExample se = new PatientExample();PatientExample.Criteria criteria = se.createCriteria();criteria.andUsernameEqualTo(zhanghao);List<Patient> selectByExample = patientService.selectByExample(se);if(selectByExample.size() > 0){map.put("pan","err");}else{map.put("pan","ok");}return map;}/*** 患者注冊界面*/@RequestMapping("/patientAddPage")public String patientAddPage(Model model) {return "patientRegister";}/***患者信息列表*/@RequestMapping(value = "/patientList")@ResponseBodypublic List<Patient> patientList(Integer pid,HttpServletRequest request) {Patient pa = new Patient();pa.setPid(pid);List<Patient> selectPatient = patientService.selectPatient(pa);return selectPatient;}/***患者信息列表*/@RequestMapping("/patientList2")public String messageList2(Model model, Patient patient, @RequestParam(value="page",defaultValue="1")Integer page,HttpServletRequest request) {if(patient == null) {patient = new Patient();}HttpSession session = request.getSession();Patient patient1 = (Patient) session.getAttribute("PATIENT");if(patient1 == null){return "redirect:/login/font/index";}/** PageInfo<Patient> pageInfo =* patientService.selectPatientList(patient,1,size); List<Patient> list =* pageInfo.getList(); List<Patient> list2 = new ArrayList<Patient>(); Messages* messages = new Messages(); boolean pan = false; SimpleDateFormat sdf = new* SimpleDateFormat("yyyy-MM-dd"); for (Patient pa : list) { if(pa.getPid() !=* null && pa.getPid() != 0){ messages.setDid(dt.getId());* messages.setUid(pa.getPid()); messages.setUsername(pa.getName());* List<Messages> ml = messagesService.selectMessages(messages); if(ml.size() >* 0 ){ Date time = ml.get(0).getTime(); pa.setUsername(sdf.format(time));* pa.setPhone(dt.getName()); pa.setIdentitys(dt.getSname()); list2.add(pa); }* * } } if(list2.size() <= 8) { pageInfo.setPages(1); }*/Messages messages = new Messages(); // messages.setTime(new Date());messages.setType(1);messages.setUid(patient1.getPid()); PageInfo<Messages> pageInfo = messagesService.selectMessagesList(messages, 1, size);model.addAttribute("doctorList",pageInfo.getList());model.addAttribute("pageInfo",pageInfo);model.addAttribute("patient",patient);return "patient/patientList";}/***患者信息列表*/@RequestMapping(value = "/patienDel")@ResponseBodypublic List<Patient> patienDel(Integer id) {if(id != null) {patientService.deleteByPrimaryKey(id);}List<Patient> selectByExample = patientService.selectByExample(null);return selectByExample;}/***患者信息查看*/@RequestMapping(value = "/patientUpatePage")@ResponseBodypublic Patient patientUpatePage(Integer id) {Patient patient = null;if(id != null) {patient = patientService.selectByPrimaryKey(id);}return patient;}/***患者信息修改*/@RequestMapping(value = "/patientUpdate")@ResponseBodypublic Patient patientUpdate(@RequestBody Patient patient) {patientService.updateByPrimaryKeySelective(patient);return null;}/***預約信息* @throws ParseException */@RequestMapping(value = "/messagesSave")public String messagesSave(Messages patient,HttpServletRequest request) throws ParseException {HttpSession session = request.getSession();Patient patient1 = (Patient) session.getAttribute("PATIENT");Messages hui = null;SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");Date shijian = simpleDateFormat.parse(patient.getSname());patient.setTime(shijian);patient.setType(1);//待預約Doctor doctor = doctorService.selectByPrimaryKey(patient.getDid());//醫生if(doctor != null) {patient.setDname(doctor.getName());if(doctor.getYipeoples() == null) {doctor.setYipeoples(0);}doctor.setYipeoples(doctor.getYipeoples()+1);doctorService.updateByPrimaryKeySelective(doctor);}Section section = sectionService.selectByPrimaryKey(patient.getSid());//科室if(section != null) {patient.setSname(section.getName());}Patient pa = patientService.selectByPrimaryKey(patient1.getId()); //患者if(pa != null) {patient.setUid(pa.getPid());patient.setUserid(pa.getId());patient.setPhone(pa.getPhone()); patient.setUsername(pa.getUsername());patient.setAge(pa.getAge());int countByExample = messagesService.countByExample(null);patient.setBianhao(countByExample+1);//排序Messages message = new Messages(); // message.setUid(patient.getUid());message.setTime(patient.getTime());message.setDid(patient.getDid());message.setType(-1);List<Messages> list = messagesService.selectMessages(message);if(list.size() <= 0) {patient.setPai(1);}else {patient.setPai(list.size()+1);}}messagesService.insertSelective(patient);if(patient.getId() != null) {hui = messagesService.selectByPrimaryKey(patient.getId());Messages xin = new Messages();xin.setDid(hui.getDid());xin.setType(1);xin.setTime(shijian);List<Messages> selectMessagesPai = messagesService.selectMessagesPai(xin);hui.setAge(selectMessagesPai.size());}return "redirect:/api/doctorList1";}/***取消預約* @throws ParseException */@RequestMapping(value = "/messagesQuXiao")public String messagesQuXiao(Integer id) throws ParseException {Messages ma = new Messages();ma.setId(id);ma.setType(2); //取消預約messagesService.updateByPrimaryKeySelective(ma);Messages mes = messagesService.selectByPrimaryKey(id);Messages messages = new Messages();messages.setType(1);messages.setUid(mes.getUid());messages.setTime(new Date());List<Messages> list = messagesService.selectMessages(messages);return "redirect:/api/patientList2";}/***預約信息列表* @throws ParseException */@RequestMapping(value = "/messagesUidList")@ResponseBodypublic List<Messages> messagesUidList(@RequestBody Messages message) throws ParseException {List<Messages> list = null;if(message.getType() != null && message.getType() == 1) {message.setTime(new Date());list = messagesService.selectMessagesPai(message);}else {list = messagesService.selectMessagesTWO(message); }Messages me = new Messages();me.setType(1);me.setTime(new Date());for (int i = 0; i < list.size(); i++) {me.setDid(list.get(i).getDid());List<Messages> lin = messagesService.selectMessagesPai(me);list.get(i).setAge(lin.size());}return list;}/***預約信息列表* @throws ParseException */@RequestMapping(value = "/messagesList")@ResponseBodypublic List<Messages> messagesList(@RequestParam("type")Integer type,@RequestParam("uid")Integer uid) throws ParseException {Messages message = new Messages();List<Messages> list = null;message.setType(type);message.setUid(uid);if(type != null && type == 1) {message.setTime(new Date());list = messagesService.selectMessagesPai(message); Messages me = new Messages();me.setType(1);me.setTime(new Date());for (int i = 0; i < list.size(); i++) {me.setDid(list.get(i).getDid());List<Messages> lin = messagesService.selectMessagesPai(me);list.get(i).setAge(lin.size());}}else {list = messagesService.selectMessagesTWO(message); }return list;}/***預約信息列表* @throws ParseException */@RequestMapping(value = "/messagesLists")@ResponseBodypublic List<Messages> messagesLists(Integer uid) throws ParseException {Messages message = new Messages();message.setUid(uid);List<Messages> list = messagesService.selectMessagesTWO(message);Messages me = new Messages();me.setType(1);me.setTime(new Date());for (int i = 0; i < list.size(); i++) {if(list.get(i).getType() == 1) {me.setDid(list.get(i).getDid());List<Messages> lin = messagesService.selectMessagesPai(me);list.get(i).setAge(lin.size()); }}return list;}/** * @throws ParseException */@RequestMapping(value = "/doctortouList")@ResponseBodypublic List<Doctor> doctortouList() {PageInfo<Doctor> pageInfo = doctorService.selectDoctorList(null,1,4);return pageInfo.getList();}/** * @throws ParseException */@RequestMapping(value = "/datatimeGua")@ResponseBodypublic Integer datatimeGua(@RequestParam("datetime")String datetime,@RequestParam("did")Integer did) throws ParseException {SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");Date parse = sdf.parse(datetime);Messages message = new Messages();message.setTime(parse);message.setDid(did);message.setType(-1);List<Messages> list = messagesService.selectMessages(message);return list.size();}}

醫生管理控制層:

/*** 醫生端*/ @Controller @RequestMapping("/doctor") public class DoctorController {@Autowiredprivate AdminService adminService;@Autowiredprivate DoctorService doctorService;@Autowiredprivate SectionService sectionService;@Autowiredprivate PatientService patientService;@Autowiredprivate MessagesService messagesService;private Integer size = 8;//每頁顯示數量/*** 修改信息* @param model* @return*/@RequestMapping("/tiaomessagelist")public String tiaomessagelist(@RequestBody List<Messages> mlist,Model model) {System.out.println(mlist.size());model.addAttribute("mlist",mlist);return "doctor/messageList";}@RequestMapping("/index")public String index(Model model,HttpServletRequest request) {HttpSession session = request.getSession();Doctor dt = (Doctor) session.getAttribute("DOCTOR");if(dt == null) {return "redirect:/login/index"; }int doctor = doctorService.countByExample(null); //醫生總數int section = sectionService.count(); //科室總數//患者總數int patient = 0;List<Patient> selectByExample = patientService.selectByExample(null);Messages mess = new Messages();for (Patient pa : selectByExample) {if(pa.getName() != null) {mess.setDid(dt.getId());mess.setUsername(pa.getName());List<Messages> selectMessages = messagesService.selectMessages(mess);if(selectMessages.size() > 0 ){patient++;}}}//預約總數MessagesExample me = new MessagesExample();MessagesExample.Criteria mecriteria = me.createCriteria();mecriteria.andDidEqualTo(dt.getId());int messages = messagesService.countByExample(me); model.addAttribute("doctor",doctor);model.addAttribute("section",section);model.addAttribute("patient",patient);model.addAttribute("messages",messages);PageInfo<Doctor> pageInfo = doctorService.selectDoctorList(null,1,4);if(pageInfo.getList() != null && pageInfo.getList().size() >0 ) {List<Doctor> list = pageInfo.getList();StringBuffer sb = new StringBuffer();StringBuffer shu = new StringBuffer();int v = list.size()-1;for(int i=0;i<list.size();i++) {if(v==i) {sb.append(list.get(i).getName());shu.append(list.get(i).getYipeoples());}else {sb.append(list.get(i).getName()+",");shu.append(list.get(i).getYipeoples()+",");}}model.addAttribute("name",sb.toString());model.addAttribute("nu",shu.toString());}return "doctor/index";}/*** 修改信息* @param model* @return*/@RequestMapping("/doctorUptatePage")public String doctorUptatePage(Model model,HttpServletRequest request) {HttpSession session = request.getSession();Doctor dt = (Doctor) session.getAttribute("DOCTOR");if(dt != null) {Doctor doctor = doctorService.selectByPrimaryKey(dt.getId());List<Section> sectionlist2 = null;model.addAttribute("doctor",doctor);//科室Section se = new Section();se.setType(1);List<Section> sectionlist = sectionService.selectByExample(se);model.addAttribute("sectionlist", sectionlist);//科室詳情Section se1 = sectionService.selectByPrimaryKey(doctor.getSid());if(se1 != null) {Section section = new Section();section.setPid(se1.getPid());section.setType(2);sectionlist2 = sectionService.selectByExample(section);model.addAttribute("sectionlist2", sectionlist2);model.addAttribute("se1", se1);} }return "doctor/doctorUptate";}/*** 修改醫生信息*/@RequestMapping("/messageTime")public String messageTime(String name,Model model,HttpServletRequest request) {HttpSession session = request.getSession();Doctor dt = (Doctor) session.getAttribute("DOCTOR");if(name != null) {Messages mess = new Messages();mess.setDid(dt.getId());mess.setUsername(name);List<Messages> selectMessages = messagesService.selectMessagesTWO(mess);model.addAttribute("messagesList", selectMessages);}return "doctor/messageTime";}/*** 修改醫生信息*/@RequestMapping("/admindoctorUptate")public String adminUptatePassword(Doctor doctor,Model model) {if(doctor != null && doctor.getId() != null) {if(doctor.getSid() != null) {Section section = sectionService.selectByPrimaryKey(doctor.getSid());doctor.setSid(section.getId());doctor.setSname(section.getName());}doctorService.updateByPrimaryKeySelective(doctor);}return "redirect:/doctor/index";}/*** 預約信息列表*/@RequestMapping("/messageList")public String doctorList(Model model, Messages messages, @RequestParam(value="page",defaultValue="1")Integer page,Integer type,HttpServletRequest request) {if(messages == null) {messages = new Messages();}HttpSession session = request.getSession();Doctor dt = (Doctor) session.getAttribute("DOCTOR");if(dt != null){messages.setDid(dt.getId());}else{return "redirect:/login/index";}messages.setType(type);//底層數據PageInfo<Messages> pageInfo = messagesService.selectMessagesList(messages,page,size);//工作區數據messages.setTime(new Date());List<Messages> list = messagesService.selectMessagesPai(messages);model.addAttribute("mlist",list);model.addAttribute("messagesList",pageInfo.getList());model.addAttribute("pageInfo",pageInfo);model.addAttribute("messages",messages);model.addAttribute("type",type);return "doctor/messageList";}/***醫生列表查詢*/@RequestMapping(value = "/messageAjax")@ResponseBodypublic List<Messages> doctorList(HttpServletRequest request) {Messages messages = new Messages();HttpSession session = request.getSession();Doctor dt = (Doctor) session.getAttribute("DOCTOR");messages.setDid(dt.getId());messages.setType(1);messages.setTime(new Date());PageInfo<Messages> pageInfo2 = messagesService.selectMessagesListDemo(messages,1,99);return pageInfo2.getList();} /***醫生列表查詢*/@RequestMapping(value = "/messagesQundingUptate")@ResponseBodypublic String messagesQundingUptate(Integer id) {if(id != null) {Messages messages = new Messages();messages.setId(id);messages.setType(3); //3表示預約成功messagesService.updateByPrimaryKeySelective(messages);Messages selectByPrimaryKey = messagesService.selectByPrimaryKey(id);Messages mes = new Messages();mes.setType(1);mes.setTime(new Date());mes.setDid(selectByPrimaryKey.getDid());List<Messages> list = messagesService.selectMessagesPai(mes);for (int i = 0; i < list.size(); i++) {list.get(i).setPai(i+1);messagesService.updateByPrimaryKeySelective(list.get(i));}}return "ok";} /***患者信息列表*/@RequestMapping("/patientList")public String messageList(Model model, Patient patient, @RequestParam(value="page",defaultValue="1")Integer page,HttpServletRequest request) {if(patient == null) {patient = new Patient();}HttpSession session = request.getSession();Doctor dt = (Doctor) session.getAttribute("DOCTOR");if(dt == null){return "redirect:/login/index";}/** PageInfo<Patient> pageInfo =* patientService.selectPatientList(patient,1,size); List<Patient> list =* pageInfo.getList(); List<Patient> list2 = new ArrayList<Patient>(); Messages* messages = new Messages(); boolean pan = false; SimpleDateFormat sdf = new* SimpleDateFormat("yyyy-MM-dd"); for (Patient pa : list) { if(pa.getPid() !=* null && pa.getPid() != 0){ messages.setDid(dt.getId());* messages.setUid(pa.getPid()); messages.setUsername(pa.getName());* List<Messages> ml = messagesService.selectMessages(messages); if(ml.size() >* 0 ){ Date time = ml.get(0).getTime(); pa.setUsername(sdf.format(time));* pa.setPhone(dt.getName()); pa.setIdentitys(dt.getSname()); list2.add(pa); }* * } } if(list2.size() <= 8) { pageInfo.setPages(1); }*/Messages messages = new Messages(); // messages.setTime(new Date());messages.setType(1);messages.setDid(dt.getId()); PageInfo<Messages> pageInfo = messagesService.selectMessagesList(messages, 1, size);model.addAttribute("doctorList",pageInfo.getList());model.addAttribute("pageInfo",pageInfo);model.addAttribute("patient",patient);return "doctor/patientList";}/***預約信息列表* @throws ParseException */@RequestMapping(value = "/tiaozhuanList")@ResponseBodypublic String messagesList(@RequestParam("xiao")Integer xiao,@RequestParam("da")Integer da) {Messages message = new Messages();if(xiao != null & da != null) {Messages mexiao = messagesService.selectByPrimaryKey(xiao);Integer px = mexiao.getPai();Messages meda = messagesService.selectByPrimaryKey(da);mexiao.setPai(meda.getPai());meda.setPai(px);messagesService.updateByPrimaryKeySelective(mexiao);messagesService.updateByPrimaryKeySelective(meda);}return null;}/*** 確定預約*/@RequestMapping("/messagesUptate")public String messagesUptate(Integer id) {if(id != null) {Messages messages = new Messages();messages.setId(id);messages.setType(3); //3表示預約成功messagesService.updateByPrimaryKeySelective(messages);}return "redirect:/doctor/messageList?type=1";}/*** 取消*/@RequestMapping("/messagesQuXiao")public String messagesQuXiao(Integer id) {if(id != null) {Messages messages = new Messages();messages.setId(id);messages.setType(2); //2取消預約messagesService.updateByPrimaryKeySelective(messages);}return "redirect:/doctor/messageList?type=1";}/*** 退號*/@RequestMapping("/messagesTui")public String messagesTui(Integer id) {if(id != null) {Messages messages = new Messages();messages.setId(id);messages.setType(4); //4退號失敗messagesService.updateByPrimaryKeySelective(messages);}return "redirect:/doctor/messageList?type=3";}}

登錄控制層:

/*** 登錄控制層*/ @Controller @RequestMapping("/login") public class LoginController {@Autowiredprivate AdminService adminService;@Autowiredprivate DoctorService doctorService;@Autowiredprivate SectionService sectionService;@Autowiredprivate PatientService patientService;@Value("${fileUrl}") //在配置文件中獲取文件的保存路徑private String filePath;/*** 后臺登陸界面* @throws IOException */@RequestMapping("/afterView")public String afterLogin(Integer type,Model model) {if(type == null) {type = 1;}model.addAttribute("type",type);return "login";}/*** 后臺登陸界面*/@RequestMapping("/index")public String index(Integer type,Model model) {if(type == null){type = 1;}model.addAttribute("type",type);return "login";}/*** 后臺登陸界面*/@RequestMapping("/font/index")public String fontIndex(Integer type,Model model) {if(type == null){type = 3;}model.addAttribute("type",type);return "loginByPatient";}/* public static void main(String[] args) {String filename ="C:\\Users\\Administrator\\Pictures\\項目圖片\\1156.jpg_wh1200.jpg";int indexOf = filename.indexOf(".");String substring = filename.substring(indexOf); System.out.println(substring);}*//*** 醫生圖片上傳* @param mufile* @param id* @return* @throws IOException*/@RequestMapping(value ="/zixunAdd")@ResponseBodypublic Map<String, Object> zixunAdd(@RequestParam("mf")MultipartFile mufile,@RequestParam("id")Integer id) throws IOException{Map<String, Object> map = new HashMap<String, Object>();String random = StringRandom.getRandom();String filename = mufile.getOriginalFilename();//隨機字符+原圖片名用作新的圖片名filename = random+".jpg";try {//文件保存路徑 D:/xxxx/xxxx/File file = new File(filePath+filename);//判斷父級文件是否存在if (!file.getParentFile().exists()) {file.getParentFile().mkdir();}mufile.transferTo(file);} catch (IllegalStateException | IOException e) {e.printStackTrace();}Doctor doctor = new Doctor(); if(id != -1){doctor.setId(id);doctor.setImg("/files/"+filename);doctorService.updateByPrimaryKeySelective(doctor);}else {//添加圖片路徑doctor.setImg("/files/"+filename);doctorService.insertSelective(doctor);System.out.println("id:"+doctor.getId());map.put("id",doctor.getId());}return map;}/*** 判斷管理員賬號*/@RequestMapping("/sectionxList")@ResponseBodypublic List<Section> sectionxList(Model model, Integer id) {List<Section> selectByExample = null;if(id != null) {Section section = new Section();section.setPid(id);selectByExample = sectionService.selectByExample(section);}return selectByExample;} /*** 判斷管理員賬號*/@RequestMapping("/mimaUpate")@ResponseBodypublic Map<String,String> passwordUpate(Model model, String zhanghao) {Map<String, String> map = new HashMap<String, String>();Admin ad = new Admin();ad.setUsername(zhanghao);List<Admin> selectAdmin = adminService.selectAdmin(ad);if(selectAdmin.size() > 0){map.put("pan","err");}else{map.put("pan","ok");}return map;}/*** 判斷醫生賬號*/@RequestMapping("/panzhanghao")@ResponseBodypublic Map<String,String> panzhanghao(Model model, String zhanghao) {Map<String, String> map = new HashMap<String, String>();DoctorExample se = new DoctorExample();DoctorExample.Criteria criteria = se.createCriteria();criteria.andUsernameEqualTo(zhanghao);List<Doctor> selectByExample = doctorService.selectByExample(se);if(selectByExample.size() > 0){map.put("pan","err");}else{map.put("pan","ok");}return map;}/*** 醫生添加* @param model* @param zixun* @return*/@RequestMapping("/zixunInsert")public String zixunInsert(Model model,Doctor doctor){if(doctor.getId() != null){if(doctor.getSid() != null) {Section selectByPrimaryKey = sectionService.selectByPrimaryKey(doctor.getSid());doctor.setSname(selectByPrimaryKey.getName());}doctorService.updateByPrimaryKeySelective(doctor);}model.addAttribute("type",1);return "login";}/*** 管理員注冊界面*/@RequestMapping("/mimaPageUptate")public String mimaPageUptate(Integer type,Model model) {//1醫生 2 管理員if(type == 1 ) {return "doctorRegister";}return "adminRegister";}/*** 醫生注冊界面*/@RequestMapping("/doctorRegisterPage")public String doctorRegister(Model model) {List<Section> sectionlist2 = null;Section se = new Section();se.setType(1);List<Section> sectionlist = sectionService.selectByExample(se);if(sectionlist.size() > 0 ) {//科室詳情Section section = new Section();section.setPid(sectionlist.get(0).getId());section.setType(2);sectionlist2 = sectionService.selectByExample(section);}model.addAttribute("sectionlist", sectionlist);model.addAttribute("sectionlist2", sectionlist2);return "doctorRegister";}/*** 管理員注冊*/@RequestMapping("/admin_Register")public String admin_Register(Admin admin,Model model) {int insertSelective = adminService.insertSelective(admin);model.addAttribute("type",2);return "login";}/*** 登陸驗證* @return*/@RequestMapping("/verificatio")public String verificatio(String username, String password, Integer type, HttpServletRequest request,Model model) {HttpSession session = request.getSession();session.setAttribute("type",type);//類型為1是醫院 2是管理員if(type == 1){Doctor doctor = new Doctor();doctor.setUsername(username);doctor.setPasswoed(password);List<Doctor> doctorlist = doctorService.selectDoctor(doctor);if(doctorlist.size() <= 0){model.addAttribute("message","密碼錯誤");model.addAttribute("type",type);return "login";}session.setAttribute("DOCTOR",doctorlist.get(0));return "redirect:/doctor/index";}if(type == 3){Patient patient = new Patient();patient.setUsername(username);patient.setPassword(password);List<Patient> list = patientService.selectPatient(patient);if(list.size() <= 0) {model.addAttribute("message","密碼錯誤");model.addAttribute("type",type);return "loginByPatient";}session.setAttribute("PATIENT",list.get(0));return "redirect:/api/doctorList1";}Admin admin = new Admin();admin.setUsername(username);admin.setPassword(password);List<Admin> adminlist = adminService.selectAdmin(admin);if(adminlist.size() <= 0){model.addAttribute("message","密碼錯誤");model.addAttribute("type",type);return "login";}session.setAttribute("ADMIN",adminlist.get(0));return "redirect:/admin/index";}/*** 退出登錄* @param request* @return*/@RequestMapping("/sessionInvalidate")public String boot(HttpServletRequest request,Model model) {HttpSession session = request.getSession();Integer type = (Integer) session.getAttribute("type");if(type == null){type=1;}if(type == 3){model.addAttribute("type",type);session.invalidate(); //session銷毀return "loginByPatient";}model.addAttribute("type",type);session.invalidate(); //session銷毀return "login";}/**//*** 跳轉忘記密碼界面*//*@RequestMapping("/mimaPageUptate")public String passwordUpate() {return "behind/merchant/mibaoUptate";}*//*** 修改密碼*//*@RequestMapping("/mimaUpate")@ResponseBodypublic Map<String,String> passwordUpate(Model model, String mima, String mibao, String zhanghao) {Map<String, String> map = new HashMap<String, String>();Merchant me = new Merchant();me.setZhanghao(zhanghao);me.setMibao(mibao);List<Merchant> list = merchantService.selectMerchant(me);if(list.size() > 0){Merchant me2 = new Merchant();me2.setId(list.get(0).getId());me2.setMima(mima);merchantService.updateByPrimaryKeySelective(me2);map.put("pan","ok");}else{map.put("pan","err");}return map;}*//*** 后臺登陸界面* @return*//*@RequestMapping("/afterView")public String afterLogin(Integer type,Model model) {if(type == null){type = 1;}model.addAttribute("type",type);return "behind/login";}*//*** 登陸驗證* @return*//*@RequestMapping("/verificatio")public String signin(String username, String password, Integer type, HttpServletRequest request,Model model) {HttpSession session = request.getSession();session.setAttribute("type",type);//類型為1是商戶后臺 2是管理員if(type == 1){Merchant merchant = new Merchant();merchant.setZhanghao(username);merchant.setMima(password);merchant.setState(1);List<Merchant> merchants = merchantService.selectMerchant(merchant);if(merchants.size() <= 0){model.addAttribute("message","密碼錯誤");model.addAttribute("type",type);return "behind/login";}session.setAttribute("MERCHANT",merchants.get(0));return "redirect:/merchant/index";}Admin admin = new Admin();admin.setUsername(username);admin.setPassword(password);List<Admin> adminlist = adminService.selectAdmin(admin);if(adminlist.size() <= 0){model.addAttribute("message","密碼錯誤");model.addAttribute("type",type);return "behind/login";}session.setAttribute("ADMIN",adminlist.get(0));return "redirect:/admin/index";}*//*** 退出登錄* @param request* @return*//*@RequestMapping("/sessionInvalidate")public String boot(HttpServletRequest request,Model model) {HttpSession session = request.getSession();Integer type = (Integer) session.getAttribute("type");if(type == null){type=1;}model.addAttribute("type",type);session.invalidate(); //session銷毀return "behind/login";}*//*** 管理員修改密碼界面* @return*//*@RequestMapping("/adminUptatePage")public String adminUptatePage(Model model) {return "behind/admin/adminUptate";}*//*** 商戶修改密碼界面* @return*//*@RequestMapping("/merchantUptate")public String merchantUptate(Model model) {return "behind/merchant/merchantUptate";} */}

后端管理員控制層:?

/*** 后端管理員控制層*/ @Controller @RequestMapping("/admin") public class AdminController {@Autowiredprivate AdminService adminService;@Autowiredprivate SectionService sectionService;@Autowiredprivate BannersService bannersService; @Autowiredprivate DoctorService doctorService;@Autowiredprivate PatientService patientService;@Autowiredprivate MessagesService messagesService;private Integer size = 6;//每頁顯示數量@Value("${fileUrl}") //在配置文件中獲取文件的保存路徑private String filePath;/*** 導入* @param file* @param response* @throws IOException */@RequestMapping("/excelInput")public String excelInput(MultipartFile file,HttpServletResponse response) throws IOException {String sb = file.getOriginalFilename();List<String[]> jieExcel = ExcelInput.jieExcel(file.getInputStream(), sb.substring(sb.indexOf(".")+1));for (String[] strings : jieExcel) {System.out.println(Arrays.toString(strings)); }return "redirect:/admin/index";}/*** 導出* * @param file* @param response*/@RequestMapping("/xiazai")public void excelString(HttpServletRequest request,HttpServletResponse response) {try {response.setCharacterEncoding("utf-8");//content-type類型是告訴頁面要響應內容的類型,以及字符編碼,頁面要以什么方式打開response.setContentType("application/force-download");// 設置強制下載不打開//Content-Disposition是MIMI協議的擴展,瀏覽器以什么方式處理wenjianresponse.setHeader("Content-Disposition", "attachment; fileName=exportFile.xlsx");String[] title = new String[]{"姓名","科室id","科室","日期"};List<Doctor> list = doctorService.selectByExample(null);Workbook wo = ExcelUtils.getExcel("xlsx",title,list);wo.write(response.getOutputStream());//Files.copy(file, response.getOutputStream()); } catch (IOException e) {System.out.println("發生異常");e.printStackTrace();}}@RequestMapping("/index")public String index(Model model) {int doctor = doctorService.countByExample(null); //醫生總數int section = sectionService.countByExample(null); //科室總數int patient = patientService.countByExample(null); //患者總數int messages = messagesService.countByExample(null); //預約總數model.addAttribute("doctor",doctor);model.addAttribute("section",section);model.addAttribute("patient",patient);model.addAttribute("messages",messages);PageInfo<Doctor> pageInfo = doctorService.selectDoctorList(null,1,4);if(pageInfo.getList() != null && pageInfo.getList().size() >0 ) {List<Doctor> list = pageInfo.getList();StringBuffer sb = new StringBuffer();StringBuffer shu = new StringBuffer();int v = list.size()-1;for(int i=0;i<list.size();i++) {if(v==i) {sb.append(list.get(i).getName());shu.append(list.get(i).getYipeoples());}else {sb.append(list.get(i).getName()+",");shu.append(list.get(i).getYipeoples()+",");}}model.addAttribute("name",sb.toString());model.addAttribute("nu",shu.toString());}return "admin/index";}/*** 管理員修改密碼界面* @return*/@RequestMapping("/adminUptatePage")public String adminUptatePage(Model model) {return "admin/adminUptate";}/*** 修改密碼 */@RequestMapping("/adminUptatePassword")public String adminUptatePassword(Model model,Admin admin,HttpServletRequest request) {HttpSession session = request.getSession();Admin ad = (Admin) session.getAttribute("ADMIN");if(ad != null && admin.getPassword() != null){admin.setId(ad.getId());adminService.updateByPrimaryKeySelective(admin);}return "redirect:/admin/index";}/*** 坐診時間設置界面*/@RequestMapping("/doctorTimePage")public String doctorTimePage(Integer id,Model model) {if(id != null) {Doctor doctor = doctorService.selectByPrimaryKey(id);model.addAttribute("doctor",doctor);}return "admin/doctorTime";}/*** 坐診時間設置界面* @throws ParseException */@RequestMapping("/doctorTimeUpdate")public String doctorTimeUpdate(Integer id,Model model,String begindate,String enddate,String begintime,String endtime) throws ParseException {if(id != null) {SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");SimpleDateFormat simpleDateFormat2 = new SimpleDateFormat("HH:mm"); Doctor doctor = new Doctor();doctor.setId(id);doctor.setBegindate(simpleDateFormat.parse(begindate)); doctor.setEnddate(simpleDateFormat.parse(enddate));doctor.setBegintime(simpleDateFormat2.parse(begintime));doctor.setEndtime(simpleDateFormat2.parse(endtime)); doctorService.updateByPrimaryKeySelective(doctor);}return "redirect:/admin/doctorList";} /*** 修改醫生信息*/@RequestMapping("/admindoctorUptate")public String adminUptatePassword(Doctor doctor,Model model) {if(doctor != null && doctor.getId() != null) {if(doctor.getSid() != null) {Section section = sectionService.selectByPrimaryKey(doctor.getSid());doctor.setSid(section.getId());doctor.setSname(section.getName());}doctorService.updateByPrimaryKeySelective(doctor);}return "redirect:/admin/doctorList";}/*** 刪除醫生信息*/@RequestMapping("/doctorDelect")public String doctorDelect(Integer id,Model model) {if(id != null) {doctorService.deleteByPrimaryKey(id);}return "redirect:/admin/doctorList";}/*** 醫生注冊界面*/@RequestMapping("/doctorAddPage")public String doctorAddPage(Model model) {List<Section> sectionlist2 = null;Section se = new Section();se.setType(1);List<Section> sectionlist = sectionService.selectByExample(se);if(sectionlist.size() > 0 ) {//科室詳情Section section = new Section();section.setPid(sectionlist.get(0).getId());section.setType(2);sectionlist2 = sectionService.selectByExample(section);}model.addAttribute("sectionlist", sectionlist);model.addAttribute("sectionlist2", sectionlist2);return "admin/doctorAdd";}@RequestMapping("/admindoctorAdd")public String admindoctorAdd(Doctor doctor,Model model) {if(doctor.getId() != null){if(doctor.getSid() != null) {Section selectByPrimaryKey = sectionService.selectByPrimaryKey(doctor.getSid());doctor.setSname(selectByPrimaryKey.getName());}doctorService.updateByPrimaryKeySelective(doctor);}return "redirect:/admin/doctorList";}/*** 醫生列表*/@RequestMapping("/doctorList")public String doctorList(Model model, Doctor doctor, @RequestParam(value="page",defaultValue="1")Integer page) {if(doctor == null) {doctor = new Doctor();}PageInfo<Doctor> pageInfo = doctorService.selectDoctorList(doctor,page,size);List<Doctor> list = pageInfo.getList();model.addAttribute("doctorList",pageInfo.getList());model.addAttribute("pageInfo",pageInfo);model.addAttribute("doctor",doctor);return "admin/doctorList";}/*** 修改醫生信息界面* @return*/@RequestMapping("/doctorUptatePage")public String doctorUptatePage(Model model,Integer id) {if(id != null) {Doctor doctor = doctorService.selectByPrimaryKey(id);List<Section> sectionlist2 = null;model.addAttribute("doctor",doctor);//科室Section se = new Section();se.setType(1);List<Section> sectionlist = sectionService.selectByExample(se);model.addAttribute("sectionlist", sectionlist);//科室詳情Section se1 = sectionService.selectByPrimaryKey(doctor.getSid());Section section = new Section();if(se1 != null) {section.setPid(se1.getPid());section.setType(2);sectionlist2 = sectionService.selectByExample(section);}else {if(sectionlist.size() >0 ) {section.setPid(sectionlist.get(0).getId()); section.setType(2);sectionlist2 = sectionService.selectByExample(section);}se1 = new Section();}model.addAttribute("sectionlist2", sectionlist2);model.addAttribute("se1", se1);}return "admin/doctorUptate";}/*** 科室列表*/@RequestMapping("/sectionList")public String sectionList(Model model, Section section, @RequestParam(value="page",defaultValue="1")Integer page) {if(section == null) {section = new Section();}section.setType(1);//1 科室PageInfo<Section> pageInfo = sectionService.selectSectionListt(section,page,size);List<Section> list = pageInfo.getList();List<Section> list2 = new ArrayList<Section>();Section cs = new Section();for (Section se : list) {cs.setPid(se.getId());List<Section> selectByExample = sectionService.selectByExample(cs);se.setSlist(selectByExample);list2.add(se);}model.addAttribute("sectionList",list2);model.addAttribute("pageInfo",pageInfo);model.addAttribute("section",section);return "admin/sectionList";}/*** 科室詳情下級列表*/@RequestMapping("/sectionBelowList")public String sectionBelowList(Model model, Section section, Integer id) {if(section == null) {section = new Section();}section.setType(2);// 2 科室詳情section.setPid(id);Section se = sectionService.selectByPrimaryKey(id);List<Section> list = sectionService.selectByExample(section);model.addAttribute("sectionList",list);model.addAttribute("section",section);model.addAttribute("se",se);return "admin/sectionBelow";}/*** 跳轉添加科室界面*/@RequestMapping("/sectionAddPage")public String zuopinList() {return "admin/sectionAdd";}/*** 跳轉添加科室下級界面*/@RequestMapping("/sectionAddBelowPage")public String zuopinList(Model model,Integer id) {if(id != null) {Section se = sectionService.selectByPrimaryKey(id);model.addAttribute("se",se);}return "admin/sectionAddBelow";}/*** 跳轉修改科室下級界面*/@RequestMapping("/sectionBelowUptatePage")public String sectionBelowUptatePage(Model model,Integer id) {if(id != null) {Section se = sectionService.selectByPrimaryKey(id);Section section = sectionService.selectByPrimaryKey(se.getPid());model.addAttribute("se",se);model.addAttribute("sname",section.getName());}return "admin/sectionBelowUptate";}/*** 跳轉修改科室界面*/@RequestMapping("/sectionUptatePage")public String sectionUptatePage(Model model,Integer id) {if(id != null) {Section se = sectionService.selectByPrimaryKey(id);model.addAttribute("se",se);}return "admin/sectionUptate";}/*** 添加科室*/@RequestMapping("/sectionAdd")@ResponseBodypublic Map<String,String> sectionAdd(String name) {Map<String, String> map = new HashMap<String, String>();if(name != null ){Section section = new Section();section.setName(name);section.setType(1);sectionService.insertSelective(section);map.put("pan","ok");}else{map.put("pan","err");}return map;}/*** 添加科室下級*/@RequestMapping("/sectionAddBelow")public String sectionAddBelow(Section section) {section.setType(2);sectionService.insertSelective(section);//"redirect:/admin/sectionBelowList?id="+section.getPid();return "redirect:/admin/sectionList";}/*** 修改科室*/@RequestMapping("/sectionUptate")public String sectionUptate(Section section) {sectionService.updateByPrimaryKeySelective(section);return "redirect:/admin/sectionList";}/*** 修改科室下級*/@RequestMapping("/sectionBelowUptate")public String sectionBelowUptate(Section section) {sectionService.updateByPrimaryKeySelective(section);return "redirect:/admin/sectionBelowList?id="+section.getPid();}/*** 刪除科室下級*/@RequestMapping("/sectionBelowDelect")public String sectionBelowUptate(Integer id) {Section section = sectionService.selectByPrimaryKey(id);Integer pid = section.getPid();sectionService.deleteByPrimaryKey(section.getId());return "redirect:/admin/sectionBelowList?id="+pid;}/*** 刪除科室*/@RequestMapping("/sectionDelect")public String sectionDelect(Integer id) {Section section = new Section();section.setPid(id);section.setType(2);List<Section> list = sectionService.selectByExample(section);sectionService.deleteByPrimaryKey(id);for (Section section2 : list) {sectionService.deleteByPrimaryKey(section2.getId());}return "redirect:/admin/sectionList";}@RequestMapping("/bannersPageUpdate")public String bannersAdd(Model model,Integer id) {Banners banners = null;String[] imgnames = null;if(id == 1){banners = bannersService.selectByPrimaryKey(1);if(banners == null){banners = new Banners();banners.setId(1);bannersService.insertSelective(banners);}}if(banners.getImg() != null && !"".equals(banners.getImg())){imgnames = banners.getImg().split(",");}model.addAttribute("imgnames",imgnames);model.addAttribute("banners",banners);return "admin/bannersUpdate";}/***輪播圖片刪除*/@RequestMapping(value ="/bannersDel")@ResponseBodypublic Map<String, Object> bannersDel(Integer id,String src) throws IOException{Map<String, Object> map = new HashMap<String, Object>();StringBuffer sb = new StringBuffer();if(id != null && src != null){Banners banner = bannersService.selectByPrimaryKey(id);if(banner.getImg() != null){String[] split = banner.getImg().split(",");for(int i = 0; i<split.length;i++){if(src.equals(split[i])){//String fp= filePath.substring(filePath.indexOf("/")+1);//文件的真實路徑String path = src.substring(src.indexOf("s") + 2); //獲取文件名File file = new File(filePath +path);if(file.exists()){file.delete();map.put("massage","刪除成功");}else{map.put("massage","刪除失敗");}}else{sb.append(split[i]+",");}}}}Banners banners = new Banners();banners.setId(id);banners.setImg(sb.toString());bannersService.updateByPrimaryKeySelective(banners);return map;}/***banner圖片上傳*/@RequestMapping(value ="/bannersAdd")@ResponseBodypublic Map<String, Object> bannersAdd(@RequestParam("mf")MultipartFile[] mufile,@RequestParam("id")Integer id) throws IOException{Map<String, Object> map = new HashMap<String, Object>();StringBuffer path = new StringBuffer();//圖片上傳并保存上傳的路徑for (int i = 0; i < mufile.length; i++) {try {String random = StringRandom.getRandom();String filename = mufile[i].getOriginalFilename();//隨機字符+原圖片名用作新的圖片名filename = random+filename;//文件保存路徑 D:/Java/hospital File file = new File(filePath+filename);//判斷父級文件是否存在if (!file.getParentFile().exists()) {file.getParentFile().mkdir();}path.append("/files/"+filename+",");mufile[i].transferTo(file);} catch (IllegalStateException | IOException e) {e.printStackTrace();}}Banners banners = new Banners();if(id != null){//修改圖片路徑Banners sh = bannersService.selectByPrimaryKey(id);banners.setId(id);if(sh.getImg() != null ){banners.setImg(sh.getImg()+path.toString());}else{banners.setImg(path.toString());}bannersService.updateByPrimaryKeySelective(banners);}return map;}/**//*** 管理員-非遺講堂*//*@RequestMapping(value="/feiyi_videoList")public String feiyi_VideoList(Model model, Video video, @RequestParam(value="page",defaultValue="1")Integer page) {PageInfo<Video> pageInfo = videoService.selectPageList(video,page,size);model.addAttribute("videoList",pageInfo.getList());model.addAttribute("pageInfo",pageInfo);if(video.getTitle() != null){model.addAttribute("title",video.getTitle());}return "behind/admin/feiyi_videoList";}*//*** 非遺講堂-刪除*//*@RequestMapping("/videoDelete")public String videoDelete(Model model,Integer id) {if(id != null){//String fp= filePath.substring(filePath.indexOf("/")+1);//文件的真實路徑Video video = videoService.selectByPrimaryKey(id);String urlsrls = video.getUrls();String name = urlsrls.substring(urlsrls.indexOf("s") + 2); //獲取文件名File file = new File(filePath +name);if(file.exists()){file.delete();}videoService.deleteByPrimaryKey(id);}return "redirect:/admin/feiyi_videoList";}*//*** 管理員-人物列表*//*@RequestMapping("/personList")public String personList(Model model,Person person,@RequestParam(value="page",defaultValue="1")Integer page,String sou) {PageInfo<Person> pageInfo = personService.selectPageList(person,page,size);List<Person> list = pageInfo.getList();List<Person> list2 = new ArrayList<Person>();//默認顯示第一張圖片for(int i =0; i<list.size();i++){Person sh = list.get(i);String[] img = sh.getImg().split(",");if(img.length > 0){sh.setImg(img[0]);list.set(i,sh);}}if(sou != null && !"".equals(sou)){char sz = sou.charAt(0);//判斷是否是大寫if(Character.isUpperCase(sz)){sz = StringRandom.toLower(sz); //大寫轉小寫}for(int i =0; i<list.size();i++){Person sh = list.get(i);if(sh.getName() != null){char names = StringRandom.getPinYinHeadChar(sh.getName()); //名字的首字母if(names == sz){list2.add(sh);}}}model.addAttribute("personList",list2);}else{model.addAttribute("personList",list);}model.addAttribute("sou",sou);model.addAttribute("pageInfo",pageInfo);model.addAttribute("person",person);return "behind/admin/feiyi_personList";}*//*** 人物刪除* @param model* @return*//*@RequestMapping("/personDelete")public String personDelete(Model model,Integer id) {if(id != null){Person person = personService.selectByPrimaryKey(id);//刪除人物的圖片//String fp= filePath.substring(filePath.indexOf("/")+1);//文件的真實路徑String name = person.getImg().substring(person.getImg().indexOf("s") + 2); //獲取文件名File file = new File(filePath +name);if(file.exists()){file.delete();}personService.deleteByPrimaryKey(id);}return "redirect:/admin/personList";}*//*** 管理員*//*@RequestMapping("/feiyisList")public String zuopinList(Model model,Feiyis feiyis,@RequestParam(value="page",defaultValue="1")Integer page,String sou) {feiyis.setState(0);//0為正常 1是管理員下架的PageInfo<Feiyis> pageInfo = feiyisService.selectFeiyis(feiyis,page,size);model.addAttribute("feiyiList",pageInfo.getList());model.addAttribute("pageInfo",pageInfo);model.addAttribute("feiyis",feiyis);return "behind/admin/feiyisList";}*//*** 非遺視界刪除* @param model* @return*//*@RequestMapping("/feiyisDelete")public String feiyisDelete(Model model,Integer id,Integer type) {if (id != null) {Feiyis feiyis = feiyisService.selectByPrimaryKey(id);//刪除圖片// String fp= filePath.substring(filePath.indexOf("/")+1);//文件的真實路徑if (feiyis.getImg() != null) {String name = feiyis.getImg().substring(feiyis.getImg().indexOf("s") + 2);//獲取文件File file = new File(filePath + name);if (file.exists()) {file.delete();}}feiyisService.deleteByPrimaryKey(id);}return "redirect:/admin/feiyisList?type=" + type;}*//*** 后臺主頁* @return*//*@RequestMapping("/index")public String index(Model model) {//圖表信息int zixun = zixunService.countByExample(null);int video = videoService.countByExample(null);int person = personService.countByExample(null);int zuocount = feiyisService.countByExamples(1);int huocount = feiyisService.countByExamples(2);int zoucount = feiyisService.countByExamples(3);int facount = feiyisService.countByExamples(4);model.addAttribute("zixun",zixun);model.addAttribute("video",video);model.addAttribute("person",person);model.addAttribute("zuocount",zuocount);model.addAttribute("huocount",huocount);model.addAttribute("zoucount",zoucount);model.addAttribute("facount",facount);//總評論數int commentcount = commentService.countByExample(null);//用戶數int usercount = usertService.countByExample(null);//商品數量int shopcount = shopService.countByExample(null);//資訊數量int zixuncount = zixunService.countByExample(null);model.addAttribute("commentcount",commentcount);model.addAttribute("usercount",usercount);model.addAttribute("shopcount",shopcount);model.addAttribute("zixuncount",zixuncount);return "behind/admin/index";}*//*** 資訊列表* @param model* @return*//*@RequestMapping("/zixunList")public String zixunList(Model model, Zixun zixun, @RequestParam(value="page",defaultValue="1")Integer page, String sou) {if(zixun == null){zixun = new Zixun();}zixun.setState(0);// 0 是正常 1被下架的PageInfo<Zixun> pageInfo = zixunService.selectZixunList(zixun,page,size);model.addAttribute("zixunList",pageInfo.getList());model.addAttribute("pageInfo",pageInfo);model.addAttribute("zixun",zixun);return "behind/admin/zixunList";}*//*** 資訊下架* @param model* @return*//*@RequestMapping("/zixunUptate")public String zixunUptate(Model model,Integer id) {if(id != null){Zixun zixun = new Zixun();zixun.setId(id);zixun.setState(1); //1是下架zixunService.updateByPrimaryKeySelective(zixun);}return "redirect:/admin/zixunList";}*//*** 管理評論* @return*//*@RequestMapping("/commentList")public String commentList(Model model,Integer type) {if(type != null){Comment comment = new Comment();comment.setType(type);//商品評論comment.setReport(1);//1為舉報的List<Comment> commentsList = commentService.selectComment(comment);model.addAttribute("commentsList",commentsList);}return "behind/admin/commentList";}*//*** 評論刪除* @return*//*@RequestMapping("/commentDel")public String commentDel(Model model,Integer id) {if(id != null){commentService.deleteByPrimaryKey(id);}return "redirect:/admin/commentList";}*//***審核* @return*//*@RequestMapping("/merchantList")public String merchantList(Model model,Integer id) {Merchant merchant = new Merchant();merchant.setState(0);List<Merchant> merchantlist = merchantService.selectMerchant(merchant);model.addAttribute("merchantlist",merchantlist);return "behind/admin/merchantList";}*//***通過* @return*//*@RequestMapping("/merchanUpate")public String merchanUpate(Model model,Integer id) {Merchant merchant = new Merchant();if(id != null){merchant.setId(id);merchant.setState(1);merchantService.updateByPrimaryKeySelective(merchant);}return "redirect:/admin/merchantList";}*//***未通過* @return*//*@RequestMapping("/merchanDel")public String merchanDel(Model model,Integer id) {if(id != null){merchantService.deleteByPrimaryKey(id);}return "redirect:/admin/merchantList";}*//***用戶列表* @return*//*@RequestMapping("/userList")public String userList(Model model) {List<User> userlist = usertService.selectFull(null);model.addAttribute("userlist",userlist);return "behind/admin/userList";}*//***用戶刪除* @return*//*@RequestMapping("/userDel")public String userDel(Model model,Integer id) {if(id != null){usertService.deleteByPrimaryKey(id);}return "redirect:/admin/userList";}*//***修改密碼* @return*//*@RequestMapping("/adminUptatePassword")public String adminUptatePassword(Model model,Admin admin,HttpServletRequest request) {HttpSession session = request.getSession();Admin ad = (Admin) session.getAttribute("ADMIN");if(ad != null && admin.getPassword() != null){admin.setId(ad.getId());adminService.updateByPrimaryKeySelective(admin);}return "redirect:/admin/index";} */}

總結

源碼獲取:

大家點贊、收藏、關注、評論啦 、

總結

以上是生活随笔為你收集整理的计算机毕业设计SpringBoot选题推荐——医院预约挂号系统的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

国产人免费人成免费视频 | 在线99热| 黄在线免费看 | 一区 二区电影免费在线观看 | 亚洲精品女人久久久 | 亚州精品天堂中文字幕 | 激情综合网婷婷 | 亚洲第一成网站 | 日韩成人精品一区二区三区 | 亚洲自拍偷拍色图 | 中文字幕在线观看日本 | 日韩一区二区三区高清免费看看 | 免费观看9x视频网站在线观看 | 操操操日日日干干干 | av中文字幕在线免费观看 | 伊人久久婷婷 | 久草视频在线免费看 | 国产麻豆视频在线观看 | 久久午夜羞羞影院 | 久久精品这里都是精品 | 国产成人av片 | 国产123区在线观看 国产精品麻豆91 | 精品国产乱码久久久久久三级人 | 日本免费一二三区 | 国产精品18久久久久久久久久久久 | 婷婷去俺也去六月色 | 久久久国产精品人人片99精片欧美一 | 国产黄色免费电影 | 亚洲国产中文在线观看 | 九九久久国产 | 国产粉嫩在线 | 91x色| 中文字幕在线免费观看视频 | 国产精品一区免费在线观看 | 欧美亚洲精品在线观看 | 99久久99久国产黄毛片 | 久久精品一区 | 成人一级免费电影 | 在线之家免费在线观看电影 | 久久精品电影网 | 婷婷射五月 | 超碰在线个人 | 久久国产亚洲视频 | 黄色片网站 | 国产午夜精品一区二区三区在线观看 | 日韩成人看片 | 天天色天天草天天射 | 精品欧美在线视频 | 99久久婷婷国产综合精品 | 在线观看www视频 | 一区二区三区电影大全 | 久久综合久久综合久久综合 | 国产老妇av | 成人午夜精品福利免费 | 亚洲高清视频在线播放 | 成年人免费在线播放 | 国产精品毛片一区视频播不卡 | 日韩二区三区在线 | 中文字幕一区二区三区久久蜜桃 | 国产丝袜制服在线 | 视频在线观看亚洲 | 96视频免费在线观看 | 久久久久亚洲精品中文字幕 | 国产 一区二区三区 在线 | 超碰在线1 | 99亚洲国产 | 91少妇精拍在线播放 | 久久国产剧场电影 | 国内偷拍精品视频 | 欧美精品中文在线免费观看 | 国内揄拍国内精品 | 亚洲日本精品 | 色综合天天天天做夜夜夜夜做 | 亚洲波多野结衣 | 丝袜美腿一区 | 丁香婷婷深情五月亚洲 | 国产精品毛片一区二区 | 亚洲精品久久久蜜臀下载官网 | 久操久| 精品国产三级a∨在线欧美 免费一级片在线观看 | 天天爽天天爽夜夜爽 | 中文字幕资源网在线观看 | 中文字幕在线观看免费 | 成人欧美一区二区三区在线观看 | 国产精品一区在线观看你懂的 | 欧美日韩在线播放一区 | 亚洲综合黄色 | 国内精品久久久久影院男同志 | 久久精彩视频 | 一区二区不卡视频在线观看 | 中文字幕在线网址 | 国产一区二区在线免费播放 | 亚洲首页 | 久草网站在线 | 免费在线观看成人 | 二区三区毛片 | 久久理论电影网 | 日韩手机视频 | 97福利视频| 欧美日韩aaaa| 在线观看日韩精品视频 | 亚洲免费一级 | 免费黄色在线 | 激情久久久久 | 人人爽人人爱 | 人人插人人插 | 成人免费一级 | 午夜美女视频 | 色婷婷六月天 | 久久久精品国产免费观看一区二区 | 香蕉影院在线播放 | 婷婷深爱 | 天天艹 | 成人国产精品免费观看 | 中国一级片在线播放 | 免费在线观看日韩欧美 | 中文字幕色播 | 亚洲年轻女教师毛茸茸 | 久久免费视频一区 | 在线导航av | 国产精品第52页 | 中文字幕在线视频国产 | 色噜噜日韩精品一区二区三区视频 | 亚洲精品女 | 免费h漫在线观看 | 国产免费二区 | 一区二区三区在线不卡 | 在线观看黄色的网站 | 欧美日韩视频精品 | 亚洲精品中文字幕视频 | 亚洲国产天堂av | 欧美国产视频在线 | a√天堂中文在线 | 玖玖爱免费视频 | 亚洲一区免费在线 | 精品免费国产一区二区三区四区 | 久久66热这里只有精品 | 色婷婷久久 | 成人一级在线观看 | 午夜久久久久久久久久久 | 国产精品在线看 | 国产日产精品一区二区三区四区 | 国产精品入口久久 | 在线视频 影院 | 99亚洲精品在线 | 国产精品久久久久影院 | 午夜色婷婷 | 精品a级片 | 久久久久 | 曰韩在线| 日本精品中文字幕 | 成人在线观看资源 | 波多野结衣在线播放一区 | 在线三级av | 99久久久| 久久夜色精品国产欧美乱极品 | 中文字幕在线色 | 久久久久 免费视频 | 久久免费精品一区二区三区 | 久久99精品一区二区三区三区 | 91精品国产一区二区三区 | 国产三级视频 | 久久乱码卡一卡2卡三卡四 五月婷婷久 | 97在线精品| 午夜黄色 | 天天干天天射天天爽 | 精品福利国产 | 一区二区三区四区久久 | 六月婷婷网 | 成人91在线| 免费a v网站| 精品久久99 | 中文字幕在线视频网站 | 欧美a级成人淫片免费看 | 国产玖玖精品视频 | av综合在线观看 | 日本三级全黄少妇三2023 | 亚洲精品免费播放 | 一区二区 不卡 | 在线高清一区 | 国产精品麻豆99久久久久久 | 亚洲成人精品在线 | 天天操夜夜摸 | 国产在线中文 | 91免费观看视频网站 | 三日本三级少妇三级99 | 精品国产免费一区二区三区五区 | av大片网址 | 深爱激情站 | 久久精品国产一区 | 久草热久草视频 | 午夜丁香网 | 四虎在线观看 | 成片免费观看视频999 | 88av色 | 天天操天天操天天爽 | 又黄又爽的视频在线观看网站 | 伊人久久一区 | 欧美日韩aa | 国产精品一区二区吃奶在线观看 | 国产999在线 | 免费观看91 | 在线亚洲午夜片av大片 | 久久爽久久爽久久av东京爽 | 亚洲综合五月天 | 亚洲 综合 国产 精品 | 日本中文字幕高清 | 日本中文在线播放 | 国产中文字幕av | 久久电影日韩 | 久久99网 | 国产免费黄色 | 国产精品av久久久久久无 | 国产精品免费不卡 | 日韩天堂在线观看 | 国产婷婷| 在线观看免费版高清版 | 美女视频久久 | 91麻豆精品国产91久久久久 | 人人干狠狠操 | 五月激情婷婷丁香 | 精品亚洲欧美一区 | 久久婷婷亚洲 | 国产高清成人在线 | 国产亚洲视频在线观看 | 成人午夜电影网站 | 91福利影院在线观看 | 日本高清dvd | 999热线在线观看 | 九九一级片 | 亚洲v欧美v国产v在线观看 | 久草视频在线新免费 | 在线观看免费黄色 | 99热网站 | 天天干天天做天天操 | 久艹视频在线免费观看 | 色视频国产直接看 | 成人午夜精品福利免费 | 亚洲自拍偷拍色图 | www国产亚洲精品久久网站 | 中文在线a∨在线 | 日本美女xx | 日本久久中文字幕 | 久久精品一区二区三区中文字幕 | 毛片网在线 | 蜜臀av性久久久久av蜜臀三区 | 在线观看成人国产 | 91av网址| 欧美激情精品久久久久 | 超碰av在线 | 国产探花视频在线播放 | 亚洲精品国产电影 | 一区二区 久久 | 日韩视频1 | 精品国内自产拍在线观看视频 | 亚洲精品五月天 | 国产精品你懂的在线观看 | 在线视频 国产 日韩 | 国产视频导航 | 东方av免费在线观看 | 色综合国产 | 亚洲精品免费在线观看 | 日本三级在线观看中文字 | 九九视频在线 | 久久久久电影网站 | 夜夜操狠狠操 | 亚洲一级片 | 欧美日韩一区二区在线观看 | 黄色国产区| 日韩剧 | 又色又爽又黄高潮的免费视频 | 99精品欧美一区二区三区 | 国产中文字幕在线看 | 狠狠色丁婷婷日日 | 成人va天堂 | av女优中文字幕在线观看 | 天天操天天射天天插 | 99精品视频在线免费观看 | 黄色av高清 | 在线播放 日韩专区 | 综合久久一本 | 国产视频在线观看一区 | 91精品在线视频观看 | 国产精品欧美久久久久无广告 | 国产乱老熟视频网88av | 狠狠色免费| 国产在线观看午夜 | 最近免费中文视频 | 精品国产一区二区三区男人吃奶 | 黄色av成人在线观看 | 成人av高清在线观看 | 久久精品直播 | 日韩大片免费在线观看 | 热久久影视 | av电影免费在线 | 美女精品在线观看 | 日日爽夜夜爽 | www.狠狠色.com| 日日干精品 | 亚洲作爱视频 | 特级a毛片| 久久久午夜精品理论片中文字幕 | 亚洲精品一区二区精华 | 激情av在线资源 | 2019久久精品| 97精品在线 | 亚洲精品黄网站 | 日日成人网 | 久久精品美女视频网站 | 久久99热精品这里久久精品 | 韩国精品一区二区三区六区色诱 | av在线精品 | av网址在线播放 | 99热 精品在线 | 2019中文在线观看 | 国产精品乱码久久久久 | 国产在线观看一区 | 国内精品在线观看视频 | 亚洲视屏 | 99热手机在线观看 | 91成人短视频在线观看 | 久久国产高清 | 在线视频中文字幕一区 | 伊人干综合 | 欧美成年黄网站色视频 | 精品久久久久久久久亚洲 | 日韩精品中文字幕在线不卡尤物 | 在线亚洲天堂网 | 久久综合久久鬼 | 人人爽人人爽人人 | 日韩电影在线观看一区 | 免费看污片 | 久久免费影院 | 三级黄色在线 | 成人动漫精品一区二区 | 精品视频免费在线 | 黄色免费在线看 | 国产精品欧美久久久久无广告 | 日韩毛片在线播放 | 国产第一福利 | 夜添久久精品亚洲国产精品 | 超碰九九| 国产电影黄色av | 亚洲jizzjizz日本少妇 | 欧美成人精品在线 | 亚洲伦理中文字幕 | 成人免费共享视频 | 黄色影院在线免费观看 | 久久久黄视频 | 亚洲欧美激情插 | 91精品亚洲影视在线观看 | 97超级碰碰碰视频在线观看 | 夜夜干天天操 | www.狠狠干| 久草免费电影 | 精品福利片| 色婷婷久久久综合中文字幕 | 天天色综合三 | 高清不卡毛片 | 亚洲国产三级在线观看 | 久久美女免费视频 | 中文字幕av全部资源www中文字幕在线观看 | 国产专区精品视频 | 高清不卡一区二区三区 | 亚洲高清视频一区二区三区 | japanesefreesexvideo高潮| 99国产精品久久久久老师 | 蜜臀久久99静品久久久久久 | 在线观看亚洲电影 | 国产精品亚洲精品 | 国产精品永久免费在线 | 日韩a在线| 深夜免费福利网站 | 手机看国产毛片 | 九九九九免费视频 | 97在线观视频免费观看 | 丁香五月网久久综合 | 色资源在线| 国产精品久久久久久久av电影 | 精品日韩视频 | 亚洲高清视频一区二区三区 | 成人在线免费看视频 | 欧美日本国产在线观看 | 中文一区在线 | 日韩二区在线播放 | 精品色综合 | 国产成人精品一区二区三区在线观看 | 国产精品18久久久久久久网站 | 香蕉视频日本 | 精品久久久免费视频 | 国产一级二级在线观看 | 中文字幕国语官网在线视频 | 91在线porny国产在线看 | 91精品蜜桃| 国产成人综合图片 | 五月天六月色 | 激情综合网婷婷 | 午夜成人免费影院 | 97在线视频网站 | 91精品国产电影 | 久久av黄色| 国产中文字幕一区二区 | 国产91勾搭技师精品 | 黄色三级在线看 | 久久精品资源 | 国产色区 | 伊人国产视频 | 美女黄久久 | 亚洲专区 国产精品 | 国产免费中文字幕 | 99久国产 | 国产成人黄色在线 | 成人黄色在线看 | 久久久久久久久久久电影 | 国产看片免费 | 久久精品视频一 | 午夜狠狠干| 久精品一区 | 亚洲精品国产免费 | 欧美在线观看视频 | 久久亚洲成人网 | 毛片久久久 | 国产精品国产三级国产 | 91中文在线视频 | 91桃色免费观看 | 91成人观看 | 久久69精品久久久久久久电影好 | 99精品国产一区二区三区麻豆 | 天天操夜夜逼 | 六月激情久久 | 国产精品久久久久久久久久久久午夜 | 久久免费视频在线 | 国产伦精品一区二区三区在线 | 青青河边草免费直播 | 西西www444| 国产伦精品一区二区三区… | 国产精品视频免费看 | 成人av在线电影 | 国产在线无 | 久久在视频| 天天操夜夜摸 | 精品国产99 | 亚洲天堂网在线视频 | 欧美另类亚洲 | 久久综合免费 | 欧美一级专区免费大片 | 日日爽天天操 | 99亚洲国产精品 | 亚洲三级在线播放 | 久草久热 | 摸阴视频| a在线免费观看视频 | 黄色一级免费电影 | www天天干com| 久久成人午夜 | 亚洲电影毛片 | 久久一区国产 | 99久久99久久精品国产片 | 91插插插免费视频 | 国产成人久久精品一区二区三区 | 韩国av免费看 | 国产精品久久久久久久久免费 | 不卡av电影在线观看 | 亚洲精品在线免费观看视频 | 国产中文字幕视频在线观看 | 亚洲精品视频免费观看 | 精品久久久久久亚洲综合网站 | 久久手机看片 | 人人射 | 久久高清精品 | 激情中文在线 | 欧美一区二区三区四区夜夜大片 | 日韩亚洲国产精品 | 亚洲视频资源在线 | 日韩综合在线观看 | 国产精品一区二区无线 | 国产99久久精品一区二区300 | 在线精品亚洲一区二区 | av免费看电影 | www在线免费观看 | 天天搞天天 | 国产精品伦一区二区三区视频 | 日本黄色免费观看 | 午夜精品中文字幕 | 日日躁夜夜躁xxxxaaaa | 在线导航av | 欧美专区日韩专区 | 美女网站在线观看 | 精品国产三级 | 精品一区二区三区电影 | 久久综合影视 | 免费福利在线播放 | 三三级黄色片之日韩 | 国产精品网红福利 | 综合天堂av久久久久久久 | 亚洲综合激情小说 | 日韩理论在线观看 | 狠狠操在线 | 热久久最新地址 | sesese图片 | 亚洲另类在线视频 | 国产黄色精品视频 | 国产精品女教师 | 96av麻豆蜜桃一区二区 | 欧洲精品一区二区 | 国产视频2| 91精品网站在线观看 | 在线观看视频国产 | av理论电影| 韩国中文三级 | 日本免费久久高清视频 | 日韩二区在线播放 | 久久精选 | 成人午夜电影在线播放 | 日韩精品高清不卡 | 欧美视频日韩视频 | 欧美日韩国产在线精品 | 一本一道久久a久久精品蜜桃 | 欧美激情精品久久久久久免费 | 国产精品久久久久久久久久久久冷 | 久久美女视频 | 在线黄色国产 | 狠狠狠狠狠狠狠狠 | 水蜜桃亚洲一二三四在线 | 欧美激情综合五月色丁香 | 国产免费av一区二区三区 | 97色涩| 中文字幕高清有码 | 福利片免费看 | 一区二区三区四区免费视频 | 91大神一区二区三区 | 中文字幕资源在线 | 91亚洲狠狠婷婷综合久久久 | 狠狠色丁香婷婷综合视频 | 久久国产一二区 | 亚洲午夜精品福利 | av在线免费观看黄 | 欧美日韩亚洲精品在线 | 天天射夜夜爽 | 在线观看完整版免费 | 国产精品永久免费观看 | 亚洲国产日韩av | 久久久精品国产免费观看同学 | 国产精品免费在线播放 | 97免费 | 国产小视频你懂的 | 国产又粗又猛又黄又爽 | 91在线91| 激情婷婷在线观看 | 成人午夜电影网 | 天堂av网址 | 亚洲艳情| 98精品国产自产在线观看 | 天堂av在线中文在线 | 久久国产精品久久精品 | 中文超碰字幕 | 久久er99热精品一区二区 | 日韩精品三区四区 | 亚洲欧洲av在线 | 免费成人av在线 | 在线只有精品 | 在线看黄色av | 一本一道久久a久久精品蜜桃 | 中文字幕超清在线免费 | 2019中文字幕第一页 | 久草视频看看 | 人人澡澡人人 | 最近最新最好看中文视频 | 欧美一区二区三区四区夜夜大片 | 超碰在线人人爱 | 在线 视频 一区二区 | 久久午夜剧场 | 久久影院中文字幕 | 亚洲欧美日韩精品一区二区 | 久久99久久99精品免视看婷婷 | 97色婷婷成人综合在线观看 | 成人久久久久久久久 | 久久久久女人精品毛片 | 久草在线观看资源 | 99综合电影在线视频 | 欧产日产国产69 | 久久人人爽人人片 | 极品中文字幕 | 国产色婷婷精品综合在线手机播放 | 亚洲91中文字幕无线码三区 | 国产精品精品国产色婷婷 | 粉嫩av一区二区三区四区五区 | 久久人人爽人人爽人人片av免费 | 九九欧美视频 | 91在线国产观看 | 国产黄色在线 | 国产精品毛片一区视频 | 国产黑丝袜在线 | 天天综合天天综合 | 97超碰在线人人 | 日韩特黄av | 成人影片在线播放 | 亚洲精品视频在线播放 | 九热精品| 成人国产精品久久久 | 精品一区二区av | 99精品国产一区二区三区不卡 | 国产精品h在线观看 | 久草视频观看 | 国产精品二区三区 | 亚洲国产精品成人女人久久 | 91av在线电影| 亚洲综合激情小说 | 美女视频国产 | 色综合久久久久网 | 免费av网站在线 | 97超碰色偷偷 | 免费看特级毛片 | 成年人免费看片网站 | 国产精品色在线 | 97精品在线视频 | 国产视频丨精品|在线观看 国产精品久久久久久久久久久久午夜 | 中文字幕一区2区3区 | 一级成人网 | 激情视频区 | 日韩中文字幕国产 | 亚洲专区中文字幕 | 国产美女精品视频 | 天天操天天吃 | 日韩网站免费观看 | 国产精品成人自产拍在线观看 | 精品国偷自产国产一区 | 免费看网站在线 | 欧美日韩免费看 | 99精品视频99 | 天天五月天色 | 午夜美女福利 | 91视视频在线直接观看在线看网页在线看 | 一本一本久久a久久精品综合小说 | 黄色免费观看网址 | 一个色综合网站 | 欧美巨乳波霸 | 狠狠狠狠狠操 | 久久久久久久久久久久亚洲 | 97视频中文字幕 | 五月激情在线 | 一区二区精品在线 | 精品国产片 | 99久久99久久精品免费 | 97国产人人| 国产精品入口传媒 | 欧美极度另类 | 亚洲精品玖玖玖av在线看 | 国产精品久久久久久久久久 | 日韩在线中文字幕 | 日韩久久精品一区二区三区 | 亚洲成人精品国产 | 国产精品久久一区二区三区不卡 | 午夜一级免费电影 | 在线成人一区二区 | 99国产视频 | 天天色天天综合 | 国产高清精品在线 | 日日干美女 | 成人av免费网站 | 国产精品毛片一区视频播 | 美女黄网站视频免费 | 成人免费观看在线视频 | 特及黄色片 | 国产亚洲视频在线观看 | 国产亚洲无 | 亚洲综合欧美激情 | 一区二区三区在线观看 | 天天操网 | 日韩av在线一区二区 | 福利视频网址 | 久久久久久久久久久免费av | a级片韩国| 在线看中文字幕 | www激情com| 一区二区三区电影在线播 | 中文字幕观看在线 | 在线观看中文字幕一区 | 久草免费手机视频 | 日日操夜夜操狠狠操 | 国产精品网站一区二区三区 | 国产99久久久国产精品 | 丁香六月婷婷 | 狠狠操夜夜操 | 国产成人亚洲在线电影 | 五月开心网 | 欧美亚洲一区二区在线 | 少妇搡bbbb搡bbb搡69 | 国产精品黄色av | 国产一线二线三线性视频 | 亚洲精品乱码久久久久久高潮 | 精品一二三区视频 | 亚洲综合视频在线 | 波多野结衣一区二区 | 久久情网 | 亚洲国产中文字幕在线观看 | 成人黄色片免费 | 在线看片中文字幕 | 成人免费一级 | 日韩电影一区二区在线观看 | 国产精品久久久久久久久久久久午 | 亚洲精品在线免费观看视频 | 日本在线观看中文字幕 | .国产精品成人自产拍在线观看6 | 欧美国产日韩在线观看 | 国产亚洲人成网站在线观看 | 久久免费大片 | 国产精品永久免费在线 | 91免费看黄色 | 久久色网站 | 在线免费视频a | 九九免费在线观看视频 | 国产第一页在线观看 | 精品网站999www | 日韩和的一区二在线 | 中文字幕第 | 国产 日韩 欧美 中文 在线播放 | 国产福利av在线 | 免费能看的av | 久久精品系列 | 国产午夜三级 | 日韩动漫免费观看高清完整版在线观看 | 国产精品字幕 | 中文字幕色在线 | 成人网在线免费视频 | 色香蕉视频 | 国产黄色片免费观看 | 午夜精品一区二区三区四区 | 人人干天天干 | 免费网站在线 | 91桃色在线观看视频 | 国产日韩欧美在线观看视频 | 日韩中文字幕免费视频 | 黄色影院在线免费观看 | 亚洲日本va在线观看 | 天天操综合网 | 婷婷色在线观看 | 一级黄色片在线免费观看 | 99九九热只有国产精品 | 欧美成年人在线观看 | 天堂va在线观看 | 欧美粗又大 | 国产一二区免费视频 | 福利片免费看 | 少妇自拍av| 国内精品免费久久影院 | 亚洲一一在线 | 91在线播放综合 | 国产精品乱码久久久久 | 国产精品精品国产婷婷这里av | 国产精品色婷婷视频 | 久久黄色小说 | 欧美成人黄色 | 国产精品理论片在线播放 | 国产成人在线观看免费 | 天天干天天天 | 日韩乱码中文字幕 | 在线香蕉视频 | 五月综合网 | 最近日本中文字幕 | 午夜免费福利视频 | 国产伦精品一区二区三区照片91 | 日韩国产欧美视频 | 黄色一级免费电影 | ww亚洲ww亚在线观看 | 在线三级av | 在线观看av免费观看 | 91综合色 | 色综合久久88色综合天天 | 久久久免费av | 婷婷综合激情 | 欧美精品亚洲二区 | 日韩av手机在线观看 | 欧美一二三视频 | 亚洲三级性片 | 中文字幕在线播放一区二区 | 久久久精品 一区二区三区 国产99视频在线观看 | www.99久久.com| av三级在线免费观看 | 国产精品久久久久久久久久久久久久 | 天天操天天操天天操天天 | aaa黄色毛片| 精品国产伦一区二区三区观看说明 | 少妇bbb搡bbbb搡bbbb | 欧洲精品码一区二区三区免费看 | 视频在线精品 | 国产精品资源在线观看 | 日韩在线视频免费播放 | 国产一区国产二区在线观看 | 久久久黄视频 | av黄色大片 | av在线亚洲天堂 | 就要色综合 | 亚洲欧美日韩国产一区二区 | 韩日三级av| 韩国三级av在线 | 欧美调教网站 | 亚洲 成人 一区 | 99九九热只有国产精品 | 在线观看免费成人av | 欧美日韩高清一区二区三区 | 99这里都是精品 | 免费看黄20分钟 | 99精品久久久久 | 99久久精品日本一区二区免费 | 亚洲黄色小说网址 | 久久久久国产一区二区三区 | 亚洲一区视频免费观看 | 国产中文字幕大全 | 四虎永久视频 | 国产亚洲精品久久久久秋 | 九色精品免费永久在线 | 高清日韩一区二区 | 天天操 夜夜操 | 日韩一级黄色大片 | 成人中文字幕av | 81国产精品久久久久久久久久 | 久久久色 | 国产午夜av | 中文不卡视频在线 | 天天射天天操天天干 | 色噜噜在线观看视频 | 国产私拍在线 | 美女网站一区 | 日本乱视频 | 日韩色中色| 天天操天天摸天天干 | 久久久久久高潮国产精品视 | 亚洲国产精品999 | 亚洲欧洲精品一区二区精品久久久 | 中文字幕在线观看网 | 国产婷婷vvvv激情久 | 成人午夜影院在线观看 | www亚洲精品| 夜夜操网站| 日韩在线观看视频一区二区三区 | 四虎在线影视 | 99免在线观看免费视频高清 | 伊人久久国产 | 国产一级片一区二区三区 | 国产成人精品区 | 国产系列精品av | 中文字幕亚洲高清 | 免费在线观看中文字幕 | 三级黄色免费片 | 国产99一区视频免费 | 精品美女国产在线 | 亚洲专区在线 | 97超碰国产在线 | 国产精品免费在线播放 | 99精品网站 | 日韩国产精品一区 | 97在线视频免费 | av电影在线免费观看 | 久久精品美女视频 | 久久99亚洲网美利坚合众国 | 玖玖爱免费视频 | 国产色影院 | 五月婷婷在线播放 | 亚洲成年人免费网站 | 亚洲另类视频在线 | 人人爽人人爽人人爽 | 天天操操| 国产精品久久久 | 国产大片免费久久 | 大胆欧美gogo免费视频一二区 | 久久精彩免费视频 | 免费在线色 | 亚洲夜夜综合 | 九九九九精品九九九九 | 在线观看视频色 | 超碰97人人干 | 午夜精品导航 | 亚洲精品久久久久中文字幕m男 | 亚洲精选在线观看 | 日日夜夜精品免费观看 | 这里只有精品视频在线观看 | 国产免费久久久久 | 精品一区二区三区电影 | 亚洲精品www久久久久久 | free. 性欧美.com| 狠狠久久综合 | 亚洲国产天堂av | 欧美午夜寂寞影院 | 不卡电影一区二区三区 | 激情 亚洲 | 久久97久久| 超碰在线观看99 | 欧美色综合天天久久综合精品 | 久久国产热视频 | 五月天av在线 | 免费在线观看污网站 | 久草免费新视频 | 国产亚洲婷婷免费 | 国产精品视频免费观看 | 日本精品xxxx| 美女黄频视频大全 | 中文字幕在线一区二区三区 | 久久精品久久久久电影 | 免费开视频 | 国产精品av一区二区 | 成人黄色片免费 | 国产美女精品视频免费观看 | 欧美日韩久久不卡 | 一区二区 不卡 | 国产一区二区中文字幕 | 久久激情视频免费观看 | 人人爽人人看 | 国产日韩精品在线观看 | 最新一区二区三区 | 日本精a在线观看 | 久久99电影 | 天天射天天搞 | 97视频人人澡人人爽 | 日韩精品视频在线观看免费 | 激情大尺度视频 | 日本久久久久久久久久久 | 天天摸天天舔天天操 | 最近中文字幕大全中文字幕免费 | 国模精品一区二区三区 | 国产精品女同一区二区三区久久夜 | 成人免费观看完整版电影 | 毛片一区二区 | 在线观看中文字幕一区二区 | 亚洲特级片| 久久国产精品99久久久久 | 99re8这里有精品热视频免费 | 精品久久久久久国产 | 97超碰国产精品女人人人爽 | 一区二区三区日韩在线观看 | 美国人与动物xxxx | 91精品免费在线观看 | 天天干天天操人体 | 日韩在线视 | 久久久久久久久久毛片 | 日韩中文在线视频 | 亚a在线 | 久久激情影院 | avav99| 精品久久久久久亚洲综合网站 | 黄色影院在线免费观看 | 久久精品这里都是精品 | 美女黄久久 | 欧美日韩国产伦理 | 久久精品96 | 欧美极度另类性三渗透 | 亚洲成人免费在线观看 | 97色在线 | 亚一亚二国产专区 | 丰满少妇在线观看 | 国产一区欧美日韩 | 久久久国产毛片 | 久久精品播放 | 深夜福利视频一区二区 | 日本韩国精品一区二区在线观看 | 91爱在线| 国产高清成人在线 | 日本不卡123区 | 国产五月婷 | 婷婷精品国产欧美精品亚洲人人爽 | 黄色av播放 | 婷婷久久综合网 | 亚洲国产日韩欧美 | 国产精品久久久久久久久久 | 精品久久久免费 | 国产aa免费视频 | 成人a级网站 | 国产日韩在线播放 | 97视频人人澡人人爽 | 欧美日韩xxx| 成年人在线电影 | 久久天天拍 | 天天干,夜夜爽 | 欧美一性一交一乱 | 久久精品在线视频 | 色欲综合视频天天天 | 操综合 | 久久免费播放视频 | 免费看污在线观看 | 婷婷综合导航 | 中文字幕日韩有码 | 九色视频网站 | 超碰97在线资源 | 久久精品国产v日韩v亚洲 | 国产91在| 午夜精品视频一区二区三区在线看 | 国产一级做a | 不卡国产视频 | 国产精品 美女 | av一区在线播放 | 国产精品私人影院 | 久久中文欧美 | 制服丝袜在线91 | 毛片一区二区 | 四虎在线免费观看 | 四虎影视8848aamm | 久久久国产日韩 | 又黄又色又爽 |