|  |  | 
 |  |  | 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; | 
 |  |  | 
 |  |  | import org.springframework.stereotype.Service; | 
 |  |  | import org.springframework.transaction.annotation.Transactional; | 
 |  |  |  | 
 |  |  | import java.io.IOException; | 
 |  |  | import java.util.List; | 
 |  |  | import java.util.Map; | 
 |  |  |  | 
 |  |  | 
 |  |  |     @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 { | 
 |  |  | 
 |  |  |         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; | 
 |  |  |     } |