南昌市物联网技防平台-后台
钟日健
2021-02-27 b88cc45c2f4be66795df34a3f0bfcba35c7bc912
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.springblade.jfpt.nettyUdpServer.controller;
 
import lombok.AllArgsConstructor;
import org.springblade.jfpt.nettyUdpServer.service.AnimalHeatService;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * 体温监测控制层
 * @time 2021-2-25
 */
 
@RestController
@RequestMapping("animalHeat/animalHeat")
@AllArgsConstructor
public class AnimalHeatController {
 
    private final AnimalHeatService animalHeatService;
 
}