| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | |
| | | @RequestMapping(value = "/mgtShopHFTXAuth", method = RequestMethod.POST) |
| | | @Log(title = "商户进件管理", businessType = BusinessType.UPDATE,operContent = "商户进件") |
| | | @ApiOperation(value = "平台商户进件") |
| | | public R mgtShopHFTXAuth(@Validated @RequestBody MgtShopHFTXAuthDto mgtShopAuthDto) { |
| | | Long userId = SecurityUtils.getUserId(); |
| | | mgtShopAuthDto.setUserId(userId); |
| | | shopService.mgtShopHFTXAuth(mgtShopAuthDto); |
| | | return R.ok(); |
| | | } |
| | | |
| | | |
| | | |
| | | @RequestMapping(value = "/getMgtShopAuth", method = RequestMethod.POST) |
| | | @ApiOperation(value = "获取商户进件信息") |
| | | public R<MgtShopAuthGetVo> getMgtShopAuth(@RequestBody MgtShopAuthGetDto mgtShopAuthGetDto) { |
| | |
| | | shopService.addProfitSharingReceiver(mgtShopAuthGetDto); |
| | | return R.ok(); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | } |