yangjieke
2022-04-01 a1b500c74db7ed741ab4bebbd42530fd30b89bf9
1
2
3
4
trigger SetContractEstimatePrice on Maintenance_Contract_Asset__c (before insert, before update) {
    SetContractEstimatePriceHandler handler = new SetContractEstimatePriceHandler();
    handler.run();
}