Liu Cheng
2022-11-21 8c8f69c3b5bf76f23e6f5399bf0a0c4138a75a63
1
2
3
4
trigger RentalApplyEquipmentSetCheck on Rental_Apply_Equipment_Set__c(before insert, before update, after insert, after update, after delete) {
    RentalApplyEquipmentSetCheckHandler handler = new RentalApplyEquipmentSetCheckHandler();
    handler.run();
}