南昌市物联网技防平台-后台
Administrator
2021-03-04 a08f28be2302ce139aecb34765296e2b47afd129
blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/nettyUdpServer/service/AnimalHeatService.java
@@ -1,7 +1,15 @@
package org.springblade.jfpt.nettyUdpServer.service;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.jfpt.nettyUdpServer.entity.BladeAnimalHeat;
/**
 * 体温监测服务层接口层
 */
public interface AnimalHeatService {
public interface AnimalHeatService extends IService<BladeAnimalHeat> {
   /**
    * 插入体温数据
    * @param body 温度数据
    */
    void save(String body);
}