| | |
| | | @Api(tags = "在线监测-实时监控") |
| | | @RestController |
| | | @RequestMapping("LD9_stateAction") |
| | | public class Ld9StateController { |
| | | public class Ld9StateController extends BaseController{ |
| | | |
| | | @Autowired |
| | | private Ld9StateService service; |
| | |
| | | public Response updateUpdateFile(@RequestBody Ld9UpdateStatus ld9UpdateStatus){ |
| | | return service.updateUpdateFile(ld9UpdateStatus); |
| | | } |
| | | |
| | | @ApiOperation(value = "查询Ld9状态",notes = "返回值类型为Fbs9100state类型") |
| | | @GetMapping("/searchByCondition") |
| | | public Response searchByCondition(int pageNum,int pageSize,int devErrcommcount){ |
| | | UserInf user = ActionUtil.getUser(); |
| | | return service.searchByCondition(pageNum,pageSize,devErrcommcount,user.getUId().intValue()); |
| | | } |
| | | |
| | | |
| | | } |