yangjieke
2022-03-22 08757a34e87bde82f3d1e3065f40d4204cd9f103
1
2
3
4
trigger SetContractEstimatePrice on Maintenance_Contract_Asset__c (before insert, before update) {
    SetContractEstimatePriceHandler handler = new SetContractEstimatePriceHandler();
    handler.run();
}