Commit 793d3112 authored by 温志超's avatar 温志超

Merge remote-tracking branch 'origin/dev' into dev

parents 997acc3b a102052d
......@@ -109,6 +109,9 @@ public class AppConfigServiceImpl implements IAppConfigService {
@Override
public List<AppConfig> selectLastVersion(String appName) {
if(StringUtils.isBlank(appName)){
appName = "mesPad";
}
QueryWrapper<AppConfig> appConfigQueryWrapper = new QueryWrapper<>();
appConfigQueryWrapper.eq("last_version", 0);
appConfigQueryWrapper.eq(StringUtils.isNotNull(appName), "app_name", appName);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment