| | |
| | | return resultutil.returnSuccess(cz.getTotal(), cz.getList()); |
| | | } |
| | | |
| | | @GetMapping({"FindChongzhiZi"}) |
| | | @PostMapping({"FindChongzhiZi"}) |
| | | public result<List<Chongzhi>> FindChongzhiZi(String Zong, Integer page, Integer limit) throws Exception { |
| | | PageInfo<Chongzhi> cz = this.chongZhiService.FindChongzhiZi(DESUtil.decrypt(Zong, DESUtil.key), page, limit); |
| | | System.out.println(Zong); |
| | | PageInfo<Chongzhi> cz = this.chongZhiService.FindChongzhiZi(Zong, page, limit); |
| | | return resultutil.returnSuccess(cz.getTotal(), cz.getList()); |
| | | } |
| | | |