| | |
| | | |
| | | 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; |
| | |
| | | public BasicResult helmetReportUser(@RequestBody Map<String,Object> values){ |
| | | return helmetService.helmetReportUser(values); |
| | | } |
| | | //烟尘数据 |
| | | @PostMapping("/dataSmockList") |
| | | public BasicResult dataSmockList(@RequestBody Map<String,Object> values){ |
| | | return helmetService.dataSmockList(values); |
| | | } |
| | | |
| | | //环境监测 |
| | | @PostMapping("/dataValuesList") |
| | | public BasicResult dataValuesList(@RequestBody Map<String,Object> values){ |
| | | return helmetService.dataValuesList(values); |
| | | } |
| | | |
| | | |
| | | } |