Commit 4eb5a4bc authored by 张大伟's avatar 张大伟

Merge branch 'develop' of http://103.249.252.28:90/wangxiahui/zhny into develop

parents c38fe785 436673d0
...@@ -72,8 +72,9 @@ public class SystemController { ...@@ -72,8 +72,9 @@ public class SystemController {
@ApiImplicitParam(name = "proId", value = "项目主键", required = true, dataType = "字符串") @ApiImplicitParam(name = "proId", value = "项目主键", required = true, dataType = "字符串")
}) })
@RequestMapping("/selectDataByCache") @RequestMapping("/selectDataByCache")
public Result selectDataByCache(@RequestParam String proId) { public String selectDataByCache(@RequestParam String proId) {
return Result.builder(new PersistModel(1), MessageConstant.MESSAGE_ALERT_SUCCESS, MessageConstant.MESSAGE_ALERT_ERROR, systemServiceImpl.selectDataByCache(proId)); return systemServiceImpl.selectDataByCache(proId);
// return Result.builder(new PersistModel(1), MessageConstant.MESSAGE_ALERT_SUCCESS, MessageConstant.MESSAGE_ALERT_ERROR, systemServiceImpl.selectDataByCache(proId));
} }
@ApiOperation(value="查询传感器code", notes="查询传感器code") @ApiOperation(value="查询传感器code", notes="查询传感器code")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment