fei.wang
2025-04-18 321a74059773cfecc01d6313f7c2e2d45545d6d3
src/main/java/com/hxzkappboot/controller/TbUpappController.java
@@ -21,10 +21,10 @@
    TbUpappService tbUpappService;
    @GetMapping({"/api/wx/findTbUpapp"})
    public R findTbUpapp() throws ParseException {
    public R findTbUpapp(String name) throws ParseException {
        R response ;
        TbUpapp appList = new TbUpapp();
        appList = tbUpappService.findTbUpapp();
        appList = tbUpappService.findTbUpapp(name);
        response = new R(StatusCode.Success);
        response.setData(appList);
        return response;