ZengTao
2024-09-24 7c7c8b1fb4dd63bbc25130b32d507aee5c130d90
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);
}