1
2
3
4
5
6
7
8
9
10
11
12
13
| global with sharing class FinLibraryButtonController3 {
| @AuraEnabled
| public static Bulletin_Board__c getBulletinBoard(String recordId){
| Bulletin_Board__c res=new Bulletin_Board__c();
| try{
| res=[select iPad_Finlibrary_3__c from Bulletin_Board__c where Id= : recordId];
| }
| catch(Exception e){
| System.debug(Logginglevel.info,'*******e'+e);
| }
| return res;
| }
| }
|
|