业务配置增加勾选导出

This commit is contained in:
leijun
2018-12-17 03:30:34 +08:00
parent bb2c6b8201
commit 94eb5991af
39 changed files with 738 additions and 440 deletions

View File

@@ -60,6 +60,14 @@ public class AppMultiFeatureCfgService extends BaseService {
page.setList(list);
return page;
}
//分页查询
public List<AppFeatureIndex> findAppByFeatureIndexList(String ids) {
List<AppFeatureIndex> list = appMultiFeatureCfgDao.findAppByFeatureIndexList(ids);
return list;
}
public AppFeatureIndex getAppFeatureIndex(Long cfgId) {
return appMultiFeatureCfgDao.getAppFeatureIndex(cfgId);
}