123
chenjingwu
2024-04-23 a49f1b841780060e24f0cb5a0f56a017e446d0da
1
2
3
4
trigger ProductScoreTableHistoryTrigger on Product_Score_Table_History__c(before insert, before update) {
    ProductScoreTableHistoryHandler handler = new ProductScoreTableHistoryHandler();
    handler.run();
}