更改成为https

This commit is contained in:
lyf
2023-02-14 15:21:35 +08:00
parent ca958158db
commit adb2b2364c
5 changed files with 14 additions and 3 deletions

View File

@@ -93,6 +93,7 @@ public class UserInfoController {
@ApiImplicitParams({
@ApiImplicitParam(name = "UserInfo", value = "待添加的UserInfo实例", paramType = "body", dataType = "UserInfo", required = true)})
public Result<Object> add(@RequestBody UserInfo userInfo) {
userInfo.getPassword();
userInfoNewService.register(userInfo);
return ResultGenerator.genSuccessResult();
}