This commit is contained in:
hjc
2019-12-15 21:29:17 +08:00
parent 1e9b48b79f
commit 12b0f4eab7
6 changed files with 21 additions and 11 deletions
+11
View File
@@ -4,6 +4,17 @@
<facet type="Spring" name="Spring">
<configuration />
</facet>
<facet type="web" name="Web">
<configuration>
<webroots>
<root url="file://$MODULE_DIR$/src/main/webapp" relative="/" />
</webroots>
<sourceRoots>
<root url="file://$MODULE_DIR$/src/main/java" />
<root url="file://$MODULE_DIR$/src/main/resources" />
</sourceRoots>
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
<output url="file://$MODULE_DIR$/target/classes" />
@@ -81,7 +81,7 @@ public class ApiLoginController {
return new ResultVo(ApiConst.API_SYS_ERR_CODE, ApiConst.API_SYS_ERR_MSG);
}else {
// user.setPassword(newPassword);
apiUserService.save(user);
// apiUserService.save(user);
return new ResultVo(ApiConst.API_OPT_SUCCESS_CODE, ApiConst.API_OPT_SUCCESS_MSG);
}
}