|
@@ -100,9 +100,9 @@ public class VersionServiceImpl extends ServiceImpl<VersionMapper, Version>
|
|
.eq(Version::getIsDeleted, 0)
|
|
.eq(Version::getIsDeleted, 0)
|
|
.orderByDesc(Version::getId)
|
|
.orderByDesc(Version::getId)
|
|
.last("limit 1")))
|
|
.last("limit 1")))
|
|
- .orElseThrow(() -> new ServiceException("没有找到执法监督App"));
|
|
|
|
|
|
+ .orElseThrow(() -> new ServiceException("没有找到最新的执法监督App"));
|
|
;
|
|
;
|
|
- return appVersion.getApkUrl();
|
|
|
|
|
|
+ return fileHttpUrl + appVersion.getApkUrl();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|