Browse Source

居民端接口 init

1、社区资讯-栏目列表
1、社区资讯-资讯列表
1、社区资讯-资讯详情
origin/dept_screen
liuchuang 4 years ago
parent
commit
449dc4da15
  1. 6
      epdc-cloud-api/src/main/java/com/elink/esua/epdc/modules/news/feign/NewsFeignClient.java

6
epdc-cloud-api/src/main/java/com/elink/esua/epdc/modules/news/feign/NewsFeignClient.java

@ -174,7 +174,7 @@ public interface NewsFeignClient {
* @author lc
* @since 2021/8/28 21:15
*/
@GetMapping("contentModuleList")
@GetMapping(value ="news/epdc-app/notice/contentModuleList", consumes = MediaType.APPLICATION_JSON_VALUE)
Result<List<EpdcNoticeModuleListResultDTO>> listContentModules();
/**
@ -185,7 +185,7 @@ public interface NewsFeignClient {
* @author lc
* @since 2021/8/28 21:22
*/
@GetMapping("contentList")
@GetMapping(value ="news/epdc-app/notice/contentList", consumes = MediaType.APPLICATION_JSON_VALUE)
Result<List<EpdcContentListResultDTO>> listContents(EpdcContentListFormDTO formDto);
/**
@ -196,7 +196,7 @@ public interface NewsFeignClient {
* @author lc
* @since 2021/8/28 21:24
*/
@GetMapping("contentDetail/{id}")
@GetMapping(value ="news/epdc-app/notice/contentDetail/{id}", consumes = MediaType.APPLICATION_JSON_VALUE)
Result<EpdcContentDetailResultDTO> getContentDetailById(@PathVariable("id") String id);
}

Loading…
Cancel
Save