Browse Source

游记表增加热度值字段,增加获取点赞数量接口

chenchen 5 months ago
parent
commit
d90d0830af

+ 18 - 1
application-webadmin/src/main/java/com/tourism/webadmin/app/website/controller/WebsiteTourismProjectTravelNotesController.java

@@ -43,6 +43,8 @@ public class WebsiteTourismProjectTravelNotesController {
     private TourTravelNotesProjectRelationService tourTravelNotesProjectRelationService;
     @Autowired
     private TourismProjectService tourismProjectService;
+    @Autowired
+    private TourTourismProjectTravelNotesService tourTourismProjectTravelNotesService;
 
 
     /**
@@ -168,7 +170,7 @@ public class WebsiteTourismProjectTravelNotesController {
 
     /**
      * 相关项目
-     * param
+     * param travelNotesId 游记id
      * @return 应答结果对象,包含查询结果集。
      */
     @OperationLog(type = SysOperationLogType.LIST)
@@ -188,4 +190,19 @@ public class WebsiteTourismProjectTravelNotesController {
             return ResponseResult.success(tourismProjectService.getInList(new HashSet<>(relateProjectList)));
         }
     }
+
+
+
+    /**
+     * 获取点赞数量
+     * param travelNotesId 游记id
+     * @return 应答结果对象,包含查询结果集。
+     */
+    @OperationLog(type = SysOperationLogType.LIST)
+    @GetMapping("/getLikeCount")
+    public ResponseResult<Integer> getLikeCount(@RequestParam(required = true) Long travelNotesId) {
+
+        TourTourismProjectTravelNotes tourTourismProjectTravelNotes = tourTourismProjectTravelNotesService.getById(travelNotesId);
+        return ResponseResult.success(tourTourismProjectTravelNotes.getLikeCount());
+    }
 }

+ 5 - 3
application-webadmin/src/main/java/com/tourism/webadmin/back/dao/mapper/TourTourismProjectTravelNotesMapper.xml

@@ -35,7 +35,7 @@
         <result column="departure_time" jdbcType="TIMESTAMP" property="departureTime"/>
         <result column="average_cost" jdbcType="VARCHAR" property="averageCost"/>
         <result column="recommendation_rate" jdbcType="TINYINT" property="recommendationRate"/>
-<!--        <result column="project_ids" jdbcType="VARCHAR" property="projectIds"/>-->
+        <result column="hot_value" jdbcType="INTEGER" property="hotValue"/>
     </resultMap>
 
     <insert id="insertList">
@@ -72,7 +72,8 @@
             role,
             departure_time,
             average_cost,
-            recommendation_rate)
+            recommendation_rate,
+            hot_value)
         VALUES
         <foreach collection="list" index="index" item="item" separator="," >
             (#{item.id},
@@ -107,7 +108,8 @@
             #{item.role},
             #{item.departureTime},
             #{item.averageCost},
-            #{item.recommendationRate})
+            #{item.recommendationRate},
+            #{item.hotValue})
         </foreach>
     </insert>
 

+ 6 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/dto/TourTourismProjectTravelNotesDto.java

@@ -206,6 +206,12 @@ public class TourTourismProjectTravelNotesDto {
     private Integer recommendationRate;
 
     /**
+     * 热度值。
+     */
+    @Schema(description = "热度值。")
+    private Integer hotValue;
+
+    /**
      * remarks / project_label / start_place / end_place / short_title / short_description / contact_description LIKE搜索字符串。
      * NOTE: 可支持LIKE操作符的列表数据过滤。
      */

+ 6 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/model/TourTourismProjectTravelNotes.java

@@ -205,6 +205,12 @@ public class TourTourismProjectTravelNotes extends BaseModel {
     private Integer recommendationRate;
 
     /**
+     * 热度值。
+     */
+    @TableField(value = "hot_value")
+    private Integer hotValue;
+
+    /**
      * remarks / project_label / start_place / end_place / short_title / short_description / contact_description LIKE搜索字符串。
      */
     @TableField(exist = false)

+ 6 - 0
application-webadmin/src/main/java/com/tourism/webadmin/back/vo/TourTourismProjectTravelNotesVo.java

@@ -190,6 +190,12 @@ public class TourTourismProjectTravelNotesVo extends BaseVo {
     private Integer recommendationRate;
 
     /**
+     * 热度值。
+     */
+    @Schema(description = "热度值")
+    private Integer hotValue;
+
+    /**
      * id 的一对一关联数据对象,数据对应类型为TourTourismTravelNotesFileVo。
      */
     @Schema(description = "id 的一对一关联数据对象,数据对应类型为TourTourismTravelNotesFileVo")