zhangqian
2023-06-02 9322dd73bd4a7085cc406dc6ff3908d9da35e02c
1
2
3
4
trigger SetContractEstimatePrice on Maintenance_Contract_Asset__c (before insert, before update) {
    SetContractEstimatePriceHandler handler = new SetContractEstimatePriceHandler();
    handler.run();
}