123
chenjingwu
2024-04-23 05172a0b508283c3d1a1c4ff298443c87e7715fe
1
2
3
4
5
6
trigger ConsumApplyEquipmentSetDetailTrigger on Consum_Apply_Equipment_Set_Detail__c (before insert, before update, after insert, after update, before delete, after delete) {
    if(Test.isRunningTest()||UserInfo.getUserId()!=System.Label.ByPassTrigger){
        ConsumApplyEquipmentSetDetailHandler handler = new ConsumApplyEquipmentSetDetailHandler();
        handler.run();
    }
}