配置列表增加action查询条件.

This commit is contained in:
zhangwenqing
2018-09-12 18:11:05 +08:00
parent 76e692f72d
commit ab7eea2b89
42 changed files with 380 additions and 38 deletions

View File

@@ -34,7 +34,7 @@ public class DdosCfgController extends BaseController {
public String list(Model model,HttpServletRequest request,HttpServletResponse response,@ModelAttribute("cfg")DdosIpCfg entity){
Page<DdosIpCfg> page = ddosCfgService.findPage(new Page<DdosIpCfg>(request, response,"r"), entity);
model.addAttribute("page", page);
initPageCondition(model);
initPageCondition(model,entity);
return "/cfg/ddosIpCfgList";
}
@RequestMapping(value = {"/form"})