public with sharing class LexAssetUsefulController { @AuraEnabled public static Account init(String recordId){ Account res = new Account(); try { res = [SELECT Id,Hospital__c,Department_Class__c FROM Account WHERE Id = : recordId]; return res; } catch (Exception e) { return null; } } }