| | |
| | | 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; |
| | | |
| | |
| | | |
| | | String PREFIX = ApiConstants.PREFIX + "/ind-item"; |
| | | |
| | | @PostMapping(PREFIX + "/vlues") |
| | | @GetMapping(PREFIX + "/query-ind/default-value") |
| | | @Operation(summary = "查询指标项") |
| | | List<ApiIndItemValueDTO> queryIndItemValues(@RequestBody ApiIndItemQueryDTO dto); |
| | | List<ApiIndItemValueDTO> queryIndItemDefaultValue(@RequestParam String itemNo); |
| | | |
| | | @PostMapping(PREFIX + "/query-ind/history-value") |
| | | @Operation(summary = "查询指标项") |
| | | List<ApiIndItemValueDTO> queryIndItemHistoryValue(@RequestBody ApiIndItemQueryDTO dto); |
| | | } |