南昌市物联网技防平台-后台
zengh
2021-02-27 939292b1cfd4fb4f714bb5ae09dbc2220cef06b4
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;
    }
 
}