yangys
2024-11-02 f69073b835f1a0c66590130e1830edcdd75ebb8a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.qianwen.smartman.modules.smis.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.qianwen.smartman.modules.smis.entity.DmpVariables;
import com.qianwen.smartman.modules.smis.vo.DmpStatusVariableVO;
import com.qianwen.smartman.modules.smis.vo.DmpVariablesVO;
 
 
public interface DmpVariablesMapper extends BaseMapper<DmpVariables> {
    List<DmpVariablesVO> listToRealTimeByMachineId(@Param("machineId") Long machineId);
 
    List<DmpVariablesVO> getDmpVariablesByWorkstationId(@Param("workstationId") Long workstationId);
 
    List<DmpVariablesVO> getDmpVariablesByWorkstationIds(@Param("workstationIds") List<Long> workstationIds);
 
    List<DmpVariablesVO> getVariablesAndWcs(Long id, Long workstationId);
 
    List<DmpStatusVariableVO> getDmpVariablesByWorkstationIdList(@Param("workstationIdList") List<Long> workstationIdList);
}