package com.steerinfo.dil.service.impl; import com.steerinfo.dil.mapper.WmspIntransitInventoryMapper; import com.steerinfo.dil.model.WmspIntransitInventory; import com.steerinfo.dil.service.IWmspIntransitInventoryService; import com.steerinfo.framework.mapper.IBaseMapper; import com.steerinfo.framework.service.impl.BaseServiceImpl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.math.BigDecimal; import java.util.List; import java.util.Map; /** * WmspIntransitInventory服务实现: * @author generator * @version 1.0-SNAPSHORT 2021-10-11 01:08 * 类描述 * 修订历史: * 日期:2021-10-11 * 作者:generator * 参考: * 描述:WmspIntransitInventory服务实现 * @see null * @Copyright 湖南视拓信息技术股份有限公司. All rights reserved. */ @Service public class WmspIntransitInventoryServiceImpl implements IWmspIntransitInventoryService { @Autowired private WmspIntransitInventoryMapper wmspIntransitInventoryMapper; @Override public List> selectTransitInventory(Map map) { return wmspIntransitInventoryMapper.selectTransitInventory(map); } }