|
|
@ -6,6 +6,7 @@ import com.elink.esua.epdc.config.FeignRequestInterceptor; |
|
|
|
import com.elink.esua.epdc.dto.category.EventCategoryDTO; |
|
|
|
import com.elink.esua.epdc.dto.comment.form.WorkCommentReplyFormDTO; |
|
|
|
import com.elink.esua.epdc.dto.comment.result.WorkEventsCommentsDTO; |
|
|
|
import com.elink.esua.epdc.dto.events.EpdcEventsDetailDTO; |
|
|
|
import com.elink.esua.epdc.dto.events.form.EpdcEventsReviewFormDTO; |
|
|
|
import com.elink.esua.epdc.dto.events.result.EventAppDetailResultDTO; |
|
|
|
import com.elink.esua.epdc.dto.issue.form.*; |
|
|
@ -19,8 +20,6 @@ import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
|
|
@FeignClient(name = ServiceConstant.EPDC_EVENTS_SERVER, fallback = WorkIssueFeignClientFallback.class, configuration = FeignRequestInterceptor.class) |
|
|
|
public interface WorkIssueFeignClient { |
|
|
|
|
|
|
|
/** |
|
|
@ -45,7 +44,7 @@ public interface WorkIssueFeignClient { |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@GetMapping(value = "events/epdc-app/work/event/detail/{id}", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<EventAppDetailResultDTO> detail(@PathVariable("id") String id); |
|
|
|
Result<EpdcEventsDetailDTO> detail(@PathVariable("id") String id); |
|
|
|
|
|
|
|
/** |
|
|
|
* 事件分类 |
|
|
|