1.添加主播信息,员工主播信息英文国家名字段

This commit is contained in:
2025-10-13 17:55:49 +08:00
parent 35be251a00
commit 145034b908
9 changed files with 24 additions and 3 deletions

View File

@@ -133,4 +133,7 @@ public class EmployeeHostsPageReqVO extends PageParam {
@Schema(description = "旗帜")
private String flag;
@Schema(description = "国家英文名", example = "United States")
private String countryEng;
}

View File

@@ -79,4 +79,7 @@ public class EmployeeHostsRespVO {
@Schema(description = "旗帜")
private String flag;
@Schema(description = "国家英文名", example = "United States")
private String countryEng;
}

View File

@@ -53,4 +53,7 @@ public class EmployeeHostsSaveReqVO {
@Schema(description = "旗帜")
private String flag;
@Schema(description = "国家英文名", example = "United States")
private String countryEng;
}

View File

@@ -145,4 +145,7 @@ public class NewHostsPageReqVO extends PageParam {
@Schema(description = "旗帜")
private String flag;
@Schema(description = "国家英文名", example = "United States")
private String countryEng;
}

View File

@@ -90,4 +90,8 @@ public class NewHostsRespVO {
@Schema(description = "旗帜")
@ExcelProperty("旗帜")
private String flag;
@Schema(description = "国家英文名", example = "United States")
@ExcelProperty("国家英文名")
private String countryEng;
}

View File

@@ -85,4 +85,6 @@ public class EmployeeHostsDO extends BaseDO {
private Long tenantId;
private String flag;
private String countryEng;
}

View File

@@ -85,4 +85,6 @@ public class NewHostsDO extends TenantBaseDO {
* 是否建联
*/
private Byte operationStatus;
private String countryEng;
}

View File

@@ -111,7 +111,8 @@
<select id="selectPageWithXMLWithSelf" resultType="cn.iocoder.yudao.module.tkdata.dal.dataobject.employeehosts.EmployeeHostsDO">
select ns.id,hosts_id, hosts_level, hosts_coins, Invitation_type, fans, fllowernum,
yesterday_coins,ns.create_time, country, online_fans,hosts_kind,remake ,
operation_status,ns.user_id ,ns.update_time,ns.flag,ns.deleted from server_employee_hosts ns left join server_country_info ci ON ns.country = ci.country_name
operation_status,ns.user_id ,ns.update_time,ns.flag,ns.deleted,ns.country_eng
from server_employee_hosts ns left join server_country_info ci ON ns.country = ci.country_name
WHERE tenant_id =#{req.tenantId,jdbcType=BIGINT}
and ns.user_id =#{req.userId,jdbcType=BIGINT}
<!-- 主播国家筛选 -->
@@ -248,7 +249,7 @@
<select id="selectPageWithXML" resultType="cn.iocoder.yudao.module.tkdata.dal.dataobject.employeehosts.EmployeeHostsDO">
select ns.id,hosts_id, hosts_level, hosts_coins, Invitation_type, fans, fllowernum,
yesterday_coins,ns.create_time, country, online_fans,hosts_kind,remake ,operation_status,user_id,uid,ns.update_time,ns.flag
yesterday_coins,ns.create_time, country, online_fans,hosts_kind,remake ,operation_status,user_id,uid,ns.update_time,ns.flag,ns.country_eng
from server_employee_hosts ns left join server_country_info ci ON ns.country = ci.country_name
WHERE tenant_id = #{req.tenantId,jdbcType=BIGINT}
and deleted = 0

View File

@@ -12,7 +12,7 @@
<select id="selectPageWithXML" resultType="cn.iocoder.yudao.module.tkdata.dal.dataobject.newhosts.NewHostsDO">
select ns.id,hosts_id, hosts_level, hosts_coins, Invitation_type, fans, fllowernum,
yesterday_coins,ns.create_time, country, online_fans,hosts_kind ,is_assigned,uid ,ns.update_time,ns.operation_status,ns.ai_operation
yesterday_coins,ns.create_time, country, online_fans,hosts_kind ,is_assigned,uid ,ns.update_time,ns.operation_status,ns.ai_operation,ns.country_eng
from server_new_hosts ns left join
server_country_info ci ON ns.country = ci.country_name
WHERE tenant_id =#{req.tenantId,jdbcType=BIGINT}