|
@@ -1605,13 +1605,20 @@ public class TMSController extends BaseRESTfulController {
|
|
|
|
|
|
//****************************************TmstruckMeasureCommissionController*******************************
|
|
//****************************************TmstruckMeasureCommissionController*******************************
|
|
|
|
|
|
- @ApiOperation(value = "查询计量委托 ")
|
|
|
|
|
|
+ @ApiOperation(value = "查询计量委托,apiId=521")
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParam(name = "resultId", value = "装车作业实绩ID", required = false, dataType = "Integer"),
|
|
@ApiImplicitParam(name = "resultId", value = "装车作业实绩ID", required = false, dataType = "Integer"),
|
|
})
|
|
})
|
|
- @PostMapping("/getAllMeasureCommission/{type}")
|
|
|
|
- public Map<String, Object> getAllMeasureCommission(@PathVariable("type") Integer type) {
|
|
|
|
- return tmsTruckFeign.getAllMeasureCommission(type);
|
|
|
|
|
|
+ @PostMapping("/getAllMeasureCommission")
|
|
|
|
+ public Map<String, Object> getAllMeasureCommission(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
|
+ Integer apiId,
|
|
|
|
+ Integer pageNum,
|
|
|
|
+ Integer pageSize,
|
|
|
|
+ String con) {
|
|
|
|
+ if(mapValue==null){
|
|
|
|
+ mapValue=new HashMap<>();
|
|
|
|
+ }
|
|
|
|
+ return tmsTruckFeign.getAllMeasureCommission(mapValue, apiId, pageNum, pageSize, con);
|
|
}
|
|
}
|
|
|
|
|
|
//****************************************TmstruckQualityResultController*******************************
|
|
//****************************************TmstruckQualityResultController*******************************
|