| | |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | 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; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @createTime 2024年08月19日 |
| | | */ |
| | | @FeignClient(name = ApiConstants.NAME) |
| | | @Tag(name = "指标项服务") |
| | | @Tag(name = "指标数据") |
| | | public interface IndItemApi { |
| | | |
| | | String PREFIX = ApiConstants.PREFIX + "/ind-item"; |
| | | |
| | | @PostMapping(PREFIX + "/vlues") |
| | | @Operation(summary = "查询指标项") |
| | | List<ApiIndItemValueDTO> queryIndItemValues(@RequestBody ApiIndItemQueryDTO dto); |
| | | @GetMapping(PREFIX + "/query-ind/default-value") |
| | | @Operation(summary = "查询指标默认值") |
| | | List<ApiIndItemValueDTO> queryIndItemDefaultValue(@RequestParam String itemNo); |
| | | |
| | | @PostMapping(PREFIX + "/query-ind/history-value") |
| | | @Operation(summary = "查询指标历史值") |
| | | List<ApiIndItemValueDTO> queryIndItemHistoryValue(@RequestBody ApiIndItemQueryDTO dto); |
| | | } |