From 945a7f743b3b41c2de0418ea878afaca7ddd3250 Mon Sep 17 00:00:00 2001
From: zhangnaisong <2434969829@qq.com>
Date: 星期二, 25 七月 2023 16:16:16 +0800
Subject: [PATCH] 三一车辆实时位置加入部门为空判断提交

---
 ard-work/src/main/java/com/ruoyi/alarmpoints/well/service/impl/ArdAlarmpointsWellServiceImpl.java |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/ard-work/src/main/java/com/ruoyi/alarmpoints/well/service/impl/ArdAlarmpointsWellServiceImpl.java b/ard-work/src/main/java/com/ruoyi/alarmpoints/well/service/impl/ArdAlarmpointsWellServiceImpl.java
index e0a498f..ea80ad6 100644
--- a/ard-work/src/main/java/com/ruoyi/alarmpoints/well/service/impl/ArdAlarmpointsWellServiceImpl.java
+++ b/ard-work/src/main/java/com/ruoyi/alarmpoints/well/service/impl/ArdAlarmpointsWellServiceImpl.java
@@ -13,10 +13,12 @@
 import com.ruoyi.common.utils.StringUtils;
 import com.ruoyi.common.utils.bean.BeanValidators;
 import com.ruoyi.common.utils.spring.SpringUtils;
+import lombok.ToString;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
 
 import javax.annotation.Resource;
 import javax.validation.Validator;
@@ -85,7 +87,13 @@
      * @return 缁撴灉
      */
     @Override
+    @Transactional
     public int insertArdAlarmpointsWell(ArdAlarmpointsWell ardAlarmpointsWell) {
+        boolean wellIdExists = ardAlarmpointsWellMapper.checkWellIdExists(ardAlarmpointsWell.getWellId());
+        if(wellIdExists)
+        {
+            throw new RuntimeException("浜曞彿宸插瓨鍦�");
+        }
         ardAlarmpointsWell.setUserId(SecurityUtils.getUserId());
         ardAlarmpointsWell.setCreateBy(SecurityUtils.getUsername());
         ardAlarmpointsWell.setCreateTime(DateUtils.getNowDate());
@@ -99,7 +107,13 @@
      * @return 缁撴灉
      */
     @Override
+    @Transactional
     public int updateArdAlarmpointsWell(ArdAlarmpointsWell ardAlarmpointsWell) {
+        boolean wellIdExists = ardAlarmpointsWellMapper.checkWellIdExists(ardAlarmpointsWell.getWellId());
+        if(wellIdExists)
+        {
+            throw new RuntimeException("浜曞彿宸插瓨鍦�");
+        }
         ardAlarmpointsWell.setUpdateBy(SecurityUtils.getUsername());
         ardAlarmpointsWell.setUpdateTime(DateUtils.getNowDate());
         return ardAlarmpointsWellMapper.updateArdAlarmpointsWell(ardAlarmpointsWell);

--
Gitblit v1.9.3