| New file |
| | |
| | | package com.mes.hollow.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.mes.hollow.entity.HollowBigStorageCageDetails; |
| | | import com.mes.hollow.entity.dto.BigStorageSequenceDTO; |
| | | import com.mes.hollow.entity.dto.FlowCardGlassInfoDTO; |
| | | import com.mes.hollow.entity.dto.FlowCardVirtualSlotDTO; |
| | | import com.mes.hollow.entity.dto.UpdateHollowBigStorageCageDTO; |
| | | import com.mes.hollow.mapper.HollowBigStorageCageDetailsMapper; |
| | | import com.mes.hollow.service.HollowBigStorageCageDetailsService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * (HollowBigStorageCageDetails)表服务实现类 |
| | | * |
| | | * @author makejava |
| | | * @since 2024-11-21 09:23:12 |
| | | */ |
| | | @Service |
| | | @Slf4j |
| | | public class HollowBigStorageCageDetailsServiceImpl extends ServiceImpl<HollowBigStorageCageDetailsMapper, HollowBigStorageCageDetails> implements HollowBigStorageCageDetailsService { |
| | | |
| | | |
| | | @Override |
| | | public void updateBySlot(List<UpdateHollowBigStorageCageDTO> storageCageDTOList, Integer state) { |
| | | baseMapper.updateBySlot(storageCageDTOList, state); |
| | | } |
| | | |
| | | @Override |
| | | public List<FlowCardGlassInfoDTO> hollowIsAll(String flow_card_id, Integer totalLayer, Boolean flag) { |
| | | return baseMapper.hollowIsAll(flow_card_id, totalLayer, flag); |
| | | } |
| | | |
| | | @Override |
| | | public List<FlowCardVirtualSlotDTO> queryIsAllNeedDispatchVirtualSlot() { |
| | | return baseMapper.queryIsAllNeedDispatchVirtualSlot(); |
| | | } |
| | | |
| | | @Override |
| | | public List<BigStorageSequenceDTO> queryNeedDispatchSlot(FlowCardVirtualSlotDTO flowCardVirtualSlotDTO) { |
| | | return baseMapper.queryNeedDispatchSlot(flowCardVirtualSlotDTO); |
| | | } |
| | | |
| | | @Override |
| | | public List<HollowBigStorageCageDetails> queryOutGlassList(String flowCardId, int cell) { |
| | | return baseMapper.queryOutGlassList(flowCardId, cell); |
| | | } |
| | | } |
| | | |