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