| | |
| | | package com.zy.acs.manager.manager.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.zy.acs.manager.manager.entity.Zone; |
| | | import com.zy.acs.manager.manager.mapper.ZoneMapper; |
| | |
| | | @Service("zoneService") |
| | | public class ZoneServiceImpl extends ServiceImpl<ZoneMapper, Zone> implements ZoneService { |
| | | |
| | | @Override |
| | | public Zone selectByUuid(String uuid) { |
| | | return this.getOne(new LambdaQueryWrapper<Zone>().eq(Zone::getUuid, uuid)); |
| | | } |
| | | |
| | | } |