|
|
@@ -11,6 +11,8 @@ import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Classname EarlyWarningController |
|
|
|
* @Description |
|
|
@@ -29,7 +31,7 @@ public class EarlyWarningController { |
|
|
|
|
|
|
|
@ApiOperation(value = "预警规则获取", notes = "预警规则获取") |
|
|
|
@GetMapping("/detail/{areaCode}") |
|
|
|
public WflowEarlyWarningVO detail(@PathVariable String areaCode) { |
|
|
|
public List<WflowEarlyWarningVO> detail(@PathVariable String areaCode) { |
|
|
|
return earlyWarningService.detailByRegion(areaCode); |
|
|
|
} |
|
|
|
|
|
|
|