xuhy
2025-08-01 8e680f301f31c91391579213661be4af04810e8c
DriverZYTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/impl/OrderServiceImpl.java
@@ -31,6 +31,7 @@
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.*;
@@ -1023,6 +1024,17 @@
        }
    }
    @Override
    public void updatePrice(Integer orderId, Integer orderType, Integer priceType, BigDecimal updatePrice) {
        switch (orderType){
            case 1:
                orderPrivateCarService.updatePrice(orderId,priceType,updatePrice);
                break;
            case 2:
                break;
        }
    }
    @Autowired
    private ISystemNoticeService systemNoticeService;