1
2
3
4
5
6
7
8
9
10
11
public with sharing class LexTransferApplyController {
    public LexTransferApplyController() {
        
    }
 
    @AuraEnabled
    public static TransferApply__c transferApplySelectDetail(String recordId){
        TransferApply__c ta = [SELECT Id, TA_Status__c FROM TransferApply__c where Id = :recordId];
        return ta;
    }
}