Commit c6af1692 authored by unset's avatar unset

用户信息修改

parent 370e621f
...@@ -21,7 +21,7 @@ public class BannerController extends BaseController<BannerBiz, Banner> { ...@@ -21,7 +21,7 @@ public class BannerController extends BaseController<BannerBiz, Banner> {
return baseBiz.selectList(bannerDto); return baseBiz.selectList(bannerDto);
} }
@GetMapping(value = "getAll") @GetMapping(value = "/app/unauth/getAll")
public ObjectRestResponse getAll() { public ObjectRestResponse getAll() {
return baseBiz.getAll(1); return baseBiz.getAll(1);
} }
......
...@@ -23,7 +23,7 @@ public class ImageInformationController extends BaseController<ImageInformationB ...@@ -23,7 +23,7 @@ public class ImageInformationController extends BaseController<ImageInformationB
return baseBiz.addUpdate(imageInformation); return baseBiz.addUpdate(imageInformation);
} }
@GetMapping(value = "getAll") @GetMapping(value = "/app/unauth/getAll")
public ObjectRestResponse getAll() { public ObjectRestResponse getAll() {
return ObjectRestResponse.succ(baseBiz.getAll()); return ObjectRestResponse.succ(baseBiz.getAll());
} }
......
...@@ -21,7 +21,7 @@ public class IndustryApplicationInfoController extends BaseController<IndustryAp ...@@ -21,7 +21,7 @@ public class IndustryApplicationInfoController extends BaseController<IndustryAp
return baseBiz.selectList(industryApplicationInfoDto); return baseBiz.selectList(industryApplicationInfoDto);
} }
@GetMapping(value = "getAll") @GetMapping(value = "/app/unauth/getAll")
public ObjectRestResponse getAll() { public ObjectRestResponse getAll() {
return baseBiz.getAllIndexShow(); return baseBiz.getAllIndexShow();
} }
......
...@@ -21,13 +21,13 @@ public class IndustryApplicationTypeController extends BaseController<IndustryAp ...@@ -21,13 +21,13 @@ public class IndustryApplicationTypeController extends BaseController<IndustryAp
return baseBiz.selectList(industryApplicationTypeDto); return baseBiz.selectList(industryApplicationTypeDto);
} }
@GetMapping(value = "getAll") @GetMapping(value = "/app/unauth/getAll")
public ObjectRestResponse getAll(Integer indexShow) { public ObjectRestResponse getAll(Integer indexShow) {
return baseBiz.getAll(indexShow); return baseBiz.getAll(indexShow);
} }
@GetMapping(value = "getDetail") @GetMapping(value = "/app/unauth/getDetail")
public ObjectRestResponse getDetail(Integer id) { public ObjectRestResponse getDetail(Integer id) {
return baseBiz.getDetail(id); return baseBiz.getDetail(id);
} }
......
...@@ -21,7 +21,7 @@ public class NewsInfoController extends BaseController<NewsInfoBiz, NewsInfo> { ...@@ -21,7 +21,7 @@ public class NewsInfoController extends BaseController<NewsInfoBiz, NewsInfo> {
return baseBiz.selectList(newsInfoDto); return baseBiz.selectList(newsInfoDto);
} }
@GetMapping(value = "getAll") @GetMapping(value = "/app/unauth/getAll")
public ObjectRestResponse getAll() { public ObjectRestResponse getAll() {
return baseBiz.getAll(); return baseBiz.getAll();
} }
......
...@@ -16,7 +16,7 @@ public class NewsTypeController extends BaseController<NewsTypeBiz, NewsType> { ...@@ -16,7 +16,7 @@ public class NewsTypeController extends BaseController<NewsTypeBiz, NewsType> {
return baseBiz.add(newsType); return baseBiz.add(newsType);
} }
@GetMapping(value = "getAll") @GetMapping(value = "/app/unauth/getAll")
public ObjectRestResponse getAll(Integer indexShow) { public ObjectRestResponse getAll(Integer indexShow) {
return baseBiz.getAll(indexShow); return baseBiz.getAll(indexShow);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment