@@ -105,6 +105,10 @@ public class UpdateAppServiceImpl implements IUpdateAppService
@Override
public UpdateApp getInfoNew(UpdateApp updateApp) {
updateApp.setIsDel("Y");
- return updateAppMapper.getInfo(updateApp);
+ UpdateApp app = updateAppMapper.getInfo(updateApp);
+ if(app == null){
+ app = new UpdateApp();
+ }
+ return app;
}