|  |  |  | 
|---|
|  |  |  | import cc.mrbird.febs.mall.entity.AppVersion; | 
|---|
|  |  |  | import cc.mrbird.febs.mall.entity.MallMember; | 
|---|
|  |  |  | import cc.mrbird.febs.mall.entity.MallNewsInfo; | 
|---|
|  |  |  | import cc.mrbird.febs.mall.entity.MallShopApply; | 
|---|
|  |  |  | import cc.mrbird.febs.mall.service.IAdminMallMemberService; | 
|---|
|  |  |  | import cc.mrbird.febs.mall.vo.*; | 
|---|
|  |  |  | import lombok.RequiredArgsConstructor; | 
|---|
|  |  |  | 
|---|
|  |  |  | return FebsUtil.view("modules/mallMember/appVerSionUpdate"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 新闻中心-列表 | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @GetMapping("newsInfoList") | 
|---|
|  |  |  | @RequiresPermissions("newsInfoList:view") | 
|---|
|  |  |  | public String newsInfoList() { | 
|---|
|  |  |  | return FebsUtil.view("modules/mallMember/newsInfoList"); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @GetMapping("shopApply") | 
|---|
|  |  |  | public String shopApply() { | 
|---|
|  |  |  | return FebsUtil.view("modules/mallMember/shopApply"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 新闻中心-新增 | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @GetMapping("newsInfoAdd") | 
|---|
|  |  |  | @RequiresPermissions("newsInfoAdd:add") | 
|---|
|  |  |  | public String newsInfoAdd() { | 
|---|
|  |  |  | return FebsUtil.view("modules/mallMember/newsInfoAdd"); | 
|---|
|  |  |  | @GetMapping("applyDetail/{id}") | 
|---|
|  |  |  | public String applyDetail(@PathVariable("id") Long id, Model model) { | 
|---|
|  |  |  | MallShopApply apply = mallMemberService.findShopApplyById(id); | 
|---|
|  |  |  | model.addAttribute("apply", apply); | 
|---|
|  |  |  | return FebsUtil.view("modules/mallMember/shopApplyInfo"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 新闻中心-详情 | 
|---|
|  |  |  | * @param id | 
|---|
|  |  |  | * @param model | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @GetMapping("newsInfoUpdate/{id}") | 
|---|
|  |  |  | @RequiresPermissions("newsInfoUpdate:update") | 
|---|
|  |  |  | public String newsInfoUpdate(@PathVariable long id, Model model) { | 
|---|
|  |  |  | MallNewsInfo data = mallMemberService.getNewsInfoById(id); | 
|---|
|  |  |  | model.addAttribute("newsInfo", data); | 
|---|
|  |  |  | return FebsUtil.view("modules/mallMember/newsInfoUpdate"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|