You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
454 B
Java
19 lines
454 B
Java
3 months ago
|
package com.supervision.contoller;
|
||
|
|
||
|
import lombok.extern.slf4j.Slf4j;
|
||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
||
|
@Slf4j
|
||
|
@RestController
|
||
|
@RequestMapping("/chat")
|
||
|
public class ChatController {
|
||
|
|
||
|
|
||
|
@PostMapping("/queryStatisticsData")
|
||
|
public String queryStatisticsData() {
|
||
|
return "success";
|
||
|
}
|
||
|
}
|