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