| | |
| | | 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.*; |
| | |
| | | } |
| | | } |
| | | |
| | | @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; |
| | | |