yangys
2024-05-09 014ac34ff2baf657c3236f41fdbf11c9d7d414b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.qianwen.smartman.modules.andon.mapper;
 
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.qianwen.core.mp.mapper.BladeMapper;
import com.qianwen.smartman.modules.andon.entity.AndonType;
import com.qianwen.smartman.modules.andon.vo.AndonTypeDetailVO;
import com.qianwen.smartman.modules.andon.vo.AndonTypeVO;
import com.qianwen.smartman.modules.andon.vo.BindingDeviceTypeVO;
 
public interface AndonTypeMapper extends BladeMapper<AndonType> {
    List<AndonTypeVO> andonTypeList(@Param("keyword") String keyword);
 
    List<BindingDeviceTypeVO> allDeviceTypes(@Param("typeId") String typeId);
 
    List<AndonTypeVO> workBanding(@Param("workstationId") Long workstationId);
 
    AndonTypeDetailVO detail(@Param("typeId") Long typeId);
}