| | |
| | | |
| | | @RequestMapping("getMoney.do") |
| | | @ResponseBody |
| | | public ServerResponse updateayChnnel( |
| | | public ServerResponse getMoney( |
| | | @RequestParam("userId") Integer id){ |
| | | |
| | | return iUserService.getMoney(id); |
| | |
| | | @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); |
| | | } |
| | | |
| | | } |