| | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 服务实现类 |
| | | * 服务实现类 |
| | | * </p> |
| | | * |
| | | * @author zhoush |
| | |
| | | */ |
| | | @Service |
| | | public class BigStorageCageDetailsServiceImpl extends ServiceImpl<BigStorageCageDetailsMapper, BigStorageCageDetails> implements BigStorageCageDetailsService { |
| | | @Autowired |
| | | @Resource |
| | | private BigStorageCageMapper bigStorageCageMapper; |
| | | |
| | | @Override |
| | | public boolean getTemperingGlass(){ |
| | | public boolean getTemperingGlass() { |
| | | //获取笼子内所有版图号 |
| | | List<String> temperingIdList=bigStorageCageMapper.selectTemperingId(); |
| | | for (String temperingId:temperingIdList |
| | | ) { |
| | | List<String> temperingIdList = bigStorageCageMapper.selectTemperingId(); |
| | | for (String temperingId : temperingIdList |
| | | ) { |
| | | |
| | | } |
| | | return true; |
| | | } |
| | | @Override |
| | | public List<Integer> getCarposition(){ |
| | | return null; |
| | | } |
| | | } |