yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
}