从源更新

This commit is contained in:
qiankunpingtai
2019-06-06 18:13:41 +08:00
40 changed files with 106 additions and 153 deletions

View File

@@ -19,8 +19,8 @@ public class AppComponent implements ICommonQuery {
private AppService appService;
@Override
public Object selectOne(String condition)throws Exception {
return null;
public Object selectOne(Long id) throws Exception {
return appService.getApp(id);
}
@Override