yaowanxin
2 天以前 d3d6287a3222b9c85a56e4c55c35350c4233c7db
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.inventory.service;
 
import java.util.List;
import inventory.domain.StockOut;
 
public interface StockOutService {
    List<StockOut> getStockOuts();
    StockOut getStockOutById(Long id);
    int addStockOut(StockOut stockOut);
    int updateStockOut(StockOut stockOut);
    int deleteStockOut(Long id);
}