1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.ots.project.exam.service;
|
| import com.ots.project.tool.report.reportCalculation.response.ReportAPIResult;
|
| /**
| * 调用泰国团队计算组件
| */
| public interface ReportCalculationServices {
|
| /**
| * 2.1. MAQ-计算接口,睿邻RUILIN计算接口,CAQ-计算接口 (MAQ-computing interface)
| *
| * @param request
| * @return
| */
| ReportAPIResult stageCalculation(Object request);
| }
|
|