南昌市物联网技防平台-后台
Administrator
2021-03-02 a6bcf9902e3301deeff27673ab6b92d3982d6bde
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;
    }
 
}