南昌市物联网技防平台-后台
钟日健
2021-02-27 f19d7d458e175b0e4beb8aec96a541dd3e8ced25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
    }
 
}