yangys
2024-09-04 04c57331cf84c8f606c2838dcb6fe5463fb9b68c
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
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;
 
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);
}