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);
| }
|
|