自动化立体仓库 - WMS系统
1
zhangc
2025-01-17 e609c7adf42ef6eea053ff33a8e59abaf0767df6
src/main/java/com/zy/asrs/controller/RowLastnoController.java
@@ -72,7 +72,7 @@
   @ManagerAuth
    public R update(RowLastno rowLastno){
        if (Cools.isEmpty(rowLastno) || null==rowLastno.getWhsType()){
            return R.error();
            return R.error("参数缺失");
        }
        rowLastno.setModiUser(getUserId());
        rowLastno.setModiTime(new Date());
@@ -85,7 +85,7 @@
    public R delete(@RequestParam String param){
        List<RowLastno> list = JSONArray.parseArray(param, RowLastno.class);
        if (Cools.isEmpty(list)){
            return R.error();
            return R.error("参数缺失");
        }
        for (RowLastno entity : list){
            rowLastnoService.delete(new EntityWrapper<>(entity));