stock/create.jsp
stock/list.jsp
WarehouseController.java
WarehouseMapper.xml
WarehouseService.java

#insert
warehouse/create.jsp
warehouse/list.jsp
This commit is contained in:
sungsu
2024-01-09 00:47:19 +09:00
parent 1065d132f7
commit 1fb6fbefe2
7 changed files with 278 additions and 25 deletions

View File

@@ -14,13 +14,10 @@ public class WarehouseService {
public int count(int searchn, String search) {
System.out.println(searchn+search);
Map<String,Object> m = new HashMap<String, Object>();
m.put("searchn",searchn);
m.put("search", search);
m.put("start", 0);
m.put("perPage", 10000);
return mapper.count(m);
}