yangys
2024-11-02 27eb2df01ab873bc7f1451ff5865ed66b2876159
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
28
29
30
31
32
33
34
package com.qianwen.smartman.modules.smis.service;
 
import java.util.List;
 
import com.qianwen.core.mp.base.BaseService;
import com.qianwen.smartman.modules.smis.entity.WorkstationWcs;
import com.qianwen.smartman.modules.smis.vo.WorkstationWcsSaveNewVO;
import com.qianwen.smartman.modules.smis.vo.WorkstationWcsSaveVO;
import com.qianwen.smartman.modules.smis.vo.WorkstationWcsVO;
 
/**
 * TODO:这个类可能都没有用了,关注
 */
public interface IWorkstationWcsService extends BaseService<WorkstationWcs> {
    //List<WorkstationWcsVO> insert(List<WorkstationWcsSaveVO> workstationWcsSaveVOList);
 
    Boolean deleteByWorkstationIdList(List<Long> ids);
 
    List<WorkstationWcsVO> listWorkstationWcsByWorkstationId(Long workstationId);
 
    Boolean delete(List<Long> workstationWcsIdList);
 
    void clearWorkstationParamTypeCacheByWorkstationId(List<Long> workstationIdList);
 
    List<WorkstationWcsVO> insertNew(List<WorkstationWcsSaveNewVO> workstationWcsSaveNewVOList, List<Long> workstationIdList);
 
    String isExists(List<WorkstationWcsSaveNewVO> workstationWcsSaveNewVOList, List<Long> workstationIdList);
 
    WorkstationWcsVO updateSetting(WorkstationWcsSaveVO workstationWcsSaveVO);
 
    List<WorkstationWcsVO> listWcsSetting();
 
    List<WorkstationWcsVO> saveSetting(List<WorkstationWcsSaveVO> workstationWcsSaveVOList);
}