南昌市物联网技防平台-后台
Administrator
2021-03-04 a08f28be2302ce139aecb34765296e2b47afd129
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.springblade.jfpt.nettyUdpServer.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.jfpt.nettyUdpServer.entity.BladeAnimalHeat;
 
/**
 * 体温监测服务层接口层
 */
public interface AnimalHeatService extends IService<BladeAnimalHeat> {
    /**
     * 插入体温数据
     * @param body 温度数据
     */
    void save(String body);
}