| | |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2024/9/4 16:11 |
| | |
| | | */ |
| | | @PostMapping("/accountingStrategyDetailOrder/getNowAccountingStrategyDetailOrder") |
| | | R<AccountingStrategyDetailOrder> getNowAccountingStrategyDetailOrder(@RequestParam("orderId") Long orderId); |
| | | |
| | | /** |
| | | * 获取订单对应的计费策略数据 |
| | | * @param orderId |
| | | * @return |
| | | */ |
| | | @PostMapping("/accountingStrategyDetailOrder/getAllAccountingStrategyDetailOrder") |
| | | R<List<AccountingStrategyDetailOrder>> getAllAccountingStrategyDetailOrder(@RequestParam("orderId") Long orderId); |
| | | } |