KKbes
2023-04-13 1dd272cd051805c09ac053d9d291f84e2b400166
Ipad下载 揭示板对象
2个文件已添加
29 ■■■■■ 已修改文件
force-app/main/default/classes/FinLibraryButtonController.cls 24 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/classes/FinLibraryButtonController.cls-meta.xml 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/classes/FinLibraryButtonController.cls
New file
@@ -0,0 +1,24 @@
/**********************************************************************
 *
 *
 * @url: /services/apexrest/rest
 * @data:
 *  {
    }
*************************************************************************/
global with sharing class FinLibraryButtonController {
   @AuraEnabled
   public static Bulletin_Board__c  getBulletinBoard(String recordId){
    Bulletin_Board__c res=new Bulletin_Board__c();
    try {
            res=[select iPad_Finlibrary__c from Bulletin_Board__c where Id=: recordId];
    }
    catch (Exception e) {
        System.debug(Logginglevel.info,'*******e'+e);
    }
    return res;
   }
}
force-app/main/default/classes/FinLibraryButtonController.cls-meta.xml
New file
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
    <apiVersion>51.0</apiVersion>
    <status>Active</status>
</ApexClass>