@@ -802,6 +802,7 @@ public class BusHotelController extends JeecgController<BusHotel, IBusHotelServi
BusHotel hotel = busHotelService.getById(hotelId);
if(hotel==null) throw new JeecgBootException("酒店不存在");
hotel.setRemenmberPayState(type);
+ busHotelService.updateById(hotel);
return Result.OK(true);
}