| | |
| | | package com.ruoyi.inventory.mapper; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.basic.dto.SupplierManageDto; |
| | | import com.ruoyi.basic.excel.SupplierManageExcelDto; |
| | | import com.ruoyi.inventory.dto.StockManagementDto; |
| | | import com.ruoyi.inventory.dto.StockinDto; |
| | | import com.ruoyi.inventory.excel.StockManagementExcelDto; |
| | | import com.ruoyi.inventory.pojo.StockManagement; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @createDate 2025-06-23 18:11:59 |
| | | * @Entity inventory.domain.StockManagement |
| | | */ |
| | | public interface StockManagementMapper { |
| | | List<StockManagement> selectAll(); |
| | | int deleteByPrimaryKey(Long id); |
| | | @Mapper |
| | | public interface StockManagementMapper extends BaseMapper<StockManagement> { |
| | | |
| | | int insertSelective(StockManagement record); |
| | | |
| | | StockManagement selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(StockManagement record); |
| | | |
| | | IPage<StockManagement> selectStockManagementBypage(Page page, @Param("stockManagementDto") StockManagementDto stockManagementDto); |
| | | List<StockManagementExcelDto> stockManageExportList(@Param("stockManagementDto") StockManagementDto stockManagementDto); |
| | | |
| | | } |