fei.wang
7 天以前 e15f561a1f9eddfde503d59baf45a860b131928e
src/main/java/com/flow/controller/ChongZhiController.java
@@ -33,9 +33,10 @@
        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());
    }