| | |
| | | public AjaxResult listAll(ZfContact zfContact){ |
| | | Integer pageNum = Convert.toInt(ServletUtils.getParameter(PAGE_NUM), 1); |
| | | Integer pageSize = Convert.toInt(ServletUtils.getParameter(PAGE_SIZE), 10); |
| | | return zfContactService.selectContactList(zfContact, pageNum, pageSize); |
| | | return zfContactService.selectDataList(zfContact, pageNum, pageSize); |
| | | } |
| | | |
| | | |
| | |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody ZfContact zfContact) |
| | | { |
| | | return toAjax(zfContactService.save(zfContact)); |
| | | return (zfContactService.addData2(zfContact)); |
| | | } |
| | | |
| | | /** |