liding
3 天以前 d9a10bd4084b406c40fcbb94c816cffd6e68d031
src/main/java/com/ruoyi/stock/service/StockInRecordService.java
@@ -6,15 +6,21 @@
import com.ruoyi.stock.dto.StockInRecordDto;
import com.ruoyi.stock.pojo.StockInRecord;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
public interface StockInRecordService extends IService<StockInRecord> {
    IPage<StockInRecordDto> listPage(Page page, StockInRecordDto stockInRecordDto);
    int add(StockInRecordDto stockInRecordDto);
    Long add(StockInRecordDto stockInRecordDto);
    int update(Long id, StockInRecordDto stockInRecordDto);
    int batchDelete(List<Long> ids);
    void exportStockInRecord(HttpServletResponse response, StockInRecordDto stockInRecordDto);
    StockInRecordDto selectByRecord(Long id);
    int updateStockInRecord(StockInRecordDto stockInRecordDto);
}