whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
src/main/java/com/whyc/controller/Ld9StateController.java
@@ -13,7 +13,7 @@
@Api(tags = "在线监测-实时监控")
@RestController
@RequestMapping("LD9_stateAction")
public class Ld9StateController {
public class Ld9StateController extends BaseController{
    @Autowired
    private Ld9StateService service;
@@ -36,4 +36,13 @@
    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());
    }
}