|
|
@ -9,10 +9,7 @@ import com.epmet.dto.result.*; |
|
|
|
import com.epmet.feign.fallback.GovProjectOpenFeignClientFallbackFactory; |
|
|
|
import com.epmet.resi.mine.dto.from.MyPartProjectsFormDTO; |
|
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
import org.springframework.web.bind.annotation.PathVariable; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
@ -152,4 +149,13 @@ public interface GovProjectOpenFeignClient { |
|
|
|
**/ |
|
|
|
@PostMapping("gov/project/resievent/autoAudit") |
|
|
|
Result autoAudit(); |
|
|
|
|
|
|
|
/** |
|
|
|
* Desc: 查询群众直报是否存在处理中的,true:存在,false:不存在 |
|
|
|
* @param gridId |
|
|
|
* @author zxc |
|
|
|
* @date 2022/3/15 5:05 下午 |
|
|
|
*/ |
|
|
|
@PostMapping("audit-reset") |
|
|
|
Result<Boolean> eventAuditReset(@RequestParam("gridId")String gridId); |
|
|
|
} |
|
|
|