1
2
3
4
5
6
7
8
9
10
11
12
13
| 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;
| }
| }
| }
|
|