zj
2025-04-16 29cf7e39947e2bf5ccef57542041c65f0083aea5
src/main/java/com/nq/controller/protol/UserBankController.java
@@ -11,6 +11,7 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
@@ -27,6 +28,12 @@
        return this.iUserBankService.addBank(bank, request);
    }
    @RequestMapping({"delete.do"})
    @ResponseBody
    public ServerResponse delete(@RequestParam("id") String id, HttpServletRequest request) {
        return this.iUserBankService.delete(id, request);
    }
    //修改银行卡信息
    @RequestMapping({"update.do"})
    @ResponseBody