zhangzhengmei
2023-08-07 5f8c97f8716088019ad9a0302c5dea461bc668b1
1
2
3
4
trigger SetContractEstimatePrice on Maintenance_Contract_Asset__c (before insert, before update) {
    SetContractEstimatePriceHandler handler = new SetContractEstimatePriceHandler();
    handler.run();
}