| | |
| | | |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import com.zy.asrs.entity.LocOwner; |
| | | import com.zy.asrs.entity.Mat; |
| | | import com.zy.asrs.mapper.LocOwnerMapper; |
| | | import com.zy.asrs.service.LocOwnerService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service("locOwnerService") |
| | | public class LocOwnerServiceImpl extends ServiceImpl<LocOwnerMapper, LocOwner> implements LocOwnerService { |
| | | |
| | | @Override |
| | | public LocOwner selectByUuid(String ownerUuid) { |
| | | return this.baseMapper.selectByUuid(ownerUuid); |
| | | } |
| | | } |