Lius
2025-03-03 c978d8b1de46a5a12f9d76b061815614fc4ac6ef
lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/impl/MdcWorkshopInfoServiceImpl.java
@@ -6,6 +6,7 @@
import org.jeecg.modules.mdc.entity.MdcWorkshopInfo;
import org.jeecg.modules.mdc.mapper.MdcWorkshopInfoMapper;
import org.jeecg.modules.mdc.service.IMdcWorkshopInfoService;
import org.jeecg.modules.system.entity.MdcProduction;
import org.springframework.stereotype.Service;
import java.util.List;
@@ -21,12 +22,12 @@
    /**
     * 大屏信息
     * @param workshopId
     * @param productionId
     * @return
     */
    @Override
    public List<MdcBigScreenEquipmentDto> getBigScreenInfo(String workshopId) {
        return this.baseMapper.getBigScreenInfo(workshopId);
    public List<MdcBigScreenEquipmentDto> getBigScreenInfo(String productionId) {
        return this.baseMapper.getBigScreenInfo(productionId);
    }
    /**
@@ -38,4 +39,14 @@
    public List<MdcWorkshopInfo> listByUser(String userId) {
        return this.baseMapper.listByUser(userId);
    }
    /**
     * 查询车间
     * @param userId
     * @return
     */
    @Override
    public List<MdcProduction> productionListByUser(String userId) {
        return this.baseMapper.productionListByUser(userId);
    }
}