| | |
| | | }
|
| | |
|
| | | /**
|
| | | * 验证账户是否存在
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value="验证账户是否存在", notes="验证账户是否存在")
|
| | | @ApiImplicitParams({
|
| | | @ApiImplicitParam(name = "account", value = "账号", required = true, dataType = "String", paramType="query"),
|
| | | @ApiImplicitParam(name = "type", value = "类型 1:手机号 2:邮箱", required = true, dataType = "int", paramType="query")
|
| | | })
|
| | | @GetMapping(value = "/getMemberAccountInfo")
|
| | | public Result getMemberAccountInfo(String account,int type) {
|
| | | return memberService.getMemberAccountInfo(account,type);
|
| | | }
|
| | | |
| | | /**
|
| | | * 修改密码
|
| | | * @return
|
| | | */
|