|
@@ -223,6 +223,21 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsFeign.tmstimingresultsList(map == null ? new HashMap<>() : map, apiId, pageNum, pageSize);
|
|
return tmsFeign.tmstimingresultsList(map == null ? new HashMap<>() : map, apiId, pageNum, pageSize);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @ApiOperation(value = "查询计时")
|
|
|
|
|
+ @PostMapping("/getOrderTimeList")
|
|
|
|
|
+ public Map<String, Object> getOrderTimeList(@RequestBody(required = false) Map<String, Object> map,
|
|
|
|
|
+ Integer apiId,
|
|
|
|
|
+ Integer pageNum,
|
|
|
|
|
+ Integer pageSize) {
|
|
|
|
|
+ return tmsFeign.getOrderTimeList(map == null ? new HashMap<>() : map, apiId, pageNum, pageSize);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation(value = "查询计时")
|
|
|
|
|
+ @PostMapping("/getTimeList")
|
|
|
|
|
+ public Map<String, Object> getOrderTimeList(@RequestBody(required = false) Map<String, Object> map) {
|
|
|
|
|
+ return tmsFeign.getTimeList(map);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
@ApiOperation(value = "修改计时")
|
|
@ApiOperation(value = "修改计时")
|
|
|
@ApiImplicitParam(name = "map", value = "JSON格式数据", required = true, dataType = "Map<String, Object>")
|
|
@ApiImplicitParam(name = "map", value = "JSON格式数据", required = true, dataType = "Map<String, Object>")
|
|
|
@PostMapping(value = "/tmstimingresultsUpdate")
|
|
@PostMapping(value = "/tmstimingresultsUpdate")
|