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