stock.list.jsp
StockMapper.xml

#추가
stock.create.jsp
WarehouseController.java
WarehouseDto.java
WarehouseMapper.java
WarehouseMapper.xml
WarehouseService.java
This commit is contained in:
sungsu
2024-01-08 18:46:09 +09:00
parent 2706c902c1
commit b6e967975b
8 changed files with 416 additions and 100 deletions

View File

@@ -0,0 +1,26 @@
package com.no1.wms.warehouse;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
import java.util.Map;
@Mapper
public interface WarehouseMapper {
int count(Map<String, Object> m);//검색 글 갯수
List<Object> list(Map<String, Object> m);
int updateWarehouse(WarehouseDto dto);
int createWarehouse(WarehouseDto dto);
WarehouseDto warehouseOne(String id);
int deleteWarehouse(String id);
}