From 1d27648989e69042db607d14c474d9ea90f86d7b Mon Sep 17 00:00:00 2001 From: Fancy <Fancy.fx@outlook.com> Date: 星期五, 19 七月 2024 14:39:33 +0800 Subject: [PATCH] lineName change --- pms-parent/pms-web-platform/src/main/java/com/dy/pmsPlatform/station/StationSv.java | 23 ++++++++++++++--------- 1 files changed, 14 insertions(+), 9 deletions(-) diff --git a/pms-parent/pms-web-platform/src/main/java/com/dy/pmsPlatform/station/StationSv.java b/pms-parent/pms-web-platform/src/main/java/com/dy/pmsPlatform/station/StationSv.java index 3890a5a..75a83d1 100644 --- a/pms-parent/pms-web-platform/src/main/java/com/dy/pmsPlatform/station/StationSv.java +++ b/pms-parent/pms-web-platform/src/main/java/com/dy/pmsPlatform/station/StationSv.java @@ -1,13 +1,10 @@ package com.dy.pmsPlatform.station; -import cn.hutool.core.codec.Base64; import com.alibaba.excel.util.StringUtils; import com.dy.common.webUtil.QueryResultVo; import com.dy.pmsGlobal.daoPlt.PltStationMapper; -import com.dy.pmsGlobal.pojoPlt.PltProduct; import com.dy.pmsGlobal.pojoPlt.PltStation; import com.dy.pmsGlobal.util.QrCodeUtil; -import com.google.zxing.WriterException; import lombok.extern.slf4j.Slf4j; import org.apache.dubbo.common.utils.PojoUtils; import org.springframework.beans.factory.annotation.Autowired; @@ -15,7 +12,6 @@ import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; -import java.io.IOException; import java.util.List; import java.util.Map; @@ -36,9 +32,9 @@ @Transactional public int save(PltStation station) throws RuntimeException { -// if(dao.selectByCodeId(station.id,station.code)>0){ -// throw new RuntimeException("宸ョ珯缂栧彿宸插瓨鍦�"); -// } + if(dao.selectByName(station.getName()).size() > 0){ + throw new RuntimeException("宸ョ珯鍚嶇О("+station.getName()+")宸插瓨鍦�,鍚嶇О涓嶅厑璁搁噸澶嶆坊鍔�,璇峰彉鏇�"); + } int count = 0; int flag=0; do { @@ -81,13 +77,22 @@ return this.dao.deleteLogicById(id); } - - @Transactional public int update(PltStation station) throws RuntimeException { // if(dao.selectByCodeId(station.id,station.code)>0){ // throw new RuntimeException("宸ョ珯缂栧彿宸插瓨鍦�"); // } + boolean flag = false; + List<PltStation> stations = dao.selectByName(station.getName()); + for (int i = 0; i < stations.size(); i++) { + if(!stations.get(i).getId().equals(station.getId())){ + flag = true; + break; + } + } + if(flag){ + throw new RuntimeException("宸ョ珯鍚嶇О("+station.getName()+")宸插瓨鍦�,鍚嶇О涓嶅厑璁搁噸澶嶆坊鍔�,璇峰彉鏇�"); + } int count = dao.updateByPrimaryKeySelective(station); return count; } -- Gitblit v1.8.0