jack
2024-04-22 26581a43d52f6f6e62607c51b8224cdc50191a80
src/main/java/com/nq/controller/backend/AdminController.java
@@ -329,7 +329,7 @@
    @RequestMapping("getMoney.do")
    @ResponseBody
    public  ServerResponse updateayChnnel(
    public  ServerResponse getMoney(
            @RequestParam("userId") Integer id){
        return  iUserService.getMoney(id);
@@ -339,8 +339,12 @@
    @RequestMapping("updateMoney.do")
    @ResponseBody
    public  ServerResponse updateayChnnel(
            @RequestParam("id") Integer id, @RequestParam("amt") String amt){
        return  iUserAssetsServices.updateUserAssets(id,amt);
            @RequestParam("id") Integer id,
            @RequestParam("amt") String amt,
            @RequestParam("type") String type
    ){
        return  iUserAssetsServices.updateUserAssets(id,amt,type);
    }
}