| | |
| | | /**
|
| | | * 查询帮助列表
|
| | | * @param callback
|
| | | * @param pageIndex
|
| | | * @param pageSize
|
| | | * @param key
|
| | | * @param out
|
| | |
| | | // 版本过滤
|
| | | int version = Integer.parseInt(acceptData.getVersion());
|
| | | String platform = acceptData.getPlatform().toLowerCase();
|
| | | List<AppVersionInfo> versionList = appVersionService.listByPlatformAndMinVersionCode(platform, version);
|
| | | List<AppVersionInfo> versionList = appVersionService.listByPlatformAndMinVersionCode(platform, version,acceptData.getSystem());
|
| | | if (versionList == null || versionList.size() <= 0) {
|
| | | list.clear();
|
| | | } else {
|
| | |
| | | // 版本过滤
|
| | | int version = Integer.parseInt(acceptData.getVersion());
|
| | | String platform = acceptData.getPlatform().toLowerCase();
|
| | | List<AppVersionInfo> versionList = appVersionService.listByPlatformAndMinVersionCode(platform, version);
|
| | | List<AppVersionInfo> versionList = appVersionService.listByPlatformAndMinVersionCode(platform, version,acceptData.getSystem());
|
| | | if (versionList == null || versionList.size() <= 0) {
|
| | | resultList.clear();
|
| | | } else {
|