zhangzhengmei
2023-04-27 91e1db24bb4aa2d91dc8218d7694fab3dee20388
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();
}