| | |
| | | import com.ruoyi.stock.dto.StockOutRecordDto; |
| | | import com.ruoyi.stock.pojo.StockOutRecord; |
| | | |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | public interface StockOutRecordService extends IService<StockOutRecord> { |
| | | IPage<StockOutRecordDto> listPage(Page page, StockOutRecordDto stockOutRecordDto); |
| | | |
| | | int add(StockOutRecordDto stockOutRecordDto); |
| | | Long add(StockOutRecordDto stockOutRecordDto); |
| | | |
| | | int update(Long id, StockOutRecordDto stockOutRecordDto); |
| | | |
| | | int batchDelete(List<Long> ids); |
| | | |
| | | int batchDeletePending(List<Long> ids); |
| | | |
| | | void exportStockOutRecord(HttpServletResponse response, StockOutRecordDto stockOutRecordDto); |
| | | |
| | | int batchApprove(List<Long> ids, Integer approvalStatus); |
| | | } |