员工分配服务指令允许保存空数据

This commit is contained in:
1378012178@qq.com 2026-03-19 13:58:44 +08:00
parent 1c46814751
commit f91ae2d18c
2 changed files with 19 additions and 15 deletions

View File

@ -99,6 +99,7 @@ public class NuBizEmployeesServcieTagsController extends JeecgController<NuBizEm
//先删再存
nuBizEmployeesServcieTagsService.physicsDeleteByEmpId(empId);
if ("save".equals(saveDataList.get(0).getOptType())) {
List<NuBizEmployeesServcieTags> saveData = Lists.newArrayList();
//解决排序问题
@ -117,6 +118,7 @@ public class NuBizEmployeesServcieTagsController extends JeecgController<NuBizEm
}
nuBizEmployeesServcieTagsService.saveBatch(saveData);
}
return Result.OK("保存成功!");
}

View File

@ -69,4 +69,6 @@ public class NuBizEmployeesServcieTags implements Serializable {
@TableField(exist = false)
private String employeesTagsId;
@TableField(exist = false)
private String optType;
}