parent
a2df53d77f
commit
ad60eb765b
@ -0,0 +1,39 @@
|
|||||||
|
package com.ruoyi.tcZz.controller;
|
||||||
|
|
||||||
|
import com.ruoyi.common.core.controller.BaseController;
|
||||||
|
import com.ruoyi.common.core.domain.AjaxResult;
|
||||||
|
import com.ruoyi.tcZz.domain.TcAqg;
|
||||||
|
import com.ruoyi.tcZz.service.ScreenService;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiOperation;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 大屏接口
|
||||||
|
*/
|
||||||
|
@Api(tags = "大屏接口")
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/tcZz/networkEcology/screen")
|
||||||
|
public class ScreenController extends BaseController {
|
||||||
|
/**
|
||||||
|
* 服务层
|
||||||
|
*/
|
||||||
|
@Autowired
|
||||||
|
private ScreenService screenService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 大屏监管对象
|
||||||
|
*/
|
||||||
|
|
||||||
|
@ApiOperation(value = "大屏监管对象", response = TcAqg.class)
|
||||||
|
@GetMapping("/screensupervision")
|
||||||
|
public AjaxResult screenSupervision(TcAqg tcAqg) {
|
||||||
|
// List<TcAqg> list = screenService.selectTcAqgList(tcAqg);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.ruoyi.tcZz.service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 大屏接口服务层
|
||||||
|
*/
|
||||||
|
public interface ScreenService {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
package com.ruoyi.tcZz.service.impl;
|
||||||
|
|
||||||
|
import com.ruoyi.tcZz.service.ScreenService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 大屏接口实现层
|
||||||
|
*/
|
||||||
|
public class ScreenServiceImpl implements ScreenService {
|
||||||
|
}
|
Loading…
Reference in new issue