yangjieke
2022-03-22 3d655e80eec6c770dce06f3d9cf04fffe607f644
1
2
3
4
trigger RentalHpDeptUpd on Rental_Apply__c (before insert,after insert,before update) {
    RentalHpDeptUpdHandler handler = new RentalHpDeptUpdHandler();
    handler.run();
}