warehouse/list.jsp
warehouse/read.jsp
StockDto.java
WarehouseController.java
WarehouseDto.java
WarehouseMapper.java
WarehouseMapper.xml
WarehouseService.java

#insert
warehouse/update.jsp
This commit is contained in:
sungsu
2024-01-11 00:16:39 +09:00
parent 18098d6e8a
commit 9a761e7728
9 changed files with 503 additions and 93 deletions

View File

@@ -8,19 +8,22 @@ import java.util.Map;
@Mapper
public interface WarehouseMapper {
int count(Map<String, Object> m);//검색 글 갯수
List<WarehouseDto> list(Map<String, Object> m);
int count(Map<String, Object> m);//검색 글 갯수
List<Map<String, Object>> warehouseOne(Map<String, Object> m);
int warehouseOneCount(Map<String, Object> m);//검색 글 갯수
WarehouseDto One(String id);
int updateWarehouse(WarehouseDto dto);
int createWarehouse(WarehouseDto dto);
WarehouseDto warehouseOne(String id);
int deleteWarehouse(String id);
}