@RequestMapping("/czyupdatezzmm") @ResponseBody public Json czyupdatezzmm(@ModelAttribute Czy czy) { czyService.updatemm(czy); return new Json(true, "密码重置成功"); }
@RequestMapping("/czydelete") @ResponseBody public Json czydelete(String ids) { czyService.deleteCzy(ids); return new Json(true, "删除成功"); }
@RequestMapping("/czyedit") @ResponseBody public Json czygedit(@ModelAttribute Czy czy) { czyService.updateCzy(czy); return new Json(true, "修改成功"); }
@RequestMapping("/czyadd") @ResponseBody public Json czyadd(@ModelAttribute Czy czy) { czyService.addCzy(czy); return new Json(true, "增加成功"); }
@RequestMapping("/czypager") @ResponseBody public EasyUIPager<Czy> czyList(@ModelAttribute Czy czy) { return czyService.getPageList(czy); }