gqx лет назад: 2
Родитель
Сommit
dbd5a2a6a2

+ 1 - 1
jeecg-mall-api/src/main/java/org/jeecg/modules/bus/controller/HotelController.java

@@ -941,7 +941,7 @@ public class HotelController extends WebConfig {
     @RequestMapping(value = "/living-fees",method = RequestMethod.GET)
     @ApiVersion(group = ApiVersionConstant.FAP_MALLAPI101)
     @ApiLogin
-    public Result<List<BusOrderFee>> getLivingOrderFees(String bookingOrderId) {
+    public Result<HashMap> getLivingOrderFees(String bookingOrderId) {
         if (bookingOrderId == null || bookingOrderId.isEmpty()) throw new JeecgBootException("参数错误");
         List<BusOrderFee> list = busRoomBookingOrdersService.getLivingOrderFee(bookingOrderId);
         HashMap<String, BigDecimal> obj = new HashMap<String, BigDecimal>();