Merge branch 'ww' into test

This commit is contained in:
2024-09-28 14:56:09 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ public class TbConsInfoFlowController {
@ApiOperation("耗材报损")
public ResponseEntity<Object> frmLoss(@RequestBody TbConsInfoFlowDto resources){
tbConsInfoFlowService.frmLoss(resources);
return new ResponseEntity<>(HttpStatus.OK);
return new ResponseEntity<>("ok",HttpStatus.OK);
}
// @GetMapping

View File

@@ -77,7 +77,7 @@ public class TbProductStockDetailController {
@ApiOperation("商品报损")
public ResponseEntity<Object> frmLoss(@Validated @RequestBody TbProductFrmLossDto resources){
tbProductStockDetailService.frmLoss(resources);
return new ResponseEntity<>(HttpStatus.OK);
return new ResponseEntity<>("ok",HttpStatus.OK);
}
// /**