| | |
| | | package com.yssh.controller; |
| | | |
| | | import com.yssh.entity.MonitorPointPosition; |
| | | import com.yssh.entity.*; |
| | | import com.yssh.service.ICommonService; |
| | | import com.yssh.utils.StringUtils; |
| | | import io.swagger.annotations.Api; |
| | |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
| | | import com.yssh.entity.SuYuan2d; |
| | | import com.yssh.entity.SuYuan3d; |
| | | import com.yssh.entity.SuYuanMonitorData; |
| | | import com.yssh.service.ISuYuanService; |
| | | import com.yssh.utils.Result; |
| | | |
| | |
| | | |
| | | return Result.OK(point); |
| | | } |
| | | |
| | | @ApiOperation(value = "根据Qxsh值", notes = "根据Qxsh值") |
| | | @ApiOperationSupport(order = 10) |
| | | @GetMapping("/queryQxsh") |
| | | public Result queryQxsh(@RequestParam(value = "date", required = true) @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") Date date) { |
| | | List<Qxsh> list = suYuanService.queryQxsh(date); |
| | | |
| | | return Result.OK(list); |
| | | } |
| | | } |