zhangchunxu
2023-08-05 02bf7838fb54a246f876d0a1700d7dcce161e2b1
1
2
3
4
trigger ProductScoreTableHistoryTrigger on Product_Score_Table_History__c(before insert, before update) {
    ProductScoreTableHistoryHandler handler = new ProductScoreTableHistoryHandler();
    handler.run();
}