huang
2025-06-13 9c18324b8c3209946429ac60306ddc3c9cdaf1e9
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
package com.mes.rawglassstation.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.rawglassdetails.entity.RawGlassStorageDetails;
import com.mes.rawglassstation.entity.RawGlassStorageStation;
 
import java.util.List;
 
/**
 * @author system
 * @since 2024-07-09 14:51:27
 */
public interface RawGlassStorageStationService extends IService<RawGlassStorageStation> {
    List<RawGlassStorageStation> selectStations();
 
    boolean updateRawGlassStorageStation(String slot);
 
    boolean deleteRawGlassStorageStation(String device_id);
 
    boolean insertRawGlassStorageStation(RawGlassStorageStation rw);
 
    /**
     * 获取工位及对应的原片信息
     *
     * @return
     */
    List<RawGlassStorageDetails> listRawGlassDetails();
 
    boolean updateSlotState(Integer slot, Integer enableState);
}