| | |
| | | import com.mes.rawglassstation.entity.RawGlassStorageStation; |
| | | import com.mes.rawglassstation.mapper.RawGlassStorageStationMapper; |
| | | import com.mes.rawglassstation.service.RawGlassStorageStationService; |
| | | import com.mes.rawglasstask.entity.RawGlassStorageTask; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | public boolean deleteRawGlassStorageStation(String device_id) { |
| | | QueryWrapper<RawGlassStorageStation> queryWrapper = new QueryWrapper<>(); |
| | | queryWrapper.eq("device_id", device_id); |
| | | return remove(queryWrapper); |
| | | return remove(queryWrapper); |
| | | } |
| | | |
| | | @Override |
| | |
| | | return this.save(rw); |
| | | } |
| | | |
| | | @Override |
| | | public List<RawGlassStorageTask> listRawGlassDetails() { |
| | | return baseMapper.listRawGlassDetails(); |
| | | } |
| | | |
| | | |
| | | } |