zhangqian
2023-07-21 576da1e5d721a3f7f2d5a4aa7cdea6f943c29ba7
1
2
3
4
5
6
7
8
public with sharing class LexInventoryHeaderController {
    
    @AuraEnabled
    public static LostReport__c init(String recordId){
        LostReport__c lp = [SELECT Id, Asset__c from LostReport__c WHERE Id = :recordId];
        return lp;
    }
}