From bed6becab65745585281ba2e499fa39de561c29f Mon Sep 17 00:00:00 2001 From: zhibing.pu <393733352@qq.com> Date: 星期五, 09 八月 2024 16:47:28 +0800 Subject: [PATCH] 提交管理后台部分接口 --- ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/service/impl/TChargingGunServiceImpl.java | 117 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 116 insertions(+), 1 deletions(-) diff --git a/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/service/impl/TChargingGunServiceImpl.java b/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/service/impl/TChargingGunServiceImpl.java index d4db51a..b97602d 100644 --- a/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/service/impl/TChargingGunServiceImpl.java +++ b/ruoyi-service/ruoyi-chargingPile/src/main/java/com/ruoyi/chargingPile/service/impl/TChargingGunServiceImpl.java @@ -1,15 +1,25 @@ package com.ruoyi.chargingPile.service.impl; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.ruoyi.chargingPile.api.dto.TChargingGunDTO; import com.ruoyi.chargingPile.api.model.TChargingGun; import com.ruoyi.chargingPile.api.query.TChargingGunQuery; import com.ruoyi.chargingPile.api.vo.TChargingGunVO; import com.ruoyi.chargingPile.api.vo.TMonitoringEquipmentVO; +import com.ruoyi.chargingPile.domain.SiteMenu; import com.ruoyi.chargingPile.mapper.TChargingGunMapper; +import com.ruoyi.chargingPile.service.IPartnerService; import com.ruoyi.chargingPile.service.TChargingGunService; +import com.ruoyi.common.core.utils.StringUtils; +import com.ruoyi.common.core.web.domain.AjaxResult; import com.ruoyi.common.core.web.page.PageInfo; +import com.ruoyi.common.security.utils.SecurityUtils; +import com.ruoyi.system.api.domain.SysUser; +import com.ruoyi.system.api.feignClient.SysUserClient; import org.springframework.stereotype.Service; +import javax.annotation.Resource; import java.util.List; /** @@ -22,12 +32,117 @@ */ @Service public class TChargingGunServiceImpl extends ServiceImpl<TChargingGunMapper, TChargingGun> implements TChargingGunService { + + @Resource + private SysUserClient sysUserClient; + + @Resource + private IPartnerService partnerService; + + + @Override public PageInfo<TChargingGunVO> pageList(TChargingGunQuery query) { + List<Integer> siteIds = null; + //校验合作商权限 + SysUser sysUser = sysUserClient.getSysUser(SecurityUtils.getUserId()).getData(); + Integer roleType = sysUser.getRoleType(); + Integer objectId = sysUser.getObjectId(); + //合作商 + if(roleType == 2){ + siteIds = partnerService.authSite(objectId, SiteMenu.CHARGING_GUN); + } PageInfo<TChargingGunVO> pageInfo = new PageInfo<>(query.getPageCurr(),query.getPageSize()); - List<TChargingGunVO> list = this.baseMapper.pageList(query,pageInfo); + List<TChargingGunVO> list = this.baseMapper.pageList(query,pageInfo, siteIds); + for (TChargingGunVO tChargingGunVO : list) { + Integer siteId = tChargingGunVO.getSiteId(); + tChargingGunVO.setAuthDelete(roleType == 1 ? true : partnerService.authMenu(objectId, siteId, SiteMenu.CHARGING_GUN_DELETE)); + tChargingGunVO.setAuthDownloadQRCode(roleType == 1 ? true : partnerService.authMenu(objectId, siteId, SiteMenu.CHARGING_GUN_DOWNLOAD_QR_CODE)); + tChargingGunVO.setAuthEndCharge(roleType == 1 ? true : partnerService.authMenu(objectId, siteId, SiteMenu.CHARGING_GUN_END_CHARGE)); + tChargingGunVO.setAuthQueryInfo(roleType == 1 ? true : partnerService.authMenu(objectId, siteId, SiteMenu.CHARGING_GUN_QUERY_INFO)); + tChargingGunVO.setAuthUpdate(roleType == 1 ? true : partnerService.authMenu(objectId, siteId, SiteMenu.CHARGING_GUN_UPDATE)); + tChargingGunVO.setAuthViewRates(roleType == 1 ? true : partnerService.authMenu(objectId, siteId, SiteMenu.CHARGING_GUN_VIEW_RATES)); + } pageInfo.setRecords(list); return pageInfo; } + + /** + * 添加充电枪 + * @param dto + * @return + */ + @Override + public AjaxResult add(TChargingGunDTO dto) { + AjaxResult ajaxResult = addVerify(dto); + if(ajaxResult.isError()){ + return ajaxResult; + } + long count = this.count(new LambdaQueryWrapper<TChargingGun>().eq(TChargingGun::getCode, dto.getCode()).eq(TChargingGun::getDelFlag, 0)); + if(count > 0){ + return AjaxResult.error("接口编码已存在"); + } + this.save(dto); + return AjaxResult.success(); + } + + + /** + * 编辑充电枪 + * @param dto + * @return + */ + @Override + public AjaxResult update(TChargingGunDTO dto) { + AjaxResult ajaxResult = addVerify(dto); + if(ajaxResult.isError()){ + return ajaxResult; + } + TChargingGun one = this.getOne(new LambdaQueryWrapper<TChargingGun>().eq(TChargingGun::getCode, dto.getCode()).eq(TChargingGun::getDelFlag, 0)); + if(null != one && !dto.getId().equals(one.getId())){ + return AjaxResult.error("接口编码已存在"); + } + this.updateById(dto); + return AjaxResult.success(); + } + + /** + * 校验必填项 + * @param dto + * @return + */ + AjaxResult addVerify(TChargingGunDTO dto){ + if(StringUtils.isEmpty(dto.getCode())){ + return AjaxResult.error("接口编码不能为空"); + } + if(StringUtils.isEmpty(dto.getName())){ + return AjaxResult.error("接口名称不能为空"); + } + if(null == dto.getType()){ + return AjaxResult.error("接口类型不能为空"); + } + if(null == dto.getStatus()){ + return AjaxResult.error("接口状态不能为空"); + } + if(null == dto.getChargeMode()){ + return AjaxResult.error("充电方式不能为空"); + } + if(null == dto.getUpperRatedVoltage()){ + return AjaxResult.error("额定电压上限不能为空"); + } + if(null == dto.getLowerLimitOfRatedVoltage()){ + return AjaxResult.error("额定电压下限不能为空"); + } + if(null == dto.getRatedCurrent()){ + return AjaxResult.error("额定电流不能为空"); + } + if(null == dto.getRatedPower()){ + return AjaxResult.error("额定功率不能为空"); + } + if(StringUtils.isEmpty(dto.getNationalStandard())){ + return AjaxResult.error("国家标准不能为空"); + } + return AjaxResult.success(); + } } -- Gitblit v1.7.1