1
chenjingwu
2024-05-24 aa5c1b41cf04cc95a24e474a1948084f6ba2658f
1
2
3
4
trigger SetContractEstimatePrice on Maintenance_Contract_Asset__c (before insert, before update) {
    SetContractEstimatePriceHandler handler = new SetContractEstimatePriceHandler();
    handler.run();
}