| | |
| | | model.addAttribute("leaderInfo", data); |
| | | return FebsUtil.view("modules/leader/leaderUpdate"); |
| | | } |
| | | |
| | | |
| | | public static long idLeaderGoodsUpdate; |
| | | /** |
| | | * 团长信息-商品库存编辑 |
| | | */ |
| | | @GetMapping("leaderGoodsUpdate/{id}") |
| | | public String leaderGoodsUpdate(@PathVariable long id, Model model) { |
| | | idLeaderGoodsUpdate = id; |
| | | return FebsUtil.view("modules/leader/leaderGoodsUpdate"); |
| | | } |
| | | |
| | | @GetMapping("addLeader/{id}") |
| | | public String addLeader(@PathVariable long id, Model model) { |
| | | model.addAttribute("memberId", id); |
| | | return FebsUtil.view("modules/leader/addLeader"); |
| | | } |
| | | } |