Lius
2025-05-15 388d87d5534a056268777cd37d877075bc79929c
lxzn-module-mdc/src/main/java/org/jeecg/modules/screen/controller/MdcLargeScreenController.java
@@ -7,6 +7,7 @@
import org.jeecg.modules.screen.dto.AlarmInfoDto;
import org.jeecg.modules.screen.dto.EquipmentStatusOverview;
import org.jeecg.modules.screen.service.MdcLargeScreenService;
import org.jeecg.modules.system.entity.MdcProduction;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -64,4 +65,11 @@
        return Result.OK(result);
    }
    @ApiOperation(value = "大屏看板-工段列表", notes = "大屏看板-工段列表")
    @GetMapping("/productionList")
    public Result<List<MdcProduction>> productionList(String productionId) {
        List<MdcProduction> result = mdcLargeScreenService.productionList(productionId);
        return Result.OK(result);
    }
}