提交 | 用户 | 时间
|
9d7e02
|
1 |
package com.iailab.module.data.api.ind; |
潘 |
2 |
|
|
3 |
import com.iailab.module.data.api.ind.dto.ApiIndItemQueryDTO; |
|
4 |
import com.iailab.module.data.api.ind.dto.ApiIndItemValueDTO; |
|
5 |
import com.iailab.module.data.enums.ApiConstants; |
|
6 |
import io.swagger.v3.oas.annotations.Operation; |
|
7 |
import io.swagger.v3.oas.annotations.tags.Tag; |
|
8 |
import org.springframework.cloud.openfeign.FeignClient; |
|
9 |
import org.springframework.web.bind.annotation.PostMapping; |
|
10 |
import org.springframework.web.bind.annotation.RequestBody; |
|
11 |
|
|
12 |
import java.util.List; |
|
13 |
|
|
14 |
/** |
|
15 |
* @author PanZhibao |
|
16 |
* @Description |
|
17 |
* @createTime 2024年08月19日 |
|
18 |
*/ |
|
19 |
@FeignClient(name = ApiConstants.NAME) |
73ed35
|
20 |
@Tag(name = "指标数据") |
9d7e02
|
21 |
public interface IndItemApi { |
潘 |
22 |
|
|
23 |
String PREFIX = ApiConstants.PREFIX + "/ind-item"; |
|
24 |
|
|
25 |
@PostMapping(PREFIX + "/vlues") |
|
26 |
@Operation(summary = "查询指标项") |
|
27 |
List<ApiIndItemValueDTO> queryIndItemValues(@RequestBody ApiIndItemQueryDTO dto); |
|
28 |
} |