李彤
2023-05-15 19ae52ae3e06c44c646ae6b45dc2b0d7f2cead88
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();
}