mirror of
https://github.com/suhf/No1WMS.git
synced 2026-02-04 19:54:00 +09:00
#update
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:
@@ -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);
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user