Commit a4f28457 authored by killer's avatar killer

增加接口描述

parent 450720e6
......@@ -1046,7 +1046,7 @@ public class InnerController implements IBaseController {
return contactRets;
}
@ApiOperation(value = "通过手机号查询openId", httpMethod = "POST", notes="通过手机号查询openId")
@ApiOperation(value = "通过手机号查询微信用户openId", httpMethod = "POST", notes="通过手机号查询微信用户openId")
@RequestMapping("/user/wechat/phone_no")
public JsonResult queryOpenIdByPhoneNo(String phoneNo) {
if (StringUtils.isBlank(phoneNo)) {
......@@ -1129,7 +1129,7 @@ public class InnerController implements IBaseController {
}
@RequestMapping("/user/findByPhones")
@ApiOperation(value = "根据手机号查询用户信息", httpMethod = "POST")
@ApiOperation(value = "根据手机号批量查询用户id", httpMethod = "POST")
public JsonResult getUserIdByPhones(@RequestParam("userPhones") String userPhones) {
if (StringUtils.isBlank(userPhones)) {
return JsonResult.buildErrorStateResult("传入用户手机号不可为空", null);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment