rk
13 小时以前 33caf2bb79bb3c561916c91ae386ec772411e2e8
server/web/src/main/java/com/doumee/api/web/AccountApi.java
@@ -65,9 +65,14 @@
    }
    @LoginRequired
    @ApiOperation(value = "门店账号密码登录", notes = "小程序端,门店用户通过手机号+密码登录")
    @PostMapping("/shopLogin")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true),
    })
    public ApiResponse<ShopLoginVO> shopLogin(@RequestBody @Validated ShopLoginDTO dto) {
        dto.setMemberId(getMemberId());
        return ApiResponse.success("操作成功", shopInfoService.shopPasswordLogin(dto));
    }