feat(host): 新增主播直播明细查询接口

This commit is contained in:
2025-12-18 20:43:00 +08:00
parent 0485def527
commit 8315636d55
9 changed files with 369 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yupi.springbootinit.mapper.ServerLiveHostDetailMapper">
<resultMap id="BaseResultMap" type="com.yupi.springbootinit.model.entity.ServerLiveHostDetail">
<!--@mbg.generated-->
<!--@Table server_live_host_detail-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="user_id" jdbcType="BIGINT" property="userId" />
<result column="hosts_id" jdbcType="VARCHAR" property="hostsId" />
<result column="fans_club_count" jdbcType="INTEGER" property="fansClubCount" />
<result column="lighted_vs_total_gifts" jdbcType="VARCHAR" property="lightedVsTotalGifts" />
<result column="start_time_formatted" jdbcType="TIMESTAMP" property="startTimeFormatted" />
<result column="end_time_formatted" jdbcType="TIMESTAMP" property="endTimeFormatted" />
<result column="like_count" jdbcType="INTEGER" property="likeCount" />
<result column="duration_formatted" jdbcType="VARCHAR" property="durationFormatted" />
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
<result column="tenant_id" jdbcType="BIGINT" property="tenantId" />
<result column="deleted" jdbcType="TINYINT" property="deleted" />
<result column="updater" jdbcType="VARCHAR" property="updater" />
<result column="creator" jdbcType="VARCHAR" property="creator" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, user_id, hosts_id, fans_club_count, lighted_vs_total_gifts, start_time_formatted,
end_time_formatted, like_count, duration_formatted, create_time, update_time, tenant_id,
deleted, updater, creator
</sql>
</mapper>