ZengTao
2024-09-20 34a5775085f5db40dfc80250e5185f5485eecfc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.mes.rawglassstation.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.rawglassstation.entity.RawGlassStorageStation;
import com.mes.rawglasstask.entity.RawGlassStorageTask;
 
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);
}