log.info("PredictTnValueReqVO:"+reqVO);
| | |
| | | |
| | | @PostMapping("/predict-data/tn-value") |
| | | @Operation(summary = "获取T+N预测数据") |
| | | public CommonResult<List<MdkPredictDataDTO>> getPredictTnValue(PredictTnValueReqVO reqVO) { |
| | | public CommonResult<List<MdkPredictDataDTO>> getPredictTnValue(@RequestBody PredictTnValueReqVO reqVO) { |
| | | log.info("PredictTnValueReqVO:"+reqVO); |
| | | List<MdkPredictDataDTO> list = mcsApi.getPredictTnValue(reqVO); |
| | | return success(list); |
| | | } |
| | |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import static com.iailab.framework.common.pojo.CommonResult.success; |
| | | |