|
@@ -69,7 +69,7 @@ public class UserInfoController extends BaseController{
|
|
|
/**
|
|
|
* 根据电话获取用户信息详细信息
|
|
|
*/
|
|
|
- @GetMapping(value = "mobles/{mobile}")
|
|
|
+ @GetMapping(value = "/mobles/{mobile}")
|
|
|
@ApiOperation("获取用户信息详细信息")
|
|
|
public Response<UserInfo> getInfo(
|
|
|
@ApiParam(name = "mobile", value = "用户电话", required = true)
|
|
@@ -108,7 +108,7 @@ public class UserInfoController extends BaseController{
|
|
|
@ApiOperation("上传身份证正反面,及人像图片")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "type",value = "idCardFront:身份证正面、idCardReverse:身份证反面、faces:人像" ,dataType = "String",required = true),
|
|
|
- @ApiImplicitParam(name = "multFile", value = "上传文件", required = true, dataType = "String")
|
|
|
+ // @ApiImplicitParam(name = "multFile", value = "上传文件", required = true, dataType = "MultipartFile")
|
|
|
})
|
|
|
public Response uploadIdCardAndHeadPicture(String type,MultipartFile multFile) throws IOException {
|
|
|
String savePath = AliyunConfig.gzpt_user + type + "/"
|