LiJinHuan
2023-07-06 6d661208bf0eb229d1e520252f64e0d0765dff6f
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();
}