| | |
| | | package com.ruoyi.inventory.mapper; |
| | | |
| | | import inventory.domain.StockOut; |
| | | |
| | | 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.StockoutDto; |
| | | import com.ruoyi.inventory.excel.StockOutExcelDto; |
| | | import com.ruoyi.inventory.pojo.StockOut; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @createDate 2025-06-23 18:11:59 |
| | | * @Entity inventory.domain.StockOut |
| | | */ |
| | | public interface StockOutMapper { |
| | | @Mapper |
| | | public interface StockOutMapper extends BaseMapper<StockOut> { |
| | | |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | List<StockOut> selectAll(); |
| | | int insertSelective(StockOut record); |
| | | |
| | | StockOut selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(StockOut record); |
| | | IPage<StockoutDto> selectStockOutBypage(Page page,@Param("stockOutdto") StockoutDto stockOutdto); |
| | | List<StockOutExcelDto> stockoutExportList(@Param("stockOutdto") StockoutDto stockOutdto); |
| | | |
| | | |
| | | } |