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