liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**********************************************************************
 * 
 *
 * @url: /services/apexrest/rest
 * @data:
 *  {
        
    }
*************************************************************************/
 
global with sharing class FinLibraryButtonController2 {
   
   @AuraEnabled
   public static Bulletin_Board__c getBulletinBoard(String recordId){
    Bulletin_Board__c  res=new Bulletin_Board__c();
    try{
        res=[select iPad_Finlibrary_2__c from Bulletin_Board__c where Id=: recordId];
    }
    catch(Exception e){
        System.debug(Logginglevel.info,'*******e'+e);
    }
    return res;
   }
}