package org.springblade.jfpt.nettyUdpServer.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springblade.jfpt.nettyUdpServer.entity.BladeAnimalHeat;
|
import org.springblade.jfpt.nettyUdpServer.mapper.AnimalHeatMapper;
|
import org.springblade.jfpt.nettyUdpServer.service.AnimalHeatService;
|
import org.springframework.stereotype.Service;
|
|
|
@Service
|
public class AnimalHeatServiceImpl extends ServiceImpl<AnimalHeatMapper, BladeAnimalHeat> implements AnimalHeatService {
|
@Override
|
public boolean save(BladeAnimalHeat entity) {
|
return false;
|
}
|
|
}
|