|
@@ -194,7 +194,7 @@ public class DeviceServiceImpl implements DeviceService{
|
|
|
|
|
|
@Override
|
|
|
@Transactional
|
|
|
- public void batchDelele(List<Long> ids) {
|
|
|
+ public void batchDelete(List<Long> ids) {
|
|
|
log.info("begin DeviceServiceImpl batchDel ids = {}", JSON.toJSONString(ids));
|
|
|
deviceMapper.delByIds(ids);
|
|
|
// 删除计划清单
|
|
@@ -211,7 +211,7 @@ public class DeviceServiceImpl implements DeviceService{
|
|
|
|
|
|
@Override
|
|
|
@Transactional
|
|
|
- public void allDelele(DeviceQueryDto dto) {
|
|
|
+ public void allDelete(DeviceQueryDto dto) {
|
|
|
log.info("begin DeviceServiceImpl allDel dto = {}", JSON.toJSONString(dto));
|
|
|
List<DeviceVo> list = deviceMapper.findList(dto,UserUtil.getCurrentUser().getUserCondition());
|
|
|
List<Long> ids = new ArrayList<>();
|
|
@@ -219,7 +219,7 @@ public class DeviceServiceImpl implements DeviceService{
|
|
|
for (DeviceVo vo : list) {
|
|
|
ids.add(vo.getId());
|
|
|
}
|
|
|
- this.batchDelele(ids);
|
|
|
+ this.batchDelete(ids);
|
|
|
}
|
|
|
log.info("end DeviceServiceImpl allDel ");
|
|
|
}
|