3 changed files with 31 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||||
|
package com.ccsens.mt.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; |
||||
|
|
||||
|
@Api(tags = "日程", description = "") |
||||
|
@RestController |
||||
|
@RequestMapping("/task") |
||||
|
@Slf4j |
||||
|
public class CompeteTaskController { |
||||
|
} |
||||
@ -0,0 +1,14 @@ |
|||||
|
package com.ccsens.mt.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; |
||||
|
|
||||
|
@Api(tags = "视频", description = "") |
||||
|
@RestController |
||||
|
@RequestMapping("/vedio") |
||||
|
@Slf4j |
||||
|
public class CompeteVedioController { |
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue