mirror of
https://github.com/suhf/No1WMS.git
synced 2026-02-05 04:03:45 +09:00
입고예정 System.out.println(); 주석처리
This commit is contained in:
@@ -76,9 +76,9 @@ public class PlanInController {
|
|||||||
@PostMapping("/read")
|
@PostMapping("/read")
|
||||||
public ModelAndView read(ModelAndView mav, PlanInDto dto){
|
public ModelAndView read(ModelAndView mav, PlanInDto dto){
|
||||||
|
|
||||||
System.out.println(dto);
|
// System.out.println(dto);
|
||||||
List<PlanInDto> list = planinservice.selectById(dto);
|
List<PlanInDto> list = planinservice.selectById(dto);
|
||||||
System.out.println(list.get(0).toString());
|
// System.out.println(list.get(0).toString());
|
||||||
mav.addObject("list", list);
|
mav.addObject("list", list);
|
||||||
mav.addObject("groupNum", dto.getGroupNumber());
|
mav.addObject("groupNum", dto.getGroupNumber());
|
||||||
mav.setViewName("planin/read");
|
mav.setViewName("planin/read");
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ public class PlanInService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int count(int searchn, String search, int start, int perPage){
|
int count(int searchn, String search, int start, int perPage){
|
||||||
System.out.printf("searchn : %d, search : %s, start : %d, perpage : %d", searchn, search, start, perPage);
|
// System.out.printf("searchn : %d, search : %s, start : %d, perpage : %d", searchn, search, start, perPage);
|
||||||
HashMap<String, Object> m = new HashMap<>();
|
HashMap<String, Object> m = new HashMap<>();
|
||||||
m.put("searchn", searchn);
|
m.put("searchn", searchn);
|
||||||
m.put("search", search);
|
m.put("search", search);
|
||||||
|
|||||||
Reference in New Issue
Block a user