自动化立体仓库 - WMS系统
zhangc
2025-01-10 1da002910c1d9d44cd195bd24d951b4942a4e29c
src/main/java/com/zy/asrs/controller/WrkLastnoController.java
@@ -72,7 +72,7 @@
   @ManagerAuth(memo = "工作序号修改")
    public R update(WrkLastno wrkLastno){
        if (Cools.isEmpty(wrkLastno) || null==wrkLastno.getWrkMk()){
            return R.error();
            return R.error("参数缺失");
        }
        wrkLastno.setModiUser(getUserId());
        wrkLastno.setModiTime(new Date());
@@ -85,7 +85,7 @@
    public R delete(@RequestParam String param){
        List<WrkLastno> list = JSONArray.parseArray(param, WrkLastno.class);
        if (Cools.isEmpty(list)){
            return R.error();
            return R.error("参数缺失");
        }
        for (WrkLastno entity : list){
            wrkLastnoService.delete(new EntityWrapper<>(entity));