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