StockMapper.java
StockService.java
StockController.java
StockMapper.xml
This commit is contained in:
sungsu
2024-01-22 11:02:49 +09:00
parent ba94f72e5e
commit e2f8967403
4 changed files with 74 additions and 40 deletions

View File

@@ -1,5 +1,6 @@
package com.no1.wms.stock;
import com.no1.wms.in.InDto;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@@ -43,6 +44,12 @@ public interface StockMapper {
int warehouseCount(Map<String, Object> m);//검색 글 갯수
int checkIfExistsStock(StockDto dto);
int updateStockProcess(StockDto dto);
int createStockProcess(StockDto dto);
}