员工分配服务指令允许保存空数据
This commit is contained in:
parent
1c46814751
commit
f91ae2d18c
|
|
@ -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("保存成功!");
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -69,4 +69,6 @@ public class NuBizEmployeesServcieTags implements Serializable {
|
|||
|
||||
@TableField(exist = false)
|
||||
private String employeesTagsId;
|
||||
@TableField(exist = false)
|
||||
private String optType;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue