|
|
@ -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); |
|
|
|
|
|
|
|
} |
|
|
|