package com.qianwen.smartman.modules.cps.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import java.util.List; import org.apache.ibatis.annotations.Param; import com.qianwen.smartman.modules.cps.entity.DmpVariables; import com.qianwen.smartman.modules.cps.vo.DmpStatusVariableVO; import com.qianwen.smartman.modules.cps.vo.DmpVariablesVO; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/mapper/DmpVariablesMapper.class */ public interface DmpVariablesMapper extends BaseMapper { List listToRealTimeByMachineId(@Param("machineId") Long machineId); List getDmpVariablesByWorkstationId(@Param("workstationId") Long workstationId); List getDmpVariablesByWorkstationIds(@Param("workstationIds") List workstationIds); List getVariablesAndWcs(Long id, Long workstationId); List getDmpVariablesByWorkstationIdList(@Param("workstationIdList") List workstationIdList); }