| | |
| | | package com.mes.rawglassstation.service; |
| | | |
| | | import com.mes.rawglassdetails.entity.RawGlassStorageDetails; |
| | | import com.mes.rawglassstation.entity.RawGlassStorageStation; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.mes.rawglassstation.entity.RawGlassStorageStation; |
| | | import com.mes.rawglasstask.entity.RawGlassStorageTask; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 服务类 |
| | | * </p> |
| | | * |
| | | * @author wf |
| | | * @since 2024-09-10 |
| | | * @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); |
| | | } |
| | | } |