package com.hhtc.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; import com.hhtc.po.Student; import com.hhtc.service.GeneraService; @Controller public class StudentController { @Autowired private GeneraService generaService; //学生 @RequestMapping("/hrefstuinfo") public ModelAndView hrefstuinfo(Model model) { ModelAndView mav = new ModelAndView("student/stuinfo"); return mav; } @RequestMapping("/hrefupdatepws") public ModelAndView hrefupdatepws(Model model) { ModelAndView mav = new ModelAndView("student/updatepws"); return mav; } @RequestMapping("/updatepws") public ModelAndView updatepws(Student student,Model model) { this.generaService.updatepws(student); ModelAndView mav = new ModelAndView("success"); return mav; } }

甜心冰淇淋 LV4
6月15日
段池卿 LV5
5月23日
xiao小果 LV13
2024年8月19日
赵鑫cdsaljkdfsa LV11
2024年7月2日
xzg123456 LV6
2024年6月18日
hongdongdong LV14
2024年6月18日
卢旯旯 LV4
2024年6月10日
勿念时光 LV1
2024年6月7日
pangzhihui LV14
2024年4月17日
自由吃柚子 LV2
2024年3月26日