@Log(context = "资源管理", object = "App管理", action = 4, detail = "删除App") public void deleteApp(String ids) { String[] idArray = ids.split(","); for (String id : idArray) { if (StringUtilsCustom.isNotBlank(id)) { App item = appDao.findOne(Long.valueOf(id)); appDao.delete(item); } } }
@Log(context = "资源管理", object = "App管理", action = 2, detail = "查询指定App") public App getApp(Long id) { return appDao.findOne(id); }