project initialize
parent
a0bc149b7f
commit
1499030dc4
@ -0,0 +1,18 @@
|
|||||||
|
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";
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
package com.supervision.service;
|
||||||
|
|
||||||
|
public interface IChatService {
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
package com.supervision.service.impl;
|
||||||
|
|
||||||
|
import com.supervision.service.IChatService;
|
||||||
|
|
||||||
|
public class ChatServiceImpl implements IChatService {
|
||||||
|
}
|
Loading…
Reference in New Issue