package com.ruoyi.inventory.mapper; import com.ruoyi.inventory.pojo.StockOut; import java.util.List; /** * @author 86151 * @description 针对表【stock_out】的数据库操作Mapper * @createDate 2025-06-23 18:11:59 * @Entity inventory.domain.StockOut */ public interface StockOutMapper { int deleteByPrimaryKey(Long id); List selectAll(); int insertSelective(StockOut record); StockOut selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(StockOut record); }