1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||||
|
package com.ccsens.wisdomcar.api; |
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
import lombok.extern.slf4j.Slf4j; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
/** |
||||
|
* @author 逗 |
||||
|
*/ |
||||
|
@Slf4j |
||||
|
@Api(tags = "统计api" , description = "大屏显示") |
||||
|
@RestController |
||||
|
@RequestMapping("/statistics") |
||||
|
public class StatisticsController { |
||||
|
|
||||
|
} |
Loading…
Reference in new issue