public with sharing class LexGuaranteeStatuAchievements { @AuraEnabled public static Statu_Achievements__c init(String recordId){ Statu_Achievements__c res = new Statu_Achievements__c(); try{ res = [SELECT InstallDate__c FROM Statu_Achievements__c WHERE Id=:recordId]; return res; } catch(Exception e){ return res; } } }