liuyan
2022-11-30 6b05e5c975c7e33b09e6073f1ec8419e1f9b065b
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();
}