|
@@ -7,10 +7,7 @@ import com.smcic.api.epg.service.impl.ChannelService;
|
|
|
import com.smcic.api.epg.service.impl.EpgDisableConfigService;
|
|
|
import com.smcic.api.epg.service.impl.ProgramService;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import java.time.LocalDateTime;
|
|
@@ -30,6 +27,11 @@ public class EpgController {
|
|
|
@Resource
|
|
|
private EpgDisableConfigService epgDisableConfigService;
|
|
|
|
|
|
+ @GetMapping("check")
|
|
|
+ public void check(){
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
@RequestMapping("tv")
|
|
|
public List<Channel> tv(){
|
|
|
return channelService.tvList();
|