package inventory.mapper; import inventory.domain.StockIn; /** * @author 86151 * @description 针对表【stock_in】的数据库操作Mapper * @createDate 2025-06-23 18:11:59 * @Entity inventory.domain.StockIn */ public interface StockInMapper { int deleteByPrimaryKey(Long id); int insert(StockIn record); int insertSelective(StockIn record); StockIn selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(StockIn record); int updateByPrimaryKey(StockIn record); }