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);
|
}
|