Tracking changes applied to app

This commit is contained in:
17hao
2021-02-07 15:16:26 +08:00
parent 832320abc6
commit c1afc07955
3 changed files with 18 additions and 5 deletions

View File

@@ -87,6 +87,6 @@ public class ApplyAppOrder extends AbstractAppOrder {
appDO.setDescription(orderDO.getDescription());
appDO.generateAppIdAndPassword(orderDO.getId(), configUtils.getIdc());
appDO.setType(0);
return appService.addApp(appDO);
return appService.addApp(appDO, userName);
}
}