zhangqian
2023-06-12 acbc8a4e207f6a914feb202c2879a4fa330ce57d
1
2
3
4
trigger AccountDelayApplyTrigger on Account_Delay_Apply__c (before insert, after insert, before update,after update) {
    AccountDelayApplyHandler handler = new AccountDelayApplyHandler();
    handler.run();
}