unknown
2023-07-20 aea45b2f80323d35d4373b2f717aed8964918de3
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;
    }
}