1 changed files with 21 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||
package cn.iocoder.yudao.module.alert.controller.admin.instant; |
|||
|
|||
import cn.iocoder.yudao.module.alert.service.instant.InstantService; |
|||
import io.swagger.v3.oas.annotations.tags.Tag; |
|||
import jakarta.annotation.Resource; |
|||
import org.springframework.validation.annotation.Validated; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
@Tag(name = "运行中心 - 模型实例-回算") |
|||
@RestController |
|||
@RequestMapping("/alert/instant/calc") |
|||
@Validated |
|||
public class InstantCalcController { |
|||
@Resource |
|||
private InstantService instantService; |
|||
|
|||
|
|||
|
|||
|
|||
} |
|||
Loading…
Reference in new issue