公告板
版本库
filestore
活动
搜索
登录
main
/
lightningupdate
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
button-lexInventoryHeaderClearStatus
unknown
2023-07-20
aea45b2f80323d35d4373b2f717aed8964918de3
[lightningupdate.git]
/
force-app
/
main
/
default
/
classes
/
LexTransferApplyController.cls
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;
}
}