KKbes
2023-07-19 928599f123fc94198808ca1a4114c1393474bc30
force-app/main/default/classes/AssetWebService.cls
@@ -1,7 +1,21 @@
/**
 * @description       :
 * @author            : ChangeMeIn@UserSettingsUnder.SFDoc
 * @group             :
 * @last modified on  : 07-19-2023
 * @last modified by  : ChangeMeIn@UserSettingsUnder.SFDoc
**/
global without sharing class AssetWebService {
    private static Set<String> assStatus = new Set<String>{'不明','废弃','未使用', '廃棄'};
    @AuraEnabled
    public static string methodName(){
        try {
        } catch (Exception e) {
            throw new AuraHandledException(e.getMessage());
        }
    }
    WebService static String createLostReport(String assetId) {
        return createLostReportCheck(assetId, true);
    }