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