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
21
22
23
24
25
26
27
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<AndonType> {
    AndonTypeVO saveAndonType(AndonTypeSaveVO vo);
 
    Boolean updateAndonType(AndonTypeUpdateVO vo);
 
    Boolean removeAndonType(Long typeId);
 
    List<AndonTypeVO> andonTypeList(String keyword);
 
    AndonTypeDetailVO detail(Long typeId);
 
    List<BindingDeviceTypeVO> allDeviceTypes(String typeId);
 
    List<AndonTypeVO> workBanding(Long workstationId);
}