parent
6e49025c7b
commit
b5af576c31
@ -0,0 +1,29 @@
|
||||
package com.ruoyi.screen.controller;
|
||||
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.screen.domain.ZongzhiSourceResponse;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 太仓综治大屏接口
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/zongzhi/screen")
|
||||
@Api(tags = " 太仓综治大屏接口")
|
||||
public class ZongzhiScreenController {
|
||||
|
||||
|
||||
/**
|
||||
* 数据来源
|
||||
*/
|
||||
@ApiOperation(value = "数据来源", response = ZongzhiSourceResponse.class)
|
||||
@GetMapping("/source")
|
||||
private AjaxResult getSource(){
|
||||
|
||||
return AjaxResult.success();
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.ruoyi.screen.domain;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 大屏数据来源响应类
|
||||
*/
|
||||
@Data
|
||||
@ApiModel("大屏数据来源响应类")
|
||||
public class ZongzhiSourceResponse {
|
||||
}
|
Loading…
Reference in new issue