package com.qianwen.smartman.modules.andon.service; import java.util.List; import com.qianwen.core.mp.service.BladeService; import com.qianwen.smartman.modules.andon.entity.AndonType; import com.qianwen.smartman.modules.andon.vo.AndonTypeDetailVO; import com.qianwen.smartman.modules.andon.vo.AndonTypeSaveVO; import com.qianwen.smartman.modules.andon.vo.AndonTypeUpdateVO; 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/service/IAndonTypeService.class */ public interface IAndonTypeService extends BladeService { AndonTypeVO saveAndonType(AndonTypeSaveVO vo); Boolean updateAndonType(AndonTypeUpdateVO vo); Boolean removeAndonType(Long typeId); List andonTypeList(String keyword); AndonTypeDetailVO detail(Long typeId); List allDeviceTypes(String typeId); List workBanding(Long workstationId); }