|
|
@ -3,6 +3,7 @@ package com.epmet.feign; |
|
|
|
import com.epmet.commons.tools.constant.ServiceConstant; |
|
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
|
import com.epmet.dto.StatsFormDTO; |
|
|
|
import com.epmet.dto.basereport.form.EventInfoFormDTO; |
|
|
|
import com.epmet.dto.extract.form.BizDataFormDTO; |
|
|
|
import com.epmet.dto.extract.form.ExtractIndexFormDTO; |
|
|
|
import com.epmet.dto.extract.form.ExtractOriginFormDTO; |
|
|
@ -14,15 +15,14 @@ import com.epmet.dto.org.result.CustomerGridDTO; |
|
|
|
import com.epmet.dto.screen.form.InitCustomerIndexForm; |
|
|
|
import com.epmet.dto.stats.form.CustomerIdAndDateIdFormDTO; |
|
|
|
import com.epmet.dto.user.param.MidPatrolFormDTO; |
|
|
|
import com.epmet.dto.user.result.CustomerStaffDTO; |
|
|
|
import com.epmet.dto.user.result.GridUserInfoDTO; |
|
|
|
import com.epmet.dto.user.result.MidPatrolDetailResult; |
|
|
|
import com.epmet.dto.user.result.MidPatrolRecordResult; |
|
|
|
import com.epmet.dto.user.result.GridUserInfoDTO; |
|
|
|
import com.epmet.feign.impl.DataStatisticalOpenFeignClientFallBackFactory; |
|
|
|
import com.epmet.opendata.dto.BaseDisputeProcessDTO; |
|
|
|
import com.epmet.opendata.dto.form.GridBaseInfoFormDTO; |
|
|
|
import com.epmet.opendata.dto.form.StaffBaseInfoFormDTO; |
|
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
|
|
|
@ -331,4 +331,14 @@ public interface DataStatisticalOpenFeignClient { |
|
|
|
*/ |
|
|
|
@PostMapping(value = "/data/stats/datareporting/getPatrolDetailList") |
|
|
|
Result<List<MidPatrolDetailResult>> getPatrolDetailList(@RequestBody MidPatrolFormDTO midPatrolFormDTO); |
|
|
|
|
|
|
|
/** |
|
|
|
* 事件上报 |
|
|
|
* @Param formDTO |
|
|
|
* @Return {@link Result<List<BaseDisputeProcessDTO>>} |
|
|
|
* @Author zhaoqifeng |
|
|
|
* @Date 2021/10/15 16:50 |
|
|
|
*/ |
|
|
|
@PostMapping("/data/stats/datareporting/eventinfo") |
|
|
|
Result<List<BaseDisputeProcessDTO>> getEventInfo(@RequestBody EventInfoFormDTO formDTO); |
|
|
|
} |
|
|
|