| | |
| | | import com.thhy.general.common.BasicResult; |
| | | import com.thhy.materials.modules.biz.helmet.service.HelmetService; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | 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.util.Map; |
| | |
| | | |
| | | |
| | | //接数据 环境监测 数据 |
| | | @PostMapping("/dataValueInsert") |
| | | public BasicResult dataValueInsert(@RequestBody Map<String,Object> values){ |
| | | return helmetService.dataValueInsert(values); |
| | | @PostMapping("/dataValueIn") |
| | | public BasicResult dataValueIn(@RequestBody Map<String,Object> values){ |
| | | return helmetService.dataValueIn(values); |
| | | } |
| | | |
| | | /** |
| | |
| | | } |
| | | |
| | | |
| | | // 智能监控 |
| | | @PostMapping("/dataAIList") |
| | | public BasicResult dataAIList(@RequestBody Map<String,Object> values){ |
| | | return helmetService.dataAIList(values); |
| | | } |
| | | |
| | | //智能监控类型 |
| | | @GetMapping("dataAIType") |
| | | public BasicResult dataAIType(){ |
| | | return helmetService.dataAIType(); |
| | | } |
| | | |
| | | } |