修改点位真删除

This commit is contained in:
2023-03-29 18:42:23 +08:00
parent 2f87ed206e
commit adb0989e8a

View File

@@ -25,6 +25,7 @@ import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@@ -186,17 +187,9 @@ public class PointServiceImpl implements PointService {
@Override
@Transactional(rollbackFor = Exception.class)
public void deleteAll(Long[] ids) {
String currentUserId = SecurityUtils.getCurrentUserId();
String nickName = SecurityUtils.getCurrentNickName();
WQLObject wo = WQLObject.getWQLObject("sch_base_point");
for (Long point_id : ids) {
JSONObject param = new JSONObject();
param.put("point_id", String.valueOf(point_id));
param.put("is_delete", "1");
param.put("update_id", currentUserId);
param.put("update_name", nickName);
param.put("update_time", DateUtil.now());
wo.update(param);
WQLObject pointTab = WQLObject.getWQLObject("SCH_BASE_Point");
for (Long id : ids) {
pointTab.delete("point_id = '" + id + "'");
}
}