1.修改country_info 表名为server_country_info

2.修改new_hosts表名为
server_new_hosts
This commit is contained in:
2025-06-16 13:34:32 +08:00
parent a4c28679d1
commit 6e9442de23
2 changed files with 41 additions and 41 deletions

View File

@@ -3,7 +3,7 @@
<mapper namespace="com.yupi.springbootinit.mapper.CountryInfoMapper"> <mapper namespace="com.yupi.springbootinit.mapper.CountryInfoMapper">
<resultMap id="BaseResultMap" type="com.yupi.springbootinit.model.entity.CountryInfo"> <resultMap id="BaseResultMap" type="com.yupi.springbootinit.model.entity.CountryInfo">
<!--@mbg.generated--> <!--@mbg.generated-->
<!--@Table country_info--> <!--@Table server_country_info-->
<id column="id" jdbcType="INTEGER" property="id" /> <id column="id" jdbcType="INTEGER" property="id" />
<id column="country_id" jdbcType="VARCHAR" property="countryId" /> <id column="country_id" jdbcType="VARCHAR" property="countryId" />
<result column="country_group" jdbcType="VARCHAR" property="countryGroup" /> <result column="country_group" jdbcType="VARCHAR" property="countryGroup" />
@@ -19,7 +19,7 @@
<resultMap id="CountryInfoVOMap" type="com.yupi.springbootinit.model.vo.country.CountryInfoVO"> <resultMap id="CountryInfoVOMap" type="com.yupi.springbootinit.model.vo.country.CountryInfoVO">
<!--@mbg.generated--> <!--@mbg.generated-->
<!--@Table country_info--> <!--@Table server_country_info-->
<id column="country_id" jdbcType="VARCHAR" property="countryId" /> <id column="country_id" jdbcType="VARCHAR" property="countryId" />
<result column="country_group" jdbcType="VARCHAR" property="countryGroup" /> <result column="country_group" jdbcType="VARCHAR" property="countryGroup" />
<result column="country_group_name" jdbcType="VARCHAR" property="countryGroupName" /> <result column="country_group_name" jdbcType="VARCHAR" property="countryGroupName" />
@@ -36,7 +36,7 @@
<!--auto generated by MybatisCodeHelper on 2025-06-13--> <!--auto generated by MybatisCodeHelper on 2025-06-13-->
<select id="selectByCountryGroupName" resultMap="CountryInfoVOMap"> <select id="selectByCountryGroupName" resultMap="CountryInfoVOMap">
select * select *
from country_info from server_country_info
group by country_group_name; group by country_group_name;
</select> </select>
</mapper> </mapper>

View File

@@ -3,7 +3,7 @@
<mapper namespace="com.yupi.springbootinit.mapper.NewHostsMapper"> <mapper namespace="com.yupi.springbootinit.mapper.NewHostsMapper">
<resultMap id="BaseResultMap" type="com.yupi.springbootinit.model.entity.NewHosts"> <resultMap id="BaseResultMap" type="com.yupi.springbootinit.model.entity.NewHosts">
<!--@mbg.generated--> <!--@mbg.generated-->
<!--@Table new_hosts--> <!--@Table server_new_hosts-->
<id column="id" jdbcType="BIGINT" property="id" /> <id column="id" jdbcType="BIGINT" property="id" />
<result column="hosts_id" jdbcType="VARCHAR" property="hostsId" /> <result column="hosts_id" jdbcType="VARCHAR" property="hostsId" />
<result column="hosts_level" jdbcType="VARCHAR" property="hostsLevel" /> <result column="hosts_level" jdbcType="VARCHAR" property="hostsLevel" />
@@ -25,7 +25,7 @@
<resultMap id="HostInfoVo" type="com.yupi.springbootinit.model.vo.hosts.NewHostsVO"> <resultMap id="HostInfoVo" type="com.yupi.springbootinit.model.vo.hosts.NewHostsVO">
<!--@mbg.generated--> <!--@mbg.generated-->
<!--@Table new_hosts--> <!--@Table server_new_hosts-->
<id column="id" jdbcType="BIGINT" property="id" /> <id column="id" jdbcType="BIGINT" property="id" />
<result column="hosts_id" jdbcType="VARCHAR" property="hostsId" /> <result column="hosts_id" jdbcType="VARCHAR" property="hostsId" />
<result column="hosts_level" jdbcType="VARCHAR" property="hostsLevel" /> <result column="hosts_level" jdbcType="VARCHAR" property="hostsLevel" />
@@ -49,17 +49,17 @@
<!--@mbg.generated--> <!--@mbg.generated-->
select select
<include refid="Base_Column_List" /> <include refid="Base_Column_List" />
from new_hosts from server_new_hosts
where id = #{id,jdbcType=BIGINT} where id = #{id,jdbcType=BIGINT}
</select> </select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
<!--@mbg.generated--> <!--@mbg.generated-->
delete from new_hosts delete from server_new_hosts
where id = #{id,jdbcType=BIGINT} where id = #{id,jdbcType=BIGINT}
</delete> </delete>
<insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.yupi.springbootinit.model.entity.NewHosts" useGeneratedKeys="true"> <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.yupi.springbootinit.model.entity.NewHosts" useGeneratedKeys="true">
<!--@mbg.generated--> <!--@mbg.generated-->
insert into new_hosts (hosts_id, hosts_level, hosts_coins, insert into server_new_hosts (hosts_id, hosts_level, hosts_coins,
Invitation_type, fans, fllowernum, Invitation_type, fans, fllowernum,
yesterday_coins, country, hosts_kind, yesterday_coins, country, hosts_kind,
tenant_id, creator, user_id tenant_id, creator, user_id
@@ -71,7 +71,7 @@
</insert> </insert>
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.yupi.springbootinit.model.entity.NewHosts" useGeneratedKeys="true"> <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.yupi.springbootinit.model.entity.NewHosts" useGeneratedKeys="true">
<!--@mbg.generated--> <!--@mbg.generated-->
insert into new_hosts insert into server_new_hosts
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
<if test="hostsId != null"> <if test="hostsId != null">
hosts_id, hosts_id,
@@ -163,7 +163,7 @@
</insert> </insert>
<update id="updateByPrimaryKeySelective" parameterType="com.yupi.springbootinit.model.entity.NewHosts"> <update id="updateByPrimaryKeySelective" parameterType="com.yupi.springbootinit.model.entity.NewHosts">
<!--@mbg.generated--> <!--@mbg.generated-->
update new_hosts update server_new_hosts
<set> <set>
<if test="hostsId != null"> <if test="hostsId != null">
hosts_id = #{hostsId,jdbcType=VARCHAR}, hosts_id = #{hostsId,jdbcType=VARCHAR},
@@ -212,7 +212,7 @@
</update> </update>
<update id="updateByPrimaryKey" parameterType="com.yupi.springbootinit.model.entity.NewHosts"> <update id="updateByPrimaryKey" parameterType="com.yupi.springbootinit.model.entity.NewHosts">
<!--@mbg.generated--> <!--@mbg.generated-->
update new_hosts update server_new_hosts
set hosts_id = #{hostsId,jdbcType=VARCHAR}, set hosts_id = #{hostsId,jdbcType=VARCHAR},
hosts_level = #{hostsLevel,jdbcType=VARCHAR}, hosts_level = #{hostsLevel,jdbcType=VARCHAR},
hosts_coins = #{hostsCoins,jdbcType=INTEGER}, hosts_coins = #{hostsCoins,jdbcType=INTEGER},
@@ -231,7 +231,7 @@
</update> </update>
<insert id="batchInsert" keyColumn="id" keyProperty="id" parameterType="map"> <insert id="batchInsert" keyColumn="id" keyProperty="id" parameterType="map">
<!--@mbg.generated--> <!--@mbg.generated-->
insert into new_hosts insert into server_new_hosts
(hosts_id, hosts_level, hosts_coins, Invitation_type, fans, fllowernum, yesterday_coins, (hosts_id, hosts_level, hosts_coins, Invitation_type, fans, fllowernum, yesterday_coins,
country, hosts_kind, tenant_id, creator, user_id) country, hosts_kind, tenant_id, creator, user_id)
values values
@@ -244,104 +244,104 @@
</insert> </insert>
<select id="selectPageByCondition" resultMap="HostInfoVo"> <select id="selectPageByCondition" resultMap="HostInfoVo">
select id,hosts_id, hosts_level, hosts_coins, Invitation_type, fans, fllowernum, select ns.id,hosts_id, hosts_level, hosts_coins, Invitation_type, fans, fllowernum,
yesterday_coins,create_time, country, online_fans,hosts_kind from new_hosts where yesterday_coins,ns.create_time, country, online_fans,hosts_kind from server_new_hosts ns join server_country_info ci where
new_hosts.creator=#{hostInfoDTO.creator} ns.creator=#{hostInfoDTO.creator}
and new_hosts.tenant_id=#{hostInfoDTO.tenantId} and ns.tenant_id=#{hostInfoDTO.tenantId}
<!-- 主播国家筛选 --> <!-- 主播国家筛选 -->
<if test="hostInfoDTO.country!= '' and hostInfoDTO.country != null"> <if test="hostInfoDTO.country!= '' and hostInfoDTO.country != null">
and new_hosts.country =#{hostInfoDTO.country,jdbcType=VARCHAR} and ci.country_group_name =#{hostInfoDTO.country,jdbcType=VARCHAR}
</if> </if>
<!-- 按照入库时间筛选主播 --> <!-- 按照入库时间筛选主播 -->
<if test="hostInfoDTO.createTime != null"> <if test="hostInfoDTO.createTime != null">
and DATE(new_hosts.create_time) =#{hostInfoDTO.createTime} and DATE(ns.create_time) =#{hostInfoDTO.createTime}
</if> </if>
<!-- 主播 Id 模糊搜索 --> <!-- 主播 Id 模糊搜索 -->
<if test="hostInfoDTO.hostsId != '' and hostInfoDTO.hostsId != null "> <if test="hostInfoDTO.hostsId != '' and hostInfoDTO.hostsId != null ">
and new_hosts.hosts_id like concat(#{hostInfoDTO.hostsId,jdbcType=VARCHAR},'%') and ns.hosts_id like concat(#{hostInfoDTO.hostsId,jdbcType=VARCHAR},'%')
</if> </if>
<!-- 今日主播金币筛选 --> <!-- 今日主播金币筛选 -->
<if test="hostInfoDTO.hostsCoinsMin != null and hostInfoDTO.hostsCoinsMax == null "> <if test="hostInfoDTO.hostsCoinsMin != null and hostInfoDTO.hostsCoinsMax == null ">
and new_hosts.hosts_coins >=#{hostInfoDTO.hostsCoinsMin,jdbcType=INTEGER} and ns.hosts_coins >=#{hostInfoDTO.hostsCoinsMin,jdbcType=INTEGER}
</if> </if>
<if test="hostInfoDTO.hostsCoinsMax != null and hostInfoDTO.hostsCoinsMin == null "> <if test="hostInfoDTO.hostsCoinsMax != null and hostInfoDTO.hostsCoinsMin == null ">
and new_hosts.hosts_coins &lt;=#{hostInfoDTO.hostsCoinsMax,jdbcType=INTEGER} and ns.hosts_coins &lt;=#{hostInfoDTO.hostsCoinsMax,jdbcType=INTEGER}
</if> </if>
<if test="hostInfoDTO.hostsCoinsMin != null and hostInfoDTO.hostsCoinsMax != null " > <if test="hostInfoDTO.hostsCoinsMin != null and hostInfoDTO.hostsCoinsMax != null " >
and new_hosts.hosts_coins between #{hostInfoDTO.hostsCoinsMin,jdbcType=INTEGER} and #{hostInfoDTO.hostsCoinsMax,jdbcType=INTEGER} and ns.hosts_coins between #{hostInfoDTO.hostsCoinsMin,jdbcType=INTEGER} and #{hostInfoDTO.hostsCoinsMax,jdbcType=INTEGER}
</if> </if>
<!-- 昨日主播金币筛选 --> <!-- 昨日主播金币筛选 -->
<if test="hostInfoDTO.yesterdayCoinsMin != null and hostInfoDTO.yesterdayCoinsMax == null "> <if test="hostInfoDTO.yesterdayCoinsMin != null and hostInfoDTO.yesterdayCoinsMax == null ">
and new_hosts.yesterday_coins >=#{hostInfoDTO.yesterdayCoinsMin,jdbcType=INTEGER} and ns.yesterday_coins >=#{hostInfoDTO.yesterdayCoinsMin,jdbcType=INTEGER}
</if> </if>
<if test="hostInfoDTO.yesterdayCoinsMax != null and hostInfoDTO.yesterdayCoinsMin == null "> <if test="hostInfoDTO.yesterdayCoinsMax != null and hostInfoDTO.yesterdayCoinsMin == null ">
and new_hosts.yesterday_coins &lt;=#{hostInfoDTO.yesterdayCoinsMax,jdbcType=INTEGER} and ns.yesterday_coins &lt;=#{hostInfoDTO.yesterdayCoinsMax,jdbcType=INTEGER}
</if> </if>
<if test="hostInfoDTO.yesterdayCoinsMin != null and hostInfoDTO.yesterdayCoinsMax != null " > <if test="hostInfoDTO.yesterdayCoinsMin != null and hostInfoDTO.yesterdayCoinsMax != null " >
and new_hosts.yesterday_coins between #{hostInfoDTO.yesterdayCoinsMin,jdbcType=INTEGER} and #{hostInfoDTO.yesterdayCoinsMax,jdbcType=INTEGER} and ns.yesterday_coins between #{hostInfoDTO.yesterdayCoinsMin,jdbcType=INTEGER} and #{hostInfoDTO.yesterdayCoinsMax,jdbcType=INTEGER}
</if> </if>
<!-- 主播粉丝数筛选--> <!-- 主播粉丝数筛选-->
<if test="hostInfoDTO.fansMin != null and hostInfoDTO.fansMax == null "> <if test="hostInfoDTO.fansMin != null and hostInfoDTO.fansMax == null ">
and new_hosts.fans >=#{hostInfoDTO.fansMin,jdbcType=INTEGER} and ns.fans >=#{hostInfoDTO.fansMin,jdbcType=INTEGER}
</if> </if>
<if test="hostInfoDTO.fansMax != null and hostInfoDTO.fansMin == null "> <if test="hostInfoDTO.fansMax != null and hostInfoDTO.fansMin == null ">
and new_hosts.fans &lt;=#{hostInfoDTO.yesterdayCoinsMax,jdbcType=INTEGER} and ns.fans &lt;=#{hostInfoDTO.yesterdayCoinsMax,jdbcType=INTEGER}
</if> </if>
<if test="hostInfoDTO.fansMin != null and hostInfoDTO.fansMax != null " > <if test="hostInfoDTO.fansMin != null and hostInfoDTO.fansMax != null " >
and new_hosts.fans between #{hostInfoDTO.fansMin,jdbcType=INTEGER} and #{hostInfoDTO.fansMax,jdbcType=INTEGER} and ns.fans between #{hostInfoDTO.fansMin,jdbcType=INTEGER} and #{hostInfoDTO.fansMax,jdbcType=INTEGER}
</if> </if>
<!-- 主播关注筛选--> <!-- 主播关注筛选-->
<if test="hostInfoDTO.fllowernumMin != null and hostInfoDTO.fllowernumMax == null "> <if test="hostInfoDTO.fllowernumMin != null and hostInfoDTO.fllowernumMax == null ">
and new_hosts.fllowernum >=#{hostInfoDTO.fllowernumMin,jdbcType=INTEGER} and ns.fllowernum >=#{hostInfoDTO.fllowernumMin,jdbcType=INTEGER}
</if> </if>
<if test="hostInfoDTO.fllowernumMax != null and hostInfoDTO.fllowernumMin == null "> <if test="hostInfoDTO.fllowernumMax != null and hostInfoDTO.fllowernumMin == null ">
and new_hosts.fllowernum &lt;=#{hostInfoDTO.fllowernumMax,jdbcType=INTEGER} and ns.fllowernum &lt;=#{hostInfoDTO.fllowernumMax,jdbcType=INTEGER}
</if> </if>
<if test="hostInfoDTO.fllowernumMin != null and hostInfoDTO.fllowernumMax != null " > <if test="hostInfoDTO.fllowernumMin != null and hostInfoDTO.fllowernumMax != null " >
and new_hosts.fllowernum between #{hostInfoDTO.fllowernumMin,jdbcType=INTEGER} and #{hostInfoDTO.fllowernumMax,jdbcType=INTEGER} and ns.fllowernum between #{hostInfoDTO.fllowernumMin,jdbcType=INTEGER} and #{hostInfoDTO.fllowernumMax,jdbcType=INTEGER}
</if> </if>
<!-- 主播在线人数筛选--> <!-- 主播在线人数筛选-->
<if test="hostInfoDTO.onlineFansMin != null and hostInfoDTO.onlineFansMax == null "> <if test="hostInfoDTO.onlineFansMin != null and hostInfoDTO.onlineFansMax == null ">
and new_hosts.online_fans >=#{hostInfoDTO.onlineFansMin,jdbcType=INTEGER} and ns.online_fans >=#{hostInfoDTO.onlineFansMin,jdbcType=INTEGER}
</if> </if>
<if test="hostInfoDTO.onlineFansMax != null and hostInfoDTO.onlineFansMin == null "> <if test="hostInfoDTO.onlineFansMax != null and hostInfoDTO.onlineFansMin == null ">
and new_hosts.online_fans &lt;=#{hostInfoDTO.onlineFansMax,jdbcType=INTEGER} and ns.online_fans &lt;=#{hostInfoDTO.onlineFansMax,jdbcType=INTEGER}
</if> </if>
<if test="hostInfoDTO.onlineFansMin != null and hostInfoDTO.onlineFansMax != null " > <if test="hostInfoDTO.onlineFansMin != null and hostInfoDTO.onlineFansMax != null " >
and new_hosts.online_fans between #{hostInfoDTO.onlineFansMin,jdbcType=INTEGER} and #{hostInfoDTO.onlineFansMax,jdbcType=INTEGER} and ns.online_fans between #{hostInfoDTO.onlineFansMin,jdbcType=INTEGER} and #{hostInfoDTO.onlineFansMax,jdbcType=INTEGER}
</if> </if>
<!-- 邀请类筛选 --> <!-- 邀请类筛选 -->
<if test="hostInfoDTO.invitationType != null"> <if test="hostInfoDTO.invitationType != null">
and new_hosts.Invitation_type =#{hostInfoDTO.invitationType,jdbcType=INTEGER} and ns.Invitation_type =#{hostInfoDTO.invitationType,jdbcType=INTEGER}
</if> </if>
<!-- 排序类型 --> <!-- 排序类型 -->
order by order by
<choose> <choose>
<!-- 传空和默认的情况下按照时间降序排序 --> <!-- 传空和默认的情况下按照时间降序排序 -->
<when test="hostInfoDTO.sortName == '' and hostInfoDTO.sortName == null "> <when test="hostInfoDTO.sortName == '' and hostInfoDTO.sortName == null ">
new_hosts.create_time desc ns.create_time desc
</when> </when>
<!-- sortNmae 有值的情况下排序 --> <!-- sortNmae 有值的情况下排序 -->
<when test="hostInfoDTO.sortName != null and hostInfoDTO.sort != null "> <when test="hostInfoDTO.sortName != null and hostInfoDTO.sort != null ">
<!-- 昨日主播金币条件排序 --> <!-- 昨日主播金币条件排序 -->
<if test="hostInfoDTO.sortName == 'yesterdayCoins' and hostInfoDTO.sort != null"> <if test="hostInfoDTO.sortName == 'yesterdayCoins' and hostInfoDTO.sort != null">
new_hosts.yesterday_coins ${hostInfoDTO.sort} ns.yesterday_coins ${hostInfoDTO.sort}
</if> </if>
<!-- 主播金币条件排序 --> <!-- 主播金币条件排序 -->
<if test="hostInfoDTO.sortName == 'hostsCoins' and hostInfoDTO.sort != null"> <if test="hostInfoDTO.sortName == 'hostsCoins' and hostInfoDTO.sort != null">
new_hosts.hosts_coins ${hostInfoDTO.sort} ns.hosts_coins ${hostInfoDTO.sort}
</if> </if>
<!-- 主播粉丝条件排序 --> <!-- 主播粉丝条件排序 -->
<if test="hostInfoDTO.sortName == 'fans' and hostInfoDTO.sort != null"> <if test="hostInfoDTO.sortName == 'fans' and hostInfoDTO.sort != null">
new_hosts.fans ${hostInfoDTO.sort} ns.fans ${hostInfoDTO.sort}
</if> </if>
<!-- 主播关注数量排序 --> <!-- 主播关注数量排序 -->
<if test="hostInfoDTO.sortName == 'fllowernum' and hostInfoDTO.sort != null"> <if test="hostInfoDTO.sortName == 'fllowernum' and hostInfoDTO.sort != null">
new_hosts.fllowernum ${hostInfoDTO.sort} ns.fllowernum ${hostInfoDTO.sort}
</if> </if>
<!-- 主播直播间在线数量排序 --> <!-- 主播直播间在线数量排序 -->
<if test="hostInfoDTO.sortName == 'onlineFans' and hostInfoDTO.sort != null"> <if test="hostInfoDTO.sortName == 'onlineFans' and hostInfoDTO.sort != null">
new_hosts.online_fnas ${hostInfoDTO.sort} ns.online_fnas ${hostInfoDTO.sort}
</if> </if>
</when> </when>
</choose> </choose>