zhangzhengmei
2023-05-09 04714f21506cf0d4577c88643bcc1764043887de
1
2
3
4
trigger SetContractEstimatePrice on Maintenance_Contract_Asset__c (before insert, before update) {
    SetContractEstimatePriceHandler handler = new SetContractEstimatePriceHandler();
    handler.run();
}