tiles * 일때 기능 없앰

This commit is contained in:
Suh
2024-01-11 10:46:09 +09:00
parent 6434cd8774
commit 6f2cd14220
11 changed files with 101 additions and 11 deletions

View File

@@ -1,4 +1,26 @@
package com.no1.wms.account;
import com.no1.wms.utils.ConstantValues;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView;
import java.util.List;
@Controller
public class AccountController {
@Autowired
AccountService accountService;
public ModelAndView list(ModelAndView mav, @RequestParam(defaultValue = "") String search, @RequestParam(defaultValue = "0") int start){
List<AccountDto> list = accountService.selectAll(search, start, ConstantValues.PER_PAGE);
mav.addObject("list", list);
mav.setViewName("account/list");
return mav;
}
}