|
@@ -1165,4 +1165,13 @@ public class StorageBillController extends JeecgController<StorageBill, IStorage
|
|
List<BilletBasicInfo> billetBasicInfoList = storageBillService.queryBilletBasicInfoHandle(ccmNo, changeShiftId);
|
|
List<BilletBasicInfo> billetBasicInfoList = storageBillService.queryBilletBasicInfoHandle(ccmNo, changeShiftId);
|
|
return Result.OK(billetBasicInfoList);
|
|
return Result.OK(billetBasicInfoList);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ //查询时修改状态
|
|
|
|
+ @ApiOperation(value = "修改车牌号状态", notes = "修改车牌号状态")
|
|
|
|
+ @PostMapping("/updateStatus")
|
|
|
|
+ public Result<String> updateStatus(Integer licensePlateStatus, String licensePlate) {
|
|
|
|
+ storageBillService.updateStatusByLicensePlate(licensePlateStatus,licensePlate);
|
|
|
|
+ return Result.OK("修改成功!");
|
|
|
|
+ }
|
|
}
|
|
}
|