Преглед на файлове

fix: APP航线详情添加视频字段

luofeiyun преди 1 седмица
родител
ревизия
89de390984

+ 2 - 1
ship-module-resource/ship-module-resource-biz/src/main/java/com/yc/ship/module/resource/controller/app/route/AppResourceRouteController.java

@@ -67,7 +67,8 @@ public class AppResourceRouteController {
                 .setRouteImg(route.getRouteImg())
                 .setBookingNotice(route.getBookingNotice())
                 .setBoardingNotice(route.getBoardingNotice())
-                .setChildBookingNotice(route.getChildBookingNotice());
+                .setChildBookingNotice(route.getChildBookingNotice())
+                .setRouteVideo(route.getRouteVideo());
         ResourceShipDO ship = shipService.getShip(shipId);
         respVO.setShipId(shipId)
                 .setShipName(ship.getName())

+ 3 - 0
ship-module-resource/ship-module-resource-biz/src/main/java/com/yc/ship/module/resource/controller/app/route/vo/AppResourceRouteDetailRespVO.java

@@ -66,4 +66,7 @@ public class AppResourceRouteDetailRespVO {
      */
     @Schema(description = "儿童预定说明")
     private String childBookingNotice;
+
+    @Schema(description = "航线视频")
+    private String routeVideo;
 }