package org.jeecg.modules.lsw.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.jeecg.modules.lsw.entity.LswMaterialInventory; import org.jeecg.modules.lsw.mapper.LswMaterialInventoryMapper; import org.jeecg.modules.lsw.service.ILswMaterialInventoryService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * @Description: 物料库存信息 * @Author: jeecg-boot * @Date: 2025-06-30 * @Version: V1.0 */ @Service public class LswMaterialInventoryServiceImpl extends ServiceImpl implements ILswMaterialInventoryService { @Autowired private LswMaterialInventoryMapper lswMaterialInventoryMapper; @Override public List selectByMainId(String mainId) { return lswMaterialInventoryMapper.selectByMainId(mainId); } }