| | |
| | | |
| | | import com.ruoyi.account.api.model.AppUserBank; |
| | | import com.ruoyi.common.core.web.domain.AjaxResult; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | * @author zhibing.pu |
| | | * @Date 2024/11/25 15:07 |
| | | */ |
| | | @Api(tags = {"个人中心-我的银行卡-小程序"}) |
| | | @RestController |
| | | @RequestMapping("/appUserBank") |
| | | public class AppUserBankController { |
| | |
| | | |
| | | @ResponseBody |
| | | @PostMapping("/saveAppUserBank") |
| | | @ApiOperation(value = "保存银行卡", tags = {"个人中心-我的银行卡-小程序"}) |
| | | @ApiOperation(value = "保存银行卡") |
| | | public AjaxResult saveAppUserBank(@RequestBody AppUserBank appUserBank){ |
| | | return AjaxResult.success(); |
| | | } |
| | |
| | | |
| | | @ResponseBody |
| | | @GetMapping("/getAppUserBank") |
| | | @ApiOperation(value = "获取银行卡信息", tags = {"个人中心-我的银行卡-小程序"}) |
| | | @ApiOperation(value = "获取银行卡信息") |
| | | public AjaxResult<AppUserBank> getAppUserBank(){ |
| | | return AjaxResult.success(); |
| | | } |