新增 运营端小程序收费明细接口

(cherry picked from commit d5eae744a28c1b29a7cbed0019239e05da3868f7)
This commit is contained in:
Lemon
2024-10-24 14:12:10 +08:00
committed by Guoqs
parent 7e1bd61390
commit 4989868d65
5 changed files with 153 additions and 1 deletions

View File

@@ -43,4 +43,14 @@ public class BusinessOrderController extends BaseController {
logger.info("通过订单编号查询订单信息详情 orderCode:{}, result:{}", orderCode, response);
return response;
}
/**
* 通过订单编号查询订单各时段计费明细
* @param orderCode
* @return
*/
@GetMapping("/getOrderBillingDetail/{orderCode}")
public RestApiResponse<?> getOrderBillingDetail(@PathVariable("orderCode") String orderCode) {
orderBasicInfoService.getOrderBillingDetail(orderCode);
}
}