| | |
| | | private ShopCertificateService shopCertificateService; |
| | | |
| | | @RequestMapping(value = "/listMgtShopSimpleVo", method = RequestMethod.POST) |
| | | @ApiOperation(value = "分页获取商户列表") |
| | | @ApiOperation(value = "获取简易商户列表") |
| | | public R<List<MgtShopListSimpleVo>> listMgtShopSimpleVo(@RequestBody MgtShopListDto mgtShopListDto) { |
| | | List<MgtShopListSimpleVo> mgtShopListSimpleVoList = shopService.listMgtShopSimpleVo(mgtShopListDto); |
| | | return R.ok(mgtShopListSimpleVoList); |
| | |
| | | shopService.mgtShopAuth(mgtShopAuthDto); |
| | | return R.ok(); |
| | | } |
| | | |
| | | @RequestMapping(value = "/getMgtShopAuth", method = RequestMethod.POST) |
| | | @ApiOperation(value = "获取商户进件信息") |
| | | public R<MgtShopAuthGetVo> getMgtShopAuth(@RequestBody MgtShopAuthGetDto mgtShopAuthGetDto) { |
| | | MgtShopAuthGetVo shopAuthGetVo = shopService.getMgtShopAuth(mgtShopAuthGetDto.getAuthId()); |
| | | return R.ok(shopAuthGetVo); |
| | | } |
| | | } |