|
@@ -739,4 +739,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public RESTfulResult updateWeight(@RequestBody Map<String,Object> map) {
|
|
public RESTfulResult updateWeight(@RequestBody Map<String,Object> map) {
|
|
|
return tmsFeign.updateWeight(map);
|
|
return tmsFeign.updateWeight(map);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation("checkWeightResult")
|
|
|
|
|
+ @PostMapping("/checkWeightResult")
|
|
|
|
|
+ @LogAround(foreignKeys = {"resultId"}, foreignKeyTypes = {"计量实绩"})
|
|
|
|
|
+ public Map<String,Object> checkWeightResult(@RequestBody Map<String,Object> map) {
|
|
|
|
|
+ return tmsFeign.checkWeightResult(map);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|