mirror of
https://gitee.com/dromara/MaxKey.git
synced 2025-12-08 18:08:35 +08:00
Update AccountsStrategyController.java
This commit is contained in:
parent
633247aca1
commit
dac91b9ef1
@ -54,7 +54,7 @@ public class AccountsStrategyController {
|
|||||||
|
|
||||||
@RequestMapping(value={"/list"})
|
@RequestMapping(value={"/list"})
|
||||||
public ModelAndView rolesList(){
|
public ModelAndView rolesList(){
|
||||||
return new ModelAndView("accountsstrategy/accountsstrategyList");
|
return new ModelAndView("accountsstrategy/accountsStrategyList");
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping(value={"/select"})
|
@RequestMapping(value={"/select"})
|
||||||
@ -76,12 +76,12 @@ public class AccountsStrategyController {
|
|||||||
|
|
||||||
@RequestMapping(value = { "/forwardAdd" })
|
@RequestMapping(value = { "/forwardAdd" })
|
||||||
public ModelAndView forwardAdd() {
|
public ModelAndView forwardAdd() {
|
||||||
return new ModelAndView("accountsstrategy/accountsstrategyAdd");
|
return new ModelAndView("accountsstrategy/accountsStrategyAdd");
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping(value = { "/forwardUpdate/{id}" })
|
@RequestMapping(value = { "/forwardUpdate/{id}" })
|
||||||
public ModelAndView forwardUpdate(@PathVariable("id") String id) {
|
public ModelAndView forwardUpdate(@PathVariable("id") String id) {
|
||||||
ModelAndView modelAndView=new ModelAndView("accountsstrategy/accountsstrategyUpdate");
|
ModelAndView modelAndView=new ModelAndView("accountsstrategy/accountsStrategyUpdate");
|
||||||
AccountsStrategy accountsStrategy=accountsStrategyService.get(id);
|
AccountsStrategy accountsStrategy=accountsStrategyService.get(id);
|
||||||
modelAndView.addObject("model",accountsStrategy);
|
modelAndView.addObject("model",accountsStrategy);
|
||||||
return modelAndView;
|
return modelAndView;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user