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;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/andon/mapper/AndonTypeMapper.class */
|
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);
|
}
|